diff --git a/includes/definitions.inc.php b/includes/definitions.inc.php index 6e1cd4fa5d..35496e0334 100644 --- a/includes/definitions.inc.php +++ b/includes/definitions.inc.php @@ -397,10 +397,9 @@ $config['os'][$os]['over'][0]['graph'] = 'device_bits'; $config['os'][$os]['over'][0]['text'] = 'Traffic'; - -// Calix +// Calix E7 $os = 'calix'; -$config['os'][$os]['text'] = 'Calix E7'; +$config['os'][$os]['text'] = 'Calix'; $config['os'][$os]['type'] = 'network'; $config['os'][$os]['ifname'] = 1; $config['os'][$os]['empty_ifdescr'] = 1; diff --git a/includes/discovery/os/calix.inc.php b/includes/discovery/os/calix.inc.php index c8d665069c..d636f79d78 100644 --- a/includes/discovery/os/calix.inc.php +++ b/includes/discovery/os/calix.inc.php @@ -6,4 +6,7 @@ if (!$os) { if (strstr($sysObjectId, '.6066.1.44')) { $os = 'calix'; } + if (strstr($sysObjectId, '.6321.1.2.3')) { // E5-1xx + $os = 'calix'; + } } diff --git a/includes/discovery/sensors/temperatures/calix.inc.php b/includes/discovery/sensors/temperatures/calix.inc.php new file mode 100644 index 0000000000..2651d384d4 --- /dev/null +++ b/includes/discovery/sensors/temperatures/calix.inc.php @@ -0,0 +1,99 @@ + + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation, either version 3 of the License, or (at your + * option) any later version. Please see LICENSE.txt at the top level of + * the source code distribution for details. + */ + + +if (strstr($sysObjectId, '.6321.1.2.3')) { // E5-1xx Series + echo 'Calix E5: '; + + if (strpos($device['sysObjectID'], 'enterprises.6321.1.2.3.4') !== false) { // E5-121 + $oids = snmp_walk($device, 'iesSysTempCurValue', '-Osqn', 'E5-121-IESCOMMON-MIB', '+'.$config['install_dir'].'/mibs/calix'); + $oids = trim($oids); + $oids = str_replace('.1.3.6.1.4.1.6321.1.2.3.4.98.2.3.1.2.', '', $oids); + foreach (explode("\n", $oids) as $data) { + $data = trim($data); + if ($data != '') { + list($oid) = explode(' ', $data); + $temperature_oid = ".1.3.6.1.4.1.6321.1.2.3.4.98.2.3.1.2.$oid"; + $descr_oid = ".1.3.6.1.4.1.6321.1.2.3.4.98.2.3.1.6.$oid"; + $descr = snmp_get($device, $descr_oid, '-Oqv', ''); + $temperature = snmp_get($device, $temperature_oid, '-Oqv', ''); + $descr = str_replace('"', '', $descr); + $current = $temperature; + + discover_sensor($valid['sensor'], 'temperature', $device, $temperature_oid, $oid, 'calix', $descr, '1', '1', null, null, null, null, $current); + } + } + } + + if (strpos($device['sysObjectID'], 'enterprises.6321.1.2.3.3') !== false) { // E5-120 + $oids = snmp_walk($device, 'iesSysTempCurValue', '-Osqn', 'E5-120-IESCOMMON-MIB', '+'.$config['install_dir'].'/mibs/calix'); + $oids = trim($oids); + $oids = str_replace('.1.3.6.1.4.1.6321.1.2.3.3.98.2.3.1.2.', '', $oids); + foreach (explode("\n", $oids) as $data) { + $data = trim($data); + if ($data != '') { + list($oid) = explode(' ', $data); + $temperature_oid = ".1.3.6.1.4.1.6321.1.2.3.3.98.2.3.1.2.$oid"; + $descr_oid = ".1.3.6.1.4.1.6321.1.2.3.3.98.2.3.1.6.$oid"; + $descr = snmp_get($device, $descr_oid, '-Oqv', ''); + $temperature = snmp_get($device, $temperature_oid, '-Oqv', ''); + $descr = str_replace('"', '', $descr); + $current = $temperature; + + discover_sensor($valid['sensor'], 'temperature', $device, $temperature_oid, $oid, 'calix', $descr, '1', '1', null, null, null, null, $current); + } + } + } + + + if (strpos($device['sysObjectID'], 'enterprises.6321.1.2.3.2') !== false) { // E5-111 + $oids = snmp_walk($device, 'iesSysTempCurValue', '-Osqn', 'E5-111-IESCOMMON-MIB', '+'.$config['install_dir'].'/mibs/calix'); + $oids = trim($oids); + $oids = str_replace('.1.3.6.1.4.1.6321.1.2.3.2.98.2.3.1.2.', '', $oids); + foreach (explode("\n", $oids) as $data) { + $data = trim($data); + if ($data != '') { + list($oid) = explode(' ', $data); + $temperature_oid = ".1.3.6.1.4.1.6321.1.2.3.2.98.2.3.1.2.$oid"; + $descr_oid = ".1.3.6.1.4.1.6321.1.2.3.2.98.2.3.1.6.$oid"; + $descr = snmp_get($device, $descr_oid, '-Oqv', ''); + $temperature = snmp_get($device, $temperature_oid, '-Oqv', ''); + $descr = str_replace('"', '', $descr); + $current = $temperature; + + discover_sensor($valid['sensor'], 'temperature', $device, $temperature_oid, $oid, 'calix', $descr, '1', '1', null, null, null, null, $current); + } + } + } + + if (strpos($device['sysObjectID'], 'enterprises.6321.1.2.3.1') !== false) { // E5-110 + $oids = snmp_walk($device, 'iesSysTempCurValue', '-Osqn', 'E5-110-IESCOMMON-MIB', '+'.$config['install_dir'].'/mibs/calix'); + $oids = trim($oids); + $oids = str_replace('.1.3.6.1.4.1.6321.1.2.3.1.98.2.3.1.2.', '', $oids); + foreach (explode("\n", $oids) as $data) { + $data = trim($data); + if ($data != '') { + list($oid) = explode(' ', $data); + $temperature_oid = ".1.3.6.1.4.1.6321.1.2.3.1.98.2.3.1.2.$oid"; + $descr_oid = ".1.3.6.1.4.1.6321.1.2.3.1.98.2.3.1.6.$oid"; + $descr = snmp_get($device, $descr_oid, '-Oqv', ''); + $temperature = snmp_get($device, $temperature_oid, '-Oqv', ''); + $descr = str_replace('"', '', $descr); + $current = $temperature; + + discover_sensor($valid['sensor'], 'temperature', $device, $temperature_oid, $oid, 'calix', $descr, '1', '1', null, null, null, null, $current); + } + } + } +} diff --git a/includes/polling/os/calix.inc.php b/includes/polling/os/calix.inc.php index 638d139418..80af61258e 100644 --- a/includes/polling/os/calix.inc.php +++ b/includes/polling/os/calix.inc.php @@ -1,4 +1,73 @@ + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation, either version 3 of the License, or (at your + * option) any later version. Please see LICENSE.txt at the top level of + * the source code distribution for details. + */ + + + +if (strstr($sysObjectId, '.6321.1.2.3')) { // E5-1xx Series + + if (strpos($device['sysObjectID'], 'enterprises.6321.1.2.3.4') !== false) { // E5-121 + + $version = snmp_get($device, 'iesSlotModuleFWVersion.0.0', '-Oqv', '+E5-121-IESCOMMON-MIB', '+'.$config['install_dir'].'/mibs/calix'); + $hardware = snmp_get($device, 'iesSlotModuleDescr.0.0', '-Ovqs', '+E5-121-IESCOMMON-MIB', '+'.$config['install_dir'].'/mibs/calix'); + $serial = snmp_get($device, 'iesChassisSerialNumber.0', '-OQv', '+E5-121-IESCOMMON-MIB', '+'.$config['install_dir'].'/mibs/calix'); + $features = ''; + + $version = str_replace('"', '', $version); + $serial = str_replace('"', '', $serial); + $hardware = str_replace('"', '', $hardware); + + } + + if (strpos($device['sysObjectID'], 'enterprises.6321.1.2.3.3') !== false) { // E5-120 + + $version = snmp_get($device, 'iesSlotModuleFWVersion.0.0', '-Oqv', '+E5-120-IESCOMMON-MIB', '+'.$config['install_dir'].'/mibs/calix'); + $hardware = snmp_get($device, 'iesSlotModuleDescr.0.0', '-Ovqs', '+E5-120-IESCOMMON-MIB', '+'.$config['install_dir'].'/mibs/calix'); + $serial = snmp_get($device, 'iesChassisSerialNumber.0', '-OQv', '+E5-120-IESCOMMON-MIB', '+'.$config['install_dir'].'/mibs/calix'); + $features = ''; + + $version = str_replace('"', '', $version); + $serial = str_replace('"', '', $serial); + $hardware = str_replace('"', '', $hardware); + + } + + if (strpos($device['sysObjectID'], 'enterprises.6321.1.2.3.2') !== false) { // E5-111 + + $version = snmp_get($device, 'iesSlotModuleFWVersion.0.0', '-Oqv', '+E5-111-IESCOMMON-MIB', '+'.$config['install_dir'].'/mibs/calix'); + $hardware = snmp_get($device, 'iesSlotModuleDescr.0.0', '-Ovqs', '+E5-111-IESCOMMON-MIB', '+'.$config['install_dir'].'/mibs/calix'); + $serial = snmp_get($device, 'iesChassisSerialNumber.0', '-OQv', '+E5-111-IESCOMMON-MIB', '+'.$config['install_dir'].'/mibs/calix'); + $features = ''; + + $version = str_replace('"', '', $version); + $serial = str_replace('"', '', $serial); + $hardware = str_replace('"', '', $hardware); + + } + + if (strpos($device['sysObjectID'], 'enterprises.6321.1.2.3.1') !== false) { // E5-110 + + $version = snmp_get($device, 'iesSlotModuleFWVersion.0.0', '-Oqv', '+E5-110-IESCOMMON-MIB', '+'.$config['install_dir'].'/mibs/calix'); + $hardware = snmp_get($device, 'iesSlotModuleDescr.0.0', '-Ovqs', '+E5-110-IESCOMMON-MIB', '+'.$config['install_dir'].'/mibs/calix'); + $serial = snmp_get($device, 'iesChassisSerialNumber.0', '-OQv', '+E5-110-IESCOMMON-MIB', '+'.$config['install_dir'].'/mibs/calix'); + $features = ''; + + $version = str_replace('"', '', $version); + $serial = str_replace('"', '', $serial); + $hardware = str_replace('"', '', $hardware); + } +} + // Device might not have a card 1 (or even card2 if it is an E7-20) $version = strtok(snmp_walk($device, "e7CardSoftwareVersion.1", "-OQv", "E7-Calix-MIB"), PHP_EOL); $hardware = "Calix " . $poll_device['sysDescr']; diff --git a/mibs/calix/E5-110-AESCOMMON-MIB b/mibs/calix/E5-110-AESCOMMON-MIB new file mode 100644 index 0000000000..55cc02c818 --- /dev/null +++ b/mibs/calix/E5-110-AESCOMMON-MIB @@ -0,0 +1,546 @@ +-- $Log: E5-110-AESCOMMON-MIB.mib $ +-- Revision 1.3 2010/03/29 02:05:56 maverick +-- Revision 1.2 2009/11/23 06:51:48 maverick +-- Revision 1.1 2008/07/11 09:36:18 maverick +-- Initial revision +-- Revision 1.2 2008/04/28 02:29:15 maverick +-- Revision 1.1 2007/12/03 01:45:26 niceguy +-- Initial revision +-- Initial revision + + +E5-110-AESCOMMON-MIB DEFINITIONS ::= BEGIN + + IMPORTS + OBJECT-TYPE FROM RFC-1212 + DisplayString, ifIndex FROM RFC1213-MIB + Unsigned32 FROM SNMPv2-SMI + aesSeriesCommon FROM E5-110-MIB; + + aesMaxNumOfProfiles OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of ADSL profiles which the system supports." + ::= { aesSeriesCommon 1 } + + aesLineConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF AesLineConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes common attributes describing the ADSL line." + ::= { aesSeriesCommon 2 } + + aesLineConfEntry OBJECT-TYPE + SYNTAX AesLineConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An entry in aesLineConfTable." + INDEX { ifIndex } + ::= { aesLineConfTable 1 } + + AesLineConfEntry ::= + SEQUENCE { + aesLineConfAdslMode INTEGER, + aesLineConfEncap INTEGER, + aesLineConfVpi INTEGER, + aesLineConfVci INTEGER, + aesLineConfAnnexL INTEGER, + aesLineConfPmMode INTEGER, + aesLineConfRateMode INTEGER, + aesLineConfAnnexM INTEGER + } + + aesLineConfAdslMode OBJECT-TYPE + SYNTAX INTEGER { + gDotLite(1), + gDotDmt(2), + t1Dot413(3), + auto(4), + etsi(5), + adsl2(6), + adsl2Plus(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The mode of the ADSL line." + ::= { aesLineConfEntry 1 } + + aesLineConfEncap OBJECT-TYPE + SYNTAX INTEGER { + llc(1), + vc(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The encapsulation of the ADSL line." + ::= { aesLineConfEntry 2 } + + aesLineConfVpi OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The VPI of the ADSL line." + ::= { aesLineConfEntry 3 } + + aesLineConfVci OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The VCI of the ADSL line." + ::= { aesLineConfEntry 4 } + + aesLineConfAnnexL OBJECT-TYPE + SYNTAX INTEGER { + enableNarrowMode(1), + enableWideMode(2), + disable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The annex L setting of the ADSL line(Only in AnnexA)." + ::= { aesLineConfEntry 5 } + + aesLineConfPmMode OBJECT-TYPE + SYNTAX INTEGER { + enableL2Mode(1), + enableL2Mode(2), + disable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The power management mode of the ADSL line." + ::= { aesLineConfEntry 6 } + + aesLineConfRateMode OBJECT-TYPE + SYNTAX INTEGER { + fixed(1), -- no rate adaptation + adaptAtStartup(2), -- perform rate adaptation + -- only at initialization + adaptAtRuntime(3) -- perform rate adaptation at + -- any time + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Defines what form of transmit rate adaptation is + configured on this modem. See ADSL Forum TR-005 [3] + for more information." + ::= { aesLineConfEntry 7 } + + aesLineConfAnnexM OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The annex M setting of the ADSL line." + ::= { aesLineConfEntry 8 } + + +-- ADSL Line Diagnostic + + aesLineDiagnostic OBJECT IDENTIFIER ::= { aesSeriesCommon 3 } + + aesAtucLineDiagLATN OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Line Attenuation." + ::= { aesLineDiagnostic 1 } + + aesAtucLineDiagSATN OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Signal Attenuation." + ::= { aesLineDiagnostic 2 } + + aesAtucLineDiagSNRM OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Signal-to-Noise Ratio Margin." + ::= { aesLineDiagnostic 3 } + + aesAtucLineDiagACTATP OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Actual Aggregate Transmit Power." + ::= { aesLineDiagnostic 4 } + + aesAtucLineDiagATTNDR OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Attainable Net Data Rate, in bps." + ::= { aesLineDiagnostic 5 } + + aesAturLineDiagLATN OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Line Attenuation." + ::= { aesLineDiagnostic 6 } + + aesAturLineDiagSATN OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Signal Attenuation." + ::= { aesLineDiagnostic 7 } + + aesAturLineDiagSNRM OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Signal-to-Noise Ratio Margin." + ::= { aesLineDiagnostic 8 } + + aesAturLineDiagACTATP OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Actual Aggregate Transmit Power." + ::= { aesLineDiagnostic 9 } + + aesAturLineDiagATTNDR OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Attainable Net Data Rate, in bps." + ::= { aesLineDiagnostic 10 } + + aesLineDiagTarget OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Ifindex of the ADSL port which will be diagnosed." + ::= { aesLineDiagnostic 11 } + + aesLineDiagOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The manager sets the object to one to start line diagnostics and the agent clears the + object to zero when diagnostics is successfully completed." + ::= { aesLineDiagnostic 12 } + + aesLineDiagFailReason OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The reason of failed diagnostics." + ::= { aesLineDiagnostic 13 } + + +-- ADSL Line Diagnostic Per Subcarrier + + aesLineDiagPs OBJECT IDENTIFIER ::= { aesSeriesCommon 4 } + + aesAtucNumOfSubcarriersPerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of subcarriers per port for ATU-C." + ::= { aesLineDiagPs 1 } + + aesAturNumOfSubcarriersPerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of subcarriers per port for ATU-R." + ::= { aesLineDiagPs 2 } + + aesLineDiagPsCCFLirl1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Channel Characteristics Function H(f) per subcarrier. The value is the real + part of a complex value in liner scale. + The first two octets specify the li.rl value for subcarrier 1, and the second + two octets specify the li.rl value for subcarrier 2, and so on. The object + provides li.rl values for subcarrier 1 to 256." + ::= { aesLineDiagPs 3 } + + aesLineDiagPsCCFLirl2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Channel Characteristics Function H(f) per subcarrier. The value is the real + part of a complex value in liner scale. + The first two octets specify the li.rl value for subcarrier 257, and the second + two octets specify the li.rl value for subcarrier 258, and so on. The object + provides li.rl values for subcarrier 257 to 512." + ::= { aesLineDiagPs 4 } + + aesLineDiagPsCCFLiim1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Channel Characteristics Function H(f) per subcarrier. The value is the image + part of a complex value in liner scale. + The first two octets specify the li.im value for subcarrier 1, and the second + two octets specify the li.im value for subcarrier 2, and so on. The object + provides li.im values for subcarrier 1 to 256." + ::= { aesLineDiagPs 5 } + + aesLineDiagPsCCFLiim2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Channel Characteristics Function H(f) per subcarrier. The value is the image + part of a complex value in liner scale. + The first two octets specify the li.im value for subcarrier 257, and the second + two octets specify the li.im value for subcarrier 258, and so on. The object + provides li.im values for subcarrier 257 to 512." + ::= { aesLineDiagPs 6 } + + aesLineDiagPsCCFLog1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Channel Characteristics Function H(f) per subcarrier. The value + provides magnitude value in a logarithmic scale. + The first two octets specify the log value for subcarrier 1, and the second + two octets specify the log value for subcarrier 2, and so on. The object + provides log values for subcarrier 1 to 256." + ::= { aesLineDiagPs 7 } + + aesLineDiagPsCCFLog2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Channel Characteristics Function H(f) per subcarrier. The value + provides magnitude value in a logarithmic scale. + The first two octets specify the log value for subcarrier 257, and the second + two octets specify the log value for subcarrier 258, and so on. The object + provides log values for subcarrier 257 to 512." + ::= { aesLineDiagPs 8 } + + aesLineDiagPsQLN OBJECT-TYPE + SYNTAX OCTET STRING + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Quiet Line Noise PSD QLN(f) per subcarrier. The first octet specify QLN + for subcarrier 1, and the second octet specify QLN for subcarrier 2, and so on. + The object provides QLN for subcarrier 1 to 512." + ::= { aesLineDiagPs 9 } + + aesLineDiagPsSNR OBJECT-TYPE + SYNTAX OCTET STRING + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Signal-to-Noise Ratio SNR(f) per subcarrier. The first octet specify SNR + for subcarrier 1, and the second octet specify SNR for subcarrier 2, and so on. + The object provides SNR for subcarrier 1 to 512." + ::= { aesLineDiagPs 10 } + + +-- Max # of Alarm Profiles + + aesMaxNumOfAlarmProfiles OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of ADSL alarm profiles which the system supports." + ::= { aesSeriesCommon 5 } + + +-- Bit Loading + + aesBitLoadingTable OBJECT-TYPE + SYNTAX SEQUENCE OF AesBitLoadingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table provides the number of bits per carrier for each ADSL port." + ::= { aesSeriesCommon 6 } + + aesBitLoadingEntry OBJECT-TYPE + SYNTAX AesBitLoadingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An entry in aesBitLoadingTable." + INDEX { ifIndex } + ::= { aesBitLoadingTable 1 } + + AesBitLoadingEntry ::= + SEQUENCE { + aesBitLoadingBits OCTET STRING, + aesBitLoadingAtucNumOfCarriers INTEGER, + aesBitLoadingAturNumOfCarriers INTEGER + } + + aesBitLoadingBits OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object provides the number of bits for all carriers in the port. + The first octet specify the number of bits for carrier 1, and the second + octet specify the number of bits for carrier 2, and so on. + The object provides the number of bits for carrier 1 to 512." + ::= { aesBitLoadingEntry 1 } + + aesBitLoadingAtucNumOfCarriers OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of carriers for ATU-C." + ::= { aesBitLoadingEntry 2 } + + aesBitLoadingAturNumOfCarriers OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of carriers for ATU-R." + ::= { aesBitLoadingEntry 3 } + + +-- Line Status + + aesLineStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF AesLineStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the ADSL line status." + ::= { aesSeriesCommon 7 } + + aesLineStatusEntry OBJECT-TYPE + SYNTAX AesLineStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An entry in aesLineStatusTable." + INDEX { ifIndex } + ::= { aesLineStatusTable 1 } + + AesLineStatusEntry ::= + SEQUENCE { + aesLineStatusAdslMode INTEGER + } + + aesLineStatusAdslMode OBJECT-TYPE + SYNTAX INTEGER { + gDotLite(1), + gDotDmt(2), + t1Dot413(3), + etsi(4), + adsl2(5), + adsl2Plus(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The link up mode of the ADSL line." + ::= { aesLineStatusEntry 1 } + +-------------------- +-- selt +-------------------- + + selt OBJECT IDENTIFIER ::= { aesSeriesCommon 8 } + + seltTarget OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IfIndex of the port which would be performed single end loopback test." + ::= { selt 1 } + + seltOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The manager sets the object to 1 to start the selt + and the agent clears the object to zero when selt is successfully completed." + ::= { selt 2 } + + seltStatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Status description of the selt result." + ::= { selt 3 } + + seltCableType OBJECT-TYPE + SYNTAX INTEGER { + awg24(1), + awg26(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The cable type that selt result indicates." + ::= { selt 4 } + + seltLoopEstimateLengthFt OBJECT-TYPE + SYNTAX INTEGER + UNITS "feet" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The estimated loop length that selt result indicates." + ::= { selt 5 } + + seltLoopEstimateLengthMeter OBJECT-TYPE + SYNTAX INTEGER + UNITS "meter" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The estimated loop length that selt result indicates." + ::= { selt 6 } + +END diff --git a/mibs/calix/E5-110-AS-ATM-MIB b/mibs/calix/E5-110-AS-ATM-MIB new file mode 100644 index 0000000000..e85fcc5877 --- /dev/null +++ b/mibs/calix/E5-110-AS-ATM-MIB @@ -0,0 +1,474 @@ +-- $Log: E5-110-AS-ATM-MIB.mib $ +-- Revision 1.4 2009/11/23 06:51:48 maverick +-- Revision 1.3 2009/11/06 02:10:36 maverick +-- remove cfm, change atmqos to ipqos +-- Revision 1.2 2009/10/02 08:33:29 John +-- Revision 1.1 2008/07/11 09:36:15 maverick +-- Initial revision +-- Revision 1.1 2007/12/03 01:45:27 niceguy +-- Initial revision +-- Initial revision + +E5-110-AS-ATM-MIB DEFINITIONS ::= BEGIN + + IMPORTS + OBJECT-TYPE FROM RFC-1212 + Unsigned32 FROM SNMPv2-SMI + Counter FROM RFC1155-SMI + ifIndex, DisplayString FROM RFC1213-MIB + RowStatus FROM SNMPv2-TC + VlanIndex, PortList FROM Q-BRIDGE-MIB + accessSwitchCommonATM FROM E5-110-MIB; + + + -- Channel Table + + asMaxNumOfChannels OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum number of virtual channels which can be created on a port." + ::= { accessSwitchCommonATM 1 } + + asChannelTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsChannelEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table includes the configuration of the virtual channel." + ::= { accessSwitchCommonATM 2 } + + asChannelEntry OBJECT-TYPE + SYNTAX AsChannelEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in asChannelTable." + INDEX { ifIndex, asChannelVpi, asChannelVci } + ::= { asChannelTable 1 } + + AsChannelEntry ::= + SEQUENCE { + asChannelVpi INTEGER, + asChannelVci INTEGER, + asChannelPvid VlanIndex, + -- asChannelEgressVid VlanIndex, + asChannelPriority INTEGER, + asChannelProfile DisplayString, + asChannelRowStatus RowStatus + } + + asChannelVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "VPI of the channel." + ::= { asChannelEntry 1 } + + asChannelVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "VCI of the channel." + ::= { asChannelEntry 2 } + + asChannelPvid OBJECT-TYPE + SYNTAX VlanIndex + ACCESS read-create + STATUS mandatory + DESCRIPTION + "The default VID of the channel." + ::= { asChannelEntry 3 } + +-- asChannelEgressVid OBJECT-TYPE +-- SYNTAX VlanIndex +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "The egress VID of the channel." +-- ::= { asChannelEntry 4 } + + asChannelPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + ACCESS read-create + STATUS mandatory + DESCRIPTION + "The 802.1p default priority of the channel." + ::= { asChannelEntry 5 } + + asChannelProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + ACCESS read-create + STATUS mandatory + DESCRIPTION + "The value of this object identifies the row in the + asChannelProfileTable, which applies for this channel." + ::= { asChannelEntry 6 } + + asChannelRowStatus OBJECT-TYPE + SYNTAX RowStatus + ACCESS read-create + STATUS mandatory + DESCRIPTION + "This object is used to create a new row or + delete an existing row in this table." + ::= { asChannelEntry 7 } + + + -- Channel Profile Table + + asMaxNumOfChannelProfiles OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum number of channel profiles which the system supports." + ::= { accessSwitchCommonATM 3 } + + asChannelProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsChannelProfileEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains information on the virtual channel + configuration. One entry in this table reflects a + profile which can be used to configure the virtual channel." + ::= { accessSwitchCommonATM 6 } + + asChannelProfileEntry OBJECT-TYPE + SYNTAX AsChannelProfileEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in asChannelProfileTable." + INDEX { IMPLIED asChannelProfileName } + ::= { asChannelProfileTable 1 } + + AsChannelProfileEntry ::= + SEQUENCE { + asChannelProfileName DisplayString, + asChannelProfileEncap INTEGER, + asChannelProfileAAL INTEGER, + asChannelProfileClass INTEGER, + asChannelProfilePcr Unsigned32, + asChannelProfileCdvt INTEGER, + asChannelProfileScrMcr Unsigned32, + asChannelProfileBt INTEGER, + asChannelProfileRowStatus RowStatus + } + + asChannelProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This object is used by the channel profile table + in order to identify a row of this table." + ::= { asChannelProfileEntry 1 } + + asChannelProfileEncap OBJECT-TYPE + SYNTAX INTEGER { + llc(1), + vc(2) + } + ACCESS read-create + STATUS mandatory + DESCRIPTION + "RFC1483 encapsulation." + ::= { asChannelProfileEntry 2 } + + asChannelProfileAAL OBJECT-TYPE + SYNTAX INTEGER (0..5) + ACCESS read-create + STATUS mandatory + DESCRIPTION + "ATM Adaptation Layer policy." + ::= { asChannelProfileEntry 3 } + + asChannelProfileClass OBJECT-TYPE + SYNTAX INTEGER { + cbr(1), + rt-vbr(2), + nrt-vbr(3), + ubr(4), + abr(5) + } + ACCESS read-create + STATUS mandatory + DESCRIPTION + "ATM traffic class, including constant bit rate, + real-time variable bit rate, non real-time variable bit rate, + unspecified bit rate, and available bit rate." + ::= { asChannelProfileEntry 4 } + + asChannelProfilePcr OBJECT-TYPE + SYNTAX Unsigned32 + ACCESS read-create + STATUS mandatory + DESCRIPTION + "Peak cell rate (cells/sec)." + ::= { asChannelProfileEntry 5 } + + asChannelProfileCdvt OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-create + STATUS mandatory + DESCRIPTION + "Cell delay variation tolerance." + ::= { asChannelProfileEntry 6 } + + asChannelProfileScrMcr OBJECT-TYPE + SYNTAX Unsigned32 + ACCESS read-create + STATUS mandatory + DESCRIPTION + "Sustain cell rate for vbr traffic class, or + minimum cell rate for abr traffic class. + The unit is the number of cells per second." + ::= { asChannelProfileEntry 7 } + + asChannelProfileBt OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-create + STATUS mandatory + DESCRIPTION + "Burst tolerance for vbr traffic class." + ::= { asChannelProfileEntry 8 } + + asChannelProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + ACCESS read-create + STATUS mandatory + DESCRIPTION + "This object is used to create a new row or + delete an existing row in this table." + ::= { asChannelProfileEntry 9 } + + +-- Channel Status Table + + asChannelStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsChannelStatusEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table includes the status of the virtual channel." + ::= { accessSwitchCommonATM 7 } + + asChannelStatusEntry OBJECT-TYPE + SYNTAX AsChannelStatusEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in asChannelStatusTable." + INDEX { ifIndex, asChannelVpi, asChannelVci } + ::= { asChannelStatusTable 1 } + + AsChannelStatusEntry ::= + SEQUENCE { + asChannelTxPackets Counter, + asChannelRxPackets Counter, + asChannelTxCells Counter, + asChannelRxCells Counter + } + + asChannelTxPackets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of channel Tx packets." + ::= { asChannelStatusEntry 1 } + + asChannelRxPackets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of channel Rx packets." + ::= { asChannelStatusEntry 2 } + + asChannelTxCells OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of channel Tx cells." + ::= { asChannelStatusEntry 3 } + + asChannelRxCells OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of channel Rx cells." + ::= { asChannelStatusEntry 4 } + + +-- Ipqos Profile Table + + asMaxNumOfIpqosProfiles OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum number of ipqos profiles which the system supports." + ::= { accessSwitchCommonATM 8 } + + asIpqosProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsIpqosProfileEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains information on the ipqos profile + configuration. One entry in this table reflects a + profile which can be used to configure the virtual channel." + ::= { accessSwitchCommonATM 9 } + + asIpqosProfileEntry OBJECT-TYPE + SYNTAX AsIpqosProfileEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in asIpqosProfileTable." + INDEX { IMPLIED asIpqosProfileName } + ::= { asIpqosProfileTable 1 } + + AsIpqosProfileEntry ::= + SEQUENCE { + asIpqosProfileName DisplayString, + asIpqosProfileEncap INTEGER, + asIpqosProfileQueueNumber INTEGER, + asIpqosProfileRowStatus RowStatus + } + + asIpqosProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used by the ipqos profile table + in order to identify a row of this table." + ::= { asIpqosProfileEntry 1 } + + asIpqosProfileEncap OBJECT-TYPE + SYNTAX INTEGER { + llc(1), + vc(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "RFC1483 encapsulation." + ::= { asIpqosProfileEntry 2 } + + asIpqosProfileQueueNumber OBJECT-TYPE + SYNTAX INTEGER { + one(1), + two(2), + four(4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Number of Ipqos profile egress queue." + ::= { asIpqosProfileEntry 3 } + + asIpqosProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + ACCESS read-create + STATUS mandatory + DESCRIPTION + "This object is used to create a new row or + delete an existing row in this table." + ::= { asIpqosProfileEntry 4 } + + asIpqosProfileQueueTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsIpqosProfileQueueEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains information on the ipqos profile queue + configuration." + ::= { accessSwitchCommonATM 10 } + + asIpqosProfileQueueEntry OBJECT-TYPE + SYNTAX AsIpqosProfileQueueEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in asIpqosProfileTable." + INDEX { asIpqosProfileName, IMPLIED asIpqosProfileQueueIndex } + ::= { asIpqosProfileQueueTable 1 } + + AsIpqosProfileQueueEntry ::= + SEQUENCE { + asIpqosProfileQueueIndex INTEGER, + asIpqosProfileAAL INTEGER, + asIpqosProfileLevel INTEGER, + asIpqosProfileRate Unsigned32 + } + + asIpqosProfileQueueIndex OBJECT-TYPE + SYNTAX INTEGER (1..4) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index of a ipqos profile egress queue." + ::= { asIpqosProfileQueueEntry 1 } + + asIpqosProfileAAL OBJECT-TYPE + SYNTAX INTEGER (0..5) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "ATM Adaptation Layer policy." + ::= { asIpqosProfileQueueEntry 2 } + + asIpqosProfileLevel OBJECT-TYPE + SYNTAX INTEGER { + ubr(0), + nrt-vbr(1), + rt-vbr(2), + cbr(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "ATM traffic class, including constant bit rate, + real-time variable bit rate, non real-time variable bit rate, + and unspecified bit rate." + ::= { asIpqosProfileQueueEntry 3 } + + asIpqosProfileRate OBJECT-TYPE + SYNTAX Unsigned32 + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Peak cell rate (cells/sec)." + ::= { asIpqosProfileQueueEntry 4 } + +-- Shaping Mode + + asShapingMode OBJECT-TYPE + SYNTAX INTEGER { + atm(1), + packet(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The two types of shaping mechanism can not co-exist, + and this variable is used to switch between these + two types of shaping mechanism. + To change to new shaping mode, E5-11x will remove all + configured PVC, save current configuration and reboot + automatically. + After reboot, the new shaping mode can take effect." + ::= { accessSwitchCommonATM 11 } + + +END diff --git a/mibs/calix/E5-110-IESCOMMON-MIB b/mibs/calix/E5-110-IESCOMMON-MIB new file mode 100644 index 0000000000..affa3a1277 --- /dev/null +++ b/mibs/calix/E5-110-IESCOMMON-MIB @@ -0,0 +1,2465 @@ +-- $Log: E5-110-IESCOMMON-MIB.mib $ +-- Revision 1.8 2010/04/23 10:46:20 maverick +-- Revision 1.7 2009/11/26 13:06:52 maverick +-- add comment to obsoleted mib entries, mibble checked +-- Revision 1.6 2009/11/23 06:51:49 maverick +-- Revision 1.5 2009/10/20 12:25:27 maverick +-- Revision 1.4 2009/09/01 01:32:31 maverick +-- Revision 1.3 2009/05/12 06:05:54 niceguy +-- Revision 1.2 2009/05/12 03:28:46 niceguy +-- Revision 1.1 2008/07/11 09:36:13 maverick +-- Initial revision +-- Revision 1.3 2008/01/11 01:21:27 niceguy +-- Revision 1.2 2007/12/12 09:39:50 niceguy +-- Revision 1.1 2007/12/03 01:45:28 niceguy +-- Initial revision +-- Initial revision + +E5-110-IESCOMMON-MIB DEFINITIONS ::= BEGIN + + IMPORTS + + enterprises + FROM RFC1155-SMI + OBJECT-TYPE + FROM SNMPv2-SMI +-- FROM RFC-1212 + DisplayString, ifIndex, PhysAddress + FROM RFC1213-MIB + RowStatus + FROM SNMPv2-TC + PortList + FROM Q-BRIDGE-MIB + TRAP-TYPE + FROM RFC-1215 + IpAddress + FROM RFC1155-SMI + iesSeriesCommon,e5x110 + FROM E5-110-MIB; + + iesChassis OBJECT IDENTIFIER ::= { iesSeriesCommon 1 } + iesHWMonitor OBJECT IDENTIFIER ::= { iesSeriesCommon 2 } + iesSysMgnt OBJECT IDENTIFIER ::= { iesSeriesCommon 3 } + + iesSysState OBJECT IDENTIFIER ::= { iesSysMgnt 1 } + iesSysMaintenance OBJECT IDENTIFIER ::= { iesSysMgnt 2 } + iesSysTimeSetup OBJECT IDENTIFIER ::= { iesSysMgnt 3 } + iesSysAccessControl OBJECT IDENTIFIER ::= { iesSysMgnt 4 } + iesSysStaticRoute OBJECT IDENTIFIER ::= { iesSysMgnt 5 } + iesSyslogSetup OBJECT IDENTIFIER ::= { iesSysMgnt 6 } + iesSysDhcpSetup OBJECT IDENTIFIER ::= { iesSysMgnt 7 } + iesSysSNMPSetup OBJECT IDENTIFIER ::= { iesSysMgnt 8 } + iesSysDot1xSetup OBJECT IDENTIFIER ::= { iesSysMgnt 9 } + iesSysMacFilter OBJECT IDENTIFIER ::= { iesSysMgnt 10 } + iesSysPacketFilter OBJECT IDENTIFIER ::= { iesSysMgnt 11 } + iesSysMacCountFilter OBJECT IDENTIFIER ::= { iesSysMgnt 12 } + iesSysMulticastGroup OBJECT IDENTIFIER ::= { iesSysMgnt 13 } + iesSysIgmpFilter OBJECT IDENTIFIER ::= { iesSysMgnt 14 } -- Obsoleted since Revision 3.0.0 at 2009/11/26 by maverick + + iesL2SW OBJECT IDENTIFIER ::= { iesSeriesCommon 4 } + +-- Chassis, slot information + + iesNumOfChassis OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of chassis in the IES-2000/3000 system" + ::= { iesChassis 1 } + + iesChassisTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesChassisEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table which contains the chassis information in IES-2000/3000 + system" + ::= { iesChassis 2 } + + iesChassisEntry OBJECT-TYPE + SYNTAX IesChassisEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { iesChassisId } + ::= { iesChassisTable 1 } + + IesChassisEntry ::= + SEQUENCE { + iesChassisId INTEGER, + iesChassisFrameNumber INTEGER, + iesChassisSerialNumber DisplayString, + iesChassisNumber INTEGER, + iesChassisStatus INTEGER, + iesChassisProductPartNumber DisplayString, + iesChassisHwRevisionNumber DisplayString, + iesChassisCleiCode DisplayString, + iesChassisHwVersion DisplayString, + iesChassisMacAddress DisplayString + } + + iesChassisId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Chassis ID" + ::= { iesChassisEntry 1 } + + iesChassisFrameNumber OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Frame ID" + ::= { iesChassisEntry 2 } + + + iesChassisSerialNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Chassis Serial Number" + ::= { iesChassisEntry 3 } + + iesChassisNumber OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Chassis Number which is defined by the system administrator + for management purpose" + ::= { iesChassisEntry 4 } + + iesChassisStatus OBJECT-TYPE + SYNTAX INTEGER { + empty(1), + up(2), + down(3), + testing(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current status of the chassis." + ::= { iesChassisEntry 5 } + + iesChassisProductPartNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Product part number" + ::= { iesChassisEntry 6 } + + iesChassisHwRevisionNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Hardware revision Number" + ::= { iesChassisEntry 7 } + + iesChassisCleiCode OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CLEI code" + ::= { iesChassisEntry 8 } + + iesChassisHwVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Hardware version" + ::= { iesChassisEntry 9 } + + iesChassisMacAddress OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MAC address" + ::= { iesChassisEntry 10 } + + iesSlotTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesSlotEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table which contains the slot information in a chassis of + IES-2000/3000 system" + ::= { iesChassis 3 } + + iesSlotEntry OBJECT-TYPE + SYNTAX IesSlotEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { iesChassisId, iesSlotId } + ::= { iesSlotTable 1 } + + IesSlotEntry ::= + SEQUENCE { + iesSlotId INTEGER, + iesSlotModuleType INTEGER, + iesSlotModuleDescr DisplayString, + iesSlotModuleFWVersion DisplayString, + iesSlotModuleDriverVersion DisplayString, + iesSlotModuleModemCodeVersion DisplayString, + iesSlotModuleStatus INTEGER, + iesSlotModuleAlarmStatus INTEGER + } + + iesSlotId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Identity of the slot" + ::= { iesSlotEntry 1 } + + iesSlotModuleType OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + msc1000-L2(2), + msc1000-ML(3), + alc1024-61(4), + vlc1012(5), + slc1024(6), + alc1024-63(7), + msc1000A(8), + vlc1124(9), + alc1224-71(10), + alc1224-73(11), + slc1224-22(12), + alc1224-51(13), + alc1224-53(14) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Card type of the plug-in card in IES-2000/3000." + ::= { iesSlotEntry 2 } + + iesSlotModuleDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The descriptions of the plug-in card in IES-2000/3000." + ::= { iesSlotEntry 3 } + + + iesSlotModuleFWVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The firmware version of the plug-in card in IES-2000/3000." + ::= { iesSlotEntry 4 } + + iesSlotModuleDriverVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The DSL driver of the plug-in card in IES-2000/3000." + ::= { iesSlotEntry 5 } + + iesSlotModuleModemCodeVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The DSL modem code version of the plug-in card in IES-2000/3000" + ::= { iesSlotEntry 6 } + + + iesSlotModuleStatus OBJECT-TYPE + SYNTAX INTEGER { + empty(1), + up(2), + down(3), + testing(4), + standby(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The module state of the plug-in card in IES-2000/3000" + ::= { iesSlotEntry 7 } + + iesSlotModuleAlarmStatus OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This variable indicates the alarm status of the module. + It is a bit map represented as a sum, therefore, it can represent + multiple defects simultaneously. The moduleNoDefect should be set + if and only if no other flag is set. + + The various bit positions are: + 1 moduleNoDefect + 2 moduleOverHeat + 3 moduleFanRpmLow + 4 moduleVoltageLow + 5 moduleThermalSensorFailure + 6 modulePullOut + 7 powerDC48VAFailure + 8 powerDC48VBFailure + 9 extAlarmInputTrigger + 10 moduleDown + 11 mscSwitchOverOK + 12 networkTopologyChange" + ::= { iesSlotEntry 8 } + + + + iesMscPortConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesMscPortConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table contains port configuration information in MSC1000." + ::= { iesChassis 4 } + + iesMscPortConfEntry OBJECT-TYPE + SYNTAX IesMscPortConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { iesChassisId,iesSlotId,iesMscPortId } + ::= { iesMscPortConfTable 1} + + IesMscPortConfEntry ::= + SEQUENCE { + iesMscPortId INTEGER, + iesMscPortType INTEGER, + iesMscPortIfIndex INTEGER, + iesMscPortSpeed INTEGER, + iesMscPortDuplex INTEGER, + iesMscPortFlowControl INTEGER, + iesMscPortDefaultVLANTagging INTEGER, + iesMscPortTrunkGroupId INTEGER, + iesMscPortMode INTEGER, + iesMscPortVLANTrunking INTEGER + } + + iesMscPortId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Identity of the extension slot in MSC1000." + ::= { iesMscPortConfEntry 1 } + + iesMscPortType OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + e1000BaseT(2), + e1000BaseLX(3), + e1000BaseSX(4), + e100BaseFX(5), + e100BaseTX(6), + e1000BaseGBIC(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Port type of the extension slot in MSC1000." + ::= { iesMscPortConfEntry 2 } + + iesMscPortIfIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { iesMscPortConfEntry 3 } + + iesMscPortSpeed OBJECT-TYPE + SYNTAX INTEGER { + auto(1), + e1000M(2), + e100M(3), + e10M(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { iesMscPortConfEntry 4 } + + iesMscPortDuplex OBJECT-TYPE + SYNTAX INTEGER { + full(1), + half(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { iesMscPortConfEntry 5 } + + iesMscPortFlowControl OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { iesMscPortConfEntry 6 } + + iesMscPortDefaultVLANTagging OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { iesMscPortConfEntry 7 } + + iesMscPortTrunkGroupId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { iesMscPortConfEntry 8 } + + iesMscPortMode OBJECT-TYPE + SYNTAX INTEGER { + uplink(1), + subtending(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " The operational mode for uplink and subtending ports in MSC. Only + the operational mode of subtending ports can be modified." + ::= { iesMscPortConfEntry 9 } + + iesMscPortVLANTrunking OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " The VLAN trunking setting for uplink and subtending ports in MSC." + ::= { iesMscPortConfEntry 10 } + + + +-- System Hardware Monitoring + +-- Fan rpm table + + iesFanRpmTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesFanRpmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains rpm information about the fans." + ::= { iesHWMonitor 1 } + + iesFanRpmEntry OBJECT-TYPE + SYNTAX IesFanRpmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of rpm information for each fan." + INDEX { iesChassisId,iesFanRpmIndex } + ::= { iesFanRpmTable 1 } + + IesFanRpmEntry ::= + SEQUENCE { + iesFanRpmIndex INTEGER, + iesFanRpmCurValue INTEGER, + iesFanRpmMaxValue INTEGER, + iesFanRpmMinValue INTEGER, + iesFanRpmLowThresh INTEGER, + iesFanRpmDescr DisplayString + } + + iesFanRpmIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identity of the fan." + ::= { iesFanRpmEntry 1 } + + iesFanRpmCurValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current rpm of the fan." + ::= { iesFanRpmEntry 2 } + + iesFanRpmMaxValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum rpm ever performed by the fan." + ::= { iesFanRpmEntry 3 } + + iesFanRpmMinValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum rpm ever performed by the fan." + ::= { iesFanRpmEntry 4 } + + iesFanRpmLowThresh OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The low threshold of the rpm of the fan. If the current rpm is less than + the threshold, the device will initiate the fanRpmLow trap." + ::= { iesFanRpmEntry 5 } + + iesFanRpmDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The description of the fan (e.g. location, function, etc.)." + ::= { iesFanRpmEntry 6 } + + + +-- Voltage table + + iesVoltageTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesVoltageEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains voltage information about the system." + ::= { iesHWMonitor 2 } + + iesVoltageEntry OBJECT-TYPE + SYNTAX IesVoltageEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of voltage information for each sensor." + INDEX { iesChassisId,iesSlotId,iesVoltageIndex } + ::= { iesVoltageTable 1 } + + IesVoltageEntry ::= + SEQUENCE { + iesVoltageIndex INTEGER, + iesVoltageCurValue INTEGER, + iesVoltageMaxValue INTEGER, + iesVoltageMinValue INTEGER, + iesVoltageNominalValue INTEGER, + iesVoltageLowThresh INTEGER, + iesVoltageDescr DisplayString + } + + iesVoltageIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identity of the sensor." + ::= { iesVoltageEntry 1 } + + iesVoltageCurValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current voltage detected by the sensor (in milli-voltage)." + ::= { iesVoltageEntry 2 } + + iesVoltageMaxValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum voltage ever detected by the sensor (in milli-voltage)." + ::= { iesVoltageEntry 3 } + + iesVoltageMinValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum voltage ever detected by the sensor (in milli-voltage)." + ::= { iesVoltageEntry 4 } + + iesVoltageNominalValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The nominal voltage which the power should supply (in milli-voltage)." + ::= { iesVoltageEntry 5 } + + iesVoltageLowThresh OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The low threshold of the voltage (in milli-voltage). If the current voltage + is less than the threshold, the device will initiate the voltageLow trap." + ::= { iesVoltageEntry 6 } + + iesVoltageDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The description of the voltage (e.g. location, nominal value, etc.)." + ::= { iesVoltageEntry 7 } + + + +-- System temperature table + + iesSysTempTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesSysTempEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information about system." + ::= { iesHWMonitor 3 } + + iesSysTempEntry OBJECT-TYPE + SYNTAX IesSysTempEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information for each sensor." + INDEX { iesChassisId,iesSlotId,iesSysTempIndex } + ::= { iesSysTempTable 1 } + + IesSysTempEntry ::= + SEQUENCE { + iesSysTempIndex INTEGER, + iesSysTempCurValue INTEGER, + iesSysTempMaxValue INTEGER, + iesSysTempMinValue INTEGER, + iesSysTempHighThresh INTEGER, + iesSysTempDescr DisplayString + } + + iesSysTempIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identity of the sensor." + ::= { iesSysTempEntry 1 } + + iesSysTempCurValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current temperature detected in Celsius by the sensor." + ::= { iesSysTempEntry 2 } + + iesSysTempMaxValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum temperature ever detected in Celsius by the sensor." + ::= { iesSysTempEntry 3 } + + iesSysTempMinValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum temperature ever detected in Celsius by the sensor." + ::= { iesSysTempEntry 4 } + + iesSysTempHighThresh OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The high threshold of the temperature in Celsius. If the current temperature + is higher than the threshold, the device will initiate the overheat trap." + ::= { iesSysTempEntry 5 } + + iesSysTempDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The description of the temperature sensor (e.g. location, function, etc.)." + ::= { iesSysTempEntry 6 } + + + +-- System Management + + -- System Status + + iesSystemCurrentStatus OBJECT-TYPE + SYNTAX INTEGER(0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This variable indicates the status of the system. + The sysCurrentStatus is a bit map represented + as a sum, therefore, it can represent multiple defects + simultaneously. The sysNoDefect should be set if and only if + no other flag is set. + + The various bit positions are: + 1 sysNoDefect + 2 sysOverHeat + 3 sysFanRpmLow + 4 sysVoltageLow + 5 sysThermalSensorFailure + 6 modulePullOut + 7 powerDC48VAFailure + 8 powerDC48VBFailure + 9 extAlarmInputTrigger + 10 moduleDown + 11 mscSwitchOverOK + 12 networkTopologyChange" + + ::= {iesSysState 1 } + + iesProblemCause OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "It describes the problem occurred in the system, e.g. maintenance + operation failures, system reboot, error log, ...etc." + ::= { iesSysState 2 } + + + +-- System Maintenance + + iesMaintenanceOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is for system maintenance. When the EMS + wants to trigger the system maitenance operation, the EMS + shall send SNMP-SET message to set the corresponding bit value + to be 1. The various bit positions are: + BIT 1: config save + BIT 2: reset + BIT 3: local loopback test + BIT 4: remote loopback test + BIT 5: clear system alarms + BIT 6: F4 loopback test + BIT 7: F5 loopback test + BIT 8: DSL Line Diagnostic" + ::= { iesSysMaintenance 1 } + + iesMaintenanceTarget OBJECT-TYPE + SYNTAX INTEGER (1..48) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is used for identify the target on which + the maintenance operation should be performed." + ::= { iesSysMaintenance 2 } + + +-- variables for provisioning DSL line in batch mode + + iesMaintenanceDSLConfOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is for xDSL line configuration. When the EMS + wants to issue the desired operation, the EMS + shall send SNMP-SET message to set the corresponding bit value + to be 1. The various bit positions are: + BIT 1: enable port + BIT 2: disable port + BIT 3: set DSL mode + BIT 4: set profile + BIT 5: enable mac filter + BIT 6: disable mac filter + BIT 7: set packet filter + BIT 8: enable dot1x + BIT 9: disable dot1x + BIT 10: set dot1x control + BIT 11: enable dot1x re-authentication + BIT 12: disable dot1x re-authentication + BIT 13: set dot1x re-authentication period + BIT 14: enable mac count filter + BIT 15: disable mac count filter + BIT 16: set mac count filter + BIT 17: set alarm profile + BIT 18: set Annex L (Only in AnnexA) + BIT 19: set power management + BIT 20: set rate adaptation mode + BIT 21: set IGMP filter (Not support after E5-111 v3.0) + BIT 22: enable Annex M + BIT 23: disable Annex M" + ::= { iesSysMaintenance 3 } + + iesMaintenanceDSLConfTarget OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is used for identify the target on which + the line configuration should be performed. The target is encoded + as: + Byte 1: the octet specifies a set of eight Chassis, Chassis 0 through 7 + Byte 2~3: each octet specifies a set of eight slots, with the + first octet specifying slots 1 through 8 and the second + octet specifying slots 9 through 16. + Byte 4: reserved + Byte 5~11: each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc." + ::= { iesSysMaintenance 4 } + + iesMaintenanceDSLConfProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The DSL profile name" + ::= { iesSysMaintenance 5 } + + iesMaintenanceDSLConfMode OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The DSL mode. The semantic for each bit is: + Bit 1: ADSL, G.lite + Bit 2: ADSL, G.dmt + Bit 3: ADSL, T1.413 + Bit 4: ADSL, Auto + Bit 5: ADSL, ETSI + Bit 6: ADSL2, + Bit 7: ADSL2+" + ::= { iesSysMaintenance 6 } + + iesMaintenanceDSLConfPktFilter OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The packet filter. The semantic for each bit is: + Bit 1: accept all + Bit 2: accept PPPoE only + Bit 3: reject ARP + Bit 4: reject DHCP + Bit 5: reject EAPOL + Bit 6: reject PPPoE + Bit 7: reject NetBIOS + Bit 8: reject IGMP + Bit 9: reject IP" + ::= { iesSysMaintenance 7 } + + iesMaintenanceDSLConfDot1xControl OBJECT-TYPE + SYNTAX INTEGER { + auto(1), + forceAuth(2), + forceUnAuth(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configuration defines the 802.1x control type." + ::= { iesSysMaintenance 8 } + + iesMaintenanceDSLConfDot1xReauthPeriod OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configuration defines the 802.1x re-authentication period (seconds)." + ::= { iesSysMaintenance 9 } + + iesMaintenanceDSLConfMacCount OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configuration defines the number of mac addresses which can pass through the port." + ::= { iesSysMaintenance 10 } + + iesMaintenanceVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VPI of the channel" + ::= { iesSysMaintenance 11 } + + iesMaintenanceVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VCI of the channel" + ::= { iesSysMaintenance 12 } + + iesMaintenanceDSLConfAlarmProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The DSL alarm profile name" + ::= { iesSysMaintenance 13 } + + iesMaintenanceDSLConfAnnexL OBJECT-TYPE + SYNTAX INTEGER { + enableNarrowMode(1), + enableWideMode(2), + disable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The annex L setting of the ADSL line (Only in AnnexA)." + ::= { iesSysMaintenance 14 } + + iesMaintenanceDSLConfPmMode OBJECT-TYPE + SYNTAX INTEGER { + enableL2Mode(1), + enableL3Mode(2), + disable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The power management mode of the ADSL line." + ::= { iesSysMaintenance 15 } + + iesMaintenanceDSLConfRateMode OBJECT-TYPE + SYNTAX INTEGER { + fixed(1), -- no rate adaptation + adaptAtStartup(2), -- perform rate adaptation + -- only at initialization + adaptAtRuntime(3) -- perform rate adaptation at + -- any time + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Defines what form of transmit rate adaptation is + configured on this modem. See ADSL Forum TR-005 [3] + for more information." + ::= { iesSysMaintenance 16 } + + iesMaintenanceDSLConfIgmpFilter OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IGMP filter name." + ::= { iesSysMaintenance 17 } + + + -- System Time Setup + + iesTimeServerMode OBJECT-TYPE + SYNTAX INTEGER { + none(1), + daytime(2), + time(3), + ntp(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The mechanism of Time Server when the system boots up." + ::= { iesSysTimeSetup 1 } + + iesTimeServerIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP Address of Time Server" + ::= { iesSysTimeSetup 2 } + + iesSystemTime OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The system time" + ::= { iesSysTimeSetup 3 } + + iesSystemDate OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The system date" + ::= { iesSysTimeSetup 4 } + + iesSystemTimeZone OBJECT-TYPE + SYNTAX INTEGER { + none(0), + utc-1200(1), + utc-1100(2), + utc-1000(3), + utc-0900(4), + utc-0800(5), + utc-0700(6), + utc-0600(7), + utc-0500(8), + utc-0400(9), + utc-0300(10), + utc-0200(11), + utc-0100(12), + utc(13), + utc0100(14), + utc0200(15), + utc0300(16), + utc0400(17), + utc0500(18), + utc0600(19), + utc0700(20), + utc0800(21), + utc0900(22), + utc1000(23), + utc1100(24), + utc1200(25) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The system time zone" + ::= { iesSysTimeSetup 5 } + + + +-- System Access Control + + iesAccessCtrlTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesAccessCtrlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about service access control." + ::= { iesSysAccessControl 1 } + + iesAccessCtrlEntry OBJECT-TYPE + SYNTAX IesAccessCtrlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of access control entry." + INDEX { iesAccessCtrlService } + ::= { iesAccessCtrlTable 1 } + + IesAccessCtrlEntry ::= + SEQUENCE { + iesAccessCtrlService INTEGER, + iesAccessCtrlEnable INTEGER, + iesAccessCtrlPort INTEGER + } + + iesAccessCtrlService OBJECT-TYPE + SYNTAX INTEGER { + telnet(1), + ftp(2), + web(3), + icmp(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The service type of the access control entry." + ::= { iesAccessCtrlEntry 1 } + + iesAccessCtrlEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable the service." + ::= { iesAccessCtrlEntry 2 } + + iesAccessCtrlPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port number which the service uses." + ::= { iesAccessCtrlEntry 3 } + + -- secured client table + iesMaxNumOfSecuredClients OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of sets of secured clients." + ::= { iesSysAccessControl 2} + + iesSecuredClientTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesSecuredClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about secured clients." + ::= { iesSysAccessControl 3 } + + iesSecuredClientEntry OBJECT-TYPE + SYNTAX IesSecuredClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of secured client entry." + INDEX { iesSecuredClientStartIp, iesSecuredClientEndIp } + ::= { iesSecuredClientTable 1 } + + IesSecuredClientEntry ::= + SEQUENCE { + iesSecuredClientStartIp IpAddress, + iesSecuredClientEndIp IpAddress, + iesSecuredClientService INTEGER, + iesSecuredClientRowStatus RowStatus + } + + iesSecuredClientStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The starting IP address of a set of secured clients." + ::= { iesSecuredClientEntry 1 } + + iesSecuredClientEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ending IP address of a set of secured clients." + ::= { iesSecuredClientEntry 2 } + + iesSecuredClientService OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Each bit corresponds to a service. The bit is set to 1 if the + service is enabled, and set to 0 if the service is disabled. + The various bit positions are: + BIT 1: telnet + BIT 2: FTP + BIT 3: web + BIT 4: ICMP" + ::= { iesSecuredClientEntry 3 } + + iesSecuredClientRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or modify or delete an existing row + in this table. A row is activated by setting this object to `active', and is + deactivated by setting it to 'notInService'." + ::= { iesSecuredClientEntry 4 } + + + +-- Static Route + + iesMaxNumOfStaticRoutes OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of static routes." + ::= { iesSysStaticRoute 1 } + + iesStaticRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesStaticRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about static routes." + ::= { iesSysStaticRoute 2 } + + iesStaticRouteEntry OBJECT-TYPE + SYNTAX IesStaticRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of static route entry." + INDEX { iesStaticRouteName } + ::= { iesStaticRouteTable 1 } + + IesStaticRouteEntry ::= + SEQUENCE { + iesStaticRouteName DisplayString, + iesStaticRouteDest IpAddress, + iesStaticRouteMask IpAddress, + iesStaticRouteGateway IpAddress, + iesStaticRouteMetric INTEGER, + iesStaticRouteRowStatus RowStatus + } + + iesStaticRouteName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the static route." + ::= { iesStaticRouteEntry 1 } + + iesStaticRouteDest OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The destination IP address of the static route." + ::= { iesStaticRouteEntry 2 } + + iesStaticRouteMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The subnet mask of the static route." + ::= { iesStaticRouteEntry 3 } + + iesStaticRouteGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The gateway IP address of the static route." + ::= { iesStaticRouteEntry 4 } + + iesStaticRouteMetric OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The routing metric of the static route." + ::= { iesStaticRouteEntry 5 } + + iesStaticRouteRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or modify or delete an existing row + in this table. A row is activated by setting this object to `active', and is + deactivated by setting it to 'notInService'." + ::= { iesStaticRouteEntry 6 } + + + +-- syslog + + iesSysLogEnable OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable syslog function." + ::= { iesSyslogSetup 1 } + + iesSysLogServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IP address of the syslog server." + ::= { iesSyslogSetup 2 } + + iesSysLogFacility OBJECT-TYPE + SYNTAX INTEGER { + local1(1), + local2(2), + local3(3), + local4(4), + local5(5), + local6(6), + local7(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Log facility used by the syslog function." + ::= { iesSyslogSetup 3 } + + + +-- DHCP Setup + + iesDhcpRelayEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable DHCP relay function." + ::= { iesSysDhcpSetup 1 } + + iesDhcpRelayOption82Enable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable DHCP relay Option82 function." + ::= { iesSysDhcpSetup 2 } + + iesDhcpRelayOption82Info OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "User specific Option82 information." + ::= { iesSysDhcpSetup 3 } + + iesMaxNumOfDhcpServers OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of DHCP servers." + ::= { iesSysDhcpSetup 4 } + + iesDhcpServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesDhcpServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains DHCP server information." + ::= { iesSysDhcpSetup 5 } + + iesDhcpServerEntry OBJECT-TYPE + SYNTAX IesDhcpServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of DHCP server table." + INDEX { iesDhcpServerIp } + ::= { iesDhcpServerTable 1 } + + IesDhcpServerEntry ::= + SEQUENCE { + iesDhcpServerIp IpAddress, + iesDhcpServerRowStatus RowStatus + } + + iesDhcpServerIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of the DHCP server." + ::= { iesDhcpServerEntry 1 } + + iesDhcpServerRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the DHCP server entry." + ::= { iesDhcpServerEntry 2 } + +-- SNMP setup, Trap Destination + + iesMaxNumberOfTrapDestinations OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of the trap destinations." + ::= { iesSysSNMPSetup 1 } + + iesSNMPTrapDestTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesSNMPTrapDestEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains SNMP trap destination information." + ::= { iesSysSNMPSetup 2 } + + iesSNMPTrapDestEntry OBJECT-TYPE + SYNTAX IesSNMPTrapDestEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of SNMP trap destination table." + INDEX { iesTrapDestIp, iesTrapDestPort } + ::= { iesSNMPTrapDestTable 1 } + + IesSNMPTrapDestEntry ::= + SEQUENCE { + iesTrapDestIp IpAddress, + iesTrapDestPort INTEGER, + iesTrapDestRowStatus RowStatus + } + + iesTrapDestIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of the trap destination." + ::= { iesSNMPTrapDestEntry 1 } + + iesTrapDestPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The UDP port of the trap destination." + ::= { iesSNMPTrapDestEntry 2 } + + iesTrapDestRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the trap destination entry." + ::= { iesSNMPTrapDestEntry 3} + + iesSnmpGetCommunity OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The SNMP get community." + ::= { iesSysSNMPSetup 3 } + + iesSnmpSetCommunity OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The SNMP set community." + ::= { iesSysSNMPSetup 4 } + + iesSnmpTrapCommunity OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The SNMP trap community." + ::= { iesSysSNMPSetup 5 } + + +-- RADIUS Server setup + + iesMaxNumberOfRadiusServers OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of the RADIUS Servers." + ::= { iesSysDot1xSetup 1 } + + iesRadiusServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesRadiusServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains Radius Server information." + ::= { iesSysDot1xSetup 2 } + + iesRadiusServerEntry OBJECT-TYPE + SYNTAX IesRadiusServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of Radius Server table." + INDEX { iesRadiusServerIndex } + ::= { iesRadiusServerTable 1 } + + IesRadiusServerEntry ::= + SEQUENCE { + iesRadiusServerIndex INTEGER, + iesRadiusServerIp IpAddress, + iesRadiusServerPort INTEGER, + iesRadiusSharedSecret DisplayString, + iesRadiusServerRowStatus RowStatus + } + + iesRadiusServerIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identity of the RADIUS server." + ::= { iesRadiusServerEntry 1 } + + iesRadiusServerIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The IP address of the Radius Server." + ::= { iesRadiusServerEntry 2 } + + iesRadiusServerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The UDP port of the Radius Server." + ::= { iesRadiusServerEntry 3 } + + iesRadiusSharedSecret OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The shared secret of the Radius Server." + ::= { iesRadiusServerEntry 4 } + + iesRadiusServerRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the Radius Server entry." + ::= { iesRadiusServerEntry 5 } + + +-- 802.1x option + + iesDot1xEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable the 802.1x function." + ::= { iesSysDot1xSetup 3 } + + + +-- 802.1x Table + + iesDot1xPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesDot1xPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the configuration of 802.1x." + ::= { iesSysDot1xSetup 4 } + + iesDot1xPortEntry OBJECT-TYPE + SYNTAX IesDot1xPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in iesDot1xPortTable." + INDEX { ifIndex } + ::= { iesDot1xPortTable 1 } + + IesDot1xPortEntry ::= + SEQUENCE { + iesDot1xPortEnable INTEGER, + iesDot1xPortControl INTEGER, + iesDot1xPortReAuthEnable INTEGER, + iesDot1xPortReAuthPeriod INTEGER + } + + iesDot1xPortEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The option defines if the port enables 802.1x + settings." + ::= { iesDot1xPortEntry 1 } + + iesDot1xPortControl OBJECT-TYPE + SYNTAX INTEGER { + auto(1), + forceAuth(2), + forceUnAuth(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configuration defines the 802.1x port control + type." + ::= { iesDot1xPortEntry 2 } + + iesDot1xPortReAuthEnable OBJECT-TYPE + SYNTAX INTEGER { + on(1), + off(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The option defines if the port enables 802.1x + re-authentication." + ::= { iesDot1xPortEntry 3 } + + iesDot1xPortReAuthPeriod OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configuration defines the 802.1x + re-authentication period (seconds) for each port." + ::= { iesDot1xPortEntry 4 } + + + +-- Mac Filter + + iesMacFilterStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesMacFilterStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the status of mac filtering for each port." + ::= { iesSysMacFilter 1 } + + iesMacFilterStatusEntry OBJECT-TYPE + SYNTAX IesMacFilterStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in iesMacFilterStatusTable." + INDEX { ifIndex } + ::= { iesMacFilterStatusTable 1 } + + IesMacFilterStatusEntry ::= + SEQUENCE { + iesMacFilterStatusEnable INTEGER + } + + iesMacFilterStatusEnable OBJECT-TYPE + SYNTAX INTEGER { + enableAccept(1), + disable(2), + enableDeny(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The option defines if the port enables mac filtering." + ::= { iesMacFilterStatusEntry 1 } + + iesMaxNumberOfMacFilters OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of the mac filters in the system." + ::= { iesSysMacFilter 2 } + + iesMaxNumberOfMacFiltersPerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of the mac filters for each port." + ::= { iesSysMacFilter 3 } + + iesCurrNumberOfMacFilters OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of the mac filters in the system." + ::= { iesSysMacFilter 4 } + + iesMacFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesMacFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains the mac filtering information." + ::= { iesSysMacFilter 5 } + + iesMacFilterEntry OBJECT-TYPE + SYNTAX IesMacFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of iesMacFilterTable." + INDEX { ifIndex, iesMacFilterMacAddr } + ::= { iesMacFilterTable 1 } + + IesMacFilterEntry ::= + SEQUENCE { + iesMacFilterMacAddr PhysAddress, + iesMacFilterRowStatus RowStatus + } + + iesMacFilterMacAddr OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The mac address which can pass through the port." + ::= { iesMacFilterEntry 1 } + + iesMacFilterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the entry." + ::= { iesMacFilterEntry 2 } + + + +-- Packet Filter + + iesPacketFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesPacketFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes packet filtering for each port." + ::= { iesSysPacketFilter 1 } + + iesPacketFilterEntry OBJECT-TYPE + SYNTAX IesPacketFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in iesPacketFilterTable." + INDEX { ifIndex } + ::= { iesPacketFilterTable 1 } + + IesPacketFilterEntry ::= + SEQUENCE { + iesPacketFilter INTEGER + } + + iesPacketFilter OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The packet filter. The semantic for each bit is: + Bit 1: accept all + Bit 2: accept PPPoE only + Bit 3: reject ARP + Bit 4: reject DHCP + Bit 5: reject EAPOL + Bit 6: reject PPPoE + Bit 7: reject NetBIOS + Bit 8: reject IGMP + Bit 9: reject IP" + ::= { iesPacketFilterEntry 1 } + + + +-- Mac Count Filter + + iesMacCountFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesMacCountFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes mac count filtering for each port." + ::= { iesSysMacCountFilter 1 } + + iesMacCountFilterEntry OBJECT-TYPE + SYNTAX IesMacCountFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in iesMacCountFilterTable." + INDEX { ifIndex } + ::= { iesMacCountFilterTable 1 } + + IesMacCountFilterEntry ::= + SEQUENCE { + iesMacCountFilterStatus INTEGER, + iesMacCountFilterCount INTEGER + } + + iesMacCountFilterStatus OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The option defines if the port enables mac count filtering." + ::= { iesMacCountFilterEntry 1 } + + iesMacCountFilterCount OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The number of mac addresses which can pass through the port." + ::= { iesMacCountFilterEntry 2 } + + + +-- Static Multicast Group + + iesMaxNumberOfMulticastGroups OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of static multicast groups in the system." + ::= { iesSysMulticastGroup 1 } + + iesMulticastGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesMulticastGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains static multicast group information." + ::= { iesSysMulticastGroup 2 } + + iesMulticastGroupEntry OBJECT-TYPE + SYNTAX IesMulticastGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of multicast group table." + INDEX { iesMulticastGroupMacAddr } + ::= { iesMulticastGroupTable 1 } + + IesMulticastGroupEntry ::= + SEQUENCE { + iesMulticastGroupMacAddr PhysAddress, + iesMulticastGroupPorts PortList, + iesMulticastGroupRowStatus RowStatus + } + + iesMulticastGroupMacAddr OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The multicast MAC address of the group." + ::= { iesMulticastGroupEntry 1 } + + iesMulticastGroupPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The port list which specifies the ports joining the multicast group." + ::= { iesMulticastGroupEntry 2 } + + iesMulticastGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the multicast group entry." + ::= { iesMulticastGroupEntry 3 } + + +-- IGMP Filter +-- Obsoleted since Revision 3.0.0 at 2009/11/26 by maverick +-- Not used for R3.x and above. + + + iesMaxNumberOfIgmpFilters OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of IGMP filters in the system." + ::= { iesSysIgmpFilter 1 } + + iesIgmpFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesIgmpFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains IGMP filters." + ::= { iesSysIgmpFilter 2 } + + iesIgmpFilterEntry OBJECT-TYPE + SYNTAX IesIgmpFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of IGMP filter table." + INDEX { iesIgmpFilterName, iesIgmpFilterIndex } + ::= { iesIgmpFilterTable 1 } + + IesIgmpFilterEntry ::= + SEQUENCE { + iesIgmpFilterName OCTET STRING, + iesIgmpFilterIndex INTEGER, + iesIgmpFilterStartIp IpAddress, + iesIgmpFilterEndIp IpAddress, + iesIgmpFilterRowStatus RowStatus + } + + iesIgmpFilterName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IGMP filter name." + ::= { iesIgmpFilterEntry 1 } + + iesIgmpFilterIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index which specifies the filter rule." + ::= { iesIgmpFilterEntry 2 } + + iesIgmpFilterStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The start IP of the filter rule." + ::= { iesIgmpFilterEntry 3 } + + iesIgmpFilterEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The end IP of the filter rule." + ::= { iesIgmpFilterEntry 4 } + + iesIgmpFilterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the IGMP filter entry." + ::= { iesIgmpFilterEntry 5 } + + iesIgmpFilterPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesIgmpFilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table specifies the IGMP filter of the port." + ::= { iesSysIgmpFilter 3 } + + iesIgmpFilterPortEntry OBJECT-TYPE + SYNTAX IesIgmpFilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An entry in iesIgmpFilterPortTable." + INDEX { ifIndex } + ::= { iesIgmpFilterPortTable 1 } + + IesIgmpFilterPortEntry ::= + SEQUENCE { + iesIgmpFilterPortFilter OCTET STRING + } + + iesIgmpFilterPortFilter OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IGMP filter of the port." + ::= { iesIgmpFilterPortEntry 1 } + + +-- L2 Switch Configuration + + iesIGMPSnoopingEnabled OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A flag indicating whether IGMP snooping function is enabled or not." + ::= { iesL2SW 1 } + + iesManagementVLANId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The VLAN ID for management." + ::= { iesL2SW 2 } + + iesMaxNumOfStaticVlans OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of static VLANs supported by the system." + ::= { iesL2SW 3 } + + iesPortIsolationEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A flag indicating whether VLAN port isolation function is enabled or not." + ::= { iesL2SW 6 } + + iesRSTPEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/Disable RSTP." + ::= { iesL2SW 7 } + + iesSwitchMode OBJECT-TYPE + SYNTAX INTEGER { + daisyChain(1), + standalone(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Switch DSLAM's operatrion Mode." + ::= { iesL2SW 8 } + + + -- Trunk Group + + iesMaxNumOfTrunkGroups OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of trunk groups." + ::= { iesL2SW 4} + + iesTrunkGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesTrunkGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains trunk group configuration." + ::= { iesL2SW 5 } + + iesTrunkGroupEntry OBJECT-TYPE + SYNTAX IesTrunkGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of trunk group table" + INDEX { iesTrunkGroupId } + ::= { iesTrunkGroupTable 1 } + + IesTrunkGroupEntry ::= + SEQUENCE { + iesTrunkGroupId INTEGER, + iesTrunkGroupName DisplayString, + iesTrunkGroupPorts PortList, + iesTrunkGroupRowStatus RowStatus + } + + iesTrunkGroupId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ID of the trunk group" + ::= { iesTrunkGroupEntry 1 } + + iesTrunkGroupName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The name of the trunk group" + ::= { iesTrunkGroupEntry 2 } + + iesTrunkGroupPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The port list of the trunk group" + ::= { iesTrunkGroupEntry 3 } + + iesTrunkGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the trunk group entry" + ::= { iesTrunkGroupEntry 4 } + + +-- Enterprise specific traps + + reboot TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + iesProblemCause + } + DESCRIPTION "Send a message to the manager that the system is going to reboot. + The variable is the reason why the system reboots." + ::= 1 + + systemShutdown TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + iesProblemCause + } + DESCRIPTION "Send a message to the manager that the system is going to shutdown. + The variable is the reason that causes the system to shutdown." + ::= 2 + + overheat TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + iesChassisId, + iesSlotId, + iesSysTempIndex, + iesSysTempCurValue + } + DESCRIPTION "Send a message to the manager that the system is overheated. + The variable in the binding list is the current temperature in Celsius + of the system." + ::= 3 + + overheatOver TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + iesChassisId, + iesSlotId, + iesSysTempIndex, + iesSysTempCurValue + } + DESCRIPTION "Send a message to the manager that the overheated condition is over. + The variable in the binding list is the current temperature in Celsius + of the system." + ::= 4 + + errLog TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + iesProblemCause + } + DESCRIPTION "Send a message to the manager that an error log is created in system. + The variable in the binding list is the content of the error log." + ::= 5 + + fanRpmLow TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + iesChassisId, + iesFanRpmIndex, + iesFanRpmCurValue + } + DESCRIPTION "Send a message to the manager that the rpm of the fan is too low. + The variable in the binding list is the current rpm of the fan." + ::= 6 + + fanRpmNormal TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + iesChassisId, + iesFanRpmIndex, + iesFanRpmCurValue + } + DESCRIPTION "Send a message to the manager that the low-rpm condition of the fan is over. + The variable in the binding list is the current rpm of the fan." + ::= 7 + + voltageOutOfRange TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + iesChassisId, + iesSlotId, + iesVoltageIndex, + iesVoltageCurValue + } + DESCRIPTION "Send a message to the manager that the voltage of the system is out of range. + The variable in the binding list is the current voltage in volt + of the system." + ::= 8 + + voltageNormal TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + iesChassisId, + iesSlotId, + iesVoltageIndex, + iesVoltageCurValue + } + DESCRIPTION "Send a message to the manager that the low-voltage condition is over. + The variable in the binding list is the current voltage in volt + of the system." + ::= 9 + + systemMaintenanceFailure TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + iesChassisId, + iesSlotId, + iesProblemCause + } + DESCRIPTION "Send a message to the manager that the system maintence operation + fail. The variable in the variable binding indicates the problem." + ::= 10 + + configChange TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + iesChassisId, + iesSlotId, + iesProblemCause + } + DESCRIPTION "This notification indicates that the configuration data of one module is changed." + ::= 11 + + moduleUp TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + iesChassisId, + iesSlotId + } + DESCRIPTION "A moduleUp trap signifies that the sending + protocol entity recognizes that one of the + modules represented in the agent's + configuration has come up." + ::= 12 + + moduleDown TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + iesChassisId, + iesSlotId + } + DESCRIPTION "A moduleDown trap signifies that the sending + protocol entity recognizes a failure in one of + the modules represented in the agent's + configuration." + ::= 13 + + modulePlugIn TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + iesChassisId, + iesSlotId + } + DESCRIPTION "A modulePlugIn trap signifies that the sending + protocol entity recognizes that one module is + plugged into the device." + ::= 14 + + modulePullOut TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + iesChassisId, + iesSlotId + } + DESCRIPTION "A modulePullOut trap signifies that the sending + protocol entity recognizes one module is pulled out + from the device." + ::= 15 + + powerDC48VAFailure TRAP-TYPE + ENTERPRISE e5x110 +-- VARIABLES { +-- } + DESCRIPTION "The trap signifies that the power supply of DC 48V at the + right side of main Chassis (front view) failed." + ::= 16 + + powerDC48VANormal TRAP-TYPE + ENTERPRISE e5x110 +-- VARIABLES { +-- } + DESCRIPTION "The trap signifies that the power supply of DC 48V at the + right side of main Chassis (front view) is in normal state." + ::= 17 + + powerDC48VBFailure TRAP-TYPE + ENTERPRISE e5x110 +-- VARIABLES { +-- } + DESCRIPTION "The trap signifies that the power supply of DC 48V at the + left side of main Chassis (front view) failed." + ::= 18 + + powerDC48VBNormal TRAP-TYPE + ENTERPRISE e5x110 +-- VARIABLES { +-- } + DESCRIPTION "The trap signifies that the power supply of DC 48V at the + left side of main Chassis (front view) is in normal state." + ::= 19 + + extAlarmInputTrigger TRAP-TYPE + ENTERPRISE e5x110 +-- VARIABLES { +-- } + DESCRIPTION "The trap signifies that the external alarm input of MSC card + is triggered." + ::= 20 + + extAlarmInputRelease TRAP-TYPE + ENTERPRISE e5x110 +-- VARIABLES { +-- } + DESCRIPTION "The trap signifies that the external alarm input of MSC card + is released." + ::= 21 + + thermalSensorFailure TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + iesChassisId, + iesSlotId + } + DESCRIPTION "The trap signifies that the thermal sensor failed." + ::= 22 + + + + mscSwitchOverOK TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + iesChassisId, + iesSlotId + } + DESCRIPTION "The trap signifies that MSC card is switched over successfully. The value of + iesSlotId is the slot ID of the current working MSC." + ::= 23 + + + networkTopologyChange TRAP-TYPE + ENTERPRISE e5x110 +-- VARIABLES { +-- } + DESCRIPTION "The trap signifies the network topology is changed." + ::= 24 + + adslAtucLof TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + ifIndex + } + DESCRIPTION "The trap signifies ATU-C Loss of Framing." + ::= 25 + + adslAturLof TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + ifIndex + } + DESCRIPTION "The trap signifies ATU-R Loss of Framing." + ::= 26 + + adslAtucLos TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + ifIndex + } + DESCRIPTION "The trap signifies ATU-C Loss of Signal." + ::= 27 + + adslAturLos TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + ifIndex + } + DESCRIPTION "The trap signifies ATU-R Loss of Signal." + ::= 28 + + adslAturLpr TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + ifIndex + } + DESCRIPTION "The trap signifies ATU-R Loss of Power." + ::= 29 + + adslAtucLofClear TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + ifIndex + } + DESCRIPTION "The trap signifies ATU-C Loss of Framing is cleared." + ::= 30 + + adslAturLofClear TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + ifIndex + } + DESCRIPTION "The trap signifies ATU-R Loss of Framing is cleared." + ::= 31 + + adslAtucLosClear TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + ifIndex + } + DESCRIPTION "The trap signifies ATU-C Loss of Signal is cleared." + ::= 32 + + adslAturLosClear TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + ifIndex + } + DESCRIPTION "The trap signifies ATU-R Loss of Signal is cleared." + ::= 33 + + adslAturLprClear TRAP-TYPE + ENTERPRISE e5x110 + VARIABLES { + ifIndex + } + DESCRIPTION "The trap signifies ATU-R Loss of Power is cleared." + ::= 34 + +END diff --git a/mibs/calix/E5-110-MIB b/mibs/calix/E5-110-MIB new file mode 100644 index 0000000000..37d953fa09 --- /dev/null +++ b/mibs/calix/E5-110-MIB @@ -0,0 +1,7926 @@ +-- $Log: E5-110-MIB.mib $ +-- Revision 1.43 2011/01/25 13:33:29 cylien +-- Revision 1.42 2010/11/12 06:27:45 DavidGong +-- Revision 1.41 2010/10/18 06:23:51 cylien +-- Revision 1.40 2010/09/08 07:07:27 Alex.Shih +-- Revision 1.39 2010/09/01 06:56:00 cylien +-- Revision 1.38 2010/08/27 08:04:37 Alex.Shih +-- Revision 1.37 2010/08/24 11:29:14 davidgong +-- Revision 1.36 2010/08/23 10:00:23 davidgong +-- Revision 1.35 2010/08/19 08:12:03 Alex.Shih +-- Revision 1.34 2010/08/19 06:41:33 davidgong +-- Revision 1.33 2010/08/18 06:54:57 davidgong +-- Revision 1.32 2010/07/21 03:30:35 Alex.Shih +-- Revision 1.31 2010/07/09 11:08:59 Alex.Shih +-- Revision 1.29 2010/05/04 10:02:46 cylien +-- Revision 1.28 2010/04/23 10:46:21 maverick +-- Revision 1.27 2010/04/23 09:14:33 Ives +-- Revision 1.26 2010/04/23 08:27:24 cylien +-- Revision 1.25 2010/03/29 02:05:57 maverick +-- Revision 1.24 2009/12/03 10:55:05 maverick +-- Revision 1.23 2009/11/30 01:14:34 maverick +-- Revision 1.22 2009/11/27 13:19:32 maverick +-- Revision 1.21 2009/11/26 13:06:53 maverick +-- add comment to obsoleted mib entries, mibble checked +-- Revision 1.20 2009/11/23 06:51:50 maverick +-- Revision 1.19 2009/11/06 02:10:37 maverick +-- remove cfm, change atmqos to ipqos +-- Revision 1.18 2009/10/26 02:39:01 maverick +-- Revision 1.17 2009/10/19 10:32:53 maverick +-- Revision 1.16 2009/09/16 02:55:29 niceguy +-- Revision 1.15 2009/09/15 05:51:27 maverick +-- Revision 1.14 2009/09/04 11:06:57 maverick +-- Revision 1.13 2009/09/01 01:32:32 maverick +-- Revision 1.12 2009/06/03 08:43:22 niceguy +-- Revision 1.11 2009/05/08 10:18:25 niceguy +-- Revision 1.10 2009/03/23 11:53:55 niceguy +-- Revision 1.9 2009/03/18 02:16:23 niceguy +-- Revision 1.8 2009/03/17 09:43:04 niceguy +-- Revision 1.7 2009/03/17 08:05:06 niceguy +-- Revision 1.6 2009/03/12 11:01:04 niceguy +-- Revision 1.5 2009/03/12 03:32:03 niceguy +-- Revision 1.4 2009/03/10 11:02:50 niceguy +-- Revision 1.3 2009/03/09 00:58:46 niceguy +-- Revision 1.2 2008/11/12 08:19:33 kenny +-- Revision 1.1 2008/07/11 09:36:12 maverick +-- Initial revision +-- Revision 1.8 2008/06/30 07:43:20 maverick +-- Revision 1.7 2008/04/28 02:29:16 maverick +-- Revision 1.6 2008/03/07 07:56:43 kenny +-- Revision 1.5 2007/12/14 10:00:11 niceguy +-- Revision 1.4 2007/12/14 02:42:41 niceguy +-- Revision 1.3 2007/12/06 02:03:04 kenny +-- Revision 1.2 2007/12/03 01:54:35 niceguy +-- Revision 1.1 2007/12/03 01:45:30 niceguy +-- Initial revision +-- Initial revision + + + E5-110-MIB DEFINITIONS ::= BEGIN + + IMPORTS + + enterprises + FROM RFC1155-SMI + OBJECT-TYPE, Counter32, Gauge32, Unsigned32, Counter64, IpAddress, TimeTicks, NOTIFICATION-TYPE + FROM SNMPv2-SMI + DisplayString, PhysAddress, ifIndex + FROM RFC1213-MIB + RowStatus, TEXTUAL-CONVENTION + FROM SNMPv2-TC + VlanIndex, PortList, dot1qVlanIndex + FROM Q-BRIDGE-MIB + dot1dTrafficClass + FROM P-BRIDGE-MIB + MacAddress, Timeout, BridgeId, dot1dBasePort + FROM BRIDGE-MIB; +-- dot1agCfmMdMdLevel, dot1agCfmVlanPrimaryVid, dot1agCfmMepIdentifier +-- FROM IEEE8021-CFMD8-MIB; + + + calixNetworks OBJECT IDENTIFIER ::= { enterprises 6321 } + calixRegistrations OBJECT IDENTIFIER ::= { calixNetworks 1 } + calixProducts OBJECT IDENTIFIER ::= { calixRegistrations 2 } + e5x100 OBJECT IDENTIFIER ::= { calixProducts 3 } + e5x110 OBJECT IDENTIFIER ::= { e5x100 1 } + + + + alarmconf OBJECT IDENTIFIER ::= { e5x110 2 } + diagnostic OBJECT IDENTIFIER ::= { e5x110 4 } + multicast OBJECT IDENTIFIER ::= { e5x110 7 } + port OBJECT IDENTIFIER ::= { e5x110 8 } + switch OBJECT IDENTIFIER ::= { e5x110 10 } + sys OBJECT IDENTIFIER ::= { e5x110 11 } + trap OBJECT IDENTIFIER ::= { e5x110 12 } + statistics OBJECT IDENTIFIER ::= { e5x110 13 } + clear OBJECT IDENTIFIER ::= { e5x110 14 } + aesSeriesCommon OBJECT IDENTIFIER ::= { e5x110 97 } + iesSeriesCommon OBJECT IDENTIFIER ::= { e5x110 98 } + accessSwitchCommonATM OBJECT IDENTIFIER ::= { e5x110 99 } + + + +---------------------------------------- +-- alarmconf +---------------------------------------- + + alarmOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The manager sets the corresponding bit value to 1 to start the operation + and the agent clears the object to zero when the operation is successfully completed. + The various bit positions are: + BIT 1: clear + BIT 2: cutoff" + ::= { alarmconf 1 } + +-- Alarm Conf Table + + alarmConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF AlarmConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes alarm configuration." + ::= { alarmconf 2 } + + alarmConfEntry OBJECT-TYPE + SYNTAX AlarmConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in alarmConfTable." + INDEX { alarmConfId } + ::= { alarmConfTable 1 } + + AlarmConfEntry ::= + SEQUENCE { + alarmConfId INTEGER, + alarmConfFacility INTEGER, + alarmConfTarget INTEGER, + alarmConfSeverity INTEGER, + alarmConfClearable INTEGER + } + + alarmConfId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + 5000:adslLine_up + 5001:adslLine_down + 5002:adslPerf_lol_thresh + 5003:adslPerf_lof_thresh + 5004:adslPerf_los_thresh + 5005:adslPerf_lop_thresh + 5006:adslPerf_es_thresh + 5007:adslPerf_ses_thresh + 5008:adslPerf_uas_thresh + 5009:adslAtuc_loftrap + 5010:adslAtuc_lostrap + 5011:adslAtur_loftrap + 5012:adslAtur_lostrap + 5013:adslAtur_lprtrap + 5014:ad_dhcp_rt_full + 5015:ad_dhcp_dm_conflict + 5016:ad_dhcp_entry_full + 5017:ad_dhcp_ip_dup + 5018:ad_dhcp_mac_dup + 10000:eqptVol_err + 10001:eqptEqpttemp_err + 10002:eqptFan_err + 10003:eqptHw_rtc_fail + 10004:eqptHw_mon_fail + 10005:eqptCold_start + 10006:eqptWarm_start + 10007:eqptAlm_input + 10008:eqptI2c_err + 10009:eqptAlm_input2 + 10010:eqptAlm_input3 + 15000:sysReboot + 15001:sysAco + 15002:sysAlm_clear + 15003:sysLogin_fail + 15004:sysAnti_spoofing + 15005:sysAlm_svrty_change + 20000:enetUp + 20001:enetDown + " + ::= { alarmConfEntry 1 } + + alarmConfFacility OBJECT-TYPE + SYNTAX INTEGER { + local1(1), + local2(2), + local3(3), + local4(4), + local5(5), + local6(6), + local7(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Alarm facility." + ::= { alarmConfEntry 2 } + + alarmConfTarget OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination which alarms are reported to. Set the bit to 1 to enable the target. + BIT 1: snmp trap + BIT 2: syslog" + ::= { alarmConfEntry 3 } + + alarmConfSeverity OBJECT-TYPE + SYNTAX INTEGER { + critical(1), + major(2), + minor(3), + info(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Alarm severity" + ::= { alarmConfEntry 4 } + + alarmConfClearable OBJECT-TYPE + SYNTAX INTEGER { + clearable(1), + unclearable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting the object to one indicates that the alarm is to be cleared when user submits alarm clear." + ::= { alarmConfEntry 5 } + +-- Alarm Current Table + + alarmCurrTable OBJECT-TYPE + SYNTAX SEQUENCE OF AlarmCurrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes current alarm information." + ::= { alarmconf 3 } + + alarmCurrEntry OBJECT-TYPE + SYNTAX AlarmCurrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in alarmCurrTable." + INDEX { alarmCurrIndex } + ::= { alarmCurrTable 1 } + + AlarmCurrEntry ::= + SEQUENCE { + alarmCurrIndex INTEGER, + alarmCurrOccurTime TimeTicks, + alarmCurrTrapOid OBJECT IDENTIFIER, + alarmCurrParam1 INTEGER, + alarmCurrParam2 INTEGER, + alarmCurrParam3 INTEGER, + alarmCurrParam4 INTEGER, + alarmCurrParam5 INTEGER, + alarmCurrParam6 INTEGER, + alarmCurrParam7 INTEGER, + alarmCurrParam8 INTEGER, + alarmCurrTimeDescr DisplayString, + alarmCurrSeverity INTEGER, + alarmCurrDescr DisplayString + } + + alarmCurrIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of the alarm." + ::= { alarmCurrEntry 1 } + + alarmCurrOccurTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Alarm occurence time (in hundredths of a second) since the system was last re-initialized." + ::= { alarmCurrEntry 2 } + + alarmCurrTrapOid OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Trap OID of the alarm." + ::= { alarmCurrEntry 3 } + + alarmCurrParam1 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 1st parameter of the alarm." + ::= { alarmCurrEntry 4 } + + alarmCurrParam2 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 2nd parameter of the alarm." + ::= { alarmCurrEntry 5 } + + alarmCurrParam3 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 3rd parameter of the alarm." + ::= { alarmCurrEntry 6 } + + alarmCurrParam4 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 4th parameter of the alarm." + ::= { alarmCurrEntry 7 } + + alarmCurrParam5 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 5th parameter of the alarm." + ::= { alarmCurrEntry 8 } + + alarmCurrParam6 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 6th parameter of the alarm." + ::= { alarmCurrEntry 9 } + + alarmCurrParam7 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 7th parameter of the alarm." + ::= { alarmCurrEntry 10 } + + alarmCurrParam8 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 8th parameter of the alarm." + ::= { alarmCurrEntry 11 } + + alarmCurrTimeDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The string representation of occurence time (YYYY/MM/DD HH:MM:SS)." + ::= { alarmCurrEntry 12 } + + alarmCurrSeverity OBJECT-TYPE + SYNTAX INTEGER { + critical(1), + major(2), + minor(3), + info(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The severity of the alarm." + ::= { alarmCurrEntry 13 } + + alarmCurrDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The description of the alarm." + ::= { alarmCurrEntry 14 } + +-- Alarm Severity Port Table + + alarmSeverityPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF AlarmSeverityPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the configuration of alarm reporting severity threshold for each port." + ::= { alarmconf 4 } + + alarmSeverityPortEntry OBJECT-TYPE + SYNTAX AlarmSeverityPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in alarmSeverityPortTable." + INDEX { ifIndex } + ::= { alarmSeverityPortTable 1 } + + AlarmSeverityPortEntry ::= + SEQUENCE { + severityThresh INTEGER + } + + severityThresh OBJECT-TYPE + SYNTAX INTEGER { + critical(1), + major(2), + minor(3), + info(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The minimum alarm severity that is reported." + ::= { alarmSeverityPortEntry 1 } + +---------------------------------------- +-- diagnostic +---------------------------------------- + + selt OBJECT IDENTIFIER ::= { diagnostic 3 } + + +-------------------- +-- selt +-------------------- + + seltTarget OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IfIndex of the port which would be performed single end loopback test." + ::= { selt 1 } + + seltOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The manager sets the object to 1 to start the selt + and the agent clears the object to zero when selt is successfully completed." + ::= { selt 2 } + + seltStatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Status description of the selt result." + ::= { selt 3 } + + seltCableType OBJECT-TYPE + SYNTAX INTEGER { + awg24(1), + awg26(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The cable type that selt result indicates." + ::= { selt 4 } + + seltLoopEstimateLengthFt OBJECT-TYPE + SYNTAX INTEGER + UNITS "feet" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The estimated loop length that selt result indicates." + ::= { selt 5 } + + seltLoopEstimateLengthMeter OBJECT-TYPE + SYNTAX INTEGER + UNITS "meter" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The estimated loop length that selt result indicates." + ::= { selt 6 } + + +---------------------------------------- +-- multicast +---------------------------------------- +-- Obsoleted in calix MRD20 since Revision 1.20 at 2009/06/25 by niceguy +-- Object mcastBandwidth, igmpCount below is kept for e5-110 R1.x below. Not used for R2.x and above. + + mcastBandwidth OBJECT IDENTIFIER ::= { multicast 4 } + igmpCount OBJECT IDENTIFIER ::= { multicast 5 } + mvlan OBJECT IDENTIFIER ::= { multicast 6 } + queryVid OBJECT IDENTIFIER ::= { multicast 7 } + igmpTimer OBJECT IDENTIFIER ::= { multicast 11 } + auditQuery OBJECT IDENTIFIER ::= { multicast 12 } + igmpProfile OBJECT IDENTIFIER ::= { multicast 13 } + + igmpEnable OBJECT-TYPE + SYNTAX INTEGER { + enableProxy(1), + enableSnooping(2), + disable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable IGMP protocol." + ::= { multicast 1 } + + igmpVersion OBJECT-TYPE + SYNTAX INTEGER { + v2(1), + v3(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting IGMP version." + ::= { multicast 9 } + + igmpLeaveMode OBJECT-TYPE + SYNTAX INTEGER { + immediateLeave(1), + lastMemberQuery(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure IGMP leave message handling mode." + ::= { multicast 10 } + +-------------------- +-- bandwidth +-------------------- + + mcastDefaultBandwidth OBJECT-TYPE + SYNTAX INTEGER (1..100000) + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Default bandwidth requirement for a multicast channel." + ::= { mcastBandwidth 1 } + + maxNumOfMcastBw OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of row entries that user can create in mcastBwTable." + ::= { mcastBandwidth 2 } + +-- mcastBwTable + + mcastBwTable OBJECT-TYPE + SYNTAX SEQUENCE OF McastBwEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table defines bandwidth budget for a range of multicast IP channels." + ::= { mcastBandwidth 3 } + + mcastBwEntry OBJECT-TYPE + SYNTAX McastBwEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of mcastBwTable." + INDEX { mcastBwIndex, mcastBwStartIp, mcastBwEndIp } + ::= { mcastBwTable 1 } + + McastBwEntry ::= + SEQUENCE { + mcastBwIndex INTEGER, + mcastBwStartIp IpAddress, + mcastBwEndIp IpAddress, + mcastBwBandwidth INTEGER, + mcastBwRowStatus RowStatus + } + + mcastBwIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index which specify the entry." + ::= { mcastBwEntry 1 } + + mcastBwStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The start multicast IP of the bandwidth control range." + ::= { mcastBwEntry 2 } + + mcastBwEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The end multicast IP of the bandwidth control range." + ::= { mcastBwEntry 3 } + + mcastBwBandwidth OBJECT-TYPE + SYNTAX INTEGER + UNITS "Kbps" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The bandwidth budget for the multicast IP channels." + ::= { mcastBwEntry 4 } + + mcastBwRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the entry." + ::= { mcastBwEntry 5 } + +-- mcastBwPortTable + + mcastBwPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF McastBwPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table specify the multicast bandwidth control of the port." + ::= { mcastBandwidth 4 } + + mcastBwPortEntry OBJECT-TYPE + SYNTAX McastBwPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of mcastBwPortTable." + INDEX { ifIndex } + ::= { mcastBwPortTable 1 } + + McastBwPortEntry ::= + SEQUENCE { + mcastBwPortEnable INTEGER, + mcastBwPortBandwidth INTEGER + } + + mcastBwPortEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable multicast bandwidth control for a port." + ::= { mcastBwPortEntry 1 } + + mcastBwPortBandwidth OBJECT-TYPE + SYNTAX INTEGER + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set bandwidth threshold for a port." + ::= { mcastBwPortEntry 2 } + +-------------------- +-- igmpCount +-------------------- + + igmpCountPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpCountPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table specify the IGMP count limiting of the port." + ::= { igmpCount 1 } + + igmpCountPortEntry OBJECT-TYPE + SYNTAX IgmpCountPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of igmpCountPortTable." + INDEX { ifIndex } + ::= { igmpCountPortTable 1 } + + IgmpCountPortEntry ::= + SEQUENCE { + igmpCountPortEnable INTEGER, + igmpCountPortLimit INTEGER + } + + igmpCountPortEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable IGMP count limiting for a port." + ::= { igmpCountPortEntry 1 } + + igmpCountPortLimit OBJECT-TYPE + SYNTAX INTEGER (0..16) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum allowed IGMP report count for a port." + ::= { igmpCountPortEntry 2 } + +-------------------- +-- mvlan +-------------------- + + maxNumOfMvlan OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of row entries that user can create in mvlanTable." + ::= { mvlan 1 } + +-- mvlanTable + + mvlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF MvlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing static configuration information for + each multicast VLAN configured into the device." + ::= { mvlan 2 } + + mvlanEntry OBJECT-TYPE + SYNTAX MvlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of mvlanTable." + INDEX { mvlanIndex } + ::= { mvlanTable 1 } + + MvlanEntry ::= + SEQUENCE { + mvlanIndex VlanIndex, + mvlanName DisplayString, + mvlanEgressPorts PortList, + mvlanUntaggedPorts PortList, + mvlanRowStatus RowStatus + } + + mvlanIndex OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The VLAN-ID refering to this VLAN." + ::= { mvlanEntry 1 } + + mvlanName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "An administratively assigned string, which may be used to identify the VLAN." + ::= { mvlanEntry 2 } + + mvlanEgressPorts 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 multicast VLAN." + ::= { mvlanEntry 3 } + + mvlanUntaggedPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The set of ports which should transmit egress packets + for this multicast VLAN as untagged." + ::= { mvlanEntry 4 } + + mvlanRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { mvlanEntry 5 } + +-- mvlanTranslateTable + + mvlanTranslateTable OBJECT-TYPE + SYNTAX SEQUENCE OF MvlanTranslateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains multicast to VLAN translation." + ::= { mvlan 3 } + + mvlanTranslateEntry OBJECT-TYPE + SYNTAX MvlanTranslateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of mvlanTranslateTable." + INDEX { dot1qVlanIndex, mvlanTranslateIndex } + ::= { mvlanTranslateTable 1 } + + MvlanTranslateEntry ::= + SEQUENCE { + mvlanTranslateIndex INTEGER, + mvlanTranslateStartIp IpAddress, + mvlanTranslateEndIp IpAddress + } + + mvlanTranslateIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index which specif the entry." + ::= { mvlanTranslateEntry 1 } + + mvlanTranslateStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The start IP of the multicast VLAN translation." + ::= { mvlanTranslateEntry 2 } + + mvlanTranslateEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The end IP of the multicast VLAN translation." + ::= { mvlanTranslateEntry 3 } + +-------------------- +-- queryVid +-------------------- + + maxNumOfQryVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of row entries that user can create in qryVidConfTable." + ::= { queryVid 1 } + +-- qryVidConfTable + + qryVidConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF QryVidConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table defines statically set VLANs used for response IGMP report." + ::= { queryVid 2 } + + qryVidConfEntry OBJECT-TYPE + SYNTAX QryVidConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in qryVidConfTable." + INDEX { qryVid } + ::= { qryVidConfTable 1 } + + QryVidConfEntry ::= + SEQUENCE { + qryVid INTEGER, + qryVidRowStatus RowStatus + } + + qryVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VLAN ID." + ::= { qryVidConfEntry 1 } + + qryVidRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { qryVidConfEntry 2 } + +-- qryVidStatusTable + + qryVidStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF QryVidStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table shows statically set or dynamically learned VLANs used for response IGMP report." + ::= { queryVid 3 } + + qryVidStatusEntry OBJECT-TYPE + SYNTAX QryVidStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in qryVidStatusTable." + INDEX { qryVid } + ::= { qryVidStatusTable 1 } + + QryVidStatusEntry ::= + SEQUENCE { + qryVidType INTEGER + } + + qryVidType OBJECT-TYPE + SYNTAX INTEGER { + static(1), + dynamic(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VLAN type." + ::= { qryVidStatusEntry 1 } + +-------------------- +-- igmpTimer +-------------------- + + igmpQryInterval OBJECT-TYPE + SYNTAX INTEGER (10..1000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IGMP query interval, 10~1000 in seconds." + ::= { igmpTimer 1 } + + igmpRobust OBJECT-TYPE + SYNTAX INTEGER (1..5) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IGMP query Robustness, 1~5." + ::= { igmpTimer 2 } + + igmpQryRespInterval OBJECT-TYPE + SYNTAX INTEGER (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IGMP query response interval, 1~100 in 100 milliseconds." + ::= { igmpTimer 3 } + + igmpLastMemQryInterval OBJECT-TYPE + SYNTAX INTEGER (1..5) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IGMP Last Member Query interval, 1~5 in 100 milliseconds." + ::= { igmpTimer 4 } + + igmpLastMemQryRobust OBJECT-TYPE + SYNTAX INTEGER (1..5) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set Last Member Query Robustness, 1~5." + ::= { igmpTimer 5 } + +-------------------- +-- auditQuery +-------------------- + + auditQryEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable IGMP audit query." + ::= { auditQuery 1 } + + auditQryInterval OBJECT-TYPE + SYNTAX INTEGER (1..4) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IGMP Audit Query Interval, 1~4 in 100 milliseconds." + ::= { auditQuery 2 } + + auditQryRobust OBJECT-TYPE + SYNTAX INTEGER (1..5) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IGMP Audit Query Robustness, 1~5." + ::= { auditQuery 3 } + +-------------------- +-- igmpProfile +-------------------- + + maxNumberOfIgmpProfiles OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of IGMP profiles in the system." + ::= { igmpProfile 1 } + + igmpProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains IGMP Profiles." + ::= { igmpProfile 2 } + + igmpProfileEntry OBJECT-TYPE + SYNTAX IgmpProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of IGMP Profile table." + INDEX {IMPLIED igmpProfileName } + ::= { igmpProfileTable 1 } + + IgmpProfileEntry ::= + SEQUENCE { + igmpProfileName DisplayString, + igmpProfileEnable INTEGER, + igmpProfileMaxGroup INTEGER, + igmpProfileRowStatus RowStatus + } + + igmpProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IGMP Profile name." + ::= { igmpProfileEntry 1 } + + igmpProfileEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable IGMP Profile." + ::= { igmpProfileEntry 2 } + + igmpProfileMaxGroup OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set maximum allowed multicast group, 1~16." + ::= { igmpProfileEntry 3 } + + igmpProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the IGMP Profile entry." + ::= { igmpProfileEntry 4 } + + igmpFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains IGMP Filters." + ::= { igmpProfile 3 } + + igmpFilterEntry OBJECT-TYPE + SYNTAX IgmpFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of IGMP Filter table." + INDEX { igmpProfileName, igmpFilterIndex } + ::= { igmpFilterTable 1 } + + IgmpFilterEntry ::= + SEQUENCE { + igmpFilterIndex INTEGER, + igmpFilterStartIp IpAddress, + igmpFilterEndIp IpAddress + } + + igmpFilterIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index which specifies the filter rule." + ::= { igmpFilterEntry 1 } + + igmpFilterStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The start IP of the filter rule." + ::= { igmpFilterEntry 2 } + + igmpFilterEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The end IP of the filter rule." + ::= { igmpFilterEntry 3 } + + igmpProfilePortTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpProfilePortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table specifies the IGMP Profile of the port." + ::= { igmpProfile 4 } + + igmpProfilePortEntry OBJECT-TYPE + SYNTAX IgmpProfilePortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in igmpProfilePortTable." + INDEX { ifIndex } + ::= { igmpProfilePortTable 1 } + + IgmpProfilePortEntry ::= + SEQUENCE { + igmpProfilePortProfile OCTET STRING + } + + igmpProfilePortProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IGMP Profile of the port." + ::= { igmpProfilePortEntry 1 } + + + +---------------------------------------- +-- port +---------------------------------------- +-- Since we define it latter, mark the definition here +-- subrPortTable OBJECT IDENTIFIER ::= { port 1 } + adslPort OBJECT IDENTIFIER ::= { port 2 } + pvc OBJECT IDENTIFIER ::= { port 4 } + ppvc OBJECT IDENTIFIER ::= { port 5 } + rpvc OBJECT IDENTIFIER ::= { port 8 } +-- Since we define it latter, mark the definition here +-- dsBcastDisableTable OBJECT IDENTIFIER ::= { port 9 } + paepvc OBJECT IDENTIFIER ::= { port 10 } + tlspvc OBJECT IDENTIFIER ::= { port 11 } + ipbpvc OBJECT IDENTIFIER ::= { port 12 } -- obsoleted since R3.0 at 2009/11/26 + dtpvc OBJECT IDENTIFIER ::= { port 14 } + snrMgn OBJECT IDENTIFIER ::= { port 15 } + dslRate OBJECT IDENTIFIER ::= { port 16 } +-- G.bond start from 51 + gbond OBJECT IDENTIFIER ::= { port 51 } +-- Subscriber Port Table + + subrPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF SubrPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes subscriber attributes for the port." + ::= { port 1 } + + subrPortEntry OBJECT-TYPE + SYNTAX SubrPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in subrPortTable." + INDEX { ifIndex } + ::= { subrPortTable 1 } + + SubrPortEntry ::= + SEQUENCE { + subrPortName DisplayString, + subrPortTel DisplayString + } + + subrPortName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Name of the subscriber." + ::= { subrPortEntry 1 } + + subrPortTel OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..15)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Telephone number of the subscriber." + ::= { subrPortEntry 2 } + +-------------------- +-- adslPort +-------------------- + +-- ADSL Line Table + + adslLineConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF AdslLineConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes common attributes describing the ADSL line." + ::= { adslPort 1 } + + adslLineConfEntry OBJECT-TYPE + SYNTAX AdslLineConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in adslLineConfTable." + INDEX { ifIndex } + ::= { adslLineConfTable 1 } + + AdslLineConfEntry ::= + SEQUENCE { + adslLineConfAdslMode INTEGER, + adslLineConfAnnexL INTEGER, + adslLineConfAnnexM INTEGER, + adslLineConfAnnexI INTEGER, + adslLineConfOptionMask INTEGER, + adslLineConfPowerMgmt INTEGER, + adslLineConfPowerMode INTEGER, + adslLineConfAturMaxTxPower INTEGER, + adslLineConfAtucMaxTxPower INTEGER, + adslLineConfMaxRxPower INTEGER, + adslLineConfAturCarrierMask OCTET STRING, + adslLineConfAtucCarrierMask0 OCTET STRING, + adslLineConfAtucCarrierMask1 OCTET STRING, + adslLineConfAturInp INTEGER, + adslLineConfAtucInp INTEGER, + adslLineConfL0Time INTEGER, + adslLineConfL2Time INTEGER, + adslLineConfL2ATPR INTEGER, + adslLineConfL2ATPRT INTEGER, + adslLineConfMaxL2Rate INTEGER, + adslLineConfMinL2Rate INTEGER, + adslLineConfL0toL2Rate INTEGER, + adslLineConfNitro INTEGER, + adslLineConfUSPhyr INTEGER, + adslLineConfDSPhyr INTEGER + } + + adslLineConfAdslMode OBJECT-TYPE + SYNTAX INTEGER { + gDotLite(1), + gDotDmt(2), + t1Dot413(3), + auto(4), + etsi(5), + adsl2(6), + adsl2Plus(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "G.lite and T1.413 are only applicable to annex A board. + ETSI is only applicable to annex B board." + ::= { adslLineConfEntry 1 } + + adslLineConfAnnexL OBJECT-TYPE + SYNTAX INTEGER { + enableNarrowMode(1), + enableWideMode(2), + disable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable annex L for the port(Only in AnnexA)." + ::= { adslLineConfEntry 2 } + + adslLineConfAnnexM OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable annex M for the port(For BCM AnnexA solution)." + ::= { adslLineConfEntry 3 } + + adslLineConfAnnexI OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable annex I for the port(For BCM AnnexA solution)." + ::= { adslLineConfEntry 4 } + + adslLineConfOptionMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The semantic for each bit is: + BIT 1 : Disable Trellis + BIT 2 : Disable Reed-Solomon + BIT 3 : Disable upstream bitswap + BIT 4 : Disable downstream bitswap + BIT 5 : Disable 1-bit constellation + BIT 6 : Disable transmit windowing + BIT 7 : Disable s=0.5 support (ADSL1 only) + BIT 8 : Disable G.lite rate limit (ADSL1 only) + BIT 9 : Enable Nitro + BIT 10: Enable US PHYR + BIT 11: ENABLE DS PHYR" + ::= { adslLineConfEntry 5 } + + adslLineConfPowerMgmt OBJECT-TYPE + SYNTAX INTEGER { + enableL2(1), + enableL2(2), + disable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable power management for the port." + ::= { adslLineConfEntry 6 } + + adslLineConfPowerMode OBJECT-TYPE + SYNTAX INTEGER { + fix(1), + priorityToPower(2), + priorityToRate(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The power mode of the ADSL line." + ::= { adslLineConfEntry 7 } + + adslLineConfAturMaxTxPower OBJECT-TYPE + SYNTAX INTEGER (-130..200) + UNITS "tenth dBm" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum allowed transmit power of ATU-R." + ::= { adslLineConfEntry 8 } + + adslLineConfAtucMaxTxPower OBJECT-TYPE + SYNTAX INTEGER (-50..200) + UNITS "tenth dBm" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum allowed transmit power of ATU-C." + ::= { adslLineConfEntry 9 } + + adslLineConfMaxRxPower OBJECT-TYPE + SYNTAX INTEGER (-255..255) + UNITS "tenth dBm" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum aggregate received power." + ::= { adslLineConfEntry 10 } + + adslLineConfAturCarrierMask OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The upstream carrier mask. For CTLM AnnexA solution, bin is from 0 to 31; + CTLM AnnexB solution, bin is from 0 to 63; BCM solution, bin is from 0 to 63. + Bit set to 1 indicates the bin is masked off." + ::= { adslLineConfEntry 11 } + + adslLineConfAtucCarrierMask0 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The downstream carrier mask. For CTLM AnnexA solution, bin is from 32 to 255; + CTLM AnnexB solution, bin is from 64 to 255; BCM solution, bin is from 32 to 255. + Bit set to 1 indicates the bin is masked off." + ::= { adslLineConfEntry 12 } + + adslLineConfAtucCarrierMask1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The downstream carrier mask from bin 256 to 511. Bit set to 1 indicates + the bin is masked off." + ::= { adslLineConfEntry 13 } + + adslLineConfAturInp OBJECT-TYPE + SYNTAX INTEGER { + zero(1), + zeroPointFive(2), + one(3), + two(4), + four(5), + eight(6), + sixteen(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The upstream Impulse Noise Protection minimum setting in unit of DMT symbol. + For CTLM solution, user can set value from 1 ~ 4, + but for BCM solution, user can set value from 1 ~ 7." + ::= { adslLineConfEntry 14 } + + adslLineConfAtucInp OBJECT-TYPE + SYNTAX INTEGER { + zero(1), + zeroPointFive(2), + one(3), + two(4), + four(5), + eight(6), + sixteen(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The downstream Impulse Noise Protection minimum setting in unit of DMT symbol. + For CTLM solution, user can set value from 1 ~ 4, + but for BCM solution, user can set value from 1 ~ 7." + ::= { adslLineConfEntry 15 } + + + adslLineConfL0Time OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the minimum time in seconds that the ADSL line + must stay in L0 power mode before changing to the L2 power mode. + For CTLM solution, the range is 120 ~ 65535; + for BCM solution, the range is 10 ~ 65535." + ::= { adslLineConfEntry 16 } + + adslLineConfL2Time OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set minimum time in seconds that the ADSL line must stay in the + L2 power mode before reducing the power again in the L2 power mode. + For CTLM solution, the range is 60 ~ 65535; + for BCM solution, the range is 10 ~ 65535." + ::= { adslLineConfEntry 17 } + + adslLineConfL2ATPR OBJECT-TYPE + SYNTAX INTEGER + UNITS "dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the maximum Aggregate Transmit Power Reduction (ATPR) + in decibels (dB) that is permitted in a L2 power reduction. + The system can gradually decrease the ADSL line transmission power + while it is in the L2 power mode. This is the largest individual + power reduction allowed in the L2 power mode. + For CTLM solution, the range is 1 ~ 5(dB); + for BCM solution, the range is 0 ~ 15(dB)." + ::= { adslLineConfEntry 18 } + + adslLineConfL2ATPRT OBJECT-TYPE + SYNTAX INTEGER + UNITS "dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "the maximum Aggregate Transmit Power Reduction Total (ATPRT) + in decibels (dB) that is permitted in the L2 power mode. + This is the total transmit power decrease that is allowed + to occur in the L2 power mode. + For CTLM solution, the range is 1 ~ 40(dB); + for BCM solution, the range is 0 ~ 15(dB)." + ::= { adslLineConfEntry 19 } + + + adslLineConfMaxL2Rate OBJECT-TYPE + SYNTAX INTEGER + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "configured maximum L2 rate. + (32~4096 Kbps, 4 Kbps resolution. For CTLM solution, 0 for system assign; for BCM solution, default:4096.)" + ::= { adslLineConfEntry 20 } + + adslLineConfMinL2Rate OBJECT-TYPE + SYNTAX INTEGER + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "configured minimum L2 rate. + (32~4096 Kbps, 4 Kbps resolution, For CTLM solution, 0 for system assign; for BCM solution, default:32.)" + ::= { adslLineConfEntry 21 } + + adslLineConfL0toL2Rate OBJECT-TYPE + SYNTAX INTEGER + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "configured transition L0 to L2 rate. + (<=min_l2rate/2 and >= 16 Kbps, For CTLM solution, 0 for system assign; for BCM solution, default:16.)" + ::= { adslLineConfEntry 22 } + + adslLineConfNitro OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable nitro mode for the port(For BCM solution)." + ::= { adslLineConfEntry 23 } + + adslLineConfUSPhyr OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable Upstream PHYR for the port(For BCM solution)." + ::= { adslLineConfEntry 24 } + + adslLineConfDSPhyr OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable Downstream PHYR for the port(For BCM solution)." + ::= { adslLineConfEntry 25 } + +-- ADSL Port Batch Set + + adslPortBatchSet OBJECT IDENTIFIER ::= { adslPort 3 } + + adslPortTarget OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is used for identify the target on which + the port configuration should be performed. The target is encoded as: + Byte 1: 0, Reserved(chaises) + Byte 2~3: 0,0 Reserved(slot) + Byte 4: 0, reserved + Byte 5~11:each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc." + ::= { adslPortBatchSet 1 } + + adslPortOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is for ADSL line configuration. When the EMS + wants to issue the desired operation, the EMS shall send SNMP-SET message to set + the corresponding bit value to be 1. The various bit positions are: + BIT 1: enable port + BIT 2: disable port + BIT 3: set ADSL mode + BIT 4: set line profile + BIT 5: set alarm profile + BIT 6: enable Annex L to be narrow mode(Only in AnnexA) + BIT 7: enable Annex L to be wide mode(Only in AnnexA) + BIT 8: disable Annex L(Only in AnnexA) + BIT 9: enable Annex M (For BCM AnnexA solution) + BIT 10: disable Annex M (For BCM AnnexA solution) + BIT 11: enable Annex I (For BCM AnnexA solution) + BIT 12: disable Annex I (For BCM AnnexA solution) + BIT 13: set option mask + BIT 14: enable power management mode to be L2 + BIT 15: enable power management mode to be L2 + BIT 16: disable power management mode + BIT 17: set power mode to be fixed + BIT 18: set power mode to be priority to power + BIT 19: set power mode to be priority to rate + BIT 20: set ATU-R max Tx power + BIT 21: set ATU-C max Tx power + BIT 22: set max Rx power + BIT 23: set ATU-R carrier mask + BIT 24: set ATU-C carrier mask + BIT 25: set ATU-R INP minimum setting + BIT 26: set ATU-C INP minimum setting" + ::= { adslPortBatchSet 2 } + + adslPortOps2 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is for ADSL line configuration. When the EMS + wants to issue the desired operation, the EMS shall send SNMP-SET message to set + the corresponding bit value to be 1. The various bit positions are: + BIT 1: set L0 Time + BIT 2: set L2 Time + BIT 3: set L2 ATPR + BIT 4: set L2 ATPRT + BIT 5: set maximum L2 rate + BIT 6: set minimum L2 rate + BIT 7: set transition L0 to L2 rate" + ::= { adslPortBatchSet 3 } + + + adslModeForBatchSet OBJECT-TYPE + SYNTAX INTEGER { + gDotLite(1), + gDotDmt(2), + t1Dot413(3), + auto(4), + etsi(5), + adsl2(6), + adsl2Plus(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "G.lite and T1.413 are only applicable to annex A board. + ETSI is only applicable to annex B board." + ::= { adslPortBatchSet 4 } + + adslLineProfileForBatchSet OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ADSL line profile." + ::= { adslPortBatchSet 5 } + + adslAlarmProfileForBatchSet OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ADSL alarm profile." + ::= { adslPortBatchSet 6 } + + adslOptionMaskForBatchSet OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The semantic for each bit is identical to the object adslLineConfOptionMask." + ::= { adslPortBatchSet 7 } + + adslAturMaxTxPowerForBatchSet OBJECT-TYPE + SYNTAX INTEGER (-130..200) + UNITS "tenth dBm" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum allowed transmit power of ATU-R." + ::= { adslPortBatchSet 8 } + + adslAtucMaxTxPowerForBatchSet OBJECT-TYPE + SYNTAX INTEGER (-50..200) + UNITS "tenth dBm" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum allowed transmit power of ATU-C." + ::= { adslPortBatchSet 9 } + + adslMaxRxPowerForBatchSet OBJECT-TYPE + SYNTAX INTEGER (-255..255) + UNITS "tenth dBm" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum aggregate received power." + ::= { adslPortBatchSet 10 } + + adslAturCarrierMaskForBatchSet OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The upstream carrier mask.For CTLM AnnexA solution, bin is from 0 to 31; + CTLM AnnexB solution, bin is from 0 to 63; BCM solution, bin is from 0 to 63. + Bit set to 1 indicates the bin is masked off." + ::= { adslPortBatchSet 11 } + + adslAtucCarrierMask0ForBatchSet OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The downstream carrier mask from bin 32 to 255. Bit set to 1 indicates + the bin is masked off." + ::= { adslPortBatchSet 12 } + + adslAtucCarrierMask1ForBatchSet OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The downstream carrier mask from bin 256 to 511. Bit set to 1 indicates + the bin is masked off." + ::= { adslPortBatchSet 13 } + + adslAturInpForBatchSet OBJECT-TYPE + SYNTAX INTEGER { + zero(1), + zeroPointFive(2), + one(3), + two(4), + four(5), + eight(6), + sixteen(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The upstream Impulse Noise Protection minimum setting in unit of DMT symbol. + For CTLM solution, user can set value from 1 ~ 4, but for BCM solution, user can set value from 1 ~ 7." + ::= { adslPortBatchSet 14 } + + adslAtucInpForBatchSet OBJECT-TYPE + SYNTAX INTEGER { + zero(1), + zeroPointFive(2), + one(3), + two(4), + four(5), + eight(6), + sixteen(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The downstream Impulse Noise Protection minimum setting in unit of DMT symbol. + For CTLM solution, user can set value from 1 ~ 4, but for BCM solution, user can set value from 1 ~ 7." + ::= { adslPortBatchSet 15 } + + + adslL0TimeForBatchSet OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the minimum time in seconds that the ADSL line + must stay in L0 power mode before changing to the L2 power mode. + For CTLM solution, the range is 120 ~ 65535; for BCM solution, the range is 10 ~ 65535." + ::= { adslPortBatchSet 16 } + + adslL2TimeForBatchSet OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set minimum time in seconds that the ADSL line + must stay in the L2 power mode before reducing the power + again in the L2 power mode. + For CTLM solution, the range is 60 ~ 65535; for BCM solution, the range is 10 ~ 65535." + ::= { adslPortBatchSet 17 } + + adslL2ATPRForBatchSet OBJECT-TYPE + SYNTAX INTEGER + UNITS "dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the maximum Aggregate Transmit Power Reduction (ATPR) + in decibels (dB) that is permitted in a L2 power reduction. + The system can gradually decrease the ADSL line transmission power + while it is in the L2 power mode. This is the largest individual + power reduction allowed in the L2 power mode. + For CTLM solution, the range is 1 ~ 5(dB); for BCM solution, the range is 0 ~ 15(dB)." + ::= { adslPortBatchSet 18 } + + adslL2ATPRTForBatchSet OBJECT-TYPE + SYNTAX INTEGER + UNITS "dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "the maximum Aggregate Transmit Power Reduction Total (ATPRT) + in decibels (dB) that is permitted in the L2 power mode. + This is the total transmit power decrease that is allowed + to occur in the L2 power mode. + For CTLM solution, the range is 1 ~ 40(dB); for BCM solution, the range is 0 ~ 15(dB)." + ::= { adslPortBatchSet 19 } + + adslMaxL2RateForBatchSet OBJECT-TYPE + SYNTAX INTEGER + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "configured maximum L2 rate. + (32~4096 Kbps, 4 Kbps resolution. For CTLM solution, 0 for system assign; for BCM solution, default:4096.)" + ::= { adslPortBatchSet 20 } + + adslMinL2RateForBatchSet OBJECT-TYPE + SYNTAX INTEGER + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "configured minimum L2 rate. + (32~4096 Kbps, 4 Kbps resolution, For CTLM solution, 0 for system assign; for BCM solution, default:32.)" + ::= { adslPortBatchSet 21 } + + adslL0toL2RateForBatchSet OBJECT-TYPE + SYNTAX INTEGER + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "configured transition L0 to L2 rate. + (<=min_l2rate/2 and >= 16 Kbps, For CTLM solution, 0 for system assign; for BCM solution, default:16.)" + ::= { adslPortBatchSet 22 } + +-- Line Status + + adslLineStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF AdslLineStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the ADSL line status." + ::= { adslPort 4 } + + adslLineStatusEntry OBJECT-TYPE + SYNTAX AdslLineStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in adslLineStatusTable." + INDEX { ifIndex } + ::= { adslLineStatusTable 1 } + + AdslLineStatusEntry ::= + SEQUENCE { + adslLineStatusMode INTEGER, + adslLineUpTime INTEGER + } + + adslLineStatusMode OBJECT-TYPE + SYNTAX INTEGER { + gDotLite(1), + gDotDmt(2), + t1Dot413(3), + etsi(4), + adsl2(5), + adsl2Plus(6), + none(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The link up mode of the ADSL line." + ::= { adslLineStatusEntry 1 } + + adslLineUpTime OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The link up time of the ADSL line, in unit of seconds" + ::= { adslLineStatusEntry 2 } + +-- Power Mgmt Parameter Table + + powerMgmtParamTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerMgmtParamEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table defines L0 to L2 power transition parameters." + ::= { adslPort 5 } + + powerMgmtParamEntry OBJECT-TYPE + SYNTAX PowerMgmtParamEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in powerMgmtParamTable." + INDEX { ifIndex } + ::= { powerMgmtParamTable 1 } + + PowerMgmtParamEntry ::= + SEQUENCE { + powerMgmtL0Time INTEGER, + powerMgmtL2Time INTEGER, + powerMgmtL2Atpr INTEGER, + powerMgmtL2Atprt INTEGER, + powerMgmtL2MinRate INTEGER, + powerMgmtL2MaxRate INTEGER, + powerMgmtL2ThreshRate INTEGER + } + + powerMgmtL0Time OBJECT-TYPE + SYNTAX INTEGER + UNITS "second" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object specifies the minimum time in L0 mode before L2 mode may be entered." + ::= { powerMgmtParamEntry 1 } + + powerMgmtL2Time OBJECT-TYPE + SYNTAX INTEGER + UNITS "second" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object specifies the minimum time in L2 mode before trimming and in between power trims." + ::= { powerMgmtParamEntry 2 } + + powerMgmtL2Atpr OBJECT-TYPE + SYNTAX INTEGER + UNITS "dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum Aggregate Transmit Power Reduction." + ::= { powerMgmtParamEntry 3 } + + powerMgmtL2Atprt OBJECT-TYPE + SYNTAX INTEGER + UNITS "dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum Aggregate Transmit Power Reduction Total." + ::= { powerMgmtParamEntry 4 } + + powerMgmtL2MinRate OBJECT-TYPE + SYNTAX INTEGER + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object specifies the minimum L2 rate." + ::= { powerMgmtParamEntry 5 } + + powerMgmtL2MaxRate OBJECT-TYPE + SYNTAX INTEGER + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object specifies the maximum L2 rate." + ::= { powerMgmtParamEntry 6 } + + powerMgmtL2ThreshRate OBJECT-TYPE + SYNTAX INTEGER + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object specifies the rate threshold that triggers the line entering L0 or L2 mode." + ::= { powerMgmtParamEntry 7 } + +-- Power Mgmt PSD Table +-- Not support in 7324 RU R4.0.2 + powerMgmtPSDTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerMgmtPSDEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table provides the PSD setting for both ATU-C and ATU-R." + ::= { adslPort 6 } + + powerMgmtPSDEntry OBJECT-TYPE + SYNTAX PowerMgmtPSDEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in powerMgmtPSDTable." + INDEX { ifIndex } + ::= { powerMgmtPSDTable 1 } + + PowerMgmtPSDEntry ::= + SEQUENCE { + powerMgmtAtucMaxPSD INTEGER, + powerMgmtAturMaxPSD INTEGER + } + + powerMgmtAtucMaxPSD OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1dBm/Hz" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object specifies the maximum ATU-C PSD." + ::= { powerMgmtPSDEntry 1 } + + powerMgmtAturMaxPSD OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1dBm/Hz" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object specifies the maximum ATU-R PSD." + ::= { powerMgmtPSDEntry 2 } + +-------------------- +-- pvc +-------------------- + + maxNumOfPvcs OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of PVCs which could be created on a port." + ::= { pvc 1 } + +-- PVC Table + + pvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF PvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes PVC configuration." + ::= { pvc 2 } + + pvcEntry OBJECT-TYPE + SYNTAX PvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in pvcTable." + INDEX { ifIndex, pvcVpi, pvcVci, pvcPvid } + ::= { pvcTable 1 } + + PvcEntry ::= + SEQUENCE { + -- Common -- + pvcVpi INTEGER, + pvcVci INTEGER, + pvcPvid VlanIndex, + pvcPriority INTEGER, + pvcProfileDS DisplayString, + pvcProfileUS DisplayString, + + -- Only for paepvc -- + --pvcPaePvid VlanIndex, + --pvcPaePriority INTEGER, + pvcAcName DisplayString, + pvcServiceName DisplayString, + pvcHelloTime INTEGER, + + -- Only for pvc -- + --pvcSuperChannel INTEGER, + + -- Other -- + pvcRowStatus RowStatus + } + + -- Common -- + pvcVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the pvc." + ::= { pvcEntry 1 } + + pvcVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the pvc." + ::= { pvcEntry 2 } + + pvcPvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default VID of the pvc." + ::= { pvcEntry 3 } + + + pvcPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "802.1p default priority of the pvc." + ::= { pvcEntry 5 } + + pvcProfileDS OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row in the atmProfileTable, + which applies for this pvc in DS side." + ::= { pvcEntry 6 } + + -- Other -- + pvcRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { pvcEntry 7 } + + pvcProfileUS OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row in the atmProfileTable, + which applies for this pvc in US side." + ::= { pvcEntry 8 } + + -- Only for PAEPVC -- + --pvcPaePvid OBJECT-TYPE + --SYNTAX VlanIndex + --MAX-ACCESS read-only + --STATUS current + --DESCRIPTION + --"Default P-VID for paepvc." + --::= { pvcEntry 9 } + + --pvcPaePriority OBJECT-TYPE + --SYNTAX INTEGER (0..7) + --MAX-ACCESS read-only + --STATUS current + --DESCRIPTION + --"802.1p default Pae-priority for paepvc." + --::= { pvcEntry 10 } + + pvcAcName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Access concentrator name for paepvc." + ::= { pvcEntry 11 } + + pvcServiceName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Service name for paepvc." + ::= { pvcEntry 12 } + + pvcHelloTime OBJECT-TYPE + SYNTAX INTEGER + UNITS "second" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The system will close the PVC if there are not any LCP echo messages passed through during the LCP hello time." + ::= { pvcEntry 13 } + + -- Only for PVC -- + --pvcSuperChannel OBJECT-TYPE + --SYNTAX INTEGER { + --enable(1), + --disable(2) + --} + --MAX-ACCESS read-create + --STATUS current + --DESCRIPTION + --"Specified the configured PVC is a super channel." + --::= { pvcEntry 14 } + +-- PVC state -- + pvcStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF PvcStateEntry + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This table show current PVC status." + ::= { pvc 3 } + + pvcStateEntry OBJECT-TYPE + SYNTAX PvcStateEntry + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An entry in pvcStateTable." + INDEX { ifIndex, pvcStateVpi, pvcStateVci, pvcStatePvid } + ::= { pvcStateTable 1 } + + PvcStateEntry ::= + SEQUENCE { + pvcStateVpi INTEGER, + pvcStateVci INTEGER, + pvcStatePvid VlanIndex, + pvcStatePriority INTEGER, + --pvcStateCvid VlanIndex, + --pvcStateCPriority INTEGER, + --pvcStateMode DisplayString, + pvcStateChannelType DisplayString, + pvcStateEncap DisplayString + } + + pvcStateVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the pvc." + ::= { pvcStateEntry 1 } + + pvcStateVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the pvc." + ::= { pvcStateEntry 2 } + + pvcStatePvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default VID of the pvc." + ::= { pvcStateEntry 3 } + + pvcStatePriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "802.1p default priority of the pvc." + ::= { pvcStateEntry 4 } + + --pvcStateCvid OBJECT-TYPE + --SYNTAX VlanIndex + --MAX-ACCESS read-only + --STATUS current + --DESCRIPTION + --"Default C-VID for paepvc." + --::= { pvcStateEntry 5 } + + --pvcStateCPriority OBJECT-TYPE + --SYNTAX INTEGER (0..7) + --MAX-ACCESS read-only + --STATUS current + --DESCRIPTION + --"802.1p default C-priority for paepvc." + --::= { pvcStateEntry 6 } + + --pvcStateMode OBJECT-TYPE + --SYNTAX DisplayString (SIZE (1..31)) + --MAX-ACCESS read-only + --STATUS current + --DESCRIPTION + --"The value of this object identifies the link mode at runntime." + --::= { pvcStateEntry 7 } + + pvcStateChannelType OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the channel type at runtime." + ::= { pvcStateEntry 8 } + + pvcStateEncap OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the channel encapsulation at runtime." + ::= { pvcStateEntry 9 } + +-- Upstream Rate Limit Table + + pvcUsRateLimitTable OBJECT-TYPE + SYNTAX SEQUENCE OF PvcUsRateLimitEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table defines the upstream rate limit for each PVC." + ::= { pvc 4 } + + pvcUsRateLimitEntry OBJECT-TYPE + SYNTAX PvcUsRateLimitEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in pvcUsRateLimitTable." + INDEX { ifIndex, pvcVpi, pvcVci } + ::= { pvcUsRateLimitTable 1 } + + PvcUsRateLimitEntry ::= + SEQUENCE { + pvcUsRateLimitEnable INTEGER, + pvcUsRateLimit INTEGER + } + + pvcUsRateLimitEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable upstream rate limit for a PVC." + ::= { pvcUsRateLimitEntry 1 } + + pvcUsRateLimit OBJECT-TYPE + SYNTAX INTEGER + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Upstream rate limit in Kbps for a PVC." + ::= { pvcUsRateLimitEntry 2 } + + +-------------------- +-- priority pvc +-------------------- + + maxNumOfPriorityPvcs OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of priority PVCs which could be created on a port." + ::= { ppvc 1 } + +-- Priority PVC Table + + ppvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF PpvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes priority PVC configuration." + ::= { ppvc 2 } + + ppvcEntry OBJECT-TYPE + SYNTAX PpvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in ppvcTable." + INDEX { ifIndex, ppvcVpi, ppvcVci, ppvcPvid } + ::= { ppvcTable 1 } + + PpvcEntry ::= + SEQUENCE { + ppvcVpi INTEGER, + ppvcVci INTEGER, + ppvcPvid VlanIndex, + ppvcEncap INTEGER, + ppvcPriority INTEGER, + ppvcRowStatus RowStatus + } + + ppvcVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the ppvc." + ::= { ppvcEntry 1 } + + ppvcVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the ppvc." + ::= { ppvcEntry 2 } + + ppvcPvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default VID of the ppvc." + ::= { ppvcEntry 3 } + + ppvcEncap OBJECT-TYPE + SYNTAX INTEGER { + llc(1), + vc(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Encapsulation of the ppvc." + ::= { ppvcEntry 4 } + + ppvcPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "802.1p default priority of the ppvc." + ::= { ppvcEntry 5 } + + ppvcRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { ppvcEntry 6 } + +-- Priority PVC Member Table + + ppvcMemberTable OBJECT-TYPE + SYNTAX SEQUENCE OF PpvcMemberEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes priority PVC member configuration." + ::= { ppvc 4 } + + ppvcMemberEntry OBJECT-TYPE + SYNTAX PpvcMemberEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in ppvcMemberTable." + INDEX { ifIndex, ppvcVpi, ppvcVci, ppvcMemberVpi, ppvcMemberVci, ppvcMemberPriority } + ::= { ppvcMemberTable 1 } + + PpvcMemberEntry ::= + SEQUENCE { + ppvcMemberVpi INTEGER, + ppvcMemberVci INTEGER, + ppvcMemberPriority INTEGER, + ppvcMemberProfileDS DisplayString, + ppvcMemberRowStatus RowStatus, + ppvcMemberProfileUS DisplayString + } + + ppvcMemberVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the member ppvc." + ::= { ppvcMemberEntry 1 } + + ppvcMemberVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the member ppvc." + ::= { ppvcMemberEntry 2 } + + ppvcMemberPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "802.1p default priority of the member ppvc." + ::= { ppvcMemberEntry 3 } + + ppvcMemberProfileDS OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The profile of the member ppvc in DS side." + ::= { ppvcMemberEntry 4 } + + ppvcMemberRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { ppvcMemberEntry 5 } + + ppvcMemberProfileUS OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The profile of the member ppvc in US side." + ::= { ppvcMemberEntry 6 } + +------------------------------- +-- 2684 routed mode pvc (rpvc) +------------------------------- + +-- Routed Gateway Table + + rpvcGatewayTable OBJECT-TYPE + SYNTAX SEQUENCE OF RpvcGatewayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes Routed Gateway configuration." + ::= { rpvc 1 } + + rpvcGatewayEntry OBJECT-TYPE + SYNTAX RpvcGatewayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in Routed Gateway table." + INDEX { rpvcGatewayIp } + ::= { rpvcGatewayTable 1 } + + RpvcGatewayEntry ::= + SEQUENCE { + rpvcGatewayIp IpAddress, + rpvcGatewayVlanId VlanIndex, + rpvcGatewayRowStatus RowStatus, + rpvcGatewayPriority INTEGER + } + + rpvcGatewayIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP of RPVC gateway." + ::= { rpvcGatewayEntry 1 } + + rpvcGatewayVlanId OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Vlan id send to this RPVC gateway." + ::= { rpvcGatewayEntry 2 } + + rpvcGatewayRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { rpvcGatewayEntry 3 } + + rpvcGatewayPriority OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "802.1p p bit send to this RPVC gateway." + ::= { rpvcGatewayEntry 4 } + +-- Routed PVC Table + + rpvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF RpvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes RPVC configuration." + ::= { rpvc 2 } + + rpvcEntry OBJECT-TYPE + SYNTAX RpvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in rpvcTable." + INDEX { ifIndex, rpvcVpi, rpvcVci, rpvcIp, rpvcNetmask } + ::= { rpvcTable 1 } + + RpvcEntry ::= + SEQUENCE { + rpvcVpi INTEGER, + rpvcVci INTEGER, + rpvcDSProfile DisplayString, + rpvcUSProfile DisplayString, + rpvcIp IpAddress, + rpvcNetmask IpAddress, + rpvcGatewayIpAddress IpAddress, + rpvcRowStatus RowStatus + } + + rpvcVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the rpvc." + ::= { rpvcEntry 1 } + + rpvcVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the rpvc." + ::= { rpvcEntry 2 } + + rpvcDSProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The down stream profile of the rpvc." + ::= { rpvcEntry 3 } + + rpvcUSProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The up stream profile of the rpvc." + ::= { rpvcEntry 4 } + + rpvcIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP of the rpvc." + ::= { rpvcEntry 5 } + + rpvcNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP mask of the rpvc IP." + ::= { rpvcEntry 6 } + + rpvcGatewayIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The gateway IP of rpvc." + ::= { rpvcEntry 7 } + + rpvcRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { rpvcEntry 8 } + +-- Routed PVC Routed Domain Table + + rpvcRouteDomainTable OBJECT-TYPE + SYNTAX SEQUENCE OF RpvcRouteDomainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes RPVC route domain configuration." + ::= { rpvc 3 } + + rpvcRouteDomainEntry OBJECT-TYPE + SYNTAX RpvcRouteDomainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in rpvcRouteDomainTable." + INDEX { ifIndex, rpvcRouteDomainVpi, rpvcRouteDomainVci, rpvcRouteDomainIp, rpvcRouteDomainNetmask } + ::= { rpvcRouteDomainTable 1 } + + RpvcRouteDomainEntry ::= + SEQUENCE { + rpvcRouteDomainVpi INTEGER, + rpvcRouteDomainVci INTEGER, + rpvcRouteDomainIp IpAddress, + rpvcRouteDomainNetmask IpAddress, + rpvcRouteDomainRowStatus RowStatus + } + + rpvcRouteDomainVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the rpvc." + ::= { rpvcRouteDomainEntry 1 } + + rpvcRouteDomainVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the rpvc." + ::= { rpvcRouteDomainEntry 2 } + + rpvcRouteDomainIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The route domain IP." + ::= { rpvcRouteDomainEntry 3 } + + rpvcRouteDomainNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP mask of the route domain IP." + ::= { rpvcRouteDomainEntry 4 } + + rpvcRouteDomainRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { rpvcRouteDomainEntry 5 } + + rpvcArpAgingTime OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set RPVC ARP proxy aging time 10..10000 seconds, + 0 to disable againg." + ::= { rpvc 4 } + + rpvcArpFlush OBJECT-TYPE + SYNTAX INTEGER { + enable(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flush the RPVC ARP proxy table." + ::= { rpvc 5 } + +-------------------- +-- dsBcastDisableTable +-------------------- + + dsBcastDisableTable OBJECT-TYPE + SYNTAX SEQUENCE OF DsBcastDisableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes Down Stream Bcast configuration." + ::= { port 9 } + + dsBcastDisableEntry OBJECT-TYPE + SYNTAX DsBcastDisableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in Down Stream Bcast table." + INDEX { ifIndex, dsBcastDisableVlanId } + ::= { dsBcastDisableTable 1 } + + DsBcastDisableEntry ::= + SEQUENCE { + dsBcastDisableVlanId INTEGER, + dsBcastDisableRowStatus RowStatus + } + + dsBcastDisableVlanId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "downstream broadcast disabled vid." + ::= { dsBcastDisableEntry 1 } + + dsBcastDisableRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { dsBcastDisableEntry 2 } + +-------------------- +-- paepvc +-------------------- + +-- PPPoAoE PVC Table + + paepvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF PaepvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes PPPoAoE PVC configuration." + ::= { paepvc 1 } + + paepvcEntry OBJECT-TYPE + SYNTAX PaepvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of paepvcTable." + INDEX { ifIndex, paepvcVpi, paepvcVci, paepvcPvid } + ::= { paepvcTable 1 } + + PaepvcEntry ::= + SEQUENCE { + paepvcVpi INTEGER, + paepvcVci INTEGER, + paepvcPvid VlanIndex, + paepvcPriority INTEGER, + paepvcProfileDS DisplayString, + paepvcAcName DisplayString, + paepvcServiceName DisplayString, + paepvcHelloTime INTEGER, + paepvcRowStatus RowStatus, + paepvcProfileUS DisplayString, + paepvcCvid VlanIndex, + paepvcCPriority INTEGER + + } + + paepvcVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the pvc." + ::= { paepvcEntry 1 } + + paepvcVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the pvc." + ::= { paepvcEntry 2 } + + paepvcPvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default VID of the pvc." + ::= { paepvcEntry 3 } + + + paepvcPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "802.1p default priority of the pvc." + ::= { paepvcEntry 5 } + + paepvcProfileDS OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row in the atmProfileTable, + which applies for this pvc in DS side." + ::= { paepvcEntry 6 } + + paepvcAcName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Access concentrator name." + ::= { paepvcEntry 7 } + + paepvcServiceName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Service name." + ::= { paepvcEntry 8 } + + paepvcHelloTime OBJECT-TYPE + SYNTAX INTEGER + UNITS "second" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The system will close the PVC if there are not any LCP echo messages passed through + during the LCP hello time." + ::= { paepvcEntry 9 } + + paepvcRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { paepvcEntry 10 } + + paepvcProfileUS OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row in the atmProfileTable, + which applies for this pvc in US side." + ::= { paepvcEntry 11 } + + paepvcCvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Default C-VID of the pvc." + ::= { paepvcEntry 12 } + + + paepvcCPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "802.1p default C-priority of the pvc." + ::= { paepvcEntry 13 } + + +-------------------- +-- tlspvc +-------------------- + +-- TLS PVC Table + + tlspvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF TlspvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes Transparent LAN Service (TLS) PVC configuration." + ::= { tlspvc 1 } + + tlspvcEntry OBJECT-TYPE + SYNTAX TlspvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of tlspvcTable." + INDEX { ifIndex, tlspvcVpi, tlspvcVci, tlspvcSvid } + ::= { tlspvcTable 1 } + + TlspvcEntry ::= + SEQUENCE { + tlspvcVpi INTEGER, + tlspvcVci INTEGER, + tlspvcSvid VlanIndex, + tlspvcSpriority INTEGER, + tlspvcProfileDS DisplayString, + tlspvcRowStatus RowStatus, + tlspvcProfileUS DisplayString + } + + tlspvcVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the pvc." + ::= { tlspvcEntry 1 } + + tlspvcVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the pvc." + ::= { tlspvcEntry 2 } + + tlspvcSvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "s-tag VLAN ID of the pvc." + ::= { tlspvcEntry 3 } + + + tlspvcSpriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "s-tag priority of the pvc." + ::= { tlspvcEntry 5 } + + tlspvcProfileDS OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row in the atmProfileTable, + which applies for this pvc in DS side." + ::= { tlspvcEntry 6 } + + tlspvcRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { tlspvcEntry 7 } + + tlspvcProfileUS OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row in the atmProfileTable, + which applies for this pvc in US side." + ::= { tlspvcEntry 8 } + +-------------------- +-- ipbpvc +-------------------- + +-- Domain Table + + ipbpvcDomainTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpbpvcDomainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes ipbpvc domain configuration. + This table is supported by R3.00 and later versions." + ::= { ipbpvc 1 } + + ipbpvcDomainEntry OBJECT-TYPE + SYNTAX IpbpvcDomainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of ipbpvcDomainTable." + INDEX { ipbpvcDomainName } + ::= { ipbpvcDomainTable 1 } + + IpbpvcDomainEntry ::= + SEQUENCE { + ipbpvcDomainName OCTET STRING, + ipbpvcDomainRowStatus RowStatus + } + + ipbpvcDomainName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of the domain." + ::= { ipbpvcDomainEntry 1 } + + ipbpvcDomainRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table." + ::= { ipbpvcDomainEntry 2 } + +-- Domain VLAN Table + + ipbpvcDomainVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpbpvcDomainVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes ipbpvc domain VLAN configuration. + This table is supported by R3.00 and later versions." + ::= { ipbpvc 2 } + + ipbpvcDomainVlanEntry OBJECT-TYPE + SYNTAX IpbpvcDomainVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of ipbpvcDomainVlanTable." + INDEX { ipbpvcDomainName, ipbpvcDomainVlanId } + ::= { ipbpvcDomainVlanTable 1 } + + IpbpvcDomainVlanEntry ::= + SEQUENCE { + ipbpvcDomainVlanId VlanIndex, + ipbpvcDomainDhcpVlanEnable INTEGER, + ipbpvcDomainVlanRowStatus RowStatus + } + + ipbpvcDomainVlanId OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Set VLAN to join or leave the specified domain." + ::= { ipbpvcDomainVlanEntry 1 } + + ipbpvcDomainDhcpVlanEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable/disable DHCP VLAN in a domain." + ::= { ipbpvcDomainVlanEntry 2 } + + ipbpvcDomainVlanRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table used to create/delete an entry." + ::= { ipbpvcDomainVlanEntry 3 } + +-- Edge Router Table + + ipbpvcEdgeRouterTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpbpvcEdgeRouterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes ipbpvc edge router configuration. + This table is supported by R3.00 and later versions." + ::= { ipbpvc 3 } + + ipbpvcEdgeRouterEntry OBJECT-TYPE + SYNTAX IpbpvcEdgeRouterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of ipbpvcEdgeRouterTable." + INDEX { ipbpvcDomainName, ipbpvcEdgeRouterIp, ipbpvcEdgeRouterMask, ipbpvcEdgeRouterVid } + ::= { ipbpvcEdgeRouterTable 1 } + + IpbpvcEdgeRouterEntry ::= + SEQUENCE { + ipbpvcEdgeRouterIp IpAddress, + ipbpvcEdgeRouterMask INTEGER, + ipbpvcEdgeRouterVid VlanIndex, + ipbpvcEdgeRouterRowStatus RowStatus + } + + ipbpvcEdgeRouterIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP address of the edge router." + ::= { ipbpvcEdgeRouterEntry 1 } + + ipbpvcEdgeRouterVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VLAN ID of the edge router." + ::= { ipbpvcEdgeRouterEntry 2 } + + ipbpvcEdgeRouterMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Netmask of the edge router." + ::= { ipbpvcEdgeRouterEntry 3 } + + ipbpvcEdgeRouterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table used to create/delete an entry." + ::= { ipbpvcEdgeRouterEntry 4 } + +-- Interface Table + + ipbpvcInterfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpbpvcInterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes ipbpvc interface configuration. + This table is supported by R3.00 and later versions." + ::= { ipbpvc 4 } + + ipbpvcInterfaceEntry OBJECT-TYPE + SYNTAX IpbpvcInterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of ipbpvcInterfaceTable." + INDEX { ipbpvcDomainName, ipbpvcInterfaceIp, ipbpvcInterfaceMask, ipbpvcInterfaceVid } + ::= { ipbpvcInterfaceTable 1 } + + IpbpvcInterfaceEntry ::= + SEQUENCE { + ipbpvcInterfaceIp IpAddress, + ipbpvcInterfaceMask INTEGER, + ipbpvcInterfaceVid VlanIndex, + ipbpvcInterfaceIfIndex INTEGER, + ipbpvcInterfaceVpi INTEGER, + ipbpvcInterfaceVci INTEGER, + ipbpvcInterfaceRowStatus RowStatus + } + + ipbpvcInterfaceIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP address of the interface." + ::= { ipbpvcInterfaceEntry 1 } + + ipbpvcInterfaceMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Netmask of the interface." + ::= { ipbpvcInterfaceEntry 2 } + + ipbpvcInterfaceVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VLAN ID of the interface." + ::= { ipbpvcInterfaceEntry 3 } + + ipbpvcInterfaceIfIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "IfIndex of the interface." + ::= { ipbpvcInterfaceEntry 4 } + + ipbpvcInterfaceVpi OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "VPI of the interface." + ::= { ipbpvcInterfaceEntry 5 } + + ipbpvcInterfaceVci OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "VCI of the interface." + ::= { ipbpvcInterfaceEntry 6 } + + ipbpvcInterfaceRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table used to create/delete an entry." + ::= { ipbpvcInterfaceEntry 7 } + +-- Route Table + + ipbpvcRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpbpvcRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes ipbpvc route configuration. + This table is supported by R3.00 and later versions." + ::= { ipbpvc 5 } + + ipbpvcRouteEntry OBJECT-TYPE + SYNTAX IpbpvcRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of ipbpvcRouteTable." + INDEX { ipbpvcDomainName, ipbpvcRouteIp, ipbpvcRouteMask, ipbpvcRouteNextHop } + ::= { ipbpvcRouteTable 1 } + + IpbpvcRouteEntry ::= + SEQUENCE { + ipbpvcRouteIp IpAddress, + ipbpvcRouteMask INTEGER, + ipbpvcRouteNextHop IpAddress, + ipbpvcRouteMetric INTEGER, + ipbpvcRoutePriority INTEGER, + ipbpvcRouteRowStatus RowStatus + } + + ipbpvcRouteIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP address of the route." + ::= { ipbpvcRouteEntry 1 } + + ipbpvcRouteMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Netmask of the route." + ::= { ipbpvcRouteEntry 2 } + + ipbpvcRouteNextHop OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Next hop IP address of the route." + ::= { ipbpvcRouteEntry 3 } + + ipbpvcRouteMetric OBJECT-TYPE + SYNTAX INTEGER (1..15) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Metric of the route." + ::= { ipbpvcRouteEntry 4 } + + ipbpvcRoutePriority OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Priority of the route. Note that the default value of this object is 8, which means + we keep the original priority of the packet(frame)." + ::= { ipbpvcRouteEntry 5 } + + ipbpvcRouteRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table used to create/delete an entry." + ::= { ipbpvcRouteEntry 6 } + +-- PVC Table + + ipbpvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpbpvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes ipbpvc configuration. + This table is supported by R3.00 and later versions." + ::= { ipbpvc 6 } + + ipbpvcEntry OBJECT-TYPE + SYNTAX IpbpvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of ipbpvcTable." + INDEX { ifIndex, ipbpvcVpi, ipbpvcVci, ipbpvcPvid } + ::= { ipbpvcTable 1 } + + IpbpvcEntry ::= + SEQUENCE { + ipbpvcVpi INTEGER, + ipbpvcVci INTEGER, + ipbpvcPvid INTEGER, + ipbpvcEncap INTEGER, + ipbpvcPriority INTEGER, + ipbpvcProfile OCTET STRING, + ipbpvcRowStatus RowStatus, + ipbpvcProfileUS OCTET STRING + } + + ipbpvcVpi OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the PVC." + ::= { ipbpvcEntry 1 } + + ipbpvcVci OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the PVC." + ::= { ipbpvcEntry 2 } + + ipbpvcPvid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "PVID of the PVC." + ::= { ipbpvcEntry 3 } + + ipbpvcEncap OBJECT-TYPE + SYNTAX INTEGER { + ipoe(1), + reserved(2), + ipoa(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Type of the PVC." + ::= { ipbpvcEntry 4 } + + ipbpvcPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Priority of the PVC." + ::= { ipbpvcEntry 5 } + + ipbpvcProfile OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Profile of the PVC." + ::= { ipbpvcEntry 6 } + + ipbpvcRowStatus OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table used to create/delete an entry." + ::= { ipbpvcEntry 7 } + + ipbpvcProfileUS OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "US Profile of the PVC." + ::= { ipbpvcEntry 8 } + +-- ARP Proxy + + arpproxy OBJECT IDENTIFIER ::= { ipbpvc 8 } + + arpproxyAge OBJECT-TYPE + SYNTAX INTEGER (10..10000) + UNITS "second" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Aging time of the ARP proxy. + This object is supported by R3.00 and later versions." + ::= { arpproxy 1 } + + arpproxyFlush OBJECT IDENTIFIER ::= { arpproxy 2 } + + arpproxyFlushTarget OBJECT-TYPE + SYNTAX INTEGER { + all(1), + edgerouter(2), + interface(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The target whose ARP table to be flushed. + This object is supported by R3.00 and later versions." + ::= { arpproxyFlush 1 } + + arpproxyFlushOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the object to 1 to start flushing. + This object is supported by R3.00 and later versions." + ::= { arpproxyFlush 2 } + + arpproxyFlushEdgeRouterIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flush ARP table for the specified edge router. + This object is supported by R3.00 and later versions." + ::= { arpproxyFlush 3 } + + arpproxyFlushEdgeRouterVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flush ARP table for the specified edge router. + This object is supported by R3.00 and later versions." + ::= { arpproxyFlush 4 } + + arpproxyFlushInterfaceIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flush ARP table for the specified interface. + This object is supported by R3.00 and later versions." + ::= { arpproxyFlush 5 } + + arpproxyFlushInterfaceMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flush ARP table for the specified interface. + This object is supported by R3.00 and later versions." + ::= { arpproxyFlush 6 } + + arpproxyFlushInterfaceVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flush ARP table for the specified interface. + This object is supported by R3.00 and later versions." + ::= { arpproxyFlush 7 } + +-------------------- +-- dtpvc +-------------------- + +-- DT PVC Table + + dtpvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF DtpvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes Double Tagging (DT) PVC configuration." + ::= { dtpvc 1 } + + dtpvcEntry OBJECT-TYPE + SYNTAX DtpvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dtpvcTable." + INDEX { ifIndex, dtpvcVpi, dtpvcVci, dtpvcSvid } + ::= { dtpvcTable 1 } + + DtpvcEntry ::= + SEQUENCE { + -- Common -- + dtpvcVpi INTEGER, + dtpvcVci INTEGER, + dtpvcSvid VlanIndex, + dtpvcSpriority INTEGER, + dtpvcCvid VlanIndex, + dtpvcCpriority INTEGER, + dtpvcDSProfile DisplayString, + dtpvcUSProfile DisplayString, + dtpvcRowStatus RowStatus, + -- Only for dtpvc -- + dtpvcSuperChannel INTEGER, + -- Only for paepvc -- + dtpvcAcName DisplayString, + dtpvcServiceName DisplayString, + dtpvcHelloTime INTEGER + } + + -- Common -- + dtpvcVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the pvc." + ::= { dtpvcEntry 1 } + + dtpvcVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the pvc." + ::= { dtpvcEntry 2 } + + dtpvcSvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "s-tag VLAN ID of the pvc." + ::= { dtpvcEntry 3 } + + dtpvcSpriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "s-tag priority of the pvc." + ::= { dtpvcEntry 4 } + + dtpvcCvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "c-tag VLAN ID of the pvc." + ::= { dtpvcEntry 5 } + + dtpvcCpriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "c-tag priority of the pvc." + ::= { dtpvcEntry 6 } + + dtpvcDSProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row in the atmProfileTable, which applies for this dtpvc in DS side." + ::= { dtpvcEntry 7 } + + dtpvcUSProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row in the atmProfileTable, which applies for this dtpvc in US side." + ::= { dtpvcEntry 8 } + + dtpvcRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { dtpvcEntry 9 } + + -- Only for DTPVC -- + dtpvcSuperChannel OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specified the configured DTPVC is a super channel." + ::= { dtpvcEntry 10 } + + -- Only for PAEPVC -- + dtpvcAcName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Access concentrator name for paepvc." + ::= { dtpvcEntry 11 } + + dtpvcServiceName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Service name for paepvc." + ::= { dtpvcEntry 12 } + + dtpvcHelloTime OBJECT-TYPE + SYNTAX INTEGER + UNITS "second" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The system will close the PVC if there are not any LCP echo messages passed through during the LCP hello time." + ::= { dtpvcEntry 13 } + +-- DTPVC state -- + dtpvcStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF DtpvcStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table show current DTPVC status." + ::= { dtpvc 2 } + + dtpvcStateEntry OBJECT-TYPE + SYNTAX DtpvcStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in dtpvcStateTable." + INDEX { ifIndex, dtpvcStateVpi, dtpvcStateVci, dtpvcStateSvid } + ::= { dtpvcStateTable 1 } + + DtpvcStateEntry ::= + SEQUENCE { + dtpvcStateVpi INTEGER, + dtpvcStateVci INTEGER, + dtpvcStateSvid VlanIndex, + dtpvcStateSPriority INTEGER, + dtpvcStateCvid VlanIndex, + dtpvcStateCPriority INTEGER, + --dtpvcStateMode DisplayString, + dtpvcStateChannelType DisplayString, + dtpvcStateEncap DisplayString + } + + dtpvcStateVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the dtpvc." + ::= { dtpvcStateEntry 1 } + + dtpvcStateVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the dtpvc." + ::= { dtpvcStateEntry 2 } + + dtpvcStateSvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default S-VID of the dtpvc." + ::= { dtpvcStateEntry 3 } + + dtpvcStateSPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "S-priority of the dtpvc." + ::= { dtpvcStateEntry 4 } + + dtpvcStateCvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default C-VID of the dtpvc." + ::= { dtpvcStateEntry 5 } + + dtpvcStateCPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "C-priority of the dtpvc." + ::= { dtpvcStateEntry 6 } + + --dtpvcStateMode OBJECT-TYPE + --SYNTAX DisplayString (SIZE (1..31)) + --MAX-ACCESS read-only + --STATUS current + --DESCRIPTION + --"The value of this object identifies the link mode at runntime." + --::= { dtpvcStateEntry 7 } + + dtpvcStateChannelType OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the channel type at runtime." + ::= { dtpvcStateEntry 8 } + + dtpvcStateEncap OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the channel encapsulation at runtime." + ::= { dtpvcStateEntry 9 } + + +-------------------- +-- gbond +-------------------- + +-- gbondTable + + gbondGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF GbondGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing the G.Bond configuration information for + each bonding group of the device." + ::= { gbond 1 } + + gbondGroupEntry OBJECT-TYPE + SYNTAX GbondGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of gbondTable." + INDEX { gbondGroupName } + ::= { gbondGroupTable 1 } + + GbondGroupEntry ::= + SEQUENCE { + gbondGroupName OCTET STRING, + gbondGroupPorts OCTET STRING, +-- gbondGroupSid INTEGER, + gbondGroupUpRate Unsigned32, + gbondGroupDownRate Unsigned32, + gbondGroupRowStatus RowStatus + } + + gbondGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An administratively assigned string, which may be used to identify bonding group." + ::= { gbondGroupEntry 1 } + + gbondGroupPorts OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The set of ports which are currently assigned to the + bonding group of specified group name. + Byte 1: Reserved(chassis) + Byte 2~3: Reserved(slot) + Byte 4: Reserved + Byte 5~11:each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc." + ::= { gbondGroupEntry 2 } + +-- gbondGroupSid OBJECT-TYPE +-- SYNTAX INTEGER { +-- sid8(1), +-- sid12(2) +-- } +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "This object indicates the sequence index mode of the bonding group." +-- ::= { gbondGroupEntry 3 } + + gbondGroupUpRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The UP stream rate." + ::= { gbondGroupEntry 4 } + + gbondGroupDownRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The DOWN stream rate." + ::= { gbondGroupEntry 5 } + + gbondGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { gbondGroupEntry 6 } +-------------------- +-- snrMgn +-------------------- + +-- snrMgnTable + + snrMgnTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnrMarginEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing the per port SNR Margin configuration." + ::= { snrMgn 1 } + + snrMgnEntry OBJECT-TYPE + SYNTAX SnrMarginEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of snrMgnTable." + INDEX { ifIndex } + ::= { snrMgnTable 1 } + + SnrMarginEntry ::= + SEQUENCE { + snrMgnMode INTEGER, + snrMgnUcTarget INTEGER, + snrMgnUcMax INTEGER, + snrMgnUcMin INTEGER, + snrMgnUcDownshift INTEGER, + snrMgnUcUpshift INTEGER, + snrMgnUrTarget INTEGER, + snrMgnUrMax INTEGER, + snrMgnUrMin INTEGER, + snrMgnUrDownshift INTEGER, + snrMgnUrUpshift INTEGER + } + + snrMgnMode OBJECT-TYPE + SYNTAX INTEGER { + profile(0), + line(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure DSL SNR margin configuration mode of the specified ports. + Profile: the SNR margin configuration comes from DSL profile. + Line: the SNR margin configuration comes from line configuration." + ::= { snrMgnEntry 1 } + + snrMgnUcTarget OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Target Signal/Noise Margin. + This is the Noise Margin the modem must achieve + with a BER of 10-7 or better to successfully complete + initialization." + ::= { snrMgnEntry 2 } + + snrMgnUcMax OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Maximum acceptable Signal/Noise Margin. + If the Noise Margin is above this the modem should + attempt to reduce its power output to optimize its + operation." + ::= { snrMgnEntry 3 } + + snrMgnUcMin OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Minimum acceptable Signal/Noise Margin. + If the noise margin falls below this level, the modem + should attempt to increase its power output. If that + is not possible the modem will attempt to + re-initialize or shut down." + ::= { snrMgnEntry 4 } + + snrMgnUcDownshift OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Signal/Noise Margin for rate downshift. + If the noise margin falls below this level, the modem + should attempt to decrease its transmit rate. In + the case that RADSL mode is not present, + the value will be `0'." + ::= { snrMgnEntry 5 } + + snrMgnUcUpshift OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Signal/Noise Margin for rate upshift. + If the noise margin rises above this level, the modem + should attempt to increase its transmit rate. In + the case that RADSL is not present, the value will + be `0'." + ::= { snrMgnEntry 6 } + + snrMgnUrTarget OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Target Signal/Noise Margin. + This is the Noise Margin the modem must achieve + with a BER of 10-7 or better to successfully complete + initialization." + ::= { snrMgnEntry 7 } + + snrMgnUrMax OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Maximum acceptable Signal/Noise Margin. + If the Noise Margin is above this the modem should + attempt to reduce its power output to optimize its + operation." + ::= { snrMgnEntry 8 } + + snrMgnUrMin OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Minimum acceptable Signal/Noise Margin. + If the noise margin falls below this level, the modem + should attempt to increase its power output. If that + is not possible the modem will attempt to + re-initialize or shut down." + ::= { snrMgnEntry 9 } + + snrMgnUrDownshift OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Signal/Noise Margin for rate downshift. + If the noise margin falls below this level, the modem + should attempt to decrease its transmit rate. + In the case that RADSL mode is not present, + the value will be `0'." + ::= { snrMgnEntry 10 } + + snrMgnUrUpshift OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Signal/Noise Margin for rate upshift. + If the noise margin rises above this level, the modem + should attempt to increase its transmit rate. + In the case that RADSL is not present, + the value will be `0'." + ::= { snrMgnEntry 11 } + +-------------------- +-- dsl rate +-------------------- + +-- dslRateTable + + dslRateTable OBJECT-TYPE + SYNTAX SEQUENCE OF DslRateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing the per port DSL Rate configuration." + ::= { dslRate 1 } + + dslRateEntry OBJECT-TYPE + SYNTAX DslRateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dslRateTable." + INDEX { ifIndex } + ::= { dslRateTable 1 } + + DslRateEntry ::= + SEQUENCE { + dslRateMode INTEGER, + dslRateLatencyMode INTEGER, + dslRateXtucMaxInterleaveDelay INTEGER, + dslRateXtucMaxTxRate Unsigned32, + dslRateXtucMinTxRate Unsigned32, + dslRateXturMaxInterleaveDelay INTEGER, + dslRateXturMaxTxRate Unsigned32, + dslRateXturMinTxRate Unsigned32 + } + + dslRateMode OBJECT-TYPE + SYNTAX INTEGER { + profile(0), + line(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure DSL Rate configuration mode of the specified ports. + Profile: the DSL Rate configuration comes from DSL profile. + Line: the DSL Rate configuration comes from line configuration." + ::= { dslRateEntry 1 } + + dslRateLatencyMode OBJECT-TYPE + SYNTAX INTEGER { + interleave(1), + fast(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The latency mode is fast or interleave" + ::= { dslRateEntry 2 } + + dslRateXtucMaxInterleaveDelay OBJECT-TYPE + SYNTAX INTEGER (0..255) + UNITS "milli-seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured maximum Interleave Delay for this channel. + + Interleave delay applies only to the interleave channel + and defines the mapping (relative spacing) between + subsequent input bytes at the interleaver input and + their placement in the bit stream at the interleaver + output. Larger numbers provide greater separation + between consecutive input bytes in the output bit + stream allowing for improved impulse noise immunity + at the expense of payload latency." + ::= { dslRateEntry 3 } + + dslRateXtucMaxTxRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Maximum Transmit rate for `Fast' or `Interleave' channels, + in bps." + ::= { dslRateEntry 4 } + + dslRateXtucMinTxRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Minimum Transmit rate for `Fast' or `Interleave' channels, + in bps" + ::= { dslRateEntry 5 } + + dslRateXturMaxInterleaveDelay OBJECT-TYPE + SYNTAX INTEGER (0..255) + UNITS "milli-seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured maximum Interleave Delay for this channel. + + Interleave delay applies only to the interleave channel + and defines the mapping (relative spacing) between + subsequent input bytes at the interleaver input and + their placement in the bit stream at the interleaver + output. Larger numbers provide greater separation + between consecutive input bytes in the output bit + stream allowing for improved impulse noise immunity + at the expense of payload latency" + ::= { dslRateEntry 6 } + + dslRateXturMaxTxRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Target Signal/Noise Margin. + This is the Noise Margin the modem must achieve + with a BER of 10-7 or better to successfully complete + initialization." + ::= { dslRateEntry 7 } + + dslRateXturMinTxRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Maximum Transmit rate for `Fast' or `Interleave' channels, + in bps." + ::= { dslRateEntry 8 } + +---------------------------------------- +-- switch +---------------------------------------- + + dscp OBJECT IDENTIFIER ::= { switch 10 } + vlanIsolation OBJECT IDENTIFIER ::= { switch 12 } + enetMtu OBJECT IDENTIFIER ::= { switch 13 } +-- cfm OBJECT IDENTIFIER ::= { switch 14 } + +-- Standalone IP DSLAM puts all ACL features in 'switch', from OID 51 + dhcp OBJECT IDENTIFIER ::= { switch 51 } + macfilter OBJECT IDENTIFIER ::= { switch 53 } + dhcpSnoop OBJECT IDENTIFIER ::= { switch 55 } + acl OBJECT IDENTIFIER ::= { switch 56 } + pppoeAgent OBJECT IDENTIFIER ::= { switch 57 } + macff OBJECT IDENTIFIER ::= { switch 60 } + +-------------------- +-- dscp +-------------------- + + dscpMappingTable OBJECT-TYPE + SYNTAX SEQUENCE OF DscpMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table contains DSCP mapping configuration for the adsl and ethernet ports." + ::= { dscp 1 } + + dscpMappingEntry OBJECT-TYPE + SYNTAX DscpMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dscpMappingTable." + INDEX { dscpSrcCodePoint } + ::= { dscpMappingTable 1 } + + DscpMappingEntry ::= + SEQUENCE { + dscpSrcCodePoint INTEGER, +-- dscpMapCodePoint INTEGER, + dscpMapPriority INTEGER + } + + dscpSrcCodePoint OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The DSCP source code point used for mapping." + ::= { dscpMappingEntry 1 } + +-- dscpMapCodePoint OBJECT-TYPE +-- SYNTAX INTEGER (0..63) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The mapping code point that will replace the source code point in the incoming packet." +-- ::= { dscpMappingEntry 2 } + + dscpMapPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The mapping p bits that will replace the source p bits in the incoming packet." + ::= { dscpMappingEntry 3 } + +--- pfchen + dscpPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF DscpPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table contains DSCP mapping configuration for the adsl and ethernet ports." + ::= { dscp 2 } + + dscpPortEntry OBJECT-TYPE + SYNTAX DscpPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dscpPortTable." + INDEX { ifIndex } + ::= { dscpPortTable 1 } + + DscpPortEntry ::= + SEQUENCE { + dscpStatusEnable INTEGER + } + + dscpStatusEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The DSCP port status." + ::= { dscpPortEntry 1 } + +-------------------- +-- Vlan Isolation +-------------------- + + vlanIsolationTable OBJECT-TYPE + SYNTAX SEQUENCE OF VlanIsolationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table contains configuration of isolated VLAN." + ::= { vlanIsolation 1 } + + vlanIsolationEntry OBJECT-TYPE + SYNTAX VlanIsolationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of vlanIsolationTable." + INDEX { dot1qVlanIndex } + ::= { vlanIsolationTable 1 } + + VlanIsolationEntry ::= + SEQUENCE { + vlanIsolationRowStatus INTEGER + } + + vlanIsolationRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table used to create/delete an entry." + ::= { vlanIsolationEntry 1 } + +-------------------- +-- enet MTU +-------------------- + + enetMtuEntry OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Sets the MTU size for layer 2 frame, size from 1526 to 1532, default value is 1526." + ::= { enetMtu 1 } + +-------------------- +-- CFM +-------------------- + +-- cfmLoopbackPortTable + +-- cfmLoopbackPortTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF CfmLoopbackPortEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "A table that contains CFM information." +-- ::= { cfm 1 } +-- +-- cfmLoopbackPortEntry OBJECT-TYPE +-- SYNTAX CfmLoopbackPortEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry in cfmLoopbackPortTable." +-- INDEX { ifIndex } +-- ::= { cfmLoopbackPortTable 1 } +-- +-- CfmLoopbackPortEntry ::= SEQUENCE { +-- cfmLoopbackPortState INTEGER +-- } +-- +-- cfmLoopbackPortState OBJECT-TYPE +-- SYNTAX INTEGER { +-- enable(1), +-- disable(2) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "CFM loopback enable/disable on the port." +-- ::= { cfmLoopbackPortEntry 1 } +-- +-- cfmMIPTable +-- +-- cfmMIPTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF CfmMIPEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { cfm 2 } +-- +-- cfmMIPEntry OBJECT-TYPE +-- SYNTAX CfmMIPEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry in cfmMIPTable." +-- INDEX { cfmLevel, cfmVlanID, cfmPort } +-- ::= { cfmMIPTable 1 } +-- +-- CfmMIPEntry ::= +-- SEQUENCE { +-- cfmLevel INTEGER, +-- cfmVlanID INTEGER, +-- cfmPort INTEGER, +-- cfmMIPRowStatus RowStatus +-- } +-- +-- cfmLevel OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { cfmMIPEntry 1 } +-- +-- cfmVlanID OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { cfmMIPEntry 2 } +-- +-- cfmPort OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { cfmMIPEntry 3 } +-- +-- cfmMIPRowStatus OBJECT-TYPE +-- SYNTAX RowStatus +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { cfmMIPEntry 4 } +-- +-- cfmActionEnableStatus OBJECT-TYPE +-- SYNTAX INTEGER { +-- enable(1), +-- disable(2) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "CFM Action enable status for the CO device" +-- ::= { cfm 3 } + + +-------------------- +-- DHCP Relay +-------------------- + +-- dhcpRelayEnable OBJECT-TYPE +-- SYNTAX INTEGER { +-- auto(1), +-- both(2), +-- disable(3) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Enable/disable DHCP relay Option82 function." +-- ::= { dhcp 1 } + + dhcpRelay82Table OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpRelay82Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains DHCP Relay configuration." + ::= { dhcp 2 } + + dhcpRelay82Entry OBJECT-TYPE + SYNTAX DhcpRelay82Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of DHCP Relay table." + INDEX { dot1qVlanIndex } + ::= { dhcpRelay82Table 1 } + + DhcpRelay82Entry ::= + SEQUENCE { + dhcpRelay82PrimaryServer IpAddress, + dhcpRelay82SecondaryServer IpAddress, + dhcpRelay82ActiveServer INTEGER, + dhcpRelay82Enable INTEGER, + dhcpRelay82Info DisplayString, + dhcpRelay82RelayMode INTEGER, + dhcpRelay82Suboption2Enable INTEGER, + dhcpRelay82Suboption2Info DisplayString, + dhcpRelay82EntryEnable INTEGER, + dhcpRelay82EntryOptionMode INTEGER, + dhcpRelay82VlanIp IpAddress, + dhcpRelay82VlanMask INTEGER, + dhcpRelay82VlanGateway IpAddress, + dhcpRelay82ThirdServer IpAddress, + dhcpRelay82FourthServer IpAddress, + dhcpRelay82FifthServer IpAddress, + dhcpRelay82ServerVid INTEGER + } + + dhcpRelay82PrimaryServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Relay primary server." + ::= { dhcpRelay82Entry 1 } + + dhcpRelay82SecondaryServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Relay secondary server." + ::= { dhcpRelay82Entry 2 } + + dhcpRelay82ActiveServer OBJECT-TYPE + SYNTAX INTEGER { + primary(1), + secondary(2), + third(3), + fourth(4), + fifth(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current active DHCP Relay server." + ::= { dhcpRelay82Entry 3 } + + dhcpRelay82Enable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable/disable DHCP relay and Option82 function." + ::= { dhcpRelay82Entry 4 } + + dhcpRelay82Info OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..23)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "User specific Option82 information." + ::= { dhcpRelay82Entry 5 } + + dhcpRelay82RelayMode OBJECT-TYPE + SYNTAX INTEGER { + auto(1), + all(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DHCP relay mode." + ::= { dhcpRelay82Entry 6 } + + + dhcpRelay82Suboption2Enable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable/disable Option 82 sub-option 2." + ::= { dhcpRelay82Entry 8 } + + dhcpRelay82Suboption2Info OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "User specified information for Option 82 sub-option 2." + ::= { dhcpRelay82Entry 9 } + + dhcpRelay82EntryEnable OBJECT-TYPE + SYNTAX INTEGER { + auto(1), + all(2), + disable(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable/disable DHCP Relay" + ::= { dhcpRelay82Entry 10 } + + dhcpRelay82EntryOptionMode OBJECT-TYPE + SYNTAX INTEGER { + private(1), + tr101(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Option82 format." + ::= { dhcpRelay82Entry 11 } + + dhcpRelay82VlanIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Relay interface for this VLAN." + ::= { dhcpRelay82Entry 12 } + + dhcpRelay82VlanMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The network mask of the DHCP Relay interface for this VLAN." + ::= { dhcpRelay82Entry 13 } + + dhcpRelay82VlanGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The gateway of the DHCP Relay interface for this VLAN." + ::= { dhcpRelay82Entry 14 } + + dhcpRelay82ThirdServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Relay third server." + ::= { dhcpRelay82Entry 15 } + + dhcpRelay82FourthServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Relay fourth server." + ::= { dhcpRelay82Entry 16 } + + + dhcpRelay82FifthServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Relay fifth server." + ::= { dhcpRelay82Entry 17 } + + dhcpRelay82ServerVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The VID of the DHCP Relay server for this VLAN." + ::= { dhcpRelay82Entry 18 } + +-- dhcpRelayOption82Sub1Info OBJECT-TYPE +-- SYNTAX DisplayString (SIZE (0..23)) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "User specific Option82 subOption1 (Agent circuit ID) information." +-- ::= { dhcp 3 } + +-- maxNumOfDhcpRelay82Conf OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "The maximum number of rows that can be created in dhcpRelay82Table." +-- ::= { dhcp 4 } + +-- dhcpRelayOption82Sub1Enable OBJECT-TYPE +-- SYNTAX INTEGER { +-- enable(1), +-- disable(2) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Enable/disable DHCP relay Option82 subOption1 (Agent Circuit ID) function." +-- ::= { dhcp 5 } + +-- dhcpRelayOption82Sub2Info OBJECT-TYPE +-- SYNTAX DisplayString (SIZE (0..23)) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "User specific Option82 subOption2 (Agent Remote ID) information." +-- ::= { dhcp 6 } + +-- dhcpRelayOption82Sub2Enable OBJECT-TYPE +-- SYNTAX INTEGER { +-- enable(1), +-- disable(2) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Enable/disable DHCP relay Option82 subOption2 (Agent Remote ID) function." +-- ::= { dhcp 7 } + +-- dhcpRelayTest + dhcpRelayTest OBJECT IDENTIFIER ::= { dhcp 8 } + + dhcpRelayTestVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting the VID of the test server." + ::= { dhcpRelayTest 1 } + + dhcpRelayTestIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting the IP of the test server." + ::= { dhcpRelayTest 2 } + + dhcpRelayTestOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the object to 1 to test DHCP server." + ::= { dhcpRelayTest 3 } + + dhcpRelayTestStatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display testing server status." + ::= { dhcpRelayTest 4 } + +-- dhcpRelayArp + dhcpRelayArp OBJECT IDENTIFIER ::= { dhcp 9 } + + dhcpRelayArpShowTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpRelayArpShowEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table displays DHCP ARP." + ::= { dhcpRelayArp 1 } + + dhcpRelayArpShowEntry OBJECT-TYPE + SYNTAX DhcpRelayArpShowEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dhcpRelayArpShowTable." + INDEX { dhcpRelayArpShowVid, dhcpRelayArpShowIp } + ::= { dhcpRelayArpShowTable 1 } + + DhcpRelayArpShowEntry ::= + SEQUENCE { + dhcpRelayArpShowVid INTEGER, + dhcpRelayArpShowIp IpAddress, + dhcpRelayArpShowMac PhysAddress + } + + dhcpRelayArpShowVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the VID of the DHCP ARP entry." + ::= { dhcpRelayArpShowEntry 1 } + + dhcpRelayArpShowIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the IP of the DHCP ARP entry." + ::= { dhcpRelayArpShowEntry 2 } + + dhcpRelayArpShowMac OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the MAC of the DHCP ARP entry." + ::= { dhcpRelayArpShowEntry 3 } + + dhcpRelayArpFlushOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the object to 1 to start flushing." + ::= { dhcpRelayArp 2 } + +-------------------- +-- MAC Filter +-------------------- + +-- MAC Filter Port Table + + macFilterPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the status of mac filtering for each port." + ::= { macfilter 1 } + + macFilterPortEntry OBJECT-TYPE + SYNTAX MacFilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in macFilterPortTable." + INDEX { ifIndex } + ::= { macFilterPortTable 1 } + + MacFilterPortEntry ::= + SEQUENCE { + macFilterPortEnable INTEGER, + macFilterPortMacCount INTEGER, + macFilterPortFilterMode INTEGER + } + + macFilterPortEnable OBJECT-TYPE + SYNTAX INTEGER { + enableMacFilter(1), + enableMacCount(2), +-- enableOuiFilter(3), + disable(4), + enableMacFilterAndMacCount(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable MAC filtering for the port." + ::= { macFilterPortEntry 1 } + + macFilterPortMacCount OBJECT-TYPE + SYNTAX INTEGER (1..128) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The total number of MAC addresses allowed for the port." + ::= { macFilterPortEntry 2 } + + macFilterPortFilterMode OBJECT-TYPE + SYNTAX INTEGER { + accept(1), + deny(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The mac filter mode (accept or deny) for the port." + ::= { macFilterPortEntry 3 } + + maxNumOfMacFiltersInSystem OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of mac filters supported in the system." + ::= { macfilter 2 } + + maxNumOfMacFiltersPerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of mac filters supported per port." + ::= { macfilter 3 } + + currNumOfMacFiltersInSystem OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of mac filters in the system." + ::= { macfilter 4 } + +-- MAC Table + + macFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains the mac filter addresses." + ::= { macfilter 5 } + + macFilterEntry OBJECT-TYPE + SYNTAX MacFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of macFilterTable." + INDEX { ifIndex, macFilterAddr } + ::= { macFilterTable 1 } + + MacFilterEntry ::= + SEQUENCE { + macFilterAddr PhysAddress, + macFilterRowStatus RowStatus + } + + macFilterAddr OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The mac address which can pass through or be rejected from the port." + ::= { macFilterEntry 1 } + + macFilterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the entry." + ::= { macFilterEntry 2 } + +-- Batch Set for MAC Filter + + macfilterBatchSet OBJECT IDENTIFIER ::= { macfilter 6 } + + macfilterTarget OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This managed object is used for identify the target on which + the port configuration should be performed. The target is encoded as: + Byte 1: 0, Reserved(chassis) + Byte 2~3: 0, Reserved(slot) + Byte 4: 0, reserved + Byte 5~11:each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc." + ::= { macfilterBatchSet 1 } + + macfilterOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The corresponding bit is set to 1 to start the operation. + The various bit positions are: + BIT 1: enable mac filter + BIT 2: enable mac count filter + BIT 3: disable mac filter + BIT 4: set mac count + BIT 5: disable mac count filter." + ::= { macfilterBatchSet 2 } + + macFilterMacCountForBatchSet OBJECT-TYPE + SYNTAX INTEGER (1..128) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The total number of MAC addresses allowed for a port." + ::= { macfilterBatchSet 3 } + + +-- OUI Filter Table +-- obsoleted since V3.0 at 2009/11/26 by maverick +-- Not used for R3.x and above. + ouiFilterTableOld OBJECT-TYPE + SYNTAX SEQUENCE OF OuiFilterEntryOld + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains the OUI filter addresses." + ::= { macfilter 7 } + + ouiFilterEntryOld OBJECT-TYPE + SYNTAX OuiFilterEntryOld + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of ouiFilterTableOld." + INDEX { ifIndex, ouiFilterAddrOld } + ::= { ouiFilterTableOld 1 } + + OuiFilterEntryOld ::= + SEQUENCE { + ouiFilterAddrOld OCTET STRING, + ouiFilterRowStatusOld RowStatus + } + + ouiFilterAddrOld OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The first three bytes of the mac address which can pass through or be rejected from the port." + ::= { ouiFilterEntryOld 1 } + + ouiFilterRowStatusOld OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the entry." + ::= { ouiFilterEntryOld 2 } + + maxNumOfOuiFiltersPerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of OUI filters supported per port." + ::= { macfilter 8 } + + + ouiFilterPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF OuiFilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the status of oui filtering for each port." + ::= { macfilter 9 } + + ouiFilterPortEntry OBJECT-TYPE + SYNTAX OuiFilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in macFilterPortTable." + INDEX { ifIndex } + ::= { ouiFilterPortTable 1 } + + OuiFilterPortEntry ::= + SEQUENCE { + ouiFilterPortEnable INTEGER, + ouiFilterPortFilterMode INTEGER + } + + + ouiFilterPortEnable OBJECT-TYPE + SYNTAX INTEGER { + enableOuiFilter(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable oui filtering for the port." + ::= { ouiFilterPortEntry 1 } + + + + ouiFilterPortFilterMode OBJECT-TYPE + SYNTAX INTEGER { + accept(1), + deny(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The oui filter mode (accept or deny) for the port." + ::= { ouiFilterPortEntry 2 } + +-- new OUI Filter VLAN + + maxNumOfOuiFiltersInSystem OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of OUI filters supported in system." + ::= { macfilter 10 } + + maxNumOfOuiFiltersPerVlan OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of OUI filters supported per vlan." + ::= { macfilter 11 } + + ouiFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF OuiFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains the OUI filter addresses." + ::= { macfilter 12 } + + ouiFilterEntry OBJECT-TYPE + SYNTAX OuiFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of ouiFilterTable." + INDEX { dot1qVlanIndex, ouiFilterAddr } + ::= { ouiFilterTable 1 } + + OuiFilterEntry ::= + SEQUENCE { + ouiFilterAddr OCTET STRING, + ouiFilterRowStatus RowStatus + } + + ouiFilterAddr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The first three bytes of the mac address which can pass through or be rejected from the vlan." + ::= { ouiFilterEntry 1 } + + ouiFilterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the entry." + ::= { ouiFilterEntry 2 } + + + ouiFilterVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF OuiFilterVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the status of oui filtering for each configured VLAN." + ::= { macfilter 13 } + + ouiFilterVlanEntry OBJECT-TYPE + SYNTAX OuiFilterVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in ouiFilterVlanTable." + INDEX { dot1qVlanIndex } + ::= { ouiFilterVlanTable 1 } + + OuiFilterVlanEntry ::= + SEQUENCE { + ouiFilterVlanEnable INTEGER, + ouiFilterVlanFilterMode INTEGER + } + + + ouiFilterVlanEnable OBJECT-TYPE + SYNTAX INTEGER { + enableOuiFilter(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable oui filtering for the VLAN." + ::= { ouiFilterVlanEntry 1 } + + + + ouiFilterVlanFilterMode OBJECT-TYPE + SYNTAX INTEGER { + accept(1), + deny(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The oui filter mode (accept or deny) for the VLAN." + ::= { ouiFilterVlanEntry 2 } + + +-------------------- +-- DHCP Snoop +-------------------- + +-- dhcpSnoopPortTable + + dhcpSnoopPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpSnoopPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes DHCP snooping enable/disable for each port." + ::= { dhcpSnoop 1 } + + dhcpSnoopPortEntry OBJECT-TYPE + SYNTAX DhcpSnoopPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dhcpSnoopPortTable." + INDEX { ifIndex } + ::= { dhcpSnoopPortTable 1 } + + DhcpSnoopPortEntry ::= + SEQUENCE { + dhcpSnoopEnable INTEGER, + dhcpSnoopMaxcnt INTEGER, + dhcpSnoopSmacverifyEnable INTEGER + } + + dhcpSnoopEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable DHCP snooping for a port." + ::= { dhcpSnoopPortEntry 1 } + + dhcpSnoopMaxcnt OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the max entries of the DHCP ARP table." + ::= { dhcpSnoopPortEntry 2 } + + dhcpSnoopSmacverifyEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable DHCP source MAC verify for a port." + ::= { dhcpSnoopPortEntry 3 } + + +-- dhcpSnoopOperation + + dhcpSnoopTarget OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This managed object is used for identify the target on which + the operation should be performed. The target is encoded as: + Byte 1: the octet specifies a set of eight chassis, chassis 0 through 7 + Byte 2~3: each octet specifies a set of eight slots, with the + first octet specifying slots 1 through 8 and the second + octet specifying slots 9 through 16. + Byte 4: reserved + Byte 5~11:each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc." + ::= { dhcpSnoop 2 } + + dhcpSnoopOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The corresponding bit is set to 1 to start the operation. + The various bit positions are: + BIT 1: DHCP snooping table flush." + ::= { dhcpSnoop 3 } + +-- dhcpStaticTable + + dhcpStaticTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpStaticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table defines DHCP static IP addresses." + ::= { dhcpSnoop 4 } + + dhcpStaticEntry OBJECT-TYPE + SYNTAX DhcpStaticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dhcpStaticTable." + INDEX { ifIndex, dhcpStaticIpAddr } + ::= { dhcpStaticTable 1 } + + DhcpStaticEntry ::= + SEQUENCE { + dhcpStaticIpAddr IpAddress, + dhcpStaticRowStatus RowStatus + } + + dhcpStaticIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address which can pass through the port." + ::= { dhcpStaticEntry 1 } + + dhcpStaticRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table entry." + ::= { dhcpStaticEntry 2 } + + maxNumOfDhcpStaticIp OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of DHCP static IP addresses which can be created for a port." + ::= { dhcpSnoop 5 } + + dhcpSnoopMaxcntMode OBJECT-TYPE + SYNTAX INTEGER { + replace(1), + drop(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "When DHCP snooping table is full, new DHCP lease will replace first one in option 0 or will be dropped in option 1." + ::= { dhcpSnoop 6 } + +-------------------- +-- ACL Rule +-------------------- + +-- aclSetTable + + aclSetTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "aclsetTable." + ::= { acl 1 } + + aclSetEntry OBJECT-TYPE + SYNTAX AclSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of aclSetTable." + INDEX { ifIndex, aclSetVpi, aclSetVci, aclSetProfileName } + ::= { aclSetTable 1 } + + AclSetEntry ::= + SEQUENCE { + aclSetVpi INTEGER, + aclSetVci INTEGER, + aclSetProfileName DisplayString, + aclSetRowStatus RowStatus + } + + aclSetVpi OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI value" + ::= { aclSetEntry 1 } + + aclSetVci OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI value" + ::= { aclSetEntry 2 } + + aclSetProfileName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ACL Profile name" + ::= { aclSetEntry 3 } + + aclSetRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "RowStatus of aclSetEntry" + ::= { aclSetEntry 4 } + +-- aclProfileTable + + aclProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "aclProfileTable." + ::= { acl 2 } + + aclProfileEntry OBJECT-TYPE + SYNTAX AclProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of aclProfileTable." + INDEX { aclProfileRuleName } + ::= { aclProfileTable 1 } + + AclProfileEntry ::= + SEQUENCE { + aclProfileRuleName DisplayString, + aclProfileRuleNumber INTEGER, + aclProfileActionNumber INTEGER, + aclProfileRuleParamMask INTEGER, + aclProfileRuleEtype INTEGER, + aclProfileRuleVid INTEGER, + aclProfileRuleSmac PhysAddress, + aclProfileRuleDmac PhysAddress, + aclProfileRulePriority INTEGER, + aclProfileRuleProtocol INTEGER, + aclProfileRuleSrcIP IpAddress, + aclProfileRuleSrcIPMask INTEGER, + aclProfileRuleDestIP IpAddress, + aclProfileRuleDestIPMask INTEGER, + aclProfileRuleStartTos INTEGER, + aclProfileRuleEndTos INTEGER, + aclProfileRuleSrcStartPort INTEGER, + aclProfileRuleSrcEndPort INTEGER, + aclProfileRuleDestStartPort INTEGER, + aclProfileRuleDestEndPort INTEGER, + aclProfileActionRate INTEGER, + aclProfileActionrvlan INTEGER, + aclProfileActionrpri INTEGER, + aclProfileRowStatus RowStatus + } + + aclProfileRuleName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Profile rule name" + ::= { aclProfileEntry 1 } + + aclProfileRuleNumber OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is for acl profile rule configuration. + etype vlan (1), + etype smac (2), + etype dmac (3), + vlan smac (4), + vlan dmac (5), + smac dmac (6), + vlan priority (7), + etype (8), + vlan (9), + smac (10), + dmac (11), + priority (12), + protocol (13), + {srcip /{|dstip /{|tos {|srcport {|dstport }}}}} (14) " + ::= { aclProfileEntry 2 } + + aclProfileActionNumber OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile action number. + Bit 1: rate + Bit 2: rvlan + Bit 3: rpri + Bit 4: deny + Bit 1, Bit 2 & Bit 3 can multiple selection." + ::= { aclProfileEntry 3 } + + aclProfileRuleParamMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule parameter mask. + BIT 1: srcip / + BIT 2: dstip / + BIT 3: tos + BIT 4: srcport + BIT 5: dstport " + ::= { aclProfileEntry 4 } + + aclProfileRuleEtype OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule etype" + ::= { aclProfileEntry 5 } + + aclProfileRuleVid OBJECT-TYPE + SYNTAX INTEGER (1..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule vid" + ::= { aclProfileEntry 6 } + + aclProfileRuleSmac OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule source MAC" + ::= { aclProfileEntry 7 } + + aclProfileRuleDmac OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule destination MAC" + ::= { aclProfileEntry 8 } + + aclProfileRulePriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule priority" + ::= { aclProfileEntry 9 } + + aclProfileRuleProtocol OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule protocol. + icmp(1),igmp(2),ip(4),tcp(6), + udp(17),gre(47),ospf(89), + other ptype" + ::= { aclProfileEntry 10 } + + aclProfileRuleSrcIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule source IP" + ::= { aclProfileEntry 11 } + + aclProfileRuleSrcIPMask OBJECT-TYPE + SYNTAX INTEGER (0..32) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The subnet mask of source IP mask" + ::= { aclProfileEntry 12 } + + aclProfileRuleDestIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule source IP" + ::= { aclProfileEntry 13 } + + aclProfileRuleDestIPMask OBJECT-TYPE + SYNTAX INTEGER (0..32) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The subnet mask of dest IP mask" + ::= { aclProfileEntry 14 } + + aclProfileRuleStartTos OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule start type of service" + ::= { aclProfileEntry 15 } + + aclProfileRuleEndTos OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule end type of service" + ::= { aclProfileEntry 16 } + + aclProfileRuleSrcStartPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule source start port" + ::= { aclProfileEntry 17 } + + aclProfileRuleSrcEndPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule source end port" + ::= { aclProfileEntry 18 } + + aclProfileRuleDestStartPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule destination start port" + ::= { aclProfileEntry 19 } + + aclProfileRuleDestEndPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule destination end port" + ::= { aclProfileEntry 20 } + + aclProfileActionRate OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile action to replace to this rate" + ::= { aclProfileEntry 21 } + + aclProfileActionrvlan OBJECT-TYPE + SYNTAX INTEGER (1..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile action to replace to this vlan" + ::= { aclProfileEntry 22 } + + aclProfileActionrpri OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile action to replace to this priority" + ::= { aclProfileEntry 23 } + + aclProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The row status of the entry." + ::= { aclProfileEntry 24 } + +-------------------- +-- PPPoE Agent +-------------------- + +-- pppoeAgentTable + + pppoeAgentTable OBJECT-TYPE + SYNTAX SEQUENCE OF PppoeAgentEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains PPPoE DHCP Relay configuration." + ::= { pppoeAgent 1 } + + pppoeAgentEntry OBJECT-TYPE + SYNTAX PppoeAgentEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of pppoeAgentTable." + INDEX { dot1qVlanIndex } + ::= { pppoeAgentTable 1 } + + PppoeAgentEntry ::= + SEQUENCE { + pppoeAgentEnable INTEGER, + pppoeAgentInfo DisplayString, + pppoeAgentRowStatus RowStatus, + pppoeAgentOptionMode INTEGER + } + + pppoeAgentEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable/disable DHCP relay and Option82 function." + ::= { pppoeAgentEntry 1 } + + pppoeAgentInfo OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..23)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "User specific Option82 information." + ::= { pppoeAgentEntry 2 } + + pppoeAgentRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table entry." + ::= { pppoeAgentEntry 3 } + + pppoeAgentOptionMode OBJECT-TYPE + SYNTAX INTEGER { + private(1), + tr101(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Option82 format." + ::= { pppoeAgentEntry 4 } + + maxNumOfPppoeDhcpRelay82Conf OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of rows that can be created in pppoeAgentTable." + ::= { pppoeAgent 2 } + +---------------------------------------- +-- macff +---------------------------------------- + macFfTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains MAC Force Forwarding configuration." + ::= { macff 1 } + + macFfEntry OBJECT-TYPE + SYNTAX MacFfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfTable." + INDEX { macFfIndex } + ::= { macFfTable 1 } + + MacFfEntry ::= + SEQUENCE { + macFfIndex INTEGER, + macFfVid INTEGER, + macFfArIP IpAddress, +-- macFfArMask INTEGER, + macFfSrcIP IpAddress, + macFfSrcMask INTEGER, + macFfRowStatus RowStatus + } + + macFfIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of the MACFF." + ::= { macFfEntry 1 } + + macFfVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The VLAN-ID refering to this AR/AS." + ::= { macFfEntry 2 } + + + macFfArIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IP of this AR/AS" + ::= { macFfEntry 3 } + + macFfSrcIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source IP address of the MACFF." + ::= { macFfEntry 4 } + + macFfSrcMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The subnet mask of source IP mask." + ::= { macFfEntry 5 } + + + macFfRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the MacFfEntry entry." + ::= { macFfEntry 6 } + + + macFfArpFlush OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the object to 1 to flush mac table." + ::= { macff 3 } + + maxNumOfMacFfVlanInSystem OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of macff Vlans supported in the system." + ::= { macff 4 } + + macFfVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains MAC Force Forwarding Vlan configuration." + ::= { macff 5 } + + macFfVlanEntry OBJECT-TYPE + SYNTAX MacFfVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfVlanTable." + INDEX { dot1qVlanIndex } + ::= { macFfVlanTable 1 } + + MacFfVlanEntry ::= + SEQUENCE { + macFfVlanRowstatus INTEGER, + macFfVlanUnknownUnicast INTEGER + } + + macFfVlanRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table used to create/delete an entry." + ::= { macFfVlanEntry 1 } + + macFfVlanUnknownUnicast OBJECT-TYPE + SYNTAX INTEGER { + flood(1), + drop(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Setting downstream unknown uni-cast packet on macff vlan to flooding or dropping." + ::= { macFfVlanEntry 2 } + + macFfStaticIPTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfStaticIPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + ::= { macff 6 } + + macFfStaticIPEntry OBJECT-TYPE + SYNTAX MacFfStaticIPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfTable." + INDEX { macFfStaticIPPort, macFfStaticIPVid, macFfstaticIP , macFfStaticIPMask} + ::= { macFfStaticIPTable 1 } + + MacFfStaticIPEntry ::= + SEQUENCE { + macFfStaticIPPort INTEGER, + macFfStaticIPVid INTEGER, + macFfstaticIP IpAddress, + macFfStaticIPMask INTEGER, + macFfStaticIPRowStatus RowStatus + } + + macFfStaticIPPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The port number, 1 ~ 48." + ::= { macFfStaticIPEntry 1 } + + macFfStaticIPVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + + STATUS current + DESCRIPTION + "VLAN ID of the IP range, 1 ~ 4094, the vid should be enable the MACFF function first." + ::= { macFfStaticIPEntry 2 } + + + macFfstaticIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + + STATUS current + DESCRIPTION + "The specified IP range." + ::= { macFfStaticIPEntry 3 } + + macFfStaticIPMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + + STATUS current + DESCRIPTION + "Mask_bits is 24 .. 32." + ::= { macFfStaticIPEntry 4 } + + + macFfStaticIPRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status used to configure the table entry." + ::= { macFfStaticIPEntry 5 } + +---------------------------------------- +-- sys +---------------------------------------- + accessCtrl OBJECT IDENTIFIER ::= { sys 5 } + extAlarm OBJECT IDENTIFIER ::= { sys 8 } + user OBJECT IDENTIFIER ::= { sys 9 } + usbCastCtrl OBJECT IDENTIFIER ::= { sys 10} + dsbCastCtrl OBJECT IDENTIFIER ::= { sys 11} + + + + stdioTimeout OBJECT-TYPE + SYNTAX INTEGER (0..300) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the CLI/TELNET/WEB Session timeout, 0, or 1~300 minutes, 0 => disable." + ::= { sys 12 } + + isConfigChanged OBJECT-TYPE + SYNTAX INTEGER { + yes(1), + no(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If system configuration has been changed." + ::= { sys 13 } + + fwUpgrade OBJECT IDENTIFIER ::= {sys 14} + delayedReboot OBJECT IDENTIFIER ::= {sys 15} +-------------------- +-- Access Control +-------------------- +-- Secured Client Table + + securedClientTable OBJECT-TYPE + SYNTAX SEQUENCE OF SecuredClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about secured clients." + ::= { accessCtrl 2 } + + securedClientEntry OBJECT-TYPE + SYNTAX SecuredClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of secured client entry." + INDEX { securedClientIndex } + ::= { securedClientTable 1 } + + SecuredClientEntry ::= + SEQUENCE { + securedClientIndex INTEGER, + securedClientStartIp IpAddress, + securedClientEndIp IpAddress, + securedClientService INTEGER, + securedClientEnable INTEGER + } + + securedClientIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of the entry." + ::= { securedClientEntry 1 } + + securedClientStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The starting IP address of the secured client set." + ::= { securedClientEntry 2 } + + securedClientEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ending IP address of the secured client set." + ::= { securedClientEntry 3 } + + securedClientService OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Each bit corresponds to a service. The bit is set to 1 if the + service is enabled, and set to 0 if the service is disabled. + The various bit positions are: + BIT 1: telnet + BIT 2: ftp + BIT 3: web + BIT 4: icmp + BIT 5: not support + BIT 6: snmp." + ::= { securedClientEntry 4 } + + securedClientEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable the entry." + ::= { securedClientEntry 5 } + + +-------------------- +-- extAlarm +-------------------- + + extAlarmTable OBJECT-TYPE + SYNTAX SEQUENCE OF ExtAlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains external alarm information." + ::= { extAlarm 1 } + + extAlarmEntry OBJECT-TYPE + SYNTAX ExtAlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of external alarm table." + INDEX { extAlarmIndex } + ::= { extAlarmTable 1 } + + ExtAlarmEntry ::= + SEQUENCE { + extAlarmIndex INTEGER, + extAlarmname OCTET STRING, + extAlarmstatus OCTET STRING, + extAlarmTriggeredMode INTEGER + } + + extAlarmIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of the entry." + ::= { extAlarmEntry 1 } + + extAlarmname OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The external alarm name." + ::= { extAlarmEntry 2 } + + extAlarmstatus OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Dispaly 'Normal' or 'Alarm' string" + ::= { extAlarmEntry 3 } + + extAlarmTriggeredMode OBJECT-TYPE + SYNTAX INTEGER { + closeAlarm(1), + openAlarm(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The external alarm triggered mode." + ::= { extAlarmEntry 4 } + +-------------------- +-- User Management +-------------------- + + userAuthMode OBJECT-TYPE + SYNTAX INTEGER { + local(1), + radius(2), + localThenRadius(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "User authentication procsssing mode." + ::= { user 1 } + + userAuthServerIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the authentication server." + ::= { user 2 } + + userAuthServerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port of the authentication server." + ::= { user 3 } + + userAuthServerSecret OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The secret between the authentication server and the NE for authentication process." + ::= { user 4 } + +-- userTable + + userTable OBJECT-TYPE + SYNTAX SEQUENCE OF UserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains user information." + ::= { user 5 } + + userEntry OBJECT-TYPE + SYNTAX UserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of userTable." + INDEX { userName } + ::= { userTable 1 } + + UserEntry ::= + SEQUENCE { + userName DisplayString, + userPassword DisplayString, + userPriviledge INTEGER, + userRowStatus RowStatus + } + + userName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The user name." + ::= { userEntry 1 } + + userPassword OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The user password." + ::= { userEntry 2 } + + userPriviledge OBJECT-TYPE + SYNTAX INTEGER { + high(1), + middle(2), + low(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The user priviledge to decide what operation the user can and cannot do." + ::= { userEntry 3 } + + userRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status used to create or delete a user." + ::= { userEntry 4 } + + userAuthDefaultPriviledge OBJECT-TYPE + SYNTAX INTEGER { + high(1), + middle(2), + low(3), + deny(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The user default priviledge to be assigned when radius authentication succeds + but no user priviledge information(radius service-type) is provided." + ::= { user 6 } + +-------------------- +-- Upstream Broadcast +-------------------- + + usBcastCtrlEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable upstream broadcast control." + ::= { usbCastCtrl 1 } + + usBcastCtrlRate OBJECT-TYPE + SYNTAX INTEGER + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "32~49984 in step of 32kbps" + ::= { usbCastCtrl 2 } + +-------------------- +-- Downstream Broadcast +-------------------- + + dsBcastCtrlEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable downstream broadcast control." + ::= { dsbCastCtrl 1 } + + dsBcastCtrlRate OBJECT-TYPE + SYNTAX INTEGER + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "32~1000000 in step of 32 kbps" + ::= { dsbCastCtrl 2 } + + +-------------------- +-- fwUpgrade +-------------------- + + fwUpgradeVersion OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure the target firmware version that will be upgraded." + ::= { fwUpgrade 1 } + + fwUpgradeCheck OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable firmware upgrade version checking feature." + ::= { fwUpgrade 2 } + + fwUpgradeStatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display current firmware upgrade status." + ::= { fwUpgrade 3 } + +-------------------- +-- delayedReboot +-------------------- + delayedRebootTimer OBJECT-TYPE + SYNTAX INTEGER + UNITS "sec" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "5~1800 secs, 0: reboot immediately." + ::= { delayedReboot 1 } + + delayedRebootRemainingTime OBJECT-TYPE + SYNTAX INTEGER + UNITS "sec" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the remaining time of scheduled reboot." + ::= { delayedReboot 2 } + + delayedRebootCancel OBJECT-TYPE + SYNTAX INTEGER { + cancel(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "cancel the scheduled reboot." + ::= { delayedReboot 3 } + + + +---------------------------------------- +-- statistics +---------------------------------------- + + dhcpStats OBJECT IDENTIFIER ::= { statistics 11 } + paepvcStats OBJECT IDENTIFIER ::= { statistics 12 } + macStats OBJECT IDENTIFIER ::= { statistics 13 } + ipbpvcStats OBJECT IDENTIFIER ::= { statistics 14 } -- obsoleted since R3.0 at 2009/11/26 by maverick + macffStats OBJECT IDENTIFIER ::= { statistics 16 } + enetStats OBJECT IDENTIFIER ::= { statistics 17 } + adslStats OBJECT IDENTIFIER ::= { statistics 18 } +-------------------- +-- IGMP +-------------------- + + igmpQueryCntTotal OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP query messages received." + ::= { statistics 1 } + + igmpReportCntTotal OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP report messages received." + ::= { statistics 2 } + + igmpLeaveCntTotal OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP leave messages received." + ::= { statistics 3 } + + igmpNumOfActiveGroups OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP learned groups." + ::= { statistics 4 } + +-- igmpGroupTable + + igmpGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes igmp group information." + ::= { statistics 5 } + + igmpGroupEntry OBJECT-TYPE + SYNTAX IgmpGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in igmpGroupTable." + INDEX { igmpGroupIp } + ::= { igmpGroupTable 1 } + + IgmpGroupEntry ::= + SEQUENCE { + igmpGroupIp IpAddress, + igmpGroupvid INTEGER, + igmpGroupnumberOfMembers INTEGER, + igmpGroupMemberPorts PortList + + } + + igmpGroupIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "igmp group IP" + ::= { igmpGroupEntry 1 } + + igmpGroupvid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "vlan id" + ::= { igmpGroupEntry 2 } + + igmpGroupnumberOfMembers OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "number Of Members" + + ::= { igmpGroupEntry 3 } + + igmpGroupMemberPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Group Member Ports" + + ::= { igmpGroupEntry 4 } + +-- igmpGroupPortTable + + igmpGroupPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpGroupPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes igmp Group port information." + ::= { statistics 6 } + + igmpGroupPortEntry OBJECT-TYPE + SYNTAX IgmpGroupPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in igmpGroupPortTable." + INDEX { ifIndex , igmpGroupPortIp , igmpGroupPortvid} + ::= { igmpGroupPortTable 1 } + + IgmpGroupPortEntry ::= + SEQUENCE { + igmpGroupPortIp IpAddress, + igmpGroupPortvid INTEGER + } + + igmpGroupPortIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Igmp Group IP" + ::= { igmpGroupPortEntry 1 } + + igmpGroupPortvid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Igmp Group vid" + ::= { igmpGroupPortEntry 2 } + +-- igmpGroupV2Table + + igmpGroupV2Table OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpGroupV2Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that displays IGMP learned group member information." + ::= { statistics 7 } + + igmpGroupV2Entry OBJECT-TYPE + SYNTAX IgmpGroupV2Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of igmpGroupV2Table." + INDEX { igmpGroupV2Vid, igmpGroupV2Ip } + ::= { igmpGroupV2Table 1 } + + IgmpGroupV2Entry ::= + SEQUENCE { + igmpGroupV2Vid VlanIndex, + igmpGroupV2Ip IpAddress, + igmpGroupV2NumOfMembers INTEGER, + igmpGroupV2MemberPorts PortList + } + + igmpGroupV2Vid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IGMP group VLAN ID." + ::= { igmpGroupV2Entry 1 } + + igmpGroupV2Ip OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The multicast IP address." + ::= { igmpGroupV2Entry 2 } + + igmpGroupV2NumOfMembers OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of member ports in the group." + ::= { igmpGroupV2Entry 3 } + + igmpGroupV2MemberPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The member port list of the group." + ::= { igmpGroupV2Entry 4 } + +-- igmpGroupPortV2Table + + igmpGroupPortV2Table OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpGroupPortV2Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that displays IGMP joined groups in this port." + ::= { statistics 8 } + + igmpGroupPortV2Entry OBJECT-TYPE + SYNTAX IgmpGroupPortV2Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of igmpGroupPortV2Table." + INDEX { ifIndex, igmpGroupPortV2Vid, igmpGroupPortV2Ip, igmpGroupPortV2SourceIp } + ::= { igmpGroupPortV2Table 1 } + + IgmpGroupPortV2Entry ::= + SEQUENCE { + igmpGroupPortV2Vid VlanIndex, + igmpGroupPortV2Ip IpAddress, + igmpGroupPortV2SourceIp IpAddress + } + + igmpGroupPortV2Vid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IGMP group VLAN ID." + ::= { igmpGroupPortV2Entry 1 } + + igmpGroupPortV2Ip OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The multicast IP address." + ::= { igmpGroupPortV2Entry 2 } + + igmpGroupPortV2SourceIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The source IP address that joins the IGMP group." + ::= { igmpGroupPortV2Entry 3 } + +-- igmpPortCtrlPduTable + + igmpPortCtrlPduTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpPortCtrlPduEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that displays IGMP related counter values in this port." + ::= { statistics 9 } + + igmpPortCtrlPduEntry OBJECT-TYPE + SYNTAX IgmpPortCtrlPduEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of igmpPortCtrlPduTable." + INDEX { ifIndex } + ::= { igmpPortCtrlPduTable 1 } + + IgmpPortCtrlPduEntry ::= + SEQUENCE { + igmpPortCtrlPduQueryCnt Counter32, + igmpPortCtrlPduReportCnt Counter32, + igmpPortCtrlPduLeaveCnt Counter32, + igmpPortNumOfActiveGroups INTEGER, + igmpPortCtrlAuditLeaveCnt Counter32 + } + + igmpPortCtrlPduQueryCnt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP query messages received in this port." + ::= { igmpPortCtrlPduEntry 1 } + + igmpPortCtrlPduReportCnt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP report messages received in this port." + ::= { igmpPortCtrlPduEntry 2 } + + igmpPortCtrlPduLeaveCnt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP leave messages received in this port." + ::= { igmpPortCtrlPduEntry 3 } + + igmpPortNumOfActiveGroups OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of active IGMP groups in this port." + ::= { igmpPortCtrlPduEntry 4 } + + igmpPortCtrlAuditLeaveCnt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of groups left by audit query." + ::= { igmpPortCtrlPduEntry 5 } +-------------------- +-- DHCP +-------------------- + +-- dhcpSnoopIpTable + + dhcpSnoopIpTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpSnoopIpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table shows the IP addresses and netmasks offered by the DHCP server." + ::= { dhcpStats 1 } + + dhcpSnoopIpEntry OBJECT-TYPE + SYNTAX DhcpSnoopIpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dhcpSnoopIpTable." + INDEX { ifIndex, dhcpSnoopIp } + ::= { dhcpSnoopIpTable 1 } + + DhcpSnoopIpEntry ::= + SEQUENCE { + dhcpSnoopIp IpAddress, + dhcpSnoopMac PhysAddress, + dhcpSnoopVid VlanIndex, + dhcpSnoopMask INTEGER, + dhcpSnoopGateway IpAddress, + dhcpSnoopRouteMap OCTET STRING + } + + dhcpSnoopIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The snooped IP address." + ::= { dhcpSnoopIpEntry 1 } + + dhcpSnoopMac OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The snooped MAC address." + ::= { dhcpSnoopIpEntry 2 } + + dhcpSnoopVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The snooped VLAN ID." + ::= { dhcpSnoopIpEntry 3 } + + dhcpSnoopMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The snooped IP mask" + ::= { dhcpSnoopIpEntry 4 } + + dhcpSnoopGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The snooped Gateway." + ::= { dhcpSnoopIpEntry 5 } + + dhcpSnoopRouteMap OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The refrence bit map of the dhcp route" + ::= { dhcpSnoopIpEntry 6 } + +-- dhcpSnoopCounterTable + + dhcpSnoopCounterTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpSnoopCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table shows the DHCP statistics." + ::= { dhcpStats 2 } + + dhcpSnoopCounterEntry OBJECT-TYPE + SYNTAX DhcpSnoopCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dhcpSnoopCounterTable." + INDEX { ifIndex } + ::= { dhcpSnoopCounterTable 1 } + + DhcpSnoopCounterEntry ::= + SEQUENCE { + dhcpDiscovery Counter64, + dhcpOffer Counter64, + dhcpRequest Counter64, + dhcpAck Counter64, + dhcpAckBySnoopFull Counter64 + } + + dhcpDiscovery OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received DHCP server discovery packets." + ::= { dhcpSnoopCounterEntry 1 } + + dhcpOffer OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received DHCP server offer packets." + ::= { dhcpSnoopCounterEntry 2 } + + dhcpRequest OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received DHCP IP request packets." + ::= { dhcpSnoopCounterEntry 3 } + + dhcpAck OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received DHCP IP acknowledge packets." + ::= { dhcpSnoopCounterEntry 4 } + + dhcpAckBySnoopFull OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received DHCP IP acknowledge packets that replace the oldest snooping + entry in snooping table due to table full." + ::= { dhcpSnoopCounterEntry 5 } + + dhcpRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains dhcp route information." + ::= { dhcpStats 3 } + + dhcpRouteEntry OBJECT-TYPE + SYNTAX DhcpRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dhcpRouteTable." + INDEX { dhcpRouteIndex } + ::= { dhcpRouteTable 1 } + + DhcpRouteEntry ::= + SEQUENCE { + dhcpRouteIndex INTEGER, + dhcpRouteVid VlanIndex, + dhcpRouteIP IpAddress, + dhcpRouteMask INTEGER, + dhcpRouteGwIP IpAddress + } + + dhcpRouteIndex OBJECT-TYPE + SYNTAX INTEGER (1..24) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { dhcpRouteEntry 1 } + + dhcpRouteVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The VLAN-ID refering to this dhcp route." + ::= { dhcpRouteEntry 2 } + + + dhcpRouteIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP of this dhcp route" + ::= { dhcpRouteEntry 3 } + + dhcpRouteMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The subnet mask of source IP mask." + ::= { dhcpRouteEntry 4 } + + dhcpRouteGwIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The gateway IP address." + ::= { dhcpRouteEntry 5 } + +-------------------- +-- PAE PVC +-------------------- + +-- paepvcSessionTable + + paepvcSessionTable OBJECT-TYPE + SYNTAX SEQUENCE OF PaepvcSessionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table shows the paepvc session statistics." + ::= { paepvcStats 1 } + + paepvcSessionEntry OBJECT-TYPE + SYNTAX PaepvcSessionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of paepvcSessionTable." + INDEX { ifIndex , paepvcSessionVpi, paepvcSessionVci } + ::= { paepvcSessionTable 1 } + + PaepvcSessionEntry ::= + SEQUENCE { + paepvcSessionVpi INTEGER, + paepvcSessionVci INTEGER, + paepvcSessionState INTEGER, + paepvcSessionId INTEGER, + paepvcSessionUptime Unsigned32, + paepvcSessionacname DisplayString, + paepvcSessionsrvcname DisplayString + } + + paepvcSessionVpi OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC VPI." + ::= { paepvcSessionEntry 1 } + + paepvcSessionVci OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC VCI." + ::= { paepvcSessionEntry 2 } + + paepvcSessionState OBJECT-TYPE + SYNTAX INTEGER { + down(1), + pppoe(2), + ppp(3), + up(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC status." + ::= { paepvcSessionEntry 3 } + + paepvcSessionId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC session ID." + ::= { paepvcSessionEntry 4 } + + paepvcSessionUptime OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "second" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC session uptime." + ::= { paepvcSessionEntry 5 } + + paepvcSessionacname OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Access concentrator name." + ::= { paepvcSessionEntry 6 } + + paepvcSessionsrvcname OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Service name." + ::= { paepvcSessionEntry 7 } + +-- paepvcCountTable + + paepvcCountTable OBJECT-TYPE + SYNTAX SEQUENCE OF PaepvcCountEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table shows the paepvc counters." + ::= { paepvcStats 2 } + + paepvcCountEntry OBJECT-TYPE + SYNTAX PaepvcCountEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of paepvcCountTable." + INDEX { ifIndex , paepvcCountVpi, paepvcCountVci } + ::= { paepvcCountTable 1 } + + PaepvcCountEntry ::= + SEQUENCE { + paepvcCountVpi INTEGER, + paepvcCountVci INTEGER, + paepvcCountPppLcpCfgReqRx Unsigned32, + paepvcCountPppLcpEchoReqRx Unsigned32, + paepvcCountPppLcpEchoReplyRx Unsigned32, + paepvcCountPadiTx Unsigned32, + paepvcCountPadoRx Unsigned32, + paepvcCountPadrTx Unsigned32, + paepvcCountPadsRx Unsigned32, + paepvcCountPadtTx Unsigned32, + paepvcCountPadtRx Unsigned32, + paepvcCountSrvcnameErrRx Unsigned32, + paepvcCountAcSystemErrRx Unsigned32, + paepvcCountGenericErrTx Unsigned32, + paepvcCountGenericErrRx Unsigned32 + } + + + paepvcCountVpi OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC VPI." + ::= { paepvcCountEntry 1 } + + paepvcCountVci OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC VCI." + ::= { paepvcCountEntry 2 } + + paepvcCountPppLcpCfgReqRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ppp lcp config-request received." + ::= { paepvcCountEntry 3 } + + paepvcCountPppLcpEchoReqRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ppp lcp echo-request received." + ::= { paepvcCountEntry 4 } + + paepvcCountPppLcpEchoReplyRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ppp lcp echo-reply received." + ::= { paepvcCountEntry 5 } + + paepvcCountPadiTx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe padi transfered" + ::= { paepvcCountEntry 6 } + + paepvcCountPadoRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe pado received" + ::= { paepvcCountEntry 7 } + + paepvcCountPadrTx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe padr transfered" + ::= { paepvcCountEntry 8 } + + paepvcCountPadsRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe pads received" + ::= { paepvcCountEntry 9 } + + paepvcCountPadtTx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe padt transfered" + ::= { paepvcCountEntry 10 } + + paepvcCountPadtRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe padt received" + ::= { paepvcCountEntry 11 } + + paepvcCountSrvcnameErrRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe service name error received" + ::= { paepvcCountEntry 12 } + + paepvcCountAcSystemErrRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe access concentrator name error received" + ::= { paepvcCountEntry 13 } + + paepvcCountGenericErrTx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe generic error transfered" + ::= { paepvcCountEntry 14 } + + paepvcCountGenericErrRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe generic error received" + ::= { paepvcCountEntry 15 } + +-------------------- +-- MAC +-------------------- + + macDisplayTarget OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This managed object is a filter used for identify the target from which + the MAC addresses are learned in macTable. The target could be: + 99: all ports in the system + 98: all subscriber ports + 97: all Ethernet ports + + IfIndex is used for identifying subscriber ports and Ethernet Ports(e.g. 1 ~ 50)." + ::= { macStats 1 } + +-- macTable + + macTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacEntry + MAX-ACCESS not-accessible + STATUS current + 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." + ::= { macStats 2 } + + macEntry OBJECT-TYPE + SYNTAX MacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macTable." + INDEX { macAddress } + ::= { macTable 1 } + + MacEntry ::= + SEQUENCE { + macAddress MacAddress, + macPort INTEGER, + macStatus INTEGER + } + + macAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unicast MAC address for which the bridge has + forwarding and/or filtering information." + ::= { macEntry 1 } + + macPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port from which the mac address has been learned." + ::= { macEntry 2 } + + macStatus 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." + ::= { macEntry 3 } + +-------------------- +-- ipbpvc +-------------------- + +-- arpproxyTable + + arpproxyTable OBJECT-TYPE + SYNTAX SEQUENCE OF ArpproxyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display ARP table. This table is supported by R3.00 and later versions." + ::= { ipbpvcStats 1 } + + arpproxyEntry OBJECT-TYPE + SYNTAX ArpproxyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of arpproxyTable." + INDEX { ipbpvcDomainName, arpproxyIp } + ::= { arpproxyTable 1 } + + ArpproxyEntry ::= + SEQUENCE { + arpproxyIp IpAddress, + arpproxyMac MacAddress, + arpproxyIfIndex INTEGER, + arpproxyVpi INTEGER, + arpproxyVci INTEGER, + arpproxyInterfaceIp IpAddress, + arpproxyInterfaceMask INTEGER, + arpproxyInterfaceVid VlanIndex, + arpproxyDhcpIp INTEGER, + arpproxyType INTEGER + } + + arpproxyIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { arpproxyEntry 1 } + + arpproxyMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { arpproxyEntry 2 } + + arpproxyIfIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { arpproxyEntry 3 } + + arpproxyVpi OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { arpproxyEntry 4 } + + arpproxyVci OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { arpproxyEntry 5 } + + arpproxyInterfaceIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { arpproxyEntry 6 } + + arpproxyInterfaceMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { arpproxyEntry 7 } + + arpproxyInterfaceVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { arpproxyEntry 8 } + + arpproxyDhcpIp OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { arpproxyEntry 9 } + + arpproxyType OBJECT-TYPE + SYNTAX INTEGER { + upstream(1), + downstream(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { arpproxyEntry 10 } + +-- ipbpvcIfDynamicTable + + ipbpvcIfDynamicTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpbpvcIfDynamicEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display runtime interfaces. This table is supported by R3.00 and later versions." + ::= { ipbpvcStats 2 } + + ipbpvcIfDynamicEntry OBJECT-TYPE + SYNTAX IpbpvcIfDynamicEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of ipbpvcIfDynamicTable." + INDEX { ipbpvcDomainName, ipbpvcIfDynamicIp, ipbpvcIfDynamicMask, ipbpvcDomainVlanId } + ::= { ipbpvcIfDynamicTable 1 } + + IpbpvcIfDynamicEntry ::= + SEQUENCE { + ipbpvcIfDynamicIp IpAddress, + ipbpvcIfDynamicMask INTEGER, + ipbpvcIfDynamicIfIndex INTEGER, + ipbpvcIfDynamicVpi INTEGER, + ipbpvcIfDynamicVci INTEGER + } + + ipbpvcIfDynamicIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { ipbpvcIfDynamicEntry 1 } + + ipbpvcIfDynamicMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { ipbpvcIfDynamicEntry 2 } + + ipbpvcIfDynamicIfIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { ipbpvcIfDynamicEntry 3 } + + ipbpvcIfDynamicVpi OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { ipbpvcIfDynamicEntry 4 } + + ipbpvcIfDynamicVci OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { ipbpvcIfDynamicEntry 5 } + +-- ipbpvcRouteDynamicTable + + ipbpvcRouteDynamicTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpbpvcRouteDynamicEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display runtime routing table. This table is supported by R3.00 and later versions." + ::= { ipbpvcStats 3 } + + ipbpvcRouteDynamicEntry OBJECT-TYPE + SYNTAX IpbpvcRouteDynamicEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of ipbpvcRouteDynamicTable." + INDEX { ipbpvcDomainName, ipbpvcRouteDynamicType, ipbpvcRouteDynamicIp, ipbpvcRouteDynamicMask } + ::= { ipbpvcRouteDynamicTable 1 } + + IpbpvcRouteDynamicEntry ::= + SEQUENCE { + ipbpvcRouteDynamicType INTEGER, + ipbpvcRouteDynamicIp IpAddress, + ipbpvcRouteDynamicMask INTEGER, + ipbpvcRouteDynamicNextHop IpAddress, + ipbpvcRouteDynamicMetric INTEGER, + ipbpvcRouteDynamicPriority INTEGER + } + + ipbpvcRouteDynamicType OBJECT-TYPE + SYNTAX INTEGER { + upstream(1), + downstream(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { ipbpvcRouteDynamicEntry 1 } + + ipbpvcRouteDynamicIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { ipbpvcRouteDynamicEntry 2 } + + ipbpvcRouteDynamicMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { ipbpvcRouteDynamicEntry 3 } + + ipbpvcRouteDynamicNextHop OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { ipbpvcRouteDynamicEntry 4 } + + ipbpvcRouteDynamicMetric OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { ipbpvcRouteDynamicEntry 5 } + + ipbpvcRouteDynamicPriority OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { ipbpvcRouteDynamicEntry 6 } + +------------------------------ +-- enetStats +------------------------------ + + enetSfpInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnetSfpInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes sfp info of enet port." + ::= { enetStats 2 } + + enetSfpInfoEntry OBJECT-TYPE + SYNTAX EnetSfpInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in enetSfpInfoTable." + INDEX {ifIndex} + ::= { enetSfpInfoTable 1 } + + EnetSfpInfoEntry ::= + SEQUENCE { + enetSfpInfoTxpower INTEGER, + enetSfpInfoRxpower INTEGER, + enetSfpInfoTemperature INTEGER, + enetSfpInfoTxBias INTEGER, + enetSfpInfoVoltage INTEGER + } + + enetSfpInfoTxpower OBJECT-TYPE + SYNTAX INTEGER (1..65535) + UNITS "10^-4 mW" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured Tx Output Power." + ::= { enetSfpInfoEntry 1 } + + enetSfpInfoRxpower OBJECT-TYPE + SYNTAX INTEGER (1..65535) + UNITS "10^-4 C" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured Rx Output Power." + ::= { enetSfpInfoEntry 2 } + + enetSfpInfoTemperature OBJECT-TYPE + SYNTAX INTEGER (-1280000..1280000) + UNITS "10^-4 C" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured temperature." + ::= { enetSfpInfoEntry 3 } + + enetSfpInfoTxBias OBJECT-TYPE + SYNTAX INTEGER (0..131000) + UNITS "10^-3 mA" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured tx bias." + ::= { enetSfpInfoEntry 4 } + + enetSfpInfoVoltage OBJECT-TYPE + SYNTAX INTEGER (0..65000) + UNITS "0.1mV" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured voltage." + ::= { enetSfpInfoEntry 5 } + +------------------------------ +-- adslStats +------------------------------ + + adslPortUtilTable OBJECT-TYPE + SYNTAX SEQUENCE OF AdslPortUtilEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes adsl port utilization." + ::= { adslStats 1 } + + adslPortUtilEntry OBJECT-TYPE + SYNTAX AdslPortUtilEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in adslPortUtilEntry." + INDEX {ifIndex} + ::= { adslPortUtilTable 1 } + + AdslPortUtilEntry ::= + SEQUENCE { + adslPortUtilTx INTEGER, + adslPortUtilRx INTEGER + } + + adslPortUtilTx OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measure adsl port's tx utilization." + ::= { adslPortUtilEntry 1 } + + adslPortUtilRx OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measure adsl port's rx utilization." + ::= { adslPortUtilEntry 2 } + +---------------------------------------- +-- macFfStats +---------------------------------------- + macFfStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains MAC Force Forwarding static configuration and dynamic information." + ::= { macffStats 1 } + + macFfStatsEntry OBJECT-TYPE + SYNTAX MacFfStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfStatsTable." + INDEX { macFfStatsIndex } + ::= { macFfStatsTable 1 } + + MacFfStatsEntry ::= + SEQUENCE { + macFfStatsIndex INTEGER, + macFfStatsVid VlanIndex, + macFfStatsArIP IpAddress, + macFfStatsSrcIP IpAddress, + macFfStatsSrcMask INTEGER + } + + macFfStatsIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of the MACFF." + ::= { macFfStatsEntry 1 } + + macFfStatsVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The VLAN-ID refering to this AR/AS." + ::= { macFfStatsEntry 2 } + + + macFfStatsArIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP of this AR/AS" + ::= { macFfStatsEntry 3 } + + macFfStatsSrcIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The source IP address of the MACFF." + ::= { macFfStatsEntry 4 } + + macFfStatsSrcMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The subnet mask of source IP mask." + ::= { macFfStatsEntry 5 } + + macFfArpTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfArpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains MAC Force Forwarding ARP information." + ::= { macffStats 2 } + + macFfArpEntry OBJECT-TYPE + SYNTAX MacFfArpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfArpTable." + INDEX { macFfArpVid, macFfArpIP} + ::= { macFfArpTable 1 } + + MacFfArpEntry ::= + SEQUENCE { + macFfArpVid VlanIndex, + macFfArpIP IpAddress, + macFfArpPort INTEGER, + macFfArpMac PhysAddress + } + + macFfArpVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The VLAN-ID refering to this AR/AS." + ::= { macFfArpEntry 1 } + + macFfArpIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP of this AR/AS." + ::= { macFfArpEntry 2 } + + + macFfArpPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Port of this AR/AS." + ::= { macFfArpEntry 3 } + + macFfArpMac OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MAC address of the AR or AS." + ::= { macFfArpEntry 4 } + + macFfArpCounterTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfArpCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains MAC Force Forwarding ARP counter information." + ::= { macffStats 3 } + + macFfArpCounterEntry OBJECT-TYPE + SYNTAX MacFfArpCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfArpCounterTable." + INDEX { ifIndex } + ::= { macFfArpCounterTable 1 } + + MacFfArpCounterEntry ::= + SEQUENCE { + macFfArpCounterRequestTX Counter32, + macFfArpCounterRequestRX Counter32, + macFfArpCounterRequestRXDrop Counter32, + macFfArpCounterReplyTX Counter32, + macFfArpCounterReplyRX Counter32, + macFfArpCounterReplyRXDrop Counter32 + } + + macFfArpCounterRequestTX OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ARP Request TX counter." + ::= { macFfArpCounterEntry 1 } + + macFfArpCounterRequestRX OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ARP Request RX counter." + ::= { macFfArpCounterEntry 2 } + + macFfArpCounterRequestRXDrop OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ARP Request RX drop counter." + ::= { macFfArpCounterEntry 3 } + + macFfArpCounterReplyTX OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ARP Reply TX counter." + ::= { macFfArpCounterEntry 4 } + + macFfArpCounterReplyRX OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ARP Reply RX counter." + ::= { macFfArpCounterEntry 5 } + + macFfArpCounterReplyRXDrop OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ARP Reply RX drop counter." + ::= { macFfArpCounterEntry 6 } +---------------------------------------- +-- clear +---------------------------------------- + + counterClearTarget OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This managed object is used for identify the target on which + the counter would be cleared. The target is encoded as: + Byte 1: reserved + Byte 2~3: reserved + Byte 4: reserved + Byte 5~11:each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc." + ::= { clear 1 } + + counterClearOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The corresponding bit is set to 1 to start the operation. + The various bit positions are: + BIT 1: clear interface counters + BIT 2: clear pvc packet counters + BIT 3: clear port ATM counters + BIT 4: clear pvc ATM counters + BIT 5: clear DHCP counters + BIT 6: clear IGMP counters + BIT 7: clear IGMP port counters + BIT 8: clear MACFF ARP counters + BIT 9: clear current lineperf + BIT 10: clear current 15 minute lineperf + BIT 11: clear current 1 day lineperf" + ::= { clear 2 } + + counterClearVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VPI of the pvc whose counters would be cleared." + ::= { clear 3 } + + counterClearVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VCI of the pvc whose counters would be cleared." + ::= { clear 4 } + +END diff --git a/mibs/calix/E5-110-TRAPS-MIB b/mibs/calix/E5-110-TRAPS-MIB new file mode 100644 index 0000000000..112fe9fed3 --- /dev/null +++ b/mibs/calix/E5-110-TRAPS-MIB @@ -0,0 +1,509 @@ +-- $Log: E5-110-TRAPS-MIB.mib $ +-- Revision 1.8 2010/10/18 06:23:51 cylien +-- Revision 1.7 2010/09/01 06:56:00 cylien +-- Revision 1.6 2010/04/23 10:46:23 maverick +-- Revision 1.5 2009/11/23 06:51:50 maverick +-- Revision 1.4 2009/10/30 13:33:31 John +-- Revision 1.3 2009/09/16 02:55:29 niceguy +-- Revision 1.2 2009/06/22 03:26:04 niceguy +-- Revision 1.1 2009/06/03 08:42:39 niceguy +-- Initial revision + + +E5-110-TRAPS-MIB DEFINITIONS ::= BEGIN + + IMPORTS + + OBJECT-TYPE + FROM SNMPv2-SMI + DisplayString, ifIndex + FROM RFC1213-MIB + iesChassisId,iesSlotId + FROM E5-110-IESCOMMON-MIB + e5x110 + FROM E5-110-MIB; + + trap OBJECT IDENTIFIER ::= { e5x110 12 } + +---------------------------------------- +-- trap +---------------------------------------- + + object OBJECT IDENTIFIER ::= { trap 1 } + equipment OBJECT IDENTIFIER ::= { trap 3 } + systrap OBJECT IDENTIFIER ::= { trap 4 } + interface OBJECT IDENTIFIER ::= { trap 8 } + e5Alarm OBJECT IDENTIFIER ::= { trap 9 } +-------------------- +-- object +-------------------- + + eqptAlarmInputIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of alarm input." + ::= { object 2 } + + eqptAlarmInputName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Name of alarm input." + ::= { object 8 } + + sysMacAntiSpoofOrig OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Original port of Mac-AntiSpoofing." + ::= { object 9 } + + sysMacAntiSpoofNew OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The New port of Mac-AntiSpoofing." + ::= { object 10 } + + sysMacAntiSpoofMAC OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MAC of Mac-AntiSpoofing." + ::= { object 11 } + + sysAlarmOrigSeverity OBJECT-TYPE + SYNTAX INTEGER { + critical(1), + major(2), + minor(3), + info(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The original severity of alarm." + ::= { object 12 } + + sysAlarmNewSeverity OBJECT-TYPE + SYNTAX INTEGER { + critical(1), + major(2), + minor(3), + info(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The new severity of alarm." + ::= { object 13 } + + sysAlarmConfId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The changed severity of alarm condition ID. + 5000:adslLine_up + 5001:adslLine_down + 5002:adslPerf_lol_thresh + 5003:adslPerf_lof_thresh + 5004:adslPerf_los_thresh + 5005:adslPerf_lop_thresh + 5006:adslPerf_es_thresh + 5007:adslPerf_ses_thresh + 5008:adslPerf_uas_thresh + 5009:adslAtuc_loftrap + 5010:adslAtuc_lostrap + 5011:adslAtur_loftrap + 5012:adslAtur_lostrap + 5013:adslAtur_lprtrap + 5014:ad_dhcp_rt_full + 5015:ad_dhcp_dm_conflict + 5016:ad_dhcp_entry_full + 5017:ad_dhcp_ip_dup + 5018:ad_dhcp_mac_dup + 10000:eqptVol_err + 10001:eqptEqpttemp_err + 10002:eqptFan_err + 10003:eqptHw_rtc_fail + 10004:eqptHw_mon_fail + 10005:eqptCold_start + 10006:eqptWarm_start + 10007:eqptAlm_input + 10008:eqptI2c_err + 10009:eqptAlm_input2 + 10010:eqptAlm_input3 + 15000:sysReboot + 15001:sysAco + 15002:sysAlm_clear + 15003:sysLogin_fail + 15004:sysAnti_spoofing + 15005:sysAlm_svrty_change + 20000:enetUp + 20001:enetDown + " + ::= { object 14 } + +-- intfCfmCcmErrorCause OBJECT-TYPE +-- SYNTAX INTEGER { +-- noDefect(1), +-- rdiReceived(2), +-- macDownReceivedFromDownMEP(3), +-- lostConnectionToRemoteMEP(4), +-- configurationError(5), +-- maintenanceDomainCrossConnect(6) +-- } +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { object 55 } + +-------------------- +-- equipment +-------------------- + + eqptHWMonitorFailure NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Hardware monitor diagnosis is failed." + ::= { equipment 1 } + +-------------------- +-- systrap +-------------------- + + sysMacAntiSpoofing NOTIFICATION-TYPE + OBJECTS { + sysMacAntiSpoofOrig, + sysMacAntiSpoofNew, + sysMacAntiSpoofMAC + } + STATUS current + DESCRIPTION + "MAC Anti-spoofing." + ::= { systrap 1 } + + sysAlarmCutoffEnable NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Alarm cutoff is activated." + ::= { systrap 2 } + + sysAlarmClearEnable NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Alarm clear is activated." + ::= { systrap 3 } + + sysLoginFailure NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "User login is failed." + ::= { systrap 4 } + + sysAlarmSvrtyChange NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Alarm severity is changed." + ::= { systrap 5 } + +-------------------- +-- interface +-------------------- + +-- cfmCcmError NOTIFICATION-TYPE +-- OBJECTS { +-- dot1agCfmMdMdLevel, +-- dot1agCfmVlanPrimaryVid, +-- dot1agCfmMepIdentifier, +-- intfCfmCcmErrorCause +-- } +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { interface 1 } + +-------------------- +-- e5Alarm +-------------------- + +e5AlarmTable OBJECT-TYPE + SYNTAX SEQUENCE OF E5AlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table holds all the active alarms" + ::= { e5Alarm 1 } + + +e5AlarmNotify NOTIFICATION-TYPE + OBJECTS { + e5AlarmObjectClass, + e5AlarmObjectInstance1, + e5AlarmObjectInstance2, + e5AlarmObjectInstance3, + e5AlarmObjectInstance4, + e5AlarmType, + e5AlarmSeverity, + e5AlarmTimeStamp, + e5AlarmServiceAffecting, + e5AlarmText, + e5AlarmTime + } + STATUS current + DESCRIPTION + "E5 device alarm notification." + ::= { e5Alarm 2 } + + +e5AlarmEntry OBJECT-TYPE + SYNTAX E5AlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "List of attributes regarding alarm table" + INDEX { e5AlarmObjectClass, e5AlarmObjectInstance1, e5AlarmObjectInstance2, + e5AlarmObjectInstance3, e5AlarmObjectInstance4, + e5AlarmObjectInstance5, e5AlarmObjectInstance6, + e5AlarmObjectInstance7, e5AlarmObjectInstance8, e5AlarmType } + ::= { e5AlarmTable 1 } + +E5AlarmEntry ::= SEQUENCE { + e5AlarmObjectClass INTEGER, + e5AlarmObjectInstance1 INTEGER, + e5AlarmObjectInstance2 INTEGER, + e5AlarmObjectInstance3 INTEGER, + e5AlarmObjectInstance4 INTEGER, + e5AlarmObjectInstance5 INTEGER, + e5AlarmObjectInstance6 INTEGER, + e5AlarmObjectInstance7 INTEGER, + e5AlarmObjectInstance8 INTEGER, + e5AlarmType INTEGER, + e5AlarmSeverity INTEGER, + e5AlarmTimeStamp OCTET STRING, + e5AlarmServiceAffecting INTEGER, + e5AlarmLocationInfo INTEGER, + e5AlarmText OCTET STRING, + e5AlarmTime INTEGER, + e5AlarmCliObject OCTET STRING, + e5AlarmSecObjectClass INTEGER, + e5AlarmSecObjectInstance1 INTEGER, + e5AlarmSecObjectInstance2 INTEGER, + e5AlarmSecObjectInstance3 INTEGER, + e5AlarmSecObjectInstance4 INTEGER, + e5AlarmSecObjectInstance5 INTEGER, + e5AlarmSecObjectInstance6 INTEGER, + e5AlarmSecObjectInstance7 INTEGER, + e5AlarmSecObjectInstance8 INTEGER + } + +e5AlarmObjectClass OBJECT-TYPE + SYNTAX INTEGER { + dsl(1), + eqpt(2), + sys(3), + enet(4), + vop(5), + intf(6), + unknown(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object Class for an alarm" + ::= { e5AlarmEntry 1 } + +e5AlarmObjectInstance1 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 1" + ::= { e5AlarmEntry 2 } + +e5AlarmObjectInstance2 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 2" + ::= { e5AlarmEntry 3 } + +e5AlarmObjectInstance3 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 3" + ::= { e5AlarmEntry 4 } + +e5AlarmObjectInstance4 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 4" + ::= { e5AlarmEntry 5 } + +e5AlarmObjectInstance5 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 5" + ::= { e5AlarmEntry 6 } + +e5AlarmObjectInstance6 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 6" + ::= { e5AlarmEntry 7 } + +e5AlarmObjectInstance7 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 7" + ::= { e5AlarmEntry 8 } + +e5AlarmObjectInstance8 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 8" + ::= { e5AlarmEntry 9 } + +e5AlarmType OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Unique type for an alarm" + ::= { e5AlarmEntry 10 } + +e5AlarmSeverity OBJECT-TYPE + SYNTAX INTEGER { + clear(0), + critical(1), + major(2), + minor(3), + warning(4), + unknown(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Severity of the alarm" + ::= { e5AlarmEntry 11 } + +e5AlarmTimeStamp OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..50)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Timestamp indicating the set/clear time of the alarm" + ::= { e5AlarmEntry 12 } + +e5AlarmServiceAffecting OBJECT-TYPE + SYNTAX INTEGER { + yes(1), + no(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicated the nature of the alarm i.e. service + affecting or not" + ::= { e5AlarmEntry 13 } + +e5AlarmLocationInfo OBJECT-TYPE + SYNTAX INTEGER { + nearEnd(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "" + ::= { e5AlarmEntry 14 } + +e5AlarmText OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Alarm description" + ::= { e5AlarmEntry 15 } + +e5AlarmTime OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "UTC time" + ::= { e5AlarmEntry 16 } + +e5AlarmCliObject OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The short CLI name for the object class and instance" + ::= { e5AlarmEntry 17 } + +e5AlarmSecObjectClass OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary Object Class for an alarm" + ::= { e5AlarmEntry 18 } + +e5AlarmSecObjectInstance1 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 1" + ::= { e5AlarmEntry 19 } + +e5AlarmSecObjectInstance2 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 2" + ::= { e5AlarmEntry 20 } + +e5AlarmSecObjectInstance3 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 3" + ::= { e5AlarmEntry 21 } + +e5AlarmSecObjectInstance4 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 4" + ::= { e5AlarmEntry 22 } + +e5AlarmSecObjectInstance5 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 5" + ::= { e5AlarmEntry 23 } + +e5AlarmSecObjectInstance6 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 6" + ::= { e5AlarmEntry 24 } + +e5AlarmSecObjectInstance7 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 7" + ::= { e5AlarmEntry 25 } + +e5AlarmSecObjectInstance8 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 8" + ::= { e5AlarmEntry 26 } + + END \ No newline at end of file diff --git a/mibs/calix/E5-111-AESCOMMON-MIB b/mibs/calix/E5-111-AESCOMMON-MIB new file mode 100644 index 0000000000..3dcb1eea74 --- /dev/null +++ b/mibs/calix/E5-111-AESCOMMON-MIB @@ -0,0 +1,547 @@ +-- $Log: E5-111-AESCOMMON-MIB.mib $ +-- Revision 1.3 2010/03/29 02:05:58 maverick +-- Revision 1.2 2009/11/23 06:51:51 maverick +-- Revision 1.1 2008/07/11 09:36:12 maverick +-- Initial revision +-- Revision 1.3 2008/04/28 02:29:16 maverick +-- Revision 1.2 2007/12/20 10:18:12 niceguy +-- Revision 1.1 2007/12/03 01:45:31 niceguy +-- Initial revision +-- Initial revision + + +E5-111-AESCOMMON-MIB DEFINITIONS ::= BEGIN + + IMPORTS + OBJECT-TYPE FROM RFC-1212 + DisplayString, ifIndex FROM RFC1213-MIB + Unsigned32 FROM SNMPv2-SMI + aesSeriesCommon FROM E5-111-MIB; + + aesMaxNumOfProfiles OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of ADSL profiles which the system supports." + ::= { aesSeriesCommon 1 } + + aesLineConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF AesLineConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes common attributes describing the ADSL line." + ::= { aesSeriesCommon 2 } + + aesLineConfEntry OBJECT-TYPE + SYNTAX AesLineConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An entry in aesLineConfTable." + INDEX { ifIndex } + ::= { aesLineConfTable 1 } + + AesLineConfEntry ::= + SEQUENCE { + aesLineConfAdslMode INTEGER, + aesLineConfEncap INTEGER, + aesLineConfVpi INTEGER, + aesLineConfVci INTEGER, + aesLineConfAnnexL INTEGER, + aesLineConfPmMode INTEGER, + aesLineConfRateMode INTEGER, + aesLineConfAnnexM INTEGER + } + + aesLineConfAdslMode OBJECT-TYPE + SYNTAX INTEGER { + gDotLite(1), + gDotDmt(2), + t1Dot413(3), + auto(4), + etsi(5), + adsl2(6), + adsl2Plus(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The mode of the ADSL line." + ::= { aesLineConfEntry 1 } + + aesLineConfEncap OBJECT-TYPE + SYNTAX INTEGER { + llc(1), + vc(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The encapsulation of the ADSL line." + ::= { aesLineConfEntry 2 } + + aesLineConfVpi OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The VPI of the ADSL line." + ::= { aesLineConfEntry 3 } + + aesLineConfVci OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The VCI of the ADSL line." + ::= { aesLineConfEntry 4 } + + aesLineConfAnnexL OBJECT-TYPE + SYNTAX INTEGER { + enableNarrowMode(1), + enableWideMode(2), + disable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The annex L setting of the ADSL line(Only in AnnexA)." + ::= { aesLineConfEntry 5 } + + aesLineConfPmMode OBJECT-TYPE + SYNTAX INTEGER { + enableL2Mode(1), + enableL2Mode(2), + disable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The power management mode of the ADSL line." + ::= { aesLineConfEntry 6 } + + aesLineConfRateMode OBJECT-TYPE + SYNTAX INTEGER { + fixed(1), -- no rate adaptation + adaptAtStartup(2), -- perform rate adaptation + -- only at initialization + adaptAtRuntime(3) -- perform rate adaptation at + -- any time + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Defines what form of transmit rate adaptation is + configured on this modem. See ADSL Forum TR-005 [3] + for more information." + ::= { aesLineConfEntry 7 } + + aesLineConfAnnexM OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The annex M setting of the ADSL line." + ::= { aesLineConfEntry 8 } + + +-- ADSL Line Diagnostic + + aesLineDiagnostic OBJECT IDENTIFIER ::= { aesSeriesCommon 3 } + + aesAtucLineDiagLATN OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Line Attenuation." + ::= { aesLineDiagnostic 1 } + + aesAtucLineDiagSATN OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Signal Attenuation." + ::= { aesLineDiagnostic 2 } + + aesAtucLineDiagSNRM OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Signal-to-Noise Ratio Margin." + ::= { aesLineDiagnostic 3 } + + aesAtucLineDiagACTATP OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Actual Aggregate Transmit Power." + ::= { aesLineDiagnostic 4 } + + aesAtucLineDiagATTNDR OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Attainable Net Data Rate, in bps." + ::= { aesLineDiagnostic 5 } + + aesAturLineDiagLATN OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Line Attenuation." + ::= { aesLineDiagnostic 6 } + + aesAturLineDiagSATN OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Signal Attenuation." + ::= { aesLineDiagnostic 7 } + + aesAturLineDiagSNRM OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Signal-to-Noise Ratio Margin." + ::= { aesLineDiagnostic 8 } + + aesAturLineDiagACTATP OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Actual Aggregate Transmit Power." + ::= { aesLineDiagnostic 9 } + + aesAturLineDiagATTNDR OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Attainable Net Data Rate, in bps." + ::= { aesLineDiagnostic 10 } + + aesLineDiagTarget OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Ifindex of the ADSL port which will be diagnosed." + ::= { aesLineDiagnostic 11 } + + aesLineDiagOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The manager sets the object to one to start line diagnostics and the agent clears the + object to zero when diagnostics is successfully completed." + ::= { aesLineDiagnostic 12 } + + aesLineDiagFailReason OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The reason of failed diagnostics." + ::= { aesLineDiagnostic 13 } + + +-- ADSL Line Diagnostic Per Subcarrier + + aesLineDiagPs OBJECT IDENTIFIER ::= { aesSeriesCommon 4 } + + aesAtucNumOfSubcarriersPerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of subcarriers per port for ATU-C." + ::= { aesLineDiagPs 1 } + + aesAturNumOfSubcarriersPerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of subcarriers per port for ATU-R." + ::= { aesLineDiagPs 2 } + + aesLineDiagPsCCFLirl1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Channel Characteristics Function H(f) per subcarrier. The value is the real + part of a complex value in liner scale. + The first two octets specify the li.rl value for subcarrier 1, and the second + two octets specify the li.rl value for subcarrier 2, and so on. The object + provides li.rl values for subcarrier 1 to 256." + ::= { aesLineDiagPs 3 } + + aesLineDiagPsCCFLirl2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Channel Characteristics Function H(f) per subcarrier. The value is the real + part of a complex value in liner scale. + The first two octets specify the li.rl value for subcarrier 257, and the second + two octets specify the li.rl value for subcarrier 258, and so on. The object + provides li.rl values for subcarrier 257 to 512." + ::= { aesLineDiagPs 4 } + + aesLineDiagPsCCFLiim1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Channel Characteristics Function H(f) per subcarrier. The value is the image + part of a complex value in liner scale. + The first two octets specify the li.im value for subcarrier 1, and the second + two octets specify the li.im value for subcarrier 2, and so on. The object + provides li.im values for subcarrier 1 to 256." + ::= { aesLineDiagPs 5 } + + aesLineDiagPsCCFLiim2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Channel Characteristics Function H(f) per subcarrier. The value is the image + part of a complex value in liner scale. + The first two octets specify the li.im value for subcarrier 257, and the second + two octets specify the li.im value for subcarrier 258, and so on. The object + provides li.im values for subcarrier 257 to 512." + ::= { aesLineDiagPs 6 } + + aesLineDiagPsCCFLog1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Channel Characteristics Function H(f) per subcarrier. The value + provides magnitude value in a logarithmic scale. + The first two octets specify the log value for subcarrier 1, and the second + two octets specify the log value for subcarrier 2, and so on. The object + provides log values for subcarrier 1 to 256." + ::= { aesLineDiagPs 7 } + + aesLineDiagPsCCFLog2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Channel Characteristics Function H(f) per subcarrier. The value + provides magnitude value in a logarithmic scale. + The first two octets specify the log value for subcarrier 257, and the second + two octets specify the log value for subcarrier 258, and so on. The object + provides log values for subcarrier 257 to 512." + ::= { aesLineDiagPs 8 } + + aesLineDiagPsQLN OBJECT-TYPE + SYNTAX OCTET STRING + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Quiet Line Noise PSD QLN(f) per subcarrier. The first octet specify QLN + for subcarrier 1, and the second octet specify QLN for subcarrier 2, and so on. + The object provides QLN for subcarrier 1 to 512." + ::= { aesLineDiagPs 9 } + + aesLineDiagPsSNR OBJECT-TYPE + SYNTAX OCTET STRING + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Signal-to-Noise Ratio SNR(f) per subcarrier. The first octet specify SNR + for subcarrier 1, and the second octet specify SNR for subcarrier 2, and so on. + The object provides SNR for subcarrier 1 to 512." + ::= { aesLineDiagPs 10 } + + +-- Max # of Alarm Profiles + + aesMaxNumOfAlarmProfiles OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of ADSL alarm profiles which the system supports." + ::= { aesSeriesCommon 5 } + + +-- Bit Loading + + aesBitLoadingTable OBJECT-TYPE + SYNTAX SEQUENCE OF AesBitLoadingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table provides the number of bits per carrier for each ADSL port." + ::= { aesSeriesCommon 6 } + + aesBitLoadingEntry OBJECT-TYPE + SYNTAX AesBitLoadingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An entry in aesBitLoadingTable." + INDEX { ifIndex } + ::= { aesBitLoadingTable 1 } + + AesBitLoadingEntry ::= + SEQUENCE { + aesBitLoadingBits OCTET STRING, + aesBitLoadingAtucNumOfCarriers INTEGER, + aesBitLoadingAturNumOfCarriers INTEGER + } + + aesBitLoadingBits OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object provides the number of bits for all carriers in the port. + The first octet specify the number of bits for carrier 1, and the second + octet specify the number of bits for carrier 2, and so on. + The object provides the number of bits for carrier 1 to 512." + ::= { aesBitLoadingEntry 1 } + + aesBitLoadingAtucNumOfCarriers OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of carriers for ATU-C." + ::= { aesBitLoadingEntry 2 } + + aesBitLoadingAturNumOfCarriers OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of carriers for ATU-R." + ::= { aesBitLoadingEntry 3 } + + +-- Line Status + + aesLineStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF AesLineStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the ADSL line status." + ::= { aesSeriesCommon 7 } + + aesLineStatusEntry OBJECT-TYPE + SYNTAX AesLineStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An entry in aesLineStatusTable." + INDEX { ifIndex } + ::= { aesLineStatusTable 1 } + + AesLineStatusEntry ::= + SEQUENCE { + aesLineStatusAdslMode INTEGER + } + + aesLineStatusAdslMode OBJECT-TYPE + SYNTAX INTEGER { + gDotLite(1), + gDotDmt(2), + t1Dot413(3), + etsi(4), + adsl2(5), + adsl2Plus(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The link up mode of the ADSL line." + ::= { aesLineStatusEntry 1 } + +-------------------- +-- selt +-------------------- + + selt OBJECT IDENTIFIER ::= { aesSeriesCommon 8 } + + seltTarget OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IfIndex of the port which would be performed single end loopback test." + ::= { selt 1 } + + seltOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The manager sets the object to 1 to start the selt + and the agent clears the object to zero when selt is successfully completed." + ::= { selt 2 } + + seltStatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Status description of the selt result." + ::= { selt 3 } + + seltCableType OBJECT-TYPE + SYNTAX INTEGER { + awg24(1), + awg26(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The cable type that selt result indicates." + ::= { selt 4 } + + seltLoopEstimateLengthFt OBJECT-TYPE + SYNTAX INTEGER + UNITS "feet" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The estimated loop length that selt result indicates." + ::= { selt 5 } + + seltLoopEstimateLengthMeter OBJECT-TYPE + SYNTAX INTEGER + UNITS "meter" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The estimated loop length that selt result indicates." + ::= { selt 6 } + +END diff --git a/mibs/calix/E5-111-AS-ATM-MIB b/mibs/calix/E5-111-AS-ATM-MIB new file mode 100644 index 0000000000..1a94acea84 --- /dev/null +++ b/mibs/calix/E5-111-AS-ATM-MIB @@ -0,0 +1,474 @@ +-- $Log: E5-111-AS-ATM-MIB.mib $ +-- Revision 1.5 2009/11/23 06:51:51 maverick +-- Revision 1.4 2009/10/22 08:02:21 FJ.Chuang +-- Revision 1.3 2009/10/06 02:21:32 John +-- Revision 1.2 2008/11/26 07:37:43 maverick +-- Revision 1.1 2008/07/11 09:36:11 maverick +-- Initial revision +-- Revision 1.1 2007/12/03 01:45:32 niceguy +-- Initial revision +-- Initial revision + +E5-111-AS-ATM-MIB DEFINITIONS ::= BEGIN + + IMPORTS + OBJECT-TYPE FROM RFC-1212 + Unsigned32 FROM SNMPv2-SMI + Counter FROM RFC1155-SMI + ifIndex, DisplayString FROM RFC1213-MIB + RowStatus FROM SNMPv2-TC + VlanIndex, PortList FROM Q-BRIDGE-MIB + accessSwitchCommonATM FROM E5-111-MIB; + + + -- Channel Table + + asMaxNumOfChannels OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum number of virtual channels which can be created on a port." + ::= { accessSwitchCommonATM 1 } + + asChannelTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsChannelEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table includes the configuration of the virtual channel." + ::= { accessSwitchCommonATM 2 } + + asChannelEntry OBJECT-TYPE + SYNTAX AsChannelEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in asChannelTable." + INDEX { ifIndex, asChannelVpi, asChannelVci } + ::= { asChannelTable 1 } + + AsChannelEntry ::= + SEQUENCE { + asChannelVpi INTEGER, + asChannelVci INTEGER, + asChannelPvid VlanIndex, + -- asChannelEgressVid VlanIndex, + asChannelPriority INTEGER, + asChannelProfile DisplayString, + asChannelRowStatus RowStatus + } + + asChannelVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "VPI of the channel." + ::= { asChannelEntry 1 } + + asChannelVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "VCI of the channel." + ::= { asChannelEntry 2 } + + asChannelPvid OBJECT-TYPE + SYNTAX VlanIndex + ACCESS read-create + STATUS mandatory + DESCRIPTION + "The default VID of the channel." + ::= { asChannelEntry 3 } + +-- asChannelEgressVid OBJECT-TYPE +-- SYNTAX VlanIndex +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "The egress VID of the channel." +-- ::= { asChannelEntry 4 } + + asChannelPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + ACCESS read-create + STATUS mandatory + DESCRIPTION + "The 802.1p default priority of the channel." + ::= { asChannelEntry 5 } + + asChannelProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + ACCESS read-create + STATUS mandatory + DESCRIPTION + "The value of this object identifies the row in the + asChannelProfileTable, which applies for this channel." + ::= { asChannelEntry 6 } + + asChannelRowStatus OBJECT-TYPE + SYNTAX RowStatus + ACCESS read-create + STATUS mandatory + DESCRIPTION + "This object is used to create a new row or + delete an existing row in this table." + ::= { asChannelEntry 7 } + + + -- Channel Profile Table + + asMaxNumOfChannelProfiles OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum number of channel profiles which the system supports." + ::= { accessSwitchCommonATM 3 } + + asChannelProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsChannelProfileEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains information on the virtual channel + configuration. One entry in this table reflects a + profile which can be used to configure the virtual channel." + ::= { accessSwitchCommonATM 6 } + + asChannelProfileEntry OBJECT-TYPE + SYNTAX AsChannelProfileEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in asChannelProfileTable." + INDEX { IMPLIED asChannelProfileName } + ::= { asChannelProfileTable 1 } + + AsChannelProfileEntry ::= + SEQUENCE { + asChannelProfileName DisplayString, + asChannelProfileEncap INTEGER, + asChannelProfileAAL INTEGER, + asChannelProfileClass INTEGER, + asChannelProfilePcr Unsigned32, + asChannelProfileCdvt INTEGER, + asChannelProfileScrMcr Unsigned32, + asChannelProfileBt INTEGER, + asChannelProfileRowStatus RowStatus + } + + asChannelProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This object is used by the channel profile table + in order to identify a row of this table." + ::= { asChannelProfileEntry 1 } + + asChannelProfileEncap OBJECT-TYPE + SYNTAX INTEGER { + llc(1), + vc(2) + } + ACCESS read-create + STATUS mandatory + DESCRIPTION + "RFC1483 encapsulation." + ::= { asChannelProfileEntry 2 } + + asChannelProfileAAL OBJECT-TYPE + SYNTAX INTEGER (0..5) + ACCESS read-create + STATUS mandatory + DESCRIPTION + "ATM Adaptation Layer policy." + ::= { asChannelProfileEntry 3 } + + asChannelProfileClass OBJECT-TYPE + SYNTAX INTEGER { + cbr(1), + rt-vbr(2), + nrt-vbr(3), + ubr(4), + abr(5) + } + ACCESS read-create + STATUS mandatory + DESCRIPTION + "ATM traffic class, including constant bit rate, + real-time variable bit rate, non real-time variable bit rate, + unspecified bit rate, and available bit rate." + ::= { asChannelProfileEntry 4 } + + asChannelProfilePcr OBJECT-TYPE + SYNTAX Unsigned32 + ACCESS read-create + STATUS mandatory + DESCRIPTION + "Peak cell rate (cells/sec)." + ::= { asChannelProfileEntry 5 } + + asChannelProfileCdvt OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-create + STATUS mandatory + DESCRIPTION + "Cell delay variation tolerance." + ::= { asChannelProfileEntry 6 } + + asChannelProfileScrMcr OBJECT-TYPE + SYNTAX Unsigned32 + ACCESS read-create + STATUS mandatory + DESCRIPTION + "Sustain cell rate for vbr traffic class, or + minimum cell rate for abr traffic class. + The unit is the number of cells per second." + ::= { asChannelProfileEntry 7 } + + asChannelProfileBt OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-create + STATUS mandatory + DESCRIPTION + "Burst tolerance for vbr traffic class." + ::= { asChannelProfileEntry 8 } + + asChannelProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + ACCESS read-create + STATUS mandatory + DESCRIPTION + "This object is used to create a new row or + delete an existing row in this table." + ::= { asChannelProfileEntry 9 } + + +-- Channel Status Table + + asChannelStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsChannelStatusEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table includes the status of the virtual channel." + ::= { accessSwitchCommonATM 7 } + + asChannelStatusEntry OBJECT-TYPE + SYNTAX AsChannelStatusEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in asChannelStatusTable." + INDEX { ifIndex, asChannelVpi, asChannelVci } + ::= { asChannelStatusTable 1 } + + AsChannelStatusEntry ::= + SEQUENCE { + asChannelTxPackets Counter, + asChannelRxPackets Counter, + asChannelTxCells Counter, + asChannelRxCells Counter + } + + asChannelTxPackets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of channel Tx packets." + ::= { asChannelStatusEntry 1 } + + asChannelRxPackets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of channel Rx packets." + ::= { asChannelStatusEntry 2 } + + asChannelTxCells OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of channel Tx cells." + ::= { asChannelStatusEntry 3 } + + asChannelRxCells OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of channel Rx cells." + ::= { asChannelStatusEntry 4 } + + +-- Ipqos Profile Table + + asMaxNumOfIpqosProfiles OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum number of ipqos profiles which the system supports." + ::= { accessSwitchCommonATM 8 } + + asIpqosProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsIpqosProfileEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains information on the ipqos profile + configuration. One entry in this table reflects a + profile which can be used to configure the virtual channel." + ::= { accessSwitchCommonATM 9 } + + asIpqosProfileEntry OBJECT-TYPE + SYNTAX AsIpqosProfileEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in asIpqosProfileTable." + INDEX { IMPLIED asIpqosProfileName } + ::= { asIpqosProfileTable 1 } + + AsIpqosProfileEntry ::= + SEQUENCE { + asIpqosProfileName DisplayString, + asIpqosProfileEncap INTEGER, + asIpqosProfileQueueNumber INTEGER, + asIpqosProfileRowStatus RowStatus + } + + asIpqosProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used by the ipqos profile table + in order to identify a row of this table." + ::= { asIpqosProfileEntry 1 } + + asIpqosProfileEncap OBJECT-TYPE + SYNTAX INTEGER { + llc(1), + vc(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "RFC1483 encapsulation." + ::= { asIpqosProfileEntry 2 } + + asIpqosProfileQueueNumber OBJECT-TYPE + SYNTAX INTEGER { + one(1), + two(2), + four(4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Number of Ipqos profile egress queue." + ::= { asIpqosProfileEntry 3 } + + asIpqosProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + ACCESS read-create + STATUS mandatory + DESCRIPTION + "This object is used to create a new row or + delete an existing row in this table." + ::= { asIpqosProfileEntry 4 } + + asIpqosProfileQueueTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsIpqosProfileQueueEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains information on the ipqos profile queue + configuration." + ::= { accessSwitchCommonATM 10 } + + asIpqosProfileQueueEntry OBJECT-TYPE + SYNTAX AsIpqosProfileQueueEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in asIpqosProfileTable." + INDEX { asIpqosProfileName, IMPLIED asIpqosProfileQueueIndex } + ::= { asIpqosProfileQueueTable 1 } + + AsIpqosProfileQueueEntry ::= + SEQUENCE { + asIpqosProfileQueueIndex INTEGER, + asIpqosProfileAAL INTEGER, + asIpqosProfileLevel INTEGER, + asIpqosProfileRate Unsigned32 + } + + asIpqosProfileQueueIndex OBJECT-TYPE + SYNTAX INTEGER (1..4) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index of a ipqos profile egress queue." + ::= { asIpqosProfileQueueEntry 1 } + + asIpqosProfileAAL OBJECT-TYPE + SYNTAX INTEGER (0..5) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "ATM Adaptation Layer policy." + ::= { asIpqosProfileQueueEntry 2 } + + asIpqosProfileLevel OBJECT-TYPE + SYNTAX INTEGER { + ubr(0), + nrt-vbr(1), + rt-vbr(2), + cbr(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "ATM traffic class, including constant bit rate, + real-time variable bit rate, non real-time variable bit rate, + and unspecified bit rate." + ::= { asIpqosProfileQueueEntry 3 } + + asIpqosProfileRate OBJECT-TYPE + SYNTAX Unsigned32 + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Peak cell rate (cells/sec)." + ::= { asIpqosProfileQueueEntry 4 } + +-- Shaping Mode + + asShapingMode OBJECT-TYPE + SYNTAX INTEGER { + atm(1), + packet(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The two types of shaping mechanism can not co-exist, + and this variable is used to switch between these + two types of shaping mechanism. + To change to new shaping mode, E5-11x will remove all + configured PVC, save current configuration and reboot + automatically. + After reboot, the new shaping mode can take effect." + ::= { accessSwitchCommonATM 11 } + + +END diff --git a/mibs/calix/E5-111-IESCOMMON-MIB b/mibs/calix/E5-111-IESCOMMON-MIB new file mode 100644 index 0000000000..d6978948ca --- /dev/null +++ b/mibs/calix/E5-111-IESCOMMON-MIB @@ -0,0 +1,2484 @@ +-- $Log: E5-111-IESCOMMON-MIB.mib $ +-- Revision 1.8 2010/04/23 10:46:24 maverick +-- Revision 1.7 2009/11/26 13:06:53 maverick +-- add comment to obsoleted mib entries, mibble checked +-- Revision 1.6 2009/10/19 03:23:53 Ives +-- Revision 1.5 2009/09/01 01:32:33 maverick +-- Revision 1.4 2009/05/12 06:05:54 niceguy +-- Revision 1.3 2009/05/12 03:28:47 niceguy +-- Revision 1.2 2008/11/26 07:37:32 maverick +-- Revision 1.1 2008/07/11 09:36:16 maverick +-- Initial revision +-- Revision 1.4 2008/01/11 01:21:29 niceguy +-- Revision 1.3 2007/12/20 10:18:53 niceguy +-- Revision 1.2 2007/12/12 09:39:51 niceguy +-- Revision 1.1 2007/12/03 01:45:32 niceguy +-- Initial revision +-- Initial revision + +E5-111-IESCOMMON-MIB DEFINITIONS ::= BEGIN + + IMPORTS + + enterprises + FROM RFC1155-SMI + OBJECT-TYPE + FROM SNMPv2-SMI +-- FROM RFC-1212 + DisplayString, ifIndex, PhysAddress + FROM RFC1213-MIB + RowStatus + FROM SNMPv2-TC + PortList + FROM Q-BRIDGE-MIB + TRAP-TYPE + FROM RFC-1215 + IpAddress + FROM RFC1155-SMI + iesSeriesCommon,e5x111 + FROM E5-111-MIB; + + + iesChassis OBJECT IDENTIFIER ::= { iesSeriesCommon 1 } + iesHWMonitor OBJECT IDENTIFIER ::= { iesSeriesCommon 2 } + iesSysMgnt OBJECT IDENTIFIER ::= { iesSeriesCommon 3 } + + iesSysState OBJECT IDENTIFIER ::= { iesSysMgnt 1 } + iesSysMaintenance OBJECT IDENTIFIER ::= { iesSysMgnt 2 } + iesSysTimeSetup OBJECT IDENTIFIER ::= { iesSysMgnt 3 } + iesSysAccessControl OBJECT IDENTIFIER ::= { iesSysMgnt 4 } + iesSysStaticRoute OBJECT IDENTIFIER ::= { iesSysMgnt 5 } + iesSyslogSetup OBJECT IDENTIFIER ::= { iesSysMgnt 6 } + iesSysDhcpSetup OBJECT IDENTIFIER ::= { iesSysMgnt 7 } + iesSysSNMPSetup OBJECT IDENTIFIER ::= { iesSysMgnt 8 } + iesSysDot1xSetup OBJECT IDENTIFIER ::= { iesSysMgnt 9 } + iesSysMacFilter OBJECT IDENTIFIER ::= { iesSysMgnt 10 } + iesSysPacketFilter OBJECT IDENTIFIER ::= { iesSysMgnt 11 } + iesSysMacCountFilter OBJECT IDENTIFIER ::= { iesSysMgnt 12 } + iesSysMulticastGroup OBJECT IDENTIFIER ::= { iesSysMgnt 13 } + iesSysIgmpFilter OBJECT IDENTIFIER ::= { iesSysMgnt 14 } -- Obsoleted since Revision 3.0.0 at 2009/11/26 by maverick + + iesL2SW OBJECT IDENTIFIER ::= { iesSeriesCommon 4 } + +-- Chassis, slot information + + iesNumOfChassis OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of chassis in the IES-2000/3000 system" + ::= { iesChassis 1 } + + iesChassisTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesChassisEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table which contains the chassis information in IES-2000/3000 + system" + ::= { iesChassis 2 } + + iesChassisEntry OBJECT-TYPE + SYNTAX IesChassisEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { iesChassisId } + ::= { iesChassisTable 1 } + + IesChassisEntry ::= + SEQUENCE { + iesChassisId INTEGER, + iesChassisFrameNumber INTEGER, + iesChassisSerialNumber DisplayString, + iesChassisNumber INTEGER, + iesChassisStatus INTEGER, + iesChassisProductPartNumber DisplayString, + iesChassisHwRevisionNumber DisplayString, + iesChassisCleiCode DisplayString, + iesChassisHwVersion DisplayString, + iesChassisMacAddress DisplayString, + iesChassisVoipDspVersion DisplayString, + iesChassisCodecVersion DisplayString + } + + iesChassisId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Chassis ID" + ::= { iesChassisEntry 1 } + + iesChassisFrameNumber OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Frame ID" + ::= { iesChassisEntry 2 } + + + iesChassisSerialNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Chassis Serial Number" + ::= { iesChassisEntry 3 } + + iesChassisNumber OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Chassis Number which is defined by the system administrator + for management purpose" + ::= { iesChassisEntry 4 } + + iesChassisStatus OBJECT-TYPE + SYNTAX INTEGER { + empty(1), + up(2), + down(3), + testing(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current status of the chassis." + ::= { iesChassisEntry 5 } + + iesChassisProductPartNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Product part number" + ::= { iesChassisEntry 6 } + + iesChassisHwRevisionNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "HW revision Number" + ::= { iesChassisEntry 7 } + + iesChassisCleiCode OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CLEI code" + ::= { iesChassisEntry 8 } + + iesChassisHwVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Hardware version" + ::= { iesChassisEntry 9 } + + iesChassisMacAddress OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MAC address" + ::= { iesChassisEntry 10 } + + iesChassisVoipDspVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Voip dsp version" + ::= { iesChassisEntry 11 } + + iesChassisCodecVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Codec F/W version" + ::= { iesChassisEntry 12 } + + iesSlotTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesSlotEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table which contains the slot information in a chassis of + IES-2000/3000 system" + ::= { iesChassis 3 } + + iesSlotEntry OBJECT-TYPE + SYNTAX IesSlotEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { iesChassisId, iesSlotId } + ::= { iesSlotTable 1 } + + IesSlotEntry ::= + SEQUENCE { + iesSlotId INTEGER, + iesSlotModuleType INTEGER, + iesSlotModuleDescr DisplayString, + iesSlotModuleFWVersion DisplayString, + iesSlotModuleDriverVersion DisplayString, + iesSlotModuleModemCodeVersion DisplayString, + iesSlotModuleStatus INTEGER, + iesSlotModuleAlarmStatus INTEGER + } + + iesSlotId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Identity of the slot" + ::= { iesSlotEntry 1 } + + iesSlotModuleType OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + msc1000-L2(2), + msc1000-ML(3), + alc1024-61(4), + vlc1012(5), + slc1024(6), + alc1024-63(7), + msc1000A(8), + vlc1124(9), + alc1224-71(10), + alc1224-73(11), + slc1224-22(12), + alc1224-51(13), + alc1224-53(14) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Card type of the plug-in card in IES-2000/3000." + ::= { iesSlotEntry 2 } + + iesSlotModuleDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The descriptions of the plug-in card in IES-2000/3000." + ::= { iesSlotEntry 3 } + + + iesSlotModuleFWVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The firmware version of the plug-in card in IES-2000/3000." + ::= { iesSlotEntry 4 } + + iesSlotModuleDriverVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The DSL driver of the plug-in card in IES-2000/3000." + ::= { iesSlotEntry 5 } + + iesSlotModuleModemCodeVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The DSL modem code version of the plug-in card in IES-2000/3000" + ::= { iesSlotEntry 6 } + + + iesSlotModuleStatus OBJECT-TYPE + SYNTAX INTEGER { + empty(1), + up(2), + down(3), + testing(4), + standby(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The module state of the plug-in card in IES-2000/3000" + ::= { iesSlotEntry 7 } + + iesSlotModuleAlarmStatus OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This variable indicates the alarm status of the module. + It is a bit map represented as a sum, therefore, it can represent + multiple defects simultaneously. The moduleNoDefect should be set + if and only if no other flag is set. + + The various bit positions are: + 1 moduleNoDefect + 2 moduleOverHeat + 3 moduleFanRpmLow + 4 moduleVoltageLow + 5 moduleThermalSensorFailure + 6 modulePullOut + 7 powerDC48VAFailure + 8 powerDC48VBFailure + 9 extAlarmInputTrigger + 10 moduleDown + 11 mscSwitchOverOK + 12 networkTopologyChange" + ::= { iesSlotEntry 8 } + + + + iesMscPortConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesMscPortConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table contains port configuration information in MSC1000." + ::= { iesChassis 4 } + + iesMscPortConfEntry OBJECT-TYPE + SYNTAX IesMscPortConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { iesChassisId,iesSlotId,iesMscPortId } + ::= { iesMscPortConfTable 1} + + IesMscPortConfEntry ::= + SEQUENCE { + iesMscPortId INTEGER, + iesMscPortType INTEGER, + iesMscPortIfIndex INTEGER, + iesMscPortSpeed INTEGER, + iesMscPortDuplex INTEGER, + iesMscPortFlowControl INTEGER, + iesMscPortDefaultVLANTagging INTEGER, + iesMscPortTrunkGroupId INTEGER, + iesMscPortMode INTEGER, + iesMscPortVLANTrunking INTEGER + } + + iesMscPortId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Identity of the extension slot in MSC1000." + ::= { iesMscPortConfEntry 1 } + + iesMscPortType OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + e1000BaseT(2), + e1000BaseLX(3), + e1000BaseSX(4), + e100BaseFX(5), + e100BaseTX(6), + e1000BaseGBIC(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Port type of the extension slot in MSC1000." + ::= { iesMscPortConfEntry 2 } + + iesMscPortIfIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { iesMscPortConfEntry 3 } + + iesMscPortSpeed OBJECT-TYPE + SYNTAX INTEGER { + auto(1), + e1000M(2), + e100M(3), + e10M(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { iesMscPortConfEntry 4 } + + iesMscPortDuplex OBJECT-TYPE + SYNTAX INTEGER { + full(1), + half(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { iesMscPortConfEntry 5 } + + iesMscPortFlowControl OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { iesMscPortConfEntry 6 } + + iesMscPortDefaultVLANTagging OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { iesMscPortConfEntry 7 } + + iesMscPortTrunkGroupId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { iesMscPortConfEntry 8 } + + iesMscPortMode OBJECT-TYPE + SYNTAX INTEGER { + uplink(1), + subtending(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " The operational mode for uplink and subtending ports in MSC. Only + the operational mode of subtending ports can be modified." + ::= { iesMscPortConfEntry 9 } + + iesMscPortVLANTrunking OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " The VLAN trunking setting for uplink and subtending ports in MSC." + ::= { iesMscPortConfEntry 10 } + + + +-- System Hardware Monitoring + +-- Fan rpm table + + iesFanRpmTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesFanRpmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains rpm information about the fans." + ::= { iesHWMonitor 1 } + + iesFanRpmEntry OBJECT-TYPE + SYNTAX IesFanRpmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of rpm information for each fan." + INDEX { iesChassisId,iesFanRpmIndex } + ::= { iesFanRpmTable 1 } + + IesFanRpmEntry ::= + SEQUENCE { + iesFanRpmIndex INTEGER, + iesFanRpmCurValue INTEGER, + iesFanRpmMaxValue INTEGER, + iesFanRpmMinValue INTEGER, + iesFanRpmLowThresh INTEGER, + iesFanRpmDescr DisplayString + } + + iesFanRpmIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identity of the fan." + ::= { iesFanRpmEntry 1 } + + iesFanRpmCurValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current rpm of the fan." + ::= { iesFanRpmEntry 2 } + + iesFanRpmMaxValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum rpm ever performed by the fan." + ::= { iesFanRpmEntry 3 } + + iesFanRpmMinValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum rpm ever performed by the fan." + ::= { iesFanRpmEntry 4 } + + iesFanRpmLowThresh OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The low threshold of the rpm of the fan. If the current rpm is less than + the threshold, the device will initiate the fanRpmLow trap." + ::= { iesFanRpmEntry 5 } + + iesFanRpmDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The description of the fan (e.g. location, function, etc.)." + ::= { iesFanRpmEntry 6 } + + + +-- Voltage table + + iesVoltageTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesVoltageEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains voltage information about the system." + ::= { iesHWMonitor 2 } + + iesVoltageEntry OBJECT-TYPE + SYNTAX IesVoltageEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of voltage information for each sensor." + INDEX { iesChassisId,iesSlotId,iesVoltageIndex } + ::= { iesVoltageTable 1 } + + IesVoltageEntry ::= + SEQUENCE { + iesVoltageIndex INTEGER, + iesVoltageCurValue INTEGER, + iesVoltageMaxValue INTEGER, + iesVoltageMinValue INTEGER, + iesVoltageNominalValue INTEGER, + iesVoltageLowThresh INTEGER, + iesVoltageDescr DisplayString + } + + iesVoltageIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identity of the sensor." + ::= { iesVoltageEntry 1 } + + iesVoltageCurValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current voltage detected by the sensor (in milli-voltage)." + ::= { iesVoltageEntry 2 } + + iesVoltageMaxValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum voltage ever detected by the sensor (in milli-voltage)." + ::= { iesVoltageEntry 3 } + + iesVoltageMinValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum voltage ever detected by the sensor (in milli-voltage)." + ::= { iesVoltageEntry 4 } + + iesVoltageNominalValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The nominal voltage which the power should supply (in milli-voltage)." + ::= { iesVoltageEntry 5 } + + iesVoltageLowThresh OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The low threshold of the voltage (in milli-voltage). If the current voltage + is less than the threshold, the device will initiate the voltageLow trap." + ::= { iesVoltageEntry 6 } + + iesVoltageDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The description of the voltage (e.g. location, nominal value, etc.)." + ::= { iesVoltageEntry 7 } + + + +-- System temperature table + + iesSysTempTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesSysTempEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information about system." + ::= { iesHWMonitor 3 } + + iesSysTempEntry OBJECT-TYPE + SYNTAX IesSysTempEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information for each sensor." + INDEX { iesChassisId,iesSlotId,iesSysTempIndex } + ::= { iesSysTempTable 1 } + + IesSysTempEntry ::= + SEQUENCE { + iesSysTempIndex INTEGER, + iesSysTempCurValue INTEGER, + iesSysTempMaxValue INTEGER, + iesSysTempMinValue INTEGER, + iesSysTempHighThresh INTEGER, + iesSysTempDescr DisplayString + } + + iesSysTempIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identity of the sensor." + ::= { iesSysTempEntry 1 } + + iesSysTempCurValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current temperature detected in Celsius by the sensor." + ::= { iesSysTempEntry 2 } + + iesSysTempMaxValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum temperature ever detected in Celsius by the sensor." + ::= { iesSysTempEntry 3 } + + iesSysTempMinValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum temperature ever detected in Celsius by the sensor." + ::= { iesSysTempEntry 4 } + + iesSysTempHighThresh OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The high threshold of the temperature in Celsius. If the current temperature + is higher than the threshold, the device will initiate the overheat trap." + ::= { iesSysTempEntry 5 } + + iesSysTempDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The description of the temperature sensor (e.g. location, function, etc.)." + ::= { iesSysTempEntry 6 } + + + +-- System Management + + -- System Status + + iesSystemCurrentStatus OBJECT-TYPE + SYNTAX INTEGER(0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This variable indicates the status of the system. + The sysCurrentStatus is a bit map represented + as a sum, therefore, it can represent multiple defects + simultaneously. The sysNoDefect should be set if and only if + no other flag is set. + + The various bit positions are: + 1 sysNoDefect + 2 sysOverHeat + 3 sysFanRpmLow + 4 sysVoltageLow + 5 sysThermalSensorFailure + 6 modulePullOut + 7 powerDC48VAFailure + 8 powerDC48VBFailure + 9 extAlarmInputTrigger + 10 moduleDown + 11 mscSwitchOverOK + 12 networkTopologyChange" + + ::= {iesSysState 1 } + + iesProblemCause OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "It describes the problem occurred in the system, e.g. maintenance + operation failures, system reboot, error log, ...etc." + ::= { iesSysState 2 } + + + +-- System Maintenance + + iesMaintenanceOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is for system maintenance. When the EMS + wants to trigger the system maitenance operation, the EMS + shall send SNMP-SET message to set the corresponding bit value + to be 1. The various bit positions are: + BIT 1: config save + BIT 2: reset + BIT 3: local loopback test + BIT 4: remote loopback test + BIT 5: clear system alarms + BIT 6: F4 loopback test + BIT 7: F5 loopback test + BIT 8: DSL Line Diagnostic" + ::= { iesSysMaintenance 1 } + + iesMaintenanceTarget OBJECT-TYPE + SYNTAX INTEGER (1..48) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is used for identify the target on which + the maintenance operation should be performed." + ::= { iesSysMaintenance 2 } + + +-- variables for provisioning DSL line in batch mode + + iesMaintenanceDSLConfOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is for xDSL line configuration. When the EMS + wants to issue the desired operation, the EMS + shall send SNMP-SET message to set the corresponding bit value + to be 1. The various bit positions are: + BIT 1: enable port + BIT 2: disable port + BIT 3: set DSL mode + BIT 4: set profile + BIT 5: enable mac filter + BIT 6: disable mac filter + BIT 7: set packet filter + BIT 8: enable dot1x + BIT 9: disable dot1x + BIT 10: set dot1x control + BIT 11: enable dot1x re-authentication + BIT 12: disable dot1x re-authentication + BIT 13: set dot1x re-authentication period + BIT 14: enable mac count filter + BIT 15: disable mac count filter + BIT 16: set mac count filter + BIT 17: set alarm profile + BIT 18: set Annex L (Only in AnnexA) + BIT 19: set power management + BIT 20: set rate adaptation mode + BIT 21: set IGMP filter (Not support after E5-111 v3.0) + BIT 22: enable Annex M + BIT 23: disable Annex M" + ::= { iesSysMaintenance 3 } + + iesMaintenanceDSLConfTarget OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is used for identify the target on which + the line configuration should be performed. The target is encoded + as: + Byte 1: the octet specifies a set of eight Chassis, Chassis 0 through 7 + Byte 2~3: each octet specifies a set of eight slots, with the + first octet specifying slots 1 through 8 and the second + octet specifying slots 9 through 16. + Byte 4: reserved + Byte 5~11: each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc." + ::= { iesSysMaintenance 4 } + + iesMaintenanceDSLConfProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The DSL profile name" + ::= { iesSysMaintenance 5 } + + iesMaintenanceDSLConfMode OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The DSL mode. The semantic for each bit is: + Bit 1: ADSL, G.lite + Bit 2: ADSL, G.dmt + Bit 3: ADSL, T1.413 + Bit 4: ADSL, Auto + Bit 5: ADSL, ETSI + Bit 6: ADSL2, + Bit 7: ADSL2+" + ::= { iesSysMaintenance 6 } + + iesMaintenanceDSLConfPktFilter OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The packet filter. The semantic for each bit is: + Bit 1: accept all + Bit 2: accept PPPoE only + Bit 3: reject ARP + Bit 4: reject DHCP + Bit 5: reject EAPOL + Bit 6: reject PPPoE + Bit 7: reject NetBIOS + Bit 8: reject IGMP + Bit 9: reject IP" + ::= { iesSysMaintenance 7 } + + iesMaintenanceDSLConfDot1xControl OBJECT-TYPE + SYNTAX INTEGER { + auto(1), + forceAuth(2), + forceUnAuth(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configuration defines the 802.1x control type." + ::= { iesSysMaintenance 8 } + + iesMaintenanceDSLConfDot1xReauthPeriod OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configuration defines the 802.1x re-authentication period (seconds)." + ::= { iesSysMaintenance 9 } + + iesMaintenanceDSLConfMacCount OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configuration defines the number of mac addresses which can pass through the port." + ::= { iesSysMaintenance 10 } + + iesMaintenanceVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VPI of the channel" + ::= { iesSysMaintenance 11 } + + iesMaintenanceVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VCI of the channel" + ::= { iesSysMaintenance 12 } + + iesMaintenanceDSLConfAlarmProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The DSL alarm profile name" + ::= { iesSysMaintenance 13 } + + iesMaintenanceDSLConfAnnexL OBJECT-TYPE + SYNTAX INTEGER { + enableNarrowMode(1), + enableWideMode(2), + disable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The annex L setting of the ADSL line (Only in AnnexA)." + ::= { iesSysMaintenance 14 } + + iesMaintenanceDSLConfPmMode OBJECT-TYPE + SYNTAX INTEGER { + enableL2Mode(1), + enableL3Mode(2), + disable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The power management mode of the ADSL line." + ::= { iesSysMaintenance 15 } + + iesMaintenanceDSLConfRateMode OBJECT-TYPE + SYNTAX INTEGER { + fixed(1), -- no rate adaptation + adaptAtStartup(2), -- perform rate adaptation + -- only at initialization + adaptAtRuntime(3) -- perform rate adaptation at + -- any time + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Defines what form of transmit rate adaptation is + configured on this modem. See ADSL Forum TR-005 [3] + for more information." + ::= { iesSysMaintenance 16 } + + iesMaintenanceDSLConfIgmpFilter OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IGMP filter name." + ::= { iesSysMaintenance 17 } + + + -- System Time Setup + + iesTimeServerMode OBJECT-TYPE + SYNTAX INTEGER { + none(1), + daytime(2), + time(3), + ntp(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The mechanism of Time Server when the system boots up." + ::= { iesSysTimeSetup 1 } + + iesTimeServerIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP Address of Time Server" + ::= { iesSysTimeSetup 2 } + + iesSystemTime OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The system time" + ::= { iesSysTimeSetup 3 } + + iesSystemDate OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The system date" + ::= { iesSysTimeSetup 4 } + + iesSystemTimeZone OBJECT-TYPE + SYNTAX INTEGER { + none(0), + utc-1200(1), + utc-1100(2), + utc-1000(3), + utc-0900(4), + utc-0800(5), + utc-0700(6), + utc-0600(7), + utc-0500(8), + utc-0400(9), + utc-0300(10), + utc-0200(11), + utc-0100(12), + utc(13), + utc0100(14), + utc0200(15), + utc0300(16), + utc0400(17), + utc0500(18), + utc0600(19), + utc0700(20), + utc0800(21), + utc0900(22), + utc1000(23), + utc1100(24), + utc1200(25) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The system time zone" + ::= { iesSysTimeSetup 5 } + + + +-- System Access Control + + iesAccessCtrlTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesAccessCtrlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about service access control." + ::= { iesSysAccessControl 1 } + + iesAccessCtrlEntry OBJECT-TYPE + SYNTAX IesAccessCtrlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of access control entry." + INDEX { iesAccessCtrlService } + ::= { iesAccessCtrlTable 1 } + + IesAccessCtrlEntry ::= + SEQUENCE { + iesAccessCtrlService INTEGER, + iesAccessCtrlEnable INTEGER, + iesAccessCtrlPort INTEGER + } + + iesAccessCtrlService OBJECT-TYPE + SYNTAX INTEGER { + telnet(1), + ftp(2), + web(3), + icmp(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The service type of the access control entry." + ::= { iesAccessCtrlEntry 1 } + + iesAccessCtrlEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable the service." + ::= { iesAccessCtrlEntry 2 } + + iesAccessCtrlPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port number which the service uses." + ::= { iesAccessCtrlEntry 3 } + + -- secured client table + iesMaxNumOfSecuredClients OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of sets of secured clients." + ::= { iesSysAccessControl 2} + + iesSecuredClientTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesSecuredClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about secured clients." + ::= { iesSysAccessControl 3 } + + iesSecuredClientEntry OBJECT-TYPE + SYNTAX IesSecuredClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of secured client entry." + INDEX { iesSecuredClientStartIp, iesSecuredClientEndIp } + ::= { iesSecuredClientTable 1 } + + IesSecuredClientEntry ::= + SEQUENCE { + iesSecuredClientStartIp IpAddress, + iesSecuredClientEndIp IpAddress, + iesSecuredClientService INTEGER, + iesSecuredClientRowStatus RowStatus + } + + iesSecuredClientStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The starting IP address of a set of secured clients." + ::= { iesSecuredClientEntry 1 } + + iesSecuredClientEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ending IP address of a set of secured clients." + ::= { iesSecuredClientEntry 2 } + + iesSecuredClientService OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Each bit corresponds to a service. The bit is set to 1 if the + service is enabled, and set to 0 if the service is disabled. + The various bit positions are: + BIT 1: telnet + BIT 2: FTP + BIT 3: web + BIT 4: ICMP" + ::= { iesSecuredClientEntry 3 } + + iesSecuredClientRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or modify or delete an existing row + in this table. A row is activated by setting this object to `active', and is + deactivated by setting it to 'notInService'." + ::= { iesSecuredClientEntry 4 } + + + +-- Static Route + + iesMaxNumOfStaticRoutes OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of static routes." + ::= { iesSysStaticRoute 1 } + + iesStaticRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesStaticRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about static routes." + ::= { iesSysStaticRoute 2 } + + iesStaticRouteEntry OBJECT-TYPE + SYNTAX IesStaticRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of static route entry." + INDEX { iesStaticRouteName } + ::= { iesStaticRouteTable 1 } + + IesStaticRouteEntry ::= + SEQUENCE { + iesStaticRouteName DisplayString, + iesStaticRouteDest IpAddress, + iesStaticRouteMask IpAddress, + iesStaticRouteGateway IpAddress, + iesStaticRouteMetric INTEGER, + iesStaticRouteRowStatus RowStatus + } + + iesStaticRouteName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the static route." + ::= { iesStaticRouteEntry 1 } + + iesStaticRouteDest OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The destination IP address of the static route." + ::= { iesStaticRouteEntry 2 } + + iesStaticRouteMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The subnet mask of the static route." + ::= { iesStaticRouteEntry 3 } + + iesStaticRouteGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The gateway IP address of the static route." + ::= { iesStaticRouteEntry 4 } + + iesStaticRouteMetric OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The routing metric of the static route." + ::= { iesStaticRouteEntry 5 } + + iesStaticRouteRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or modify or delete an existing row + in this table. A row is activated by setting this object to `active', and is + deactivated by setting it to 'notInService'." + ::= { iesStaticRouteEntry 6 } + + + +-- syslog + + iesSysLogEnable OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable syslog function." + ::= { iesSyslogSetup 1 } + + iesSysLogServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IP address of the syslog server." + ::= { iesSyslogSetup 2 } + + iesSysLogFacility OBJECT-TYPE + SYNTAX INTEGER { + local1(1), + local2(2), + local3(3), + local4(4), + local5(5), + local6(6), + local7(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Log facility used by the syslog function." + ::= { iesSyslogSetup 3 } + + + +-- DHCP Setup + + iesDhcpRelayEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable DHCP relay function." + ::= { iesSysDhcpSetup 1 } + + iesDhcpRelayOption82Enable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable DHCP relay Option82 function." + ::= { iesSysDhcpSetup 2 } + + iesDhcpRelayOption82Info OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "User specific Option82 information." + ::= { iesSysDhcpSetup 3 } + + iesMaxNumOfDhcpServers OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of DHCP servers." + ::= { iesSysDhcpSetup 4 } + + iesDhcpServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesDhcpServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains DHCP server information." + ::= { iesSysDhcpSetup 5 } + + iesDhcpServerEntry OBJECT-TYPE + SYNTAX IesDhcpServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of DHCP server table." + INDEX { iesDhcpServerIp } + ::= { iesDhcpServerTable 1 } + + IesDhcpServerEntry ::= + SEQUENCE { + iesDhcpServerIp IpAddress, + iesDhcpServerRowStatus RowStatus + } + + iesDhcpServerIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of the DHCP server." + ::= { iesDhcpServerEntry 1 } + + iesDhcpServerRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the DHCP server entry." + ::= { iesDhcpServerEntry 2 } + +-- SNMP setup, Trap Destination + + iesMaxNumberOfTrapDestinations OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of the trap destinations." + ::= { iesSysSNMPSetup 1 } + + iesSNMPTrapDestTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesSNMPTrapDestEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains SNMP trap destination information." + ::= { iesSysSNMPSetup 2 } + + iesSNMPTrapDestEntry OBJECT-TYPE + SYNTAX IesSNMPTrapDestEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of SNMP trap destination table." + INDEX { iesTrapDestIp, iesTrapDestPort } + ::= { iesSNMPTrapDestTable 1 } + + IesSNMPTrapDestEntry ::= + SEQUENCE { + iesTrapDestIp IpAddress, + iesTrapDestPort INTEGER, + iesTrapDestRowStatus RowStatus + } + + iesTrapDestIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of the trap destination." + ::= { iesSNMPTrapDestEntry 1 } + + iesTrapDestPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The UDP port of the trap destination." + ::= { iesSNMPTrapDestEntry 2 } + + iesTrapDestRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the trap destination entry." + ::= { iesSNMPTrapDestEntry 3} + + iesSnmpGetCommunity OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The SNMP get community." + ::= { iesSysSNMPSetup 3 } + + iesSnmpSetCommunity OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The SNMP set community." + ::= { iesSysSNMPSetup 4 } + + iesSnmpTrapCommunity OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The SNMP trap community." + ::= { iesSysSNMPSetup 5 } + + +-- RADIUS Server setup + + iesMaxNumberOfRadiusServers OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of the RADIUS Servers." + ::= { iesSysDot1xSetup 1 } + + iesRadiusServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesRadiusServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains Radius Server information." + ::= { iesSysDot1xSetup 2 } + + iesRadiusServerEntry OBJECT-TYPE + SYNTAX IesRadiusServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of Radius Server table." + INDEX { iesRadiusServerIndex } + ::= { iesRadiusServerTable 1 } + + IesRadiusServerEntry ::= + SEQUENCE { + iesRadiusServerIndex INTEGER, + iesRadiusServerIp IpAddress, + iesRadiusServerPort INTEGER, + iesRadiusSharedSecret DisplayString, + iesRadiusServerRowStatus RowStatus + } + + iesRadiusServerIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identity of the RADIUS server." + ::= { iesRadiusServerEntry 1 } + + iesRadiusServerIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The IP address of the Radius Server." + ::= { iesRadiusServerEntry 2 } + + iesRadiusServerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The UDP port of the Radius Server." + ::= { iesRadiusServerEntry 3 } + + iesRadiusSharedSecret OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The shared secret of the Radius Server." + ::= { iesRadiusServerEntry 4 } + + iesRadiusServerRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the Radius Server entry." + ::= { iesRadiusServerEntry 5 } + + +-- 802.1x option + + iesDot1xEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable the 802.1x function." + ::= { iesSysDot1xSetup 3 } + + + +-- 802.1x Table + + iesDot1xPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesDot1xPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the configuration of 802.1x." + ::= { iesSysDot1xSetup 4 } + + iesDot1xPortEntry OBJECT-TYPE + SYNTAX IesDot1xPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in iesDot1xPortTable." + INDEX { ifIndex } + ::= { iesDot1xPortTable 1 } + + IesDot1xPortEntry ::= + SEQUENCE { + iesDot1xPortEnable INTEGER, + iesDot1xPortControl INTEGER, + iesDot1xPortReAuthEnable INTEGER, + iesDot1xPortReAuthPeriod INTEGER + } + + iesDot1xPortEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The option defines if the port enables 802.1x + settings." + ::= { iesDot1xPortEntry 1 } + + iesDot1xPortControl OBJECT-TYPE + SYNTAX INTEGER { + auto(1), + forceAuth(2), + forceUnAuth(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configuration defines the 802.1x port control + type." + ::= { iesDot1xPortEntry 2 } + + iesDot1xPortReAuthEnable OBJECT-TYPE + SYNTAX INTEGER { + on(1), + off(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The option defines if the port enables 802.1x + re-authentication." + ::= { iesDot1xPortEntry 3 } + + iesDot1xPortReAuthPeriod OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configuration defines the 802.1x + re-authentication period (seconds) for each port." + ::= { iesDot1xPortEntry 4 } + + + +-- Mac Filter + + iesMacFilterStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesMacFilterStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the status of mac filtering for each port." + ::= { iesSysMacFilter 1 } + + iesMacFilterStatusEntry OBJECT-TYPE + SYNTAX IesMacFilterStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in iesMacFilterStatusTable." + INDEX { ifIndex } + ::= { iesMacFilterStatusTable 1 } + + IesMacFilterStatusEntry ::= + SEQUENCE { + iesMacFilterStatusEnable INTEGER + } + + iesMacFilterStatusEnable OBJECT-TYPE + SYNTAX INTEGER { + enableAccept(1), + disable(2), + enableDeny(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The option defines if the port enables mac filtering." + ::= { iesMacFilterStatusEntry 1 } + + iesMaxNumberOfMacFilters OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of the mac filters in the system." + ::= { iesSysMacFilter 2 } + + iesMaxNumberOfMacFiltersPerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of the mac filters for each port." + ::= { iesSysMacFilter 3 } + + iesCurrNumberOfMacFilters OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of the mac filters in the system." + ::= { iesSysMacFilter 4 } + + iesMacFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesMacFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains the mac filtering information." + ::= { iesSysMacFilter 5 } + + iesMacFilterEntry OBJECT-TYPE + SYNTAX IesMacFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of iesMacFilterTable." + INDEX { ifIndex, iesMacFilterMacAddr } + ::= { iesMacFilterTable 1 } + + IesMacFilterEntry ::= + SEQUENCE { + iesMacFilterMacAddr PhysAddress, + iesMacFilterRowStatus RowStatus + } + + iesMacFilterMacAddr OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The mac address which can pass through the port." + ::= { iesMacFilterEntry 1 } + + iesMacFilterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the entry." + ::= { iesMacFilterEntry 2 } + + + +-- Packet Filter + + iesPacketFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesPacketFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes packet filtering for each port." + ::= { iesSysPacketFilter 1 } + + iesPacketFilterEntry OBJECT-TYPE + SYNTAX IesPacketFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in iesPacketFilterTable." + INDEX { ifIndex } + ::= { iesPacketFilterTable 1 } + + IesPacketFilterEntry ::= + SEQUENCE { + iesPacketFilter INTEGER + } + + iesPacketFilter OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The packet filter. The semantic for each bit is: + Bit 1: accept all + Bit 2: accept PPPoE only + Bit 3: reject ARP + Bit 4: reject DHCP + Bit 5: reject EAPOL + Bit 6: reject PPPoE + Bit 7: reject NetBIOS + Bit 8: reject IGMP + Bit 9: reject IP" + ::= { iesPacketFilterEntry 1 } + + + +-- Mac Count Filter + + iesMacCountFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesMacCountFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes mac count filtering for each port." + ::= { iesSysMacCountFilter 1 } + + iesMacCountFilterEntry OBJECT-TYPE + SYNTAX IesMacCountFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in iesMacCountFilterTable." + INDEX { ifIndex } + ::= { iesMacCountFilterTable 1 } + + IesMacCountFilterEntry ::= + SEQUENCE { + iesMacCountFilterStatus INTEGER, + iesMacCountFilterCount INTEGER + } + + iesMacCountFilterStatus OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The option defines if the port enables mac count filtering." + ::= { iesMacCountFilterEntry 1 } + + iesMacCountFilterCount OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The number of mac addresses which can pass through the port." + ::= { iesMacCountFilterEntry 2 } + + + +-- Static Multicast Group + + iesMaxNumberOfMulticastGroups OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of static multicast groups in the system." + ::= { iesSysMulticastGroup 1 } + + iesMulticastGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesMulticastGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains static multicast group information." + ::= { iesSysMulticastGroup 2 } + + iesMulticastGroupEntry OBJECT-TYPE + SYNTAX IesMulticastGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of multicast group table." + INDEX { iesMulticastGroupMacAddr } + ::= { iesMulticastGroupTable 1 } + + IesMulticastGroupEntry ::= + SEQUENCE { + iesMulticastGroupMacAddr PhysAddress, + iesMulticastGroupPorts PortList, + iesMulticastGroupRowStatus RowStatus + } + + iesMulticastGroupMacAddr OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The multicast MAC address of the group." + ::= { iesMulticastGroupEntry 1 } + + iesMulticastGroupPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The port list which specifies the ports joining the multicast group." + ::= { iesMulticastGroupEntry 2 } + + iesMulticastGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the multicast group entry." + ::= { iesMulticastGroupEntry 3 } + + +-- IGMP Filter +-- Obsoleted since Revision 3.0.0 at 2009/11/26 by maverick +-- Not used for R3.x and above. + + iesMaxNumberOfIgmpFilters OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of IGMP filters in the system." + ::= { iesSysIgmpFilter 1 } + + iesIgmpFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesIgmpFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains IGMP filters." + ::= { iesSysIgmpFilter 2 } + + iesIgmpFilterEntry OBJECT-TYPE + SYNTAX IesIgmpFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of IGMP filter table." + INDEX { iesIgmpFilterName, iesIgmpFilterIndex } + ::= { iesIgmpFilterTable 1 } + + IesIgmpFilterEntry ::= + SEQUENCE { + iesIgmpFilterName OCTET STRING, + iesIgmpFilterIndex INTEGER, + iesIgmpFilterStartIp IpAddress, + iesIgmpFilterEndIp IpAddress, + iesIgmpFilterRowStatus RowStatus + } + + iesIgmpFilterName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IGMP filter name." + ::= { iesIgmpFilterEntry 1 } + + iesIgmpFilterIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index which specifies the filter rule." + ::= { iesIgmpFilterEntry 2 } + + iesIgmpFilterStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The start IP of the filter rule." + ::= { iesIgmpFilterEntry 3 } + + iesIgmpFilterEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The end IP of the filter rule." + ::= { iesIgmpFilterEntry 4 } + + iesIgmpFilterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the IGMP filter entry." + ::= { iesIgmpFilterEntry 5 } + + iesIgmpFilterPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesIgmpFilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table specifies the IGMP filter of the port." + ::= { iesSysIgmpFilter 3 } + + iesIgmpFilterPortEntry OBJECT-TYPE + SYNTAX IesIgmpFilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An entry in iesIgmpFilterPortTable." + INDEX { ifIndex } + ::= { iesIgmpFilterPortTable 1 } + + IesIgmpFilterPortEntry ::= + SEQUENCE { + iesIgmpFilterPortFilter OCTET STRING + } + + iesIgmpFilterPortFilter OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IGMP filter of the port." + ::= { iesIgmpFilterPortEntry 1 } + + +-- L2 Switch Configuration + + iesIGMPSnoopingEnabled OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A flag indicating whether IGMP snooping function is enabled or not." + ::= { iesL2SW 1 } + + iesManagementVLANId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The VLAN ID for management." + ::= { iesL2SW 2 } + + iesMaxNumOfStaticVlans OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of static VLANs supported by the system." + ::= { iesL2SW 3 } + + iesPortIsolationEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A flag indicating whether VLAN port isolation function is enabled or not." + ::= { iesL2SW 6 } + + iesRSTPEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/Disable RSTP." + ::= { iesL2SW 7 } + + iesSwitchMode OBJECT-TYPE + SYNTAX INTEGER { + daisyChain(1), + standalone(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Switch DSLAM's operatrion Mode." + ::= { iesL2SW 8 } + + + -- Trunk Group + + iesMaxNumOfTrunkGroups OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of trunk groups." + ::= { iesL2SW 4} + + iesTrunkGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesTrunkGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains trunk group configuration." + ::= { iesL2SW 5 } + + iesTrunkGroupEntry OBJECT-TYPE + SYNTAX IesTrunkGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of trunk group table" + INDEX { iesTrunkGroupId } + ::= { iesTrunkGroupTable 1 } + + IesTrunkGroupEntry ::= + SEQUENCE { + iesTrunkGroupId INTEGER, + iesTrunkGroupName DisplayString, + iesTrunkGroupPorts PortList, + iesTrunkGroupRowStatus RowStatus + } + + iesTrunkGroupId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ID of the trunk group" + ::= { iesTrunkGroupEntry 1 } + + iesTrunkGroupName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The name of the trunk group" + ::= { iesTrunkGroupEntry 2 } + + iesTrunkGroupPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The port list of the trunk group" + ::= { iesTrunkGroupEntry 3 } + + iesTrunkGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the trunk group entry" + ::= { iesTrunkGroupEntry 4 } + + +-- Enterprise specific traps + + reboot TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + iesProblemCause + } + DESCRIPTION "Send a message to the manager that the system is going to reboot. + The variable is the reason why the system reboots." + ::= 1 + + systemShutdown TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + iesProblemCause + } + DESCRIPTION "Send a message to the manager that the system is going to shutdown. + The variable is the reason that causes the system to shutdown." + ::= 2 + + overheat TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + iesChassisId, + iesSlotId, + iesSysTempIndex, + iesSysTempCurValue + } + DESCRIPTION "Send a message to the manager that the system is overheated. + The variable in the binding list is the current temperature in Celsius + of the system." + ::= 3 + + overheatOver TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + iesChassisId, + iesSlotId, + iesSysTempIndex, + iesSysTempCurValue + } + DESCRIPTION "Send a message to the manager that the overheated condition is over. + The variable in the binding list is the current temperature in Celsius + of the system." + ::= 4 + + errLog TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + iesProblemCause + } + DESCRIPTION "Send a message to the manager that an error log is created in system. + The variable in the binding list is the content of the error log." + ::= 5 + + fanRpmLow TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + iesChassisId, + iesFanRpmIndex, + iesFanRpmCurValue + } + DESCRIPTION "Send a message to the manager that the rpm of the fan is too low. + The variable in the binding list is the current rpm of the fan." + ::= 6 + + fanRpmNormal TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + iesChassisId, + iesFanRpmIndex, + iesFanRpmCurValue + } + DESCRIPTION "Send a message to the manager that the low-rpm condition of the fan is over. + The variable in the binding list is the current rpm of the fan." + ::= 7 + + voltageOutOfRange TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + iesChassisId, + iesSlotId, + iesVoltageIndex, + iesVoltageCurValue + } + DESCRIPTION "Send a message to the manager that the voltage of the system is out of range. + The variable in the binding list is the current voltage in volt + of the system." + ::= 8 + + voltageNormal TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + iesChassisId, + iesSlotId, + iesVoltageIndex, + iesVoltageCurValue + } + DESCRIPTION "Send a message to the manager that the low-voltage condition is over. + The variable in the binding list is the current voltage in volt + of the system." + ::= 9 + + systemMaintenanceFailure TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + iesChassisId, + iesSlotId, + iesProblemCause + } + DESCRIPTION "Send a message to the manager that the system maintence operation + fail. The variable in the variable binding indicates the problem." + ::= 10 + + configChange TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + iesChassisId, + iesSlotId, + iesProblemCause + } + DESCRIPTION "This notification indicates that the configuration data of one module is changed." + ::= 11 + + moduleUp TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + iesChassisId, + iesSlotId + } + DESCRIPTION "A moduleUp trap signifies that the sending + protocol entity recognizes that one of the + modules represented in the agent's + configuration has come up." + ::= 12 + + moduleDown TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + iesChassisId, + iesSlotId + } + DESCRIPTION "A moduleDown trap signifies that the sending + protocol entity recognizes a failure in one of + the modules represented in the agent's + configuration." + ::= 13 + + modulePlugIn TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + iesChassisId, + iesSlotId + } + DESCRIPTION "A modulePlugIn trap signifies that the sending + protocol entity recognizes that one module is + plugged into the device." + ::= 14 + + modulePullOut TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + iesChassisId, + iesSlotId + } + DESCRIPTION "A modulePullOut trap signifies that the sending + protocol entity recognizes one module is pulled out + from the device." + ::= 15 + + powerDC48VAFailure TRAP-TYPE + ENTERPRISE e5x111 +-- VARIABLES { +-- } + DESCRIPTION "The trap signifies that the power supply of DC 48V at the + right side of main Chassis (front view) failed." + ::= 16 + + powerDC48VANormal TRAP-TYPE + ENTERPRISE e5x111 +-- VARIABLES { +-- } + DESCRIPTION "The trap signifies that the power supply of DC 48V at the + right side of main Chassis (front view) is in normal state." + ::= 17 + + powerDC48VBFailure TRAP-TYPE + ENTERPRISE e5x111 +-- VARIABLES { +-- } + DESCRIPTION "The trap signifies that the power supply of DC 48V at the + left side of main Chassis (front view) failed." + ::= 18 + + powerDC48VBNormal TRAP-TYPE + ENTERPRISE e5x111 +-- VARIABLES { +-- } + DESCRIPTION "The trap signifies that the power supply of DC 48V at the + left side of main Chassis (front view) is in normal state." + ::= 19 + + extAlarmInputTrigger TRAP-TYPE + ENTERPRISE e5x111 +-- VARIABLES { +-- } + DESCRIPTION "The trap signifies that the external alarm input of MSC card + is triggered." + ::= 20 + + extAlarmInputRelease TRAP-TYPE + ENTERPRISE e5x111 +-- VARIABLES { +-- } + DESCRIPTION "The trap signifies that the external alarm input of MSC card + is released." + ::= 21 + + thermalSensorFailure TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + iesChassisId, + iesSlotId + } + DESCRIPTION "The trap signifies that the thermal sensor failed." + ::= 22 + + + + mscSwitchOverOK TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + iesChassisId, + iesSlotId + } + DESCRIPTION "The trap signifies that MSC card is switched over successfully. The value of + iesSlotId is the slot ID of the current working MSC." + ::= 23 + + + networkTopologyChange TRAP-TYPE + ENTERPRISE e5x111 +-- VARIABLES { +-- } + DESCRIPTION "The trap signifies the network topology is changed." + ::= 24 + + adslAtucLof TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + ifIndex + } + DESCRIPTION "The trap signifies ATU-C Loss of Framing." + ::= 25 + + adslAturLof TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + ifIndex + } + DESCRIPTION "The trap signifies ATU-R Loss of Framing." + ::= 26 + + adslAtucLos TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + ifIndex + } + DESCRIPTION "The trap signifies ATU-C Loss of Signal." + ::= 27 + + adslAturLos TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + ifIndex + } + DESCRIPTION "The trap signifies ATU-R Loss of Signal." + ::= 28 + + adslAturLpr TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + ifIndex + } + DESCRIPTION "The trap signifies ATU-R Loss of Power." + ::= 29 + + adslAtucLofClear TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + ifIndex + } + DESCRIPTION "The trap signifies ATU-C Loss of Framing is cleared." + ::= 30 + + adslAturLofClear TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + ifIndex + } + DESCRIPTION "The trap signifies ATU-R Loss of Framing is cleared." + ::= 31 + + adslAtucLosClear TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + ifIndex + } + DESCRIPTION "The trap signifies ATU-C Loss of Signal is cleared." + ::= 32 + + adslAturLosClear TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + ifIndex + } + DESCRIPTION "The trap signifies ATU-R Loss of Signal is cleared." + ::= 33 + + adslAturLprClear TRAP-TYPE + ENTERPRISE e5x111 + VARIABLES { + ifIndex + } + DESCRIPTION "The trap signifies ATU-R Loss of Power is cleared." + ::= 34 + +END diff --git a/mibs/calix/E5-111-MIB b/mibs/calix/E5-111-MIB new file mode 100644 index 0000000000..63ed6cbb09 --- /dev/null +++ b/mibs/calix/E5-111-MIB @@ -0,0 +1,10253 @@ +-- $Log: E5-111-MIB.mib $ +-- Revision 1.50 2011/01/25 13:33:30 cylien +-- Revision 1.49 2011/01/25 10:18:15 ChunTing +-- Revision 1.48 2010/11/12 06:27:46 DavidGong +-- Revision 1.47 2010/10/18 06:23:52 cylien +-- Revision 1.46 2010/09/08 07:06:53 Alex.Shih +-- Revision 1.45 2010/09/01 06:56:01 cylien +-- Revision 1.44 2010/08/27 08:04:40 Alex.Shih +-- Revision 1.43 2010/08/24 11:29:33 davidgong +-- Revision 1.42 2010/08/23 10:00:37 davidgong +-- Revision 1.41 2010/08/19 08:12:40 Alex.Shih +-- Revision 1.40 2010/08/19 06:41:46 davidgong +-- Revision 1.39 2010/08/18 06:54:55 davidgong +-- Revision 1.38 2010/07/21 03:30:37 Alex.Shih +-- Revision 1.37 2010/07/09 11:08:55 Alex.Shih +-- Revision 1.34 2010/05/20 01:39:59 maverick +-- Revision 1.33 2010/05/04 10:03:12 cylien +-- Revision 1.32 2010/04/29 07:36:04 maverick +-- Revision 1.31 2010/04/23 10:46:25 maverick +-- Revision 1.30 2010/04/23 08:21:48 cylien +-- Revision 1.29 2010/04/02 09:09:30 Ives +-- Revision 1.28 2010/03/29 02:05:59 maverick +-- Revision 1.27 2010/01/26 11:24:54 Ives +-- Revision 1.26 2010/01/04 13:07:59 Ives +-- Revision 1.25 2010/01/04 10:58:55 maverick +-- combo version (H248/SIP/CSIP) +-- Revision 1.18 2009/12/24 12:52:26 Ives +-- Revision 1.17 2009/12/24 10:32:25 maverick +-- Revision 1.16 2009/12/03 10:55:06 maverick +-- Revision 1.15 2009/11/30 01:14:48 maverick +-- Revision 1.14 2009/11/26 13:06:54 maverick +-- add comment to obsoleted mib entries, mibble checked +-- Revision 1.13 2009/11/23 06:51:52 maverick +-- Revision 1.12 2009/11/06 02:10:38 maverick +-- remove cfm, change atmqos to ipqos +-- Revision 1.11 2009/11/02 02:59:02 Ives +-- Revision 1.10 2009/10/30 09:05:28 FJ.Chuang +-- Revision 1.9 2009/10/19 10:32:54 maverick +-- Revision 1.8 2009/10/06 06:24:49 maverick +-- Revision 1.7 2009/09/18 07:05:50 maverick +-- Revision 1.6 2009/09/16 02:55:30 niceguy +-- Revision 1.5 2009/09/15 05:51:29 maverick +-- Revision 1.4 2009/09/15 02:48:20 maverick +-- Revision 1.3 2009/09/14 09:27:40 maverick +-- Revision 1.2 2009/09/08 07:56:29 maverick +-- Revision 1.1 2009/09/04 11:07:09 maverick +-- Initial revision +-- Revision 1.19 2009/09/01 01:32:34 maverick +-- Revision 1.18 2009/07/21 10:52:51 maverick +-- Revision 1.17 2009/06/03 08:43:23 niceguy +-- Revision 1.16 2009/05/27 09:19:26 niceguy +-- Revision 1.15 2009/05/25 09:55:14 maverick +-- Revision 1.14 2009/05/08 10:18:26 niceguy +-- Revision 1.13 2009/03/23 11:53:56 niceguy +-- Revision 1.12 2009/03/18 02:16:24 niceguy +-- Revision 1.11 2009/03/17 09:43:05 niceguy +-- Revision 1.10 2009/03/17 08:05:08 niceguy +-- Revision 1.9 2009/03/12 11:01:05 niceguy +-- Revision 1.8 2009/03/12 03:32:04 niceguy +-- Revision 1.7 2009/03/10 11:02:51 niceguy +-- Revision 1.6 2009/03/09 00:58:48 niceguy +-- Revision 1.5 2009/03/06 12:32:02 maverick +-- Revision 1.4 2008/11/14 12:17:44 niceguy +-- Revision 1.3 2008/11/12 08:19:33 kenny +-- Revision 1.2 2008/11/12 07:09:33 niceguy +-- Revision 1.1 2008/07/11 09:36:18 maverick +-- Initial revision +-- Revision 1.18 2008/07/08 02:51:58 maverick +-- Revision 1.17 2008/06/30 07:43:21 maverick +-- Revision 1.16 2008/05/09 01:28:38 maverick +-- Revision 1.15 2008/04/28 02:29:17 maverick +-- Revision 1.14 2008/02/19 09:59:30 maverick +-- Revision 1.13 2008/01/11 04:23:01 maverick +-- Revision 1.12 2007/12/19 06:20:20 niceguy +-- Revision 1.11 2007/12/18 07:12:29 niceguy +-- Revision 1.10 2007/12/18 06:08:27 maverick +-- Revision 1.9 2007/12/18 05:35:30 maverick +-- Revision 1.8 2007/12/17 09:31:11 maverick +-- Revision 1.7 2007/12/17 01:35:33 maverick +-- Revision 1.6 2007/12/14 09:59:07 niceguy +-- Revision 1.5 2007/12/14 03:47:54 maverick +-- Revision 1.4 2007/12/14 02:42:42 niceguy +-- Revision 1.3 2007/12/06 02:03:08 kenny +-- Revision 1.2 2007/12/03 01:54:36 niceguy +-- Revision 1.1 2007/12/03 01:45:33 niceguy +-- Initial revision +-- Initial revision + + + E5-111-MIB DEFINITIONS ::= BEGIN + + IMPORTS + + enterprises + FROM RFC1155-SMI + OBJECT-TYPE, Counter32, Gauge32, Unsigned32, Counter64, IpAddress, TimeTicks, NOTIFICATION-TYPE + FROM SNMPv2-SMI + DisplayString, PhysAddress, ifIndex + FROM RFC1213-MIB + RowStatus, MacAddress, TEXTUAL-CONVENTION + FROM SNMPv2-TC + VlanIndex, PortList, dot1qVlanIndex + FROM Q-BRIDGE-MIB + dot1dTrafficClass + FROM P-BRIDGE-MIB + Timeout, BridgeId, dot1dBasePort + FROM BRIDGE-MIB; + +-- dot1agCfmMdMdLevel, dot1agCfmVlanPrimaryVid, dot1agCfmMepIdentifier +-- FROM IEEE8021-CFMD8-MIB; + + + calixNetworks OBJECT IDENTIFIER ::= { enterprises 6321 } + calixRegistrations OBJECT IDENTIFIER ::= { calixNetworks 1 } + calixProducts OBJECT IDENTIFIER ::= { calixRegistrations 2 } + e5x100 OBJECT IDENTIFIER ::= { calixProducts 3 } + e5x111 OBJECT IDENTIFIER ::= { e5x100 2 } + + + + alarmconf OBJECT IDENTIFIER ::= { e5x111 2 } + diagnostic OBJECT IDENTIFIER ::= { e5x111 4 } + multicast OBJECT IDENTIFIER ::= { e5x111 7 } + port OBJECT IDENTIFIER ::= { e5x111 8 } + profile OBJECT IDENTIFIER ::= { e5x111 9 } + switch OBJECT IDENTIFIER ::= { e5x111 10 } + sys OBJECT IDENTIFIER ::= { e5x111 11 } + trap OBJECT IDENTIFIER ::= { e5x111 12 } + statistics OBJECT IDENTIFIER ::= { e5x111 13 } + clear OBJECT IDENTIFIER ::= { e5x111 14 } +-- 15 reserved for cluster + voip OBJECT IDENTIFIER ::= { e5x111 16 } + aesSeriesCommon OBJECT IDENTIFIER ::= { e5x111 97 } + iesSeriesCommon OBJECT IDENTIFIER ::= { e5x111 98 } + accessSwitchCommonATM OBJECT IDENTIFIER ::= { e5x111 99 } + + +---------------------------------------- +-- alarmconf +---------------------------------------- + + alarmOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The manager sets the corresponding bit value to 1 to start the operation + and the agent clears the object to zero when the operation is successfully completed. + The various bit positions are: + BIT 1: clear + BIT 2: cutoff" + ::= { alarmconf 1 } + +-- Alarm Conf Table + + alarmConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF AlarmConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes alarm configuration." + ::= { alarmconf 2 } + + alarmConfEntry OBJECT-TYPE + SYNTAX AlarmConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in alarmConfTable." + INDEX { alarmConfId } + ::= { alarmConfTable 1 } + + AlarmConfEntry ::= + SEQUENCE { + alarmConfId INTEGER, + alarmConfFacility INTEGER, + alarmConfTarget INTEGER, + alarmConfSeverity INTEGER, + alarmConfClearable INTEGER + } + + alarmConfId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + 5000:adslLine_up + 5001:adslLine_down + 5002:adslPerf_lol_thresh + 5003:adslPerf_lof_thresh + 5004:adslPerf_los_thresh + 5005:adslPerf_lop_thresh + 5006:adslPerf_es_thresh + 5007:adslPerf_ses_thresh + 5008:adslPerf_uas_thresh + 5009:adslAtuc_loftrap + 5010:adslAtuc_lostrap + 5011:adslAtur_loftrap + 5012:adslAtur_lostrap + 5013:adslAtur_lprtrap + 5014:ad_dhcp_rt_full + 5015:ad_dhcp_dm_conflict + 5016:ad_dhcp_entry_full + 5017:ad_dhcp_ip_dup + 5018:ad_dhcp_mac_dup + 10000:eqptVol_err + 10001:eqptEqpttemp_err + 10002:eqptFan_err + 10003:eqptHw_rtc_fail + 10004:eqptHw_mon_fail + 10005:eqptCold_start + 10006:eqptWarm_start + 10007:eqptAlm_input + 10008:voip_battery_fail + 10009:voip_clock_fail + 10010:voip_ringer_fault + 10011:eqptI2c_err + 10012:eqptAlm_input2 + 10013:eqptAlm_input3 + 15000:sysReboot + 15001:sysAco + 15002:sysAlm_clear + 15003:sysLogin_fail + 15004:sysAnti_spoofing + 15005:sysAlm_svrty_change + 20000:enetUp + 20001:enetDown + 25000:voip_temp_error + 25001:voip_dc_power_fail + 25002:voip_ac_power_fail + 25003:voip_ring_timer_fail + 25004:voip_ring_rsrce_fail + 25006:voip_call_setup_failed + 25007:voip_call_threshold_violate + " + ::= { alarmConfEntry 1 } + + alarmConfFacility OBJECT-TYPE + SYNTAX INTEGER { + local1(1), + local2(2), + local3(3), + local4(4), + local5(5), + local6(6), + local7(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Alarm facility." + ::= { alarmConfEntry 2 } + + alarmConfTarget OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination which alarms are reported to. Set the bit to 1 to enable the target. + BIT 1: snmp trap + BIT 2: syslog" + ::= { alarmConfEntry 3 } + + alarmConfSeverity OBJECT-TYPE + SYNTAX INTEGER { + critical(1), + major(2), + minor(3), + info(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Alarm severity" + ::= { alarmConfEntry 4 } + + alarmConfClearable OBJECT-TYPE + SYNTAX INTEGER { + clearable(1), + unclearable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting the object to one indicates that the alarm is to be cleared when user submits alarm clear." + ::= { alarmConfEntry 5 } + +-- Alarm Current Table + + alarmCurrTable OBJECT-TYPE + SYNTAX SEQUENCE OF AlarmCurrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes current alarm information." + ::= { alarmconf 3 } + + alarmCurrEntry OBJECT-TYPE + SYNTAX AlarmCurrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in alarmCurrTable." + INDEX { alarmCurrIndex } + ::= { alarmCurrTable 1 } + + AlarmCurrEntry ::= + SEQUENCE { + alarmCurrIndex INTEGER, + alarmCurrOccurTime TimeTicks, + alarmCurrTrapOid OBJECT IDENTIFIER, + alarmCurrParam1 INTEGER, + alarmCurrParam2 INTEGER, + alarmCurrParam3 INTEGER, + alarmCurrParam4 INTEGER, + alarmCurrParam5 INTEGER, + alarmCurrParam6 INTEGER, + alarmCurrParam7 INTEGER, + alarmCurrParam8 INTEGER, + alarmCurrTimeDescr DisplayString, + alarmCurrSeverity INTEGER, + alarmCurrDescr DisplayString + } + + alarmCurrIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of the alarm." + ::= { alarmCurrEntry 1 } + + alarmCurrOccurTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Alarm occurence time (in hundredths of a second) since the system was last re-initialized." + ::= { alarmCurrEntry 2 } + + alarmCurrTrapOid OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Trap OID of the alarm." + ::= { alarmCurrEntry 3 } + + alarmCurrParam1 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 1st parameter of the alarm." + ::= { alarmCurrEntry 4 } + + alarmCurrParam2 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 2nd parameter of the alarm." + ::= { alarmCurrEntry 5 } + + alarmCurrParam3 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 3rd parameter of the alarm." + ::= { alarmCurrEntry 6 } + + alarmCurrParam4 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 4th parameter of the alarm." + ::= { alarmCurrEntry 7 } + + alarmCurrParam5 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 5th parameter of the alarm." + ::= { alarmCurrEntry 8 } + + alarmCurrParam6 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 6th parameter of the alarm." + ::= { alarmCurrEntry 9 } + + alarmCurrParam7 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 7th parameter of the alarm." + ::= { alarmCurrEntry 10 } + + alarmCurrParam8 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 8th parameter of the alarm." + ::= { alarmCurrEntry 11 } + + alarmCurrTimeDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The string representation of occurence time (YYYY/MM/DD HH:MM:SS)." + ::= { alarmCurrEntry 12 } + + alarmCurrSeverity OBJECT-TYPE + SYNTAX INTEGER { + critical(1), + major(2), + minor(3), + info(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The severity of the alarm." + ::= { alarmCurrEntry 13 } + + alarmCurrDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The description of the alarm." + ::= { alarmCurrEntry 14 } + +-- Alarm Severity Port Table + + alarmSeverityPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF AlarmSeverityPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the configuration of alarm reporting severity threshold for each port." + ::= { alarmconf 4 } + + alarmSeverityPortEntry OBJECT-TYPE + SYNTAX AlarmSeverityPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in alarmSeverityPortTable." + INDEX { ifIndex } + ::= { alarmSeverityPortTable 1 } + + AlarmSeverityPortEntry ::= + SEQUENCE { + severityThresh INTEGER + } + + severityThresh OBJECT-TYPE + SYNTAX INTEGER { + critical(1), + major(2), + minor(3), + info(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The minimum alarm severity that is reported." + ::= { alarmSeverityPortEntry 1 } + +---------------------------------------- +-- diagnostic +---------------------------------------- + + selt OBJECT IDENTIFIER ::= { diagnostic 3 } + mlt OBJECT IDENTIFIER ::= { diagnostic 4 } + +-------------------- +-- selt +-------------------- + + seltTarget OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IfIndex of the port which would be performed single end loopback test." + ::= { selt 1 } + + seltOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The manager sets the object to 1 to start the selt + and the agent clears the object to zero when selt is successfully completed." + ::= { selt 2 } + + seltStatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Status description of the selt result." + ::= { selt 3 } + + seltCableType OBJECT-TYPE + SYNTAX INTEGER { + awg24(1), + awg26(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The cable type that selt result indicates." + ::= { selt 4 } + + seltLoopEstimateLengthFt OBJECT-TYPE + SYNTAX INTEGER + UNITS "feet" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The estimated loop length that selt result indicates." + ::= { selt 5 } + + seltLoopEstimateLengthMeter OBJECT-TYPE + SYNTAX INTEGER + UNITS "meter" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The estimated loop length that selt result indicates." + ::= { selt 6 } + + +-------------------- +-- mlt +-------------------- + + mltTarget OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IfIndex of the port which would be performed Metallic Link Test." + ::= { mlt 1 } + + mltOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The manager sets the object to 1 to start the mlt + and the agent clears the object to zero when mlt is successfully completed." + ::= { mlt 2 } + + mltOption OBJECT-TYPE + SYNTAX INTEGER { + all(1), + vac(2), + vdc(3), + rload(4), + riso(5), + cap(6), + ren(7), + ring(8), + metering(9) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "all : test all items + vac: test AC voltage + vdc: test DC voltage + rload: test load resistance + riso: test isolation resistance + cap: test capacitor + ren: test REN value + ring: test ring voltage + metering: test metering voltage" + ::= { mlt 3 } + + mltForce OBJECT-TYPE + SYNTAX INTEGER { + force(1), + notForce(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Force test even the port is in use." + ::= { mlt 4 } + + mltResult OBJECT IDENTIFIER ::= { mlt 5 } + + mltVacTip OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 rms" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 1 } + + mltVacRing OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 rms" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 2 } + + mltVacDiff OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 rms" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 3 } + + mltVdcTip OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 volt" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 4 } + + mltVdcRing OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 volt" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 5 } + + mltVdcDiff OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 volt" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 6 } + + mltRLoop OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 ohm" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 7 } + + mltRtg OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 ohm" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 8 } + + mltRrg OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 ohm" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 9 } + + mltRtr OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 ohm" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 10 } + + mltCtg OBJECT-TYPE + SYNTAX INTEGER + UNITS "10^-9 F" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 11 } + + mltCrg OBJECT-TYPE + SYNTAX INTEGER + UNITS "10^-9 F" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 12 } + + mltCtr OBJECT-TYPE + SYNTAX INTEGER + UNITS "10^-9 F" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 13 } + + mltRen OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 ren" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 14 } + + mltVRing OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 rms" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 15 } + + mltVMetering OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 vpeak" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 16 } + + mltDialToneDetected OBJECT-TYPE + SYNTAX INTEGER { + yes(1), + no(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 17 } + + mltDetectedDtmfCount OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 18 } + + mltDialToneDelay OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.001 sec" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 19 } + +-- mlt relay table + + mltRelayTable OBJECT-TYPE + SYNTAX SEQUENCE OF MltRelayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Perform specified MLT relay function, or turn off + MLT relay function in specified subscriber." + ::= { mlt 6 } + + mltRelayEntry OBJECT-TYPE + SYNTAX MltRelayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of mltRelayTable." + INDEX { ifIndex } + ::= { mltRelayTable 1 } + + MltRelayEntry ::= + SEQUENCE { + mltRelaySet INTEGER + } + + mltRelaySet OBJECT-TYPE + SYNTAX INTEGER { + in(1), + out(2), + both(3), + off(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "By default, relay function is turned off." + ::= { mltRelayEntry 1 } + + +---------------------------------------- +-- multicast +---------------------------------------- +-- Obsoleted in calix MRD20 since Revision 1.20 at 2009/06/25 by niceguy +-- Object mcastBandwidth, igmpCount below is kept for e5-110 R1.x below. Not used for R2.x and above. + + mcastBandwidth OBJECT IDENTIFIER ::= { multicast 4 } + igmpCount OBJECT IDENTIFIER ::= { multicast 5 } + mvlan OBJECT IDENTIFIER ::= { multicast 6 } + queryVid OBJECT IDENTIFIER ::= { multicast 7 } + igmpTimer OBJECT IDENTIFIER ::= { multicast 11 } + auditQuery OBJECT IDENTIFIER ::= { multicast 12 } + igmpProfile OBJECT IDENTIFIER ::= { multicast 13 } + + igmpEnable OBJECT-TYPE + SYNTAX INTEGER { + enableProxy(1), + enableSnooping(2), + disable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable IGMP protocol." + ::= { multicast 1 } + + igmpVersion OBJECT-TYPE + SYNTAX INTEGER { + v2(1), + v3(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting IGMP version." + ::= { multicast 9 } + + igmpLeaveMode OBJECT-TYPE + SYNTAX INTEGER { + immediateLeave(1), + lastMemberQuery(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure IGMP leave message handling mode." + ::= { multicast 10 } + +-------------------- +-- bandwidth +-------------------- + + mcastDefaultBandwidth OBJECT-TYPE + SYNTAX INTEGER (1..100000) + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Default bandwidth requirement for a multicast channel." + ::= { mcastBandwidth 1 } + + maxNumOfMcastBw OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of row entries that user can create in mcastBwTable." + ::= { mcastBandwidth 2 } + +-- mcastBwTable + + mcastBwTable OBJECT-TYPE + SYNTAX SEQUENCE OF McastBwEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table defines bandwidth budget for a range of multicast IP channels." + ::= { mcastBandwidth 3 } + + mcastBwEntry OBJECT-TYPE + SYNTAX McastBwEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of mcastBwTable." + INDEX { mcastBwIndex, mcastBwStartIp, mcastBwEndIp } + ::= { mcastBwTable 1 } + + McastBwEntry ::= + SEQUENCE { + mcastBwIndex INTEGER, + mcastBwStartIp IpAddress, + mcastBwEndIp IpAddress, + mcastBwBandwidth INTEGER, + mcastBwRowStatus RowStatus + } + + mcastBwIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index which specify the entry." + ::= { mcastBwEntry 1 } + + mcastBwStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The start multicast IP of the bandwidth control range." + ::= { mcastBwEntry 2 } + + mcastBwEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The end multicast IP of the bandwidth control range." + ::= { mcastBwEntry 3 } + + mcastBwBandwidth OBJECT-TYPE + SYNTAX INTEGER + UNITS "Kbps" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The bandwidth budget for the multicast IP channels." + ::= { mcastBwEntry 4 } + + mcastBwRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the entry." + ::= { mcastBwEntry 5 } + +-- mcastBwPortTable + + mcastBwPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF McastBwPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table specify the multicast bandwidth control of the port." + ::= { mcastBandwidth 4 } + + mcastBwPortEntry OBJECT-TYPE + SYNTAX McastBwPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of mcastBwPortTable." + INDEX { ifIndex } + ::= { mcastBwPortTable 1 } + + McastBwPortEntry ::= + SEQUENCE { + mcastBwPortEnable INTEGER, + mcastBwPortBandwidth INTEGER + } + + mcastBwPortEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable multicast bandwidth control for a port." + ::= { mcastBwPortEntry 1 } + + mcastBwPortBandwidth OBJECT-TYPE + SYNTAX INTEGER + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set bandwidth threshold for a port." + ::= { mcastBwPortEntry 2 } + +-------------------- +-- igmpCount +-------------------- + + igmpCountPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpCountPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table specify the IGMP count limiting of the port." + ::= { igmpCount 1 } + + igmpCountPortEntry OBJECT-TYPE + SYNTAX IgmpCountPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of igmpCountPortTable." + INDEX { ifIndex } + ::= { igmpCountPortTable 1 } + + IgmpCountPortEntry ::= + SEQUENCE { + igmpCountPortEnable INTEGER, + igmpCountPortLimit INTEGER + } + + igmpCountPortEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable IGMP count limiting for a port." + ::= { igmpCountPortEntry 1 } + + igmpCountPortLimit OBJECT-TYPE + SYNTAX INTEGER (0..16) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum allowed IGMP report count for a port." + ::= { igmpCountPortEntry 2 } + +-------------------- +-- mvlan +-------------------- + + maxNumOfMvlan OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of row entries that user can create in mvlanTable." + ::= { mvlan 1 } + +-- mvlanTable + + mvlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF MvlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing static configuration information for + each multicast VLAN configured into the device." + ::= { mvlan 2 } + + mvlanEntry OBJECT-TYPE + SYNTAX MvlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of mvlanTable." + INDEX { mvlanIndex } + ::= { mvlanTable 1 } + + MvlanEntry ::= + SEQUENCE { + mvlanIndex VlanIndex, + mvlanName DisplayString, + mvlanEgressPorts PortList, + mvlanUntaggedPorts PortList, + mvlanRowStatus RowStatus + } + + mvlanIndex OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The VLAN-ID refering to this VLAN." + ::= { mvlanEntry 1 } + + mvlanName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "An administratively assigned string, which may be used to identify the VLAN." + ::= { mvlanEntry 2 } + + mvlanEgressPorts 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 multicast VLAN." + ::= { mvlanEntry 3 } + + mvlanUntaggedPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The set of ports which should transmit egress packets + for this multicast VLAN as untagged." + ::= { mvlanEntry 4 } + + mvlanRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { mvlanEntry 5 } + +-- mvlanTranslateTable + + mvlanTranslateTable OBJECT-TYPE + SYNTAX SEQUENCE OF MvlanTranslateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains multicast to VLAN translation." + ::= { mvlan 3 } + + mvlanTranslateEntry OBJECT-TYPE + SYNTAX MvlanTranslateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of mvlanTranslateTable." + INDEX { dot1qVlanIndex, mvlanTranslateIndex } + ::= { mvlanTranslateTable 1 } + + MvlanTranslateEntry ::= + SEQUENCE { + mvlanTranslateIndex INTEGER, + mvlanTranslateStartIp IpAddress, + mvlanTranslateEndIp IpAddress + } + + mvlanTranslateIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index which specif the entry." + ::= { mvlanTranslateEntry 1 } + + mvlanTranslateStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The start IP of the multicast VLAN translation." + ::= { mvlanTranslateEntry 2 } + + mvlanTranslateEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The end IP of the multicast VLAN translation." + ::= { mvlanTranslateEntry 3 } + +-------------------- +-- queryVid +-------------------- + + maxNumOfQryVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of row entries that user can create in qryVidConfTable." + ::= { queryVid 1 } + +-- qryVidConfTable + + qryVidConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF QryVidConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table defines statically set VLANs used for response IGMP report." + ::= { queryVid 2 } + + qryVidConfEntry OBJECT-TYPE + SYNTAX QryVidConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in qryVidConfTable." + INDEX { qryVid } + ::= { qryVidConfTable 1 } + + QryVidConfEntry ::= + SEQUENCE { + qryVid INTEGER, + qryVidRowStatus RowStatus + } + + qryVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VLAN ID." + ::= { qryVidConfEntry 1 } + + qryVidRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { qryVidConfEntry 2 } + +-- qryVidStatusTable + + qryVidStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF QryVidStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table shows statically set or dynamically learned VLANs used for response IGMP report." + ::= { queryVid 3 } + + qryVidStatusEntry OBJECT-TYPE + SYNTAX QryVidStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in qryVidStatusTable." + INDEX { qryVid } + ::= { qryVidStatusTable 1 } + + QryVidStatusEntry ::= + SEQUENCE { + qryVidType INTEGER + } + + qryVidType OBJECT-TYPE + SYNTAX INTEGER { + static(1), + dynamic(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VLAN type." + ::= { qryVidStatusEntry 1 } + +-------------------- +-- igmpTimer +-------------------- + + igmpQryInterval OBJECT-TYPE + SYNTAX INTEGER (10..1000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IGMP query interval, 10~1000 in seconds." + ::= { igmpTimer 1 } + + igmpRobust OBJECT-TYPE + SYNTAX INTEGER (1..5) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IGMP query Robustness, 1~5." + ::= { igmpTimer 2 } + + igmpQryRespInterval OBJECT-TYPE + SYNTAX INTEGER (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IGMP query response interval, 1~100 in 100 milliseconds." + ::= { igmpTimer 3 } + + igmpLastMemQryInterval OBJECT-TYPE + SYNTAX INTEGER (1..5) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IGMP Last Member Query interval, 1~5 in 100 milliseconds." + ::= { igmpTimer 4 } + + igmpLastMemQryRobust OBJECT-TYPE + SYNTAX INTEGER (1..5) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set Last Member Query Robustness, 1~5." + ::= { igmpTimer 5 } + +-------------------- +-- auditQuery +-------------------- + + auditQryEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable IGMP audit query." + ::= { auditQuery 1 } + + auditQryInterval OBJECT-TYPE + SYNTAX INTEGER (1..4) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IGMP Audit Query Interval, 1~4 in 100 milliseconds." + ::= { auditQuery 2 } + + auditQryRobust OBJECT-TYPE + SYNTAX INTEGER (1..5) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IGMP Audit Query Robustness, 1~5." + ::= { auditQuery 3 } + +-------------------- +-- igmpProfile +-------------------- + + maxNumberOfIgmpProfiles OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of IGMP profiles in the system." + ::= { igmpProfile 1 } + + igmpProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains IGMP Profiles." + ::= { igmpProfile 2 } + + igmpProfileEntry OBJECT-TYPE + SYNTAX IgmpProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of IGMP Profile table." + INDEX {IMPLIED igmpProfileName } + ::= { igmpProfileTable 1 } + + IgmpProfileEntry ::= + SEQUENCE { + igmpProfileName DisplayString, + igmpProfileEnable INTEGER, + igmpProfileMaxGroup INTEGER, + igmpProfileRowStatus RowStatus + } + + igmpProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IGMP Profile name." + ::= { igmpProfileEntry 1 } + + igmpProfileEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable IGMP Profile." + ::= { igmpProfileEntry 2 } + + igmpProfileMaxGroup OBJECT-TYPE + SYNTAX INTEGER (1..64) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set maximum allowed multicast group, 1~64." + ::= { igmpProfileEntry 3 } + + igmpProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the IGMP Profile entry." + ::= { igmpProfileEntry 4 } + + igmpFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains IGMP Filters." + ::= { igmpProfile 3 } + + igmpFilterEntry OBJECT-TYPE + SYNTAX IgmpFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of IGMP Filter table." + INDEX { igmpProfileName, igmpFilterIndex } + ::= { igmpFilterTable 1 } + + IgmpFilterEntry ::= + SEQUENCE { + igmpFilterIndex INTEGER, + igmpFilterStartIp IpAddress, + igmpFilterEndIp IpAddress + } + + igmpFilterIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index which specifies the filter rule." + ::= { igmpFilterEntry 1 } + + igmpFilterStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The start IP of the filter rule." + ::= { igmpFilterEntry 2 } + + igmpFilterEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The end IP of the filter rule." + ::= { igmpFilterEntry 3 } + + igmpProfilePortTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpProfilePortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table specifies the IGMP Profile of the port." + ::= { igmpProfile 4 } + + igmpProfilePortEntry OBJECT-TYPE + SYNTAX IgmpProfilePortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in igmpProfilePortTable." + INDEX { ifIndex } + ::= { igmpProfilePortTable 1 } + + IgmpProfilePortEntry ::= + SEQUENCE { + igmpProfilePortProfile OCTET STRING + } + + igmpProfilePortProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IGMP Profile of the port." + ::= { igmpProfilePortEntry 1 } + + + +---------------------------------------- +-- port +---------------------------------------- +-- Since we define it latter, mark the definition here +-- subrPortTable OBJECT IDENTIFIER ::= { port 1 } + adslPort OBJECT IDENTIFIER ::= { port 2 } + pvc OBJECT IDENTIFIER ::= { port 4 } + ppvc OBJECT IDENTIFIER ::= { port 5 } + rpvc OBJECT IDENTIFIER ::= { port 8 } +-- Since we define it latter, mark the definition here +-- dsBcastDisableTable OBJECT IDENTIFIER ::= { port 9 } + paepvc OBJECT IDENTIFIER ::= { port 10 } + tlspvc OBJECT IDENTIFIER ::= { port 11 } + ipbpvc OBJECT IDENTIFIER ::= { port 12 } + voipPort OBJECT IDENTIFIER ::= { port 13 } + dtpvc OBJECT IDENTIFIER ::= { port 14 } + snrMgn OBJECT IDENTIFIER ::= { port 15 } + dslRate OBJECT IDENTIFIER ::= { port 16 } +-- G.bond start from 51 + gbond OBJECT IDENTIFIER ::= { port 51 } +-- Subscriber Port Table + + subrPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF SubrPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes subscriber attributes for the port." + ::= { port 1 } + + subrPortEntry OBJECT-TYPE + SYNTAX SubrPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in subrPortTable." + INDEX { ifIndex } + ::= { subrPortTable 1 } + + SubrPortEntry ::= + SEQUENCE { + subrPortName DisplayString, + subrPortTel DisplayString + } + + subrPortName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Name of the subscriber." + ::= { subrPortEntry 1 } + + subrPortTel OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..15)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Telephone number of the subscriber." + ::= { subrPortEntry 2 } + +-------------------- +-- adslPort +-------------------- + +-- ADSL Line Table + + adslLineConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF AdslLineConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes common attributes describing the ADSL line." + ::= { adslPort 1 } + + adslLineConfEntry OBJECT-TYPE + SYNTAX AdslLineConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in adslLineConfTable." + INDEX { ifIndex } + ::= { adslLineConfTable 1 } + + AdslLineConfEntry ::= + SEQUENCE { + adslLineConfAdslMode INTEGER, + adslLineConfAnnexL INTEGER, + adslLineConfAnnexM INTEGER, + adslLineConfAnnexI INTEGER, + adslLineConfOptionMask INTEGER, + adslLineConfPowerMgmt INTEGER, + adslLineConfPowerMode INTEGER, + adslLineConfAturMaxTxPower INTEGER, + adslLineConfAtucMaxTxPower INTEGER, + adslLineConfMaxRxPower INTEGER, + adslLineConfAturCarrierMask OCTET STRING, + adslLineConfAtucCarrierMask0 OCTET STRING, + adslLineConfAtucCarrierMask1 OCTET STRING, + adslLineConfAturInp INTEGER, + adslLineConfAtucInp INTEGER, + adslLineConfL0Time INTEGER, + adslLineConfL2Time INTEGER, + adslLineConfL2ATPR INTEGER, + adslLineConfL2ATPRT INTEGER, + adslLineConfMaxL2Rate INTEGER, + adslLineConfMinL2Rate INTEGER, + adslLineConfL0toL2Rate INTEGER, + adslLineConfNitro INTEGER, + adslLineConfUSPhyr INTEGER, + adslLineConfDSPhyr INTEGER + } + + adslLineConfAdslMode OBJECT-TYPE + SYNTAX INTEGER { + gDotLite(1), + gDotDmt(2), + t1Dot413(3), + auto(4), + etsi(5), + adsl2(6), + adsl2Plus(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "G.lite and T1.413 are only applicable to annex A board. + ETSI is only applicable to annex B board." + ::= { adslLineConfEntry 1 } + + adslLineConfAnnexL OBJECT-TYPE + SYNTAX INTEGER { + enableNarrowMode(1), + enableWideMode(2), + disable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable annex L for the port(Only in AnnexA)." + ::= { adslLineConfEntry 2 } + + adslLineConfAnnexM OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable annex M for the port(For BCM AnnexA solution)." + ::= { adslLineConfEntry 3 } + + adslLineConfAnnexI OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable annex I for the port(For BCM AnnexA solution)." + ::= { adslLineConfEntry 4 } + + adslLineConfOptionMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The semantic for each bit is: + BIT 1 : Disable Trellis + BIT 2 : Disable Reed-Solomon + BIT 3 : Disable upstream bitswap + BIT 4 : Disable downstream bitswap + BIT 5 : Disable 1-bit constellation + BIT 6 : Disable transmit windowing + BIT 7 : Disable s=0.5 support (ADSL1 only) + BIT 8 : Disable G.lite rate limit (ADSL1 only) + BIT 9 : Enable Nitro + BIT 10: Enable US PHYR + BIT 11: ENABLE DS PHYR" + ::= { adslLineConfEntry 5 } + + adslLineConfPowerMgmt OBJECT-TYPE + SYNTAX INTEGER { + enableL2(1), + enableL2(2), + disable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable power management for the port." + ::= { adslLineConfEntry 6 } + + adslLineConfPowerMode OBJECT-TYPE + SYNTAX INTEGER { + fix(1), + priorityToPower(2), + priorityToRate(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The power mode of the ADSL line." + ::= { adslLineConfEntry 7 } + + adslLineConfAturMaxTxPower OBJECT-TYPE + SYNTAX INTEGER (-130..200) + UNITS "tenth dBm" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum allowed transmit power of ATU-R." + ::= { adslLineConfEntry 8 } + + adslLineConfAtucMaxTxPower OBJECT-TYPE + SYNTAX INTEGER (-50..200) + UNITS "tenth dBm" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum allowed transmit power of ATU-C." + ::= { adslLineConfEntry 9 } + + adslLineConfMaxRxPower OBJECT-TYPE + SYNTAX INTEGER (-255..255) + UNITS "tenth dBm" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum aggregate received power." + ::= { adslLineConfEntry 10 } + + adslLineConfAturCarrierMask OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The upstream carrier mask. For CTLM AnnexA solution, bin is from 0 to 31; + CTLM AnnexB solution, bin is from 0 to 63; BCM solution, bin is from 0 to 63. + Bit set to 1 indicates the bin is masked off." + ::= { adslLineConfEntry 11 } + + adslLineConfAtucCarrierMask0 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The downstream carrier mask. For CTLM AnnexA solution, bin is from 32 to 255; + CTLM AnnexB solution, bin is from 64 to 255; BCM solution, bin is from 32 to 255. + Bit set to 1 indicates the bin is masked off." + ::= { adslLineConfEntry 12 } + + adslLineConfAtucCarrierMask1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The downstream carrier mask from bin 256 to 511. Bit set to 1 indicates + the bin is masked off." + ::= { adslLineConfEntry 13 } + + adslLineConfAturInp OBJECT-TYPE + SYNTAX INTEGER { + zero(1), + zeroPointFive(2), + one(3), + two(4), + four(5), + eight(6), + sixteen(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The upstream Impulse Noise Protection minimum setting in unit of DMT symbol. + For CTLM solution, user can set value from 1 ~ 4, + but for BCM solution, user can set value from 1 ~ 7." + ::= { adslLineConfEntry 14 } + + adslLineConfAtucInp OBJECT-TYPE + SYNTAX INTEGER { + zero(1), + zeroPointFive(2), + one(3), + two(4), + four(5), + eight(6), + sixteen(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The downstream Impulse Noise Protection minimum setting in unit of DMT symbol. + For CTLM solution, user can set value from 1 ~ 4, + but for BCM solution, user can set value from 1 ~ 7." + ::= { adslLineConfEntry 15 } + + + adslLineConfL0Time OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the minimum time in seconds that the ADSL line + must stay in L0 power mode before changing to the L2 power mode. + For CTLM solution, the range is 120 ~ 65535; + for BCM solution, the range is 10 ~ 65535." + ::= { adslLineConfEntry 16 } + + adslLineConfL2Time OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set minimum time in seconds that the ADSL line must stay in the + L2 power mode before reducing the power again in the L2 power mode. + For CTLM solution, the range is 60 ~ 65535; + for BCM solution, the range is 10 ~ 65535." + ::= { adslLineConfEntry 17 } + + adslLineConfL2ATPR OBJECT-TYPE + SYNTAX INTEGER + UNITS "dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the maximum Aggregate Transmit Power Reduction (ATPR) + in decibels (dB) that is permitted in a L2 power reduction. + The system can gradually decrease the ADSL line transmission power + while it is in the L2 power mode. This is the largest individual + power reduction allowed in the L2 power mode. + For CTLM solution, the range is 1 ~ 5(dB); + for BCM solution, the range is 0 ~ 15(dB)." + ::= { adslLineConfEntry 18 } + + adslLineConfL2ATPRT OBJECT-TYPE + SYNTAX INTEGER + UNITS "dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "the maximum Aggregate Transmit Power Reduction Total (ATPRT) + in decibels (dB) that is permitted in the L2 power mode. + This is the total transmit power decrease that is allowed + to occur in the L2 power mode. + For CTLM solution, the range is 1 ~ 40(dB); + for BCM solution, the range is 0 ~ 15(dB)." + ::= { adslLineConfEntry 19 } + + + adslLineConfMaxL2Rate OBJECT-TYPE + SYNTAX INTEGER + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "configured maximum L2 rate. + (32~4096 Kbps, 4 Kbps resolution. For CTLM solution, 0 for system assign; for BCM solution, default:4096.)" + ::= { adslLineConfEntry 20 } + + adslLineConfMinL2Rate OBJECT-TYPE + SYNTAX INTEGER + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "configured minimum L2 rate. + (32~4096 Kbps, 4 Kbps resolution, For CTLM solution, 0 for system assign; for BCM solution, default:32.)" + ::= { adslLineConfEntry 21 } + + adslLineConfL0toL2Rate OBJECT-TYPE + SYNTAX INTEGER + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "configured transition L0 to L2 rate. + (<=min_l2rate/2 and >= 16 Kbps, For CTLM solution, 0 for system assign; for BCM solution, default:16.)" + ::= { adslLineConfEntry 22 } + + adslLineConfNitro OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable nitro mode for the port(For BCM solution)." + ::= { adslLineConfEntry 23 } + + adslLineConfUSPhyr OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable Upstream PHYR for the port(For BCM solution)." + ::= { adslLineConfEntry 24 } + + adslLineConfDSPhyr OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable Downstream PHYR for the port(For BCM solution)." + ::= { adslLineConfEntry 25 } + +-- ADSL Port Batch Set + + adslPortBatchSet OBJECT IDENTIFIER ::= { adslPort 3 } + + adslPortTarget OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is used for identify the target on which + the port configuration should be performed. The target is encoded as: + Byte 1: 0, Reserved(chaises) + Byte 2~3: 0,0 Reserved(slot) + Byte 4: 0, reserved + Byte 5~11:each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc." + ::= { adslPortBatchSet 1 } + + adslPortOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is for ADSL line configuration. When the EMS + wants to issue the desired operation, the EMS shall send SNMP-SET message to set + the corresponding bit value to be 1. The various bit positions are: + BIT 1: enable port + BIT 2: disable port + BIT 3: set ADSL mode + BIT 4: set line profile + BIT 5: set alarm profile + BIT 6: enable Annex L to be narrow mode(Only in AnnexA) + BIT 7: enable Annex L to be wide mode(Only in AnnexA) + BIT 8: disable Annex L(Only in AnnexA) + BIT 9: enable Annex M (For BCM AnnexA solution) + BIT 10: disable Annex M (For BCM AnnexA solution) + BIT 11: enable Annex I (For BCM AnnexA solution) + BIT 12: disable Annex I (For BCM AnnexA solution) + BIT 13: set option mask + BIT 14: enable power management mode to be L2 + BIT 15: enable power management mode to be L2 + BIT 16: disable power management mode + BIT 17: set power mode to be fixed + BIT 18: set power mode to be priority to power + BIT 19: set power mode to be priority to rate + BIT 20: set ATU-R max Tx power + BIT 21: set ATU-C max Tx power + BIT 22: set max Rx power + BIT 23: set ATU-R carrier mask + BIT 24: set ATU-C carrier mask + BIT 25: set ATU-R INP minimum setting + BIT 26: set ATU-C INP minimum setting" + ::= { adslPortBatchSet 2 } + + adslPortOps2 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is for ADSL line configuration. When the EMS + wants to issue the desired operation, the EMS shall send SNMP-SET message to set + the corresponding bit value to be 1. The various bit positions are: + BIT 1: set L0 Time + BIT 2: set L2 Time + BIT 3: set L2 ATPR + BIT 4: set L2 ATPRT + BIT 5: set maximum L2 rate + BIT 6: set minimum L2 rate + BIT 7: set transition L0 to L2 rate" + ::= { adslPortBatchSet 3 } + + + adslModeForBatchSet OBJECT-TYPE + SYNTAX INTEGER { + gDotLite(1), + gDotDmt(2), + t1Dot413(3), + auto(4), + etsi(5), + adsl2(6), + adsl2Plus(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "G.lite and T1.413 are only applicable to annex A board. + ETSI is only applicable to annex B board." + ::= { adslPortBatchSet 4 } + + adslLineProfileForBatchSet OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ADSL line profile." + ::= { adslPortBatchSet 5 } + + adslAlarmProfileForBatchSet OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ADSL alarm profile." + ::= { adslPortBatchSet 6 } + + adslOptionMaskForBatchSet OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The semantic for each bit is identical to the object adslLineConfOptionMask." + ::= { adslPortBatchSet 7 } + + adslAturMaxTxPowerForBatchSet OBJECT-TYPE + SYNTAX INTEGER (-130..200) + UNITS "tenth dBm" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum allowed transmit power of ATU-R." + ::= { adslPortBatchSet 8 } + + adslAtucMaxTxPowerForBatchSet OBJECT-TYPE + SYNTAX INTEGER (-50..200) + UNITS "tenth dBm" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum allowed transmit power of ATU-C." + ::= { adslPortBatchSet 9 } + + adslMaxRxPowerForBatchSet OBJECT-TYPE + SYNTAX INTEGER (-255..255) + UNITS "tenth dBm" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum aggregate received power." + ::= { adslPortBatchSet 10 } + + adslAturCarrierMaskForBatchSet OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The upstream carrier mask.For CTLM AnnexA solution, bin is from 0 to 31; + CTLM AnnexB solution, bin is from 0 to 63; BCM solution, bin is from 0 to 63. + Bit set to 1 indicates the bin is masked off." + ::= { adslPortBatchSet 11 } + + adslAtucCarrierMask0ForBatchSet OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The downstream carrier mask from bin 32 to 255. Bit set to 1 indicates + the bin is masked off." + ::= { adslPortBatchSet 12 } + + adslAtucCarrierMask1ForBatchSet OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The downstream carrier mask from bin 256 to 511. Bit set to 1 indicates + the bin is masked off." + ::= { adslPortBatchSet 13 } + + adslAturInpForBatchSet OBJECT-TYPE + SYNTAX INTEGER { + zero(1), + zeroPointFive(2), + one(3), + two(4), + four(5), + eight(6), + sixteen(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The upstream Impulse Noise Protection minimum setting in unit of DMT symbol. + For CTLM solution, user can set value from 1 ~ 4, but for BCM solution, user can set value from 1 ~ 7." + ::= { adslPortBatchSet 14 } + + adslAtucInpForBatchSet OBJECT-TYPE + SYNTAX INTEGER { + zero(1), + zeroPointFive(2), + one(3), + two(4), + four(5), + eight(6), + sixteen(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The downstream Impulse Noise Protection minimum setting in unit of DMT symbol. + For CTLM solution, user can set value from 1 ~ 4, but for BCM solution, user can set value from 1 ~ 7." + ::= { adslPortBatchSet 15 } + + + adslL0TimeForBatchSet OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the minimum time in seconds that the ADSL line + must stay in L0 power mode before changing to the L2 power mode. + For CTLM solution, the range is 120 ~ 65535; for BCM solution, the range is 10 ~ 65535." + ::= { adslPortBatchSet 16 } + + adslL2TimeForBatchSet OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set minimum time in seconds that the ADSL line + must stay in the L2 power mode before reducing the power + again in the L2 power mode. + For CTLM solution, the range is 60 ~ 65535; for BCM solution, the range is 10 ~ 65535." + ::= { adslPortBatchSet 17 } + + adslL2ATPRForBatchSet OBJECT-TYPE + SYNTAX INTEGER + UNITS "dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the maximum Aggregate Transmit Power Reduction (ATPR) + in decibels (dB) that is permitted in a L2 power reduction. + The system can gradually decrease the ADSL line transmission power + while it is in the L2 power mode. This is the largest individual + power reduction allowed in the L2 power mode. + For CTLM solution, the range is 1 ~ 5(dB); for BCM solution, the range is 0 ~ 15(dB)." + ::= { adslPortBatchSet 18 } + + adslL2ATPRTForBatchSet OBJECT-TYPE + SYNTAX INTEGER + UNITS "dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "the maximum Aggregate Transmit Power Reduction Total (ATPRT) + in decibels (dB) that is permitted in the L2 power mode. + This is the total transmit power decrease that is allowed + to occur in the L2 power mode. + For CTLM solution, the range is 1 ~ 40(dB); for BCM solution, the range is 0 ~ 15(dB)." + ::= { adslPortBatchSet 19 } + + adslMaxL2RateForBatchSet OBJECT-TYPE + SYNTAX INTEGER + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "configured maximum L2 rate. + (32~4096 Kbps, 4 Kbps resolution. For CTLM solution, 0 for system assign; for BCM solution, default:4096.)" + ::= { adslPortBatchSet 20 } + + adslMinL2RateForBatchSet OBJECT-TYPE + SYNTAX INTEGER + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "configured minimum L2 rate. + (32~4096 Kbps, 4 Kbps resolution, For CTLM solution, 0 for system assign; for BCM solution, default:32.)" + ::= { adslPortBatchSet 21 } + + adslL0toL2RateForBatchSet OBJECT-TYPE + SYNTAX INTEGER + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "configured transition L0 to L2 rate. + (<=min_l2rate/2 and >= 16 Kbps, For CTLM solution, 0 for system assign; for BCM solution, default:16.)" + ::= { adslPortBatchSet 22 } + +-- Line Status + + adslLineStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF AdslLineStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the ADSL line status." + ::= { adslPort 4 } + + adslLineStatusEntry OBJECT-TYPE + SYNTAX AdslLineStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in adslLineStatusTable." + INDEX { ifIndex } + ::= { adslLineStatusTable 1 } + + AdslLineStatusEntry ::= + SEQUENCE { + adslLineStatusMode INTEGER, + adslLineUpTime INTEGER + } + + adslLineStatusMode OBJECT-TYPE + SYNTAX INTEGER { + gDotLite(1), + gDotDmt(2), + t1Dot413(3), + etsi(4), + adsl2(5), + adsl2Plus(6), + none(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The link up mode of the ADSL line." + ::= { adslLineStatusEntry 1 } + + adslLineUpTime OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The link up time of the ADSL line, in unit of seconds" + ::= { adslLineStatusEntry 2 } + +-- Power Mgmt Parameter Table + + powerMgmtParamTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerMgmtParamEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table defines L0 to L2 power transition parameters." + ::= { adslPort 5 } + + powerMgmtParamEntry OBJECT-TYPE + SYNTAX PowerMgmtParamEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in powerMgmtParamTable." + INDEX { ifIndex } + ::= { powerMgmtParamTable 1 } + + PowerMgmtParamEntry ::= + SEQUENCE { + powerMgmtL0Time INTEGER, + powerMgmtL2Time INTEGER, + powerMgmtL2Atpr INTEGER, + powerMgmtL2Atprt INTEGER, + powerMgmtL2MinRate INTEGER, + powerMgmtL2MaxRate INTEGER, + powerMgmtL2ThreshRate INTEGER + } + + powerMgmtL0Time OBJECT-TYPE + SYNTAX INTEGER + UNITS "second" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object specifies the minimum time in L0 mode before L2 mode may be entered." + ::= { powerMgmtParamEntry 1 } + + powerMgmtL2Time OBJECT-TYPE + SYNTAX INTEGER + UNITS "second" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object specifies the minimum time in L2 mode before trimming and in between power trims." + ::= { powerMgmtParamEntry 2 } + + powerMgmtL2Atpr OBJECT-TYPE + SYNTAX INTEGER + UNITS "dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum Aggregate Transmit Power Reduction." + ::= { powerMgmtParamEntry 3 } + + powerMgmtL2Atprt OBJECT-TYPE + SYNTAX INTEGER + UNITS "dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum Aggregate Transmit Power Reduction Total." + ::= { powerMgmtParamEntry 4 } + + powerMgmtL2MinRate OBJECT-TYPE + SYNTAX INTEGER + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object specifies the minimum L2 rate." + ::= { powerMgmtParamEntry 5 } + + powerMgmtL2MaxRate OBJECT-TYPE + SYNTAX INTEGER + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object specifies the maximum L2 rate." + ::= { powerMgmtParamEntry 6 } + + powerMgmtL2ThreshRate OBJECT-TYPE + SYNTAX INTEGER + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object specifies the rate threshold that triggers the line entering L0 or L2 mode." + ::= { powerMgmtParamEntry 7 } + +-- Power Mgmt PSD Table +-- Not support in 7324 RU R4.0.2 + powerMgmtPSDTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerMgmtPSDEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table provides the PSD setting for both ATU-C and ATU-R." + ::= { adslPort 6 } + + powerMgmtPSDEntry OBJECT-TYPE + SYNTAX PowerMgmtPSDEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in powerMgmtPSDTable." + INDEX { ifIndex } + ::= { powerMgmtPSDTable 1 } + + PowerMgmtPSDEntry ::= + SEQUENCE { + powerMgmtAtucMaxPSD INTEGER, + powerMgmtAturMaxPSD INTEGER + } + + powerMgmtAtucMaxPSD OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1dBm/Hz" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object specifies the maximum ATU-C PSD." + ::= { powerMgmtPSDEntry 1 } + + powerMgmtAturMaxPSD OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1dBm/Hz" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object specifies the maximum ATU-R PSD." + ::= { powerMgmtPSDEntry 2 } + +-------------------- +-- pvc +-------------------- + + maxNumOfPvcs OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of PVCs which could be created on a port." + ::= { pvc 1 } + +-- PVC Table + + pvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF PvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes PVC configuration." + ::= { pvc 2 } + + pvcEntry OBJECT-TYPE + SYNTAX PvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in pvcTable." + INDEX { ifIndex, pvcVpi, pvcVci, pvcPvid } + ::= { pvcTable 1 } + + PvcEntry ::= + SEQUENCE { + -- Common -- + pvcVpi INTEGER, + pvcVci INTEGER, + pvcPvid VlanIndex, + pvcPriority INTEGER, + pvcProfileDS DisplayString, + pvcProfileUS DisplayString, + + -- Only for paepvc -- + --pvcPaePvid VlanIndex, + --pvcPaePriority INTEGER, + pvcAcName DisplayString, + pvcServiceName DisplayString, + pvcHelloTime INTEGER, + + -- Only for pvc -- + --pvcSuperChannel INTEGER, + + -- Other -- + pvcRowStatus RowStatus + } + + -- Common -- + pvcVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the pvc." + ::= { pvcEntry 1 } + + pvcVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the pvc." + ::= { pvcEntry 2 } + + pvcPvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default VID of the pvc." + ::= { pvcEntry 3 } + + + pvcPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "802.1p default priority of the pvc." + ::= { pvcEntry 5 } + + pvcProfileDS OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row in the atmProfileTable, + which applies for this pvc in DS side." + ::= { pvcEntry 6 } + + -- Other -- + pvcRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { pvcEntry 7 } + + pvcProfileUS OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row in the atmProfileTable, + which applies for this pvc in US side." + ::= { pvcEntry 8 } + + -- Only for PAEPVC -- + --pvcPaePvid OBJECT-TYPE + --SYNTAX VlanIndex + --MAX-ACCESS read-only + --STATUS current + --DESCRIPTION + --"Default P-VID for paepvc." + --::= { pvcEntry 9 } + + --pvcPaePriority OBJECT-TYPE + --SYNTAX INTEGER (0..7) + --MAX-ACCESS read-only + --STATUS current + --DESCRIPTION + --"802.1p default Pae-priority for paepvc." + --::= { pvcEntry 10 } + + pvcAcName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Access concentrator name for paepvc." + ::= { pvcEntry 11 } + + pvcServiceName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Service name for paepvc." + ::= { pvcEntry 12 } + + pvcHelloTime OBJECT-TYPE + SYNTAX INTEGER + UNITS "second" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The system will close the PVC if there are not any LCP echo messages passed through during the LCP hello time." + ::= { pvcEntry 13 } + + -- Only for PVC -- + --pvcSuperChannel OBJECT-TYPE + --SYNTAX INTEGER { + --enable(1), + --disable(2) + --} + --MAX-ACCESS read-create + --STATUS current + --DESCRIPTION + --"Specified the configured PVC is a super channel." + --::= { pvcEntry 14 } + +-- PVC state -- + pvcStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF PvcStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table show current PVC status." + ::= { pvc 3 } + + pvcStateEntry OBJECT-TYPE + SYNTAX PvcStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in pvcStateTable." + INDEX { ifIndex, pvcStateVpi, pvcStateVci, pvcStatePvid } + ::= { pvcStateTable 1 } + + PvcStateEntry ::= + SEQUENCE { + pvcStateVpi INTEGER, + pvcStateVci INTEGER, + pvcStatePvid VlanIndex, + pvcStatePriority INTEGER, + --pvcStateCvid VlanIndex, + --pvcStateCPriority INTEGER, + --pvcStateMode DisplayString, + pvcStateChannelType DisplayString, + pvcStateEncap DisplayString + } + + pvcStateVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the pvc." + ::= { pvcStateEntry 1 } + + pvcStateVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the pvc." + ::= { pvcStateEntry 2 } + + pvcStatePvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default VID of the pvc." + ::= { pvcStateEntry 3 } + + pvcStatePriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "802.1p default priority of the pvc." + ::= { pvcStateEntry 4 } + + --pvcStateCvid OBJECT-TYPE + --SYNTAX VlanIndex + --MAX-ACCESS read-only + --STATUS current + --DESCRIPTION + --"Default C-VID for paepvc." + --::= { pvcStateEntry 5 } + + --pvcStateCPriority OBJECT-TYPE + --SYNTAX INTEGER (0..7) + --MAX-ACCESS read-only + --STATUS current + --DESCRIPTION + --"802.1p default C-priority for paepvc." + --::= { pvcStateEntry 6 } + + --pvcStateMode OBJECT-TYPE + --SYNTAX DisplayString (SIZE (1..31)) + --MAX-ACCESS read-only + --STATUS current + --DESCRIPTION + --"The value of this object identifies the link mode at runntime." + --::= { pvcStateEntry 7 } + + pvcStateChannelType OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the channel type at runtime." + ::= { pvcStateEntry 8 } + + pvcStateEncap OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the channel encapsulation at runtime." + ::= { pvcStateEntry 9 } + +-- Upstream Rate Limit Table + + pvcUsRateLimitTable OBJECT-TYPE + SYNTAX SEQUENCE OF PvcUsRateLimitEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table defines the upstream rate limit for each PVC." + ::= { pvc 4 } + + pvcUsRateLimitEntry OBJECT-TYPE + SYNTAX PvcUsRateLimitEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in pvcUsRateLimitTable." + INDEX { ifIndex, pvcVpi, pvcVci } + ::= { pvcUsRateLimitTable 1 } + + PvcUsRateLimitEntry ::= + SEQUENCE { + pvcUsRateLimitEnable INTEGER, + pvcUsRateLimit INTEGER + } + + pvcUsRateLimitEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable upstream rate limit for a PVC." + ::= { pvcUsRateLimitEntry 1 } + + pvcUsRateLimit OBJECT-TYPE + SYNTAX INTEGER + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Upstream rate limit in Kbps for a PVC." + ::= { pvcUsRateLimitEntry 2 } + + +-------------------- +-- priority pvc +-------------------- + + maxNumOfPriorityPvcs OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of priority PVCs which could be created on a port." + ::= { ppvc 1 } + +-- Priority PVC Table + + ppvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF PpvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes priority PVC configuration." + ::= { ppvc 2 } + + ppvcEntry OBJECT-TYPE + SYNTAX PpvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in ppvcTable." + INDEX { ifIndex, ppvcVpi, ppvcVci, ppvcPvid } + ::= { ppvcTable 1 } + + PpvcEntry ::= + SEQUENCE { + ppvcVpi INTEGER, + ppvcVci INTEGER, + ppvcPvid VlanIndex, + ppvcEncap INTEGER, + ppvcPriority INTEGER, + ppvcRowStatus RowStatus + } + + ppvcVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the ppvc." + ::= { ppvcEntry 1 } + + ppvcVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the ppvc." + ::= { ppvcEntry 2 } + + ppvcPvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default VID of the ppvc." + ::= { ppvcEntry 3 } + + ppvcEncap OBJECT-TYPE + SYNTAX INTEGER { + llc(1), + vc(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Encapsulation of the ppvc." + ::= { ppvcEntry 4 } + + ppvcPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "802.1p default priority of the ppvc." + ::= { ppvcEntry 5 } + + ppvcRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { ppvcEntry 6 } + +-- Priority PVC Member Table + + ppvcMemberTable OBJECT-TYPE + SYNTAX SEQUENCE OF PpvcMemberEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes priority PVC member configuration." + ::= { ppvc 4 } + + ppvcMemberEntry OBJECT-TYPE + SYNTAX PpvcMemberEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in ppvcMemberTable." + INDEX { ifIndex, ppvcVpi, ppvcVci, ppvcMemberVpi, ppvcMemberVci, ppvcMemberPriority } + ::= { ppvcMemberTable 1 } + + PpvcMemberEntry ::= + SEQUENCE { + ppvcMemberVpi INTEGER, + ppvcMemberVci INTEGER, + ppvcMemberPriority INTEGER, + ppvcMemberProfileDS DisplayString, + ppvcMemberRowStatus RowStatus, + ppvcMemberProfileUS DisplayString + } + + ppvcMemberVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the member ppvc." + ::= { ppvcMemberEntry 1 } + + ppvcMemberVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the member ppvc." + ::= { ppvcMemberEntry 2 } + + ppvcMemberPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "802.1p default priority of the member ppvc." + ::= { ppvcMemberEntry 3 } + + ppvcMemberProfileDS OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The profile of the member ppvc in DS side." + ::= { ppvcMemberEntry 4 } + + ppvcMemberRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { ppvcMemberEntry 5 } + + ppvcMemberProfileUS OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The profile of the member ppvc in US side." + ::= { ppvcMemberEntry 6 } + +------------------------------- +-- 2684 routed mode pvc (rpvc) +------------------------------- + +-- Routed Gateway Table + + rpvcGatewayTable OBJECT-TYPE + SYNTAX SEQUENCE OF RpvcGatewayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes Routed Gateway configuration." + ::= { rpvc 1 } + + rpvcGatewayEntry OBJECT-TYPE + SYNTAX RpvcGatewayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in Routed Gateway table." + INDEX { rpvcGatewayIp } + ::= { rpvcGatewayTable 1 } + + RpvcGatewayEntry ::= + SEQUENCE { + rpvcGatewayIp IpAddress, + rpvcGatewayVlanId VlanIndex, + rpvcGatewayRowStatus RowStatus, + rpvcGatewayPriority INTEGER + } + + rpvcGatewayIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP of RPVC gateway." + ::= { rpvcGatewayEntry 1 } + + rpvcGatewayVlanId OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Vlan id send to this RPVC gateway." + ::= { rpvcGatewayEntry 2 } + + rpvcGatewayRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { rpvcGatewayEntry 3 } + + rpvcGatewayPriority OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "802.1p p bit send to this RPVC gateway." + ::= { rpvcGatewayEntry 4 } + +-- Routed PVC Table + + rpvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF RpvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes RPVC configuration." + ::= { rpvc 2 } + + rpvcEntry OBJECT-TYPE + SYNTAX RpvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in rpvcTable." + INDEX { ifIndex, rpvcVpi, rpvcVci, rpvcIp, rpvcNetmask } + ::= { rpvcTable 1 } + + RpvcEntry ::= + SEQUENCE { + rpvcVpi INTEGER, + rpvcVci INTEGER, + rpvcDSProfile DisplayString, + rpvcUSProfile DisplayString, + rpvcIp IpAddress, + rpvcNetmask IpAddress, + rpvcGatewayIpAddress IpAddress, + rpvcRowStatus RowStatus + } + + rpvcVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the rpvc." + ::= { rpvcEntry 1 } + + rpvcVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the rpvc." + ::= { rpvcEntry 2 } + + rpvcDSProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The down stream profile of the rpvc." + ::= { rpvcEntry 3 } + + rpvcUSProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The up stream profile of the rpvc." + ::= { rpvcEntry 4 } + + rpvcIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP of the rpvc." + ::= { rpvcEntry 5 } + + rpvcNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP mask of the rpvc IP." + ::= { rpvcEntry 6 } + + rpvcGatewayIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The gateway IP of rpvc." + ::= { rpvcEntry 7 } + + rpvcRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { rpvcEntry 8 } + +-- Routed PVC Routed Domain Table + + rpvcRouteDomainTable OBJECT-TYPE + SYNTAX SEQUENCE OF RpvcRouteDomainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes RPVC route domain configuration." + ::= { rpvc 3 } + + rpvcRouteDomainEntry OBJECT-TYPE + SYNTAX RpvcRouteDomainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in rpvcRouteDomainTable." + INDEX { ifIndex, rpvcRouteDomainVpi, rpvcRouteDomainVci, rpvcRouteDomainIp, rpvcRouteDomainNetmask } + ::= { rpvcRouteDomainTable 1 } + + RpvcRouteDomainEntry ::= + SEQUENCE { + rpvcRouteDomainVpi INTEGER, + rpvcRouteDomainVci INTEGER, + rpvcRouteDomainIp IpAddress, + rpvcRouteDomainNetmask IpAddress, + rpvcRouteDomainRowStatus RowStatus + } + + rpvcRouteDomainVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the rpvc." + ::= { rpvcRouteDomainEntry 1 } + + rpvcRouteDomainVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the rpvc." + ::= { rpvcRouteDomainEntry 2 } + + rpvcRouteDomainIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The route domain IP." + ::= { rpvcRouteDomainEntry 3 } + + rpvcRouteDomainNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP mask of the route domain IP." + ::= { rpvcRouteDomainEntry 4 } + + rpvcRouteDomainRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { rpvcRouteDomainEntry 5 } + + rpvcArpAgingTime OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set RPVC ARP proxy aging time 10..10000 seconds, + 0 to disable againg." + ::= { rpvc 4 } + + rpvcArpFlush OBJECT-TYPE + SYNTAX INTEGER { + enable(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flush the RPVC ARP proxy table." + ::= { rpvc 5 } + +-------------------- +-- dsBcastDisableTable +-------------------- + + dsBcastDisableTable OBJECT-TYPE + SYNTAX SEQUENCE OF DsBcastDisableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes Down Stream Bcast configuration." + ::= { port 9 } + + dsBcastDisableEntry OBJECT-TYPE + SYNTAX DsBcastDisableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in Down Stream Bcast table." + INDEX { ifIndex, dsBcastDisableVlanId } + ::= { dsBcastDisableTable 1 } + + DsBcastDisableEntry ::= + SEQUENCE { + dsBcastDisableVlanId INTEGER, + dsBcastDisableRowStatus RowStatus + } + + dsBcastDisableVlanId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "downstream broadcast disabled vid." + ::= { dsBcastDisableEntry 1 } + + dsBcastDisableRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { dsBcastDisableEntry 2 } + +-------------------- +-- paepvc +-------------------- + +-- PPPoAoE PVC Table + + paepvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF PaepvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes PPPoAoE PVC configuration." + ::= { paepvc 1 } + + paepvcEntry OBJECT-TYPE + SYNTAX PaepvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of paepvcTable." + INDEX { ifIndex, paepvcVpi, paepvcVci, paepvcPvid } + ::= { paepvcTable 1 } + + PaepvcEntry ::= + SEQUENCE { + paepvcVpi INTEGER, + paepvcVci INTEGER, + paepvcPvid VlanIndex, + paepvcPriority INTEGER, + paepvcProfileDS DisplayString, + paepvcAcName DisplayString, + paepvcServiceName DisplayString, + paepvcHelloTime INTEGER, + paepvcRowStatus RowStatus, + paepvcProfileUS DisplayString, + paepvcCvid VlanIndex, + paepvcCPriority INTEGER + + } + + paepvcVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the pvc." + ::= { paepvcEntry 1 } + + paepvcVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the pvc." + ::= { paepvcEntry 2 } + + paepvcPvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default VID of the pvc." + ::= { paepvcEntry 3 } + + + paepvcPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "802.1p default priority of the pvc." + ::= { paepvcEntry 5 } + + paepvcProfileDS OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row in the atmProfileTable, + which applies for this pvc in DS side." + ::= { paepvcEntry 6 } + + paepvcAcName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Access concentrator name." + ::= { paepvcEntry 7 } + + paepvcServiceName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Service name." + ::= { paepvcEntry 8 } + + paepvcHelloTime OBJECT-TYPE + SYNTAX INTEGER + UNITS "second" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The system will close the PVC if there are not any LCP echo messages passed through + during the LCP hello time." + ::= { paepvcEntry 9 } + + paepvcRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { paepvcEntry 10 } + + paepvcProfileUS OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row in the atmProfileTable, + which applies for this pvc in US side." + ::= { paepvcEntry 11 } + + paepvcCvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Default C-VID of the pvc." + ::= { paepvcEntry 12 } + + + paepvcCPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "802.1p default C-priority of the pvc." + ::= { paepvcEntry 13 } + + +-------------------- +-- tlspvc +-------------------- + +-- TLS PVC Table + + tlspvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF TlspvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes Transparent LAN Service (TLS) PVC configuration." + ::= { tlspvc 1 } + + tlspvcEntry OBJECT-TYPE + SYNTAX TlspvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of tlspvcTable." + INDEX { ifIndex, tlspvcVpi, tlspvcVci, tlspvcSvid } + ::= { tlspvcTable 1 } + + TlspvcEntry ::= + SEQUENCE { + tlspvcVpi INTEGER, + tlspvcVci INTEGER, + tlspvcSvid VlanIndex, + tlspvcSpriority INTEGER, + tlspvcProfileDS DisplayString, + tlspvcRowStatus RowStatus, + tlspvcProfileUS DisplayString + } + + tlspvcVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the pvc." + ::= { tlspvcEntry 1 } + + tlspvcVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the pvc." + ::= { tlspvcEntry 2 } + + tlspvcSvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "s-tag VLAN ID of the pvc." + ::= { tlspvcEntry 3 } + + + tlspvcSpriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "s-tag priority of the pvc." + ::= { tlspvcEntry 5 } + + tlspvcProfileDS OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row in the atmProfileTable, + which applies for this pvc in DS side." + ::= { tlspvcEntry 6 } + + tlspvcRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { tlspvcEntry 7 } + + tlspvcProfileUS OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row in the atmProfileTable, + which applies for this pvc in US side." + ::= { tlspvcEntry 8 } + +-------------------- +-- ipbpvc +-------------------- + +-- Domain Table + + ipbpvcDomainTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpbpvcDomainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes ipbpvc domain configuration. + This table is supported by R3.00 and later versions." + ::= { ipbpvc 1 } + + ipbpvcDomainEntry OBJECT-TYPE + SYNTAX IpbpvcDomainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of ipbpvcDomainTable." + INDEX { ipbpvcDomainName } + ::= { ipbpvcDomainTable 1 } + + IpbpvcDomainEntry ::= + SEQUENCE { + ipbpvcDomainName OCTET STRING, + ipbpvcDomainRowStatus RowStatus + } + + ipbpvcDomainName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of the domain." + ::= { ipbpvcDomainEntry 1 } + + ipbpvcDomainRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table." + ::= { ipbpvcDomainEntry 2 } + +-- Domain VLAN Table + + ipbpvcDomainVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpbpvcDomainVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes ipbpvc domain VLAN configuration. + This table is supported by R3.00 and later versions." + ::= { ipbpvc 2 } + + ipbpvcDomainVlanEntry OBJECT-TYPE + SYNTAX IpbpvcDomainVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of ipbpvcDomainVlanTable." + INDEX { ipbpvcDomainName, ipbpvcDomainVlanId } + ::= { ipbpvcDomainVlanTable 1 } + + IpbpvcDomainVlanEntry ::= + SEQUENCE { + ipbpvcDomainVlanId VlanIndex, + ipbpvcDomainDhcpVlanEnable INTEGER, + ipbpvcDomainVlanRowStatus RowStatus + } + + ipbpvcDomainVlanId OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Set VLAN to join or leave the specified domain." + ::= { ipbpvcDomainVlanEntry 1 } + + ipbpvcDomainDhcpVlanEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable/disable DHCP VLAN in a domain." + ::= { ipbpvcDomainVlanEntry 2 } + + ipbpvcDomainVlanRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table used to create/delete an entry." + ::= { ipbpvcDomainVlanEntry 3 } + +-- Edge Router Table + + ipbpvcEdgeRouterTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpbpvcEdgeRouterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes ipbpvc edge router configuration. + This table is supported by R3.00 and later versions." + ::= { ipbpvc 3 } + + ipbpvcEdgeRouterEntry OBJECT-TYPE + SYNTAX IpbpvcEdgeRouterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of ipbpvcEdgeRouterTable." + INDEX { ipbpvcDomainName, ipbpvcEdgeRouterIp, ipbpvcEdgeRouterMask, ipbpvcEdgeRouterVid } + ::= { ipbpvcEdgeRouterTable 1 } + + IpbpvcEdgeRouterEntry ::= + SEQUENCE { + ipbpvcEdgeRouterIp IpAddress, + ipbpvcEdgeRouterMask INTEGER, + ipbpvcEdgeRouterVid VlanIndex, + ipbpvcEdgeRouterRowStatus RowStatus + } + + ipbpvcEdgeRouterIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP address of the edge router." + ::= { ipbpvcEdgeRouterEntry 1 } + + ipbpvcEdgeRouterVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VLAN ID of the edge router." + ::= { ipbpvcEdgeRouterEntry 2 } + + ipbpvcEdgeRouterMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Netmask of the edge router." + ::= { ipbpvcEdgeRouterEntry 3 } + + ipbpvcEdgeRouterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table used to create/delete an entry." + ::= { ipbpvcEdgeRouterEntry 4 } + +-- Interface Table + + ipbpvcInterfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpbpvcInterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes ipbpvc interface configuration. + This table is supported by R3.00 and later versions." + ::= { ipbpvc 4 } + + ipbpvcInterfaceEntry OBJECT-TYPE + SYNTAX IpbpvcInterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of ipbpvcInterfaceTable." + INDEX { ipbpvcDomainName, ipbpvcInterfaceIp, ipbpvcInterfaceMask, ipbpvcInterfaceVid } + ::= { ipbpvcInterfaceTable 1 } + + IpbpvcInterfaceEntry ::= + SEQUENCE { + ipbpvcInterfaceIp IpAddress, + ipbpvcInterfaceMask INTEGER, + ipbpvcInterfaceVid VlanIndex, + ipbpvcInterfaceIfIndex INTEGER, + ipbpvcInterfaceVpi INTEGER, + ipbpvcInterfaceVci INTEGER, + ipbpvcInterfaceRowStatus RowStatus + } + + ipbpvcInterfaceIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP address of the interface." + ::= { ipbpvcInterfaceEntry 1 } + + ipbpvcInterfaceMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Netmask of the interface." + ::= { ipbpvcInterfaceEntry 2 } + + ipbpvcInterfaceVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VLAN ID of the interface." + ::= { ipbpvcInterfaceEntry 3 } + + ipbpvcInterfaceIfIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "IfIndex of the interface." + ::= { ipbpvcInterfaceEntry 4 } + + ipbpvcInterfaceVpi OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "VPI of the interface." + ::= { ipbpvcInterfaceEntry 5 } + + ipbpvcInterfaceVci OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "VCI of the interface." + ::= { ipbpvcInterfaceEntry 6 } + + ipbpvcInterfaceRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table used to create/delete an entry." + ::= { ipbpvcInterfaceEntry 7 } + +-- Route Table + + ipbpvcRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpbpvcRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes ipbpvc route configuration. + This table is supported by R3.00 and later versions." + ::= { ipbpvc 5 } + + ipbpvcRouteEntry OBJECT-TYPE + SYNTAX IpbpvcRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of ipbpvcRouteTable." + INDEX { ipbpvcDomainName, ipbpvcRouteIp, ipbpvcRouteMask, ipbpvcRouteNextHop } + ::= { ipbpvcRouteTable 1 } + + IpbpvcRouteEntry ::= + SEQUENCE { + ipbpvcRouteIp IpAddress, + ipbpvcRouteMask INTEGER, + ipbpvcRouteNextHop IpAddress, + ipbpvcRouteMetric INTEGER, + ipbpvcRoutePriority INTEGER, + ipbpvcRouteRowStatus RowStatus + } + + ipbpvcRouteIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP address of the route." + ::= { ipbpvcRouteEntry 1 } + + ipbpvcRouteMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Netmask of the route." + ::= { ipbpvcRouteEntry 2 } + + ipbpvcRouteNextHop OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Next hop IP address of the route." + ::= { ipbpvcRouteEntry 3 } + + ipbpvcRouteMetric OBJECT-TYPE + SYNTAX INTEGER (1..15) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Metric of the route." + ::= { ipbpvcRouteEntry 4 } + + ipbpvcRoutePriority OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Priority of the route. Note that the default value of this object is 8, which means + we keep the original priority of the packet(frame)." + ::= { ipbpvcRouteEntry 5 } + + ipbpvcRouteRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table used to create/delete an entry." + ::= { ipbpvcRouteEntry 6 } + +-- PVC Table + + ipbpvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpbpvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes ipbpvc configuration. + This table is supported by R3.00 and later versions." + ::= { ipbpvc 6 } + + ipbpvcEntry OBJECT-TYPE + SYNTAX IpbpvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of ipbpvcTable." + INDEX { ifIndex, ipbpvcVpi, ipbpvcVci, ipbpvcPvid } + ::= { ipbpvcTable 1 } + + IpbpvcEntry ::= + SEQUENCE { + ipbpvcVpi INTEGER, + ipbpvcVci INTEGER, + ipbpvcPvid INTEGER, + ipbpvcEncap INTEGER, + ipbpvcPriority INTEGER, + ipbpvcProfile OCTET STRING, + ipbpvcRowStatus RowStatus, + ipbpvcProfileUS OCTET STRING + } + + ipbpvcVpi OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the PVC." + ::= { ipbpvcEntry 1 } + + ipbpvcVci OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the PVC." + ::= { ipbpvcEntry 2 } + + ipbpvcPvid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "PVID of the PVC." + ::= { ipbpvcEntry 3 } + + ipbpvcEncap OBJECT-TYPE + SYNTAX INTEGER { + ipoe(1), + reserved(2), + ipoa(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Type of the PVC." + ::= { ipbpvcEntry 4 } + + ipbpvcPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Priority of the PVC." + ::= { ipbpvcEntry 5 } + + ipbpvcProfile OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Profile of the PVC." + ::= { ipbpvcEntry 6 } + + ipbpvcRowStatus OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table used to create/delete an entry." + ::= { ipbpvcEntry 7 } + + ipbpvcProfileUS OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "US Profile of the PVC." + ::= { ipbpvcEntry 8 } + +-- ARP Proxy + + arpproxy OBJECT IDENTIFIER ::= { ipbpvc 8 } + + arpproxyAge OBJECT-TYPE + SYNTAX INTEGER (10..10000) + UNITS "second" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Aging time of the ARP proxy. + This object is supported by R3.00 and later versions." + ::= { arpproxy 1 } + + arpproxyFlush OBJECT IDENTIFIER ::= { arpproxy 2 } + + arpproxyFlushTarget OBJECT-TYPE + SYNTAX INTEGER { + all(1), + edgerouter(2), + interface(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The target whose ARP table to be flushed. + This object is supported by R3.00 and later versions." + ::= { arpproxyFlush 1 } + + arpproxyFlushOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the object to 1 to start flushing. + This object is supported by R3.00 and later versions." + ::= { arpproxyFlush 2 } + + arpproxyFlushEdgeRouterIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flush ARP table for the specified edge router. + This object is supported by R3.00 and later versions." + ::= { arpproxyFlush 3 } + + arpproxyFlushEdgeRouterVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flush ARP table for the specified edge router. + This object is supported by R3.00 and later versions." + ::= { arpproxyFlush 4 } + + arpproxyFlushInterfaceIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flush ARP table for the specified interface. + This object is supported by R3.00 and later versions." + ::= { arpproxyFlush 5 } + + arpproxyFlushInterfaceMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flush ARP table for the specified interface. + This object is supported by R3.00 and later versions." + ::= { arpproxyFlush 6 } + + arpproxyFlushInterfaceVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flush ARP table for the specified interface. + This object is supported by R3.00 and later versions." + ::= { arpproxyFlush 7 } + +-------------------- +-- dtpvc +-------------------- + +-- DT PVC Table + + dtpvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF DtpvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes Double Tagging (DT) PVC configuration." + ::= { dtpvc 1 } + + dtpvcEntry OBJECT-TYPE + SYNTAX DtpvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dtpvcTable." + INDEX { ifIndex, dtpvcVpi, dtpvcVci, dtpvcSvid } + ::= { dtpvcTable 1 } + + DtpvcEntry ::= + SEQUENCE { + -- Common -- + dtpvcVpi INTEGER, + dtpvcVci INTEGER, + dtpvcSvid VlanIndex, + dtpvcSpriority INTEGER, + dtpvcCvid VlanIndex, + dtpvcCpriority INTEGER, + dtpvcDSProfile DisplayString, + dtpvcUSProfile DisplayString, + dtpvcRowStatus RowStatus, + -- Only for dtpvc -- + dtpvcSuperChannel INTEGER, + -- Only for paepvc -- + dtpvcAcName DisplayString, + dtpvcServiceName DisplayString, + dtpvcHelloTime INTEGER + } + + -- Common -- + dtpvcVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the pvc." + ::= { dtpvcEntry 1 } + + dtpvcVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the pvc." + ::= { dtpvcEntry 2 } + + dtpvcSvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "s-tag VLAN ID of the pvc." + ::= { dtpvcEntry 3 } + + dtpvcSpriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "s-tag priority of the pvc." + ::= { dtpvcEntry 4 } + + dtpvcCvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "c-tag VLAN ID of the pvc." + ::= { dtpvcEntry 5 } + + dtpvcCpriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "c-tag priority of the pvc." + ::= { dtpvcEntry 6 } + + dtpvcDSProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row in the atmProfileTable, which applies for this dtpvc in DS side." + ::= { dtpvcEntry 7 } + + dtpvcUSProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row in the atmProfileTable, which applies for this dtpvc in US side." + ::= { dtpvcEntry 8 } + + dtpvcRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { dtpvcEntry 9 } + + -- Only for DTPVC -- + dtpvcSuperChannel OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specified the configured DTPVC is a super channel." + ::= { dtpvcEntry 10 } + + -- Only for PAEPVC -- + dtpvcAcName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Access concentrator name for paepvc." + ::= { dtpvcEntry 11 } + + dtpvcServiceName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Service name for paepvc." + ::= { dtpvcEntry 12 } + + dtpvcHelloTime OBJECT-TYPE + SYNTAX INTEGER + UNITS "second" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The system will close the PVC if there are not any LCP echo messages passed through during the LCP hello time." + ::= { dtpvcEntry 13 } + +-- DTPVC state -- + dtpvcStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF DtpvcStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table show current DTPVC status." + ::= { dtpvc 2 } + + dtpvcStateEntry OBJECT-TYPE + SYNTAX DtpvcStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in dtpvcStateTable." + INDEX { ifIndex, dtpvcStateVpi, dtpvcStateVci, dtpvcStateSvid } + ::= { dtpvcStateTable 1 } + + DtpvcStateEntry ::= + SEQUENCE { + dtpvcStateVpi INTEGER, + dtpvcStateVci INTEGER, + dtpvcStateSvid VlanIndex, + dtpvcStateSPriority INTEGER, + dtpvcStateCvid VlanIndex, + dtpvcStateCPriority INTEGER, + --dtpvcStateMode DisplayString, + dtpvcStateChannelType DisplayString, + dtpvcStateEncap DisplayString + } + + dtpvcStateVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the dtpvc." + ::= { dtpvcStateEntry 1 } + + dtpvcStateVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the dtpvc." + ::= { dtpvcStateEntry 2 } + + dtpvcStateSvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default S-VID of the dtpvc." + ::= { dtpvcStateEntry 3 } + + dtpvcStateSPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "S-priority of the dtpvc." + ::= { dtpvcStateEntry 4 } + + dtpvcStateCvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default C-VID of the dtpvc." + ::= { dtpvcStateEntry 5 } + + dtpvcStateCPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "C-priority of the dtpvc." + ::= { dtpvcStateEntry 6 } + + --dtpvcStateMode OBJECT-TYPE + --SYNTAX DisplayString (SIZE (1..31)) + --MAX-ACCESS read-only + --STATUS current + --DESCRIPTION + --"The value of this object identifies the link mode at runntime." + --::= { dtpvcStateEntry 7 } + + dtpvcStateChannelType OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the channel type at runtime." + ::= { dtpvcStateEntry 8 } + + dtpvcStateEncap OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the channel encapsulation at runtime." + ::= { dtpvcStateEntry 9 } + + +-------------------- +-- gbond +-------------------- + +-- gbondTable + + gbondGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF GbondGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing the G.Bond configuration information for + each bonding group of the device." + ::= { gbond 1 } + + gbondGroupEntry OBJECT-TYPE + SYNTAX GbondGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of gbondTable." + INDEX { gbondGroupName } + ::= { gbondGroupTable 1 } + + GbondGroupEntry ::= + SEQUENCE { + gbondGroupName OCTET STRING, + gbondGroupPorts OCTET STRING, +-- gbondGroupSid INTEGER, + gbondGroupUpRate Unsigned32, + gbondGroupDownRate Unsigned32, + gbondGroupRowStatus RowStatus + } + + gbondGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An administratively assigned string, which may be used to identify bonding group." + ::= { gbondGroupEntry 1 } + + gbondGroupPorts OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The set of ports which are currently assigned to the + bonding group of specified group name. + Byte 1: Reserved(chassis) + Byte 2~3: Reserved(slot) + Byte 4: Reserved + Byte 5~11:each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc." + ::= { gbondGroupEntry 2 } + +-- gbondGroupSid OBJECT-TYPE +-- SYNTAX INTEGER { +-- sid8(1), +-- sid12(2) +-- } +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "This object indicates the sequence index mode of the bonding group." +-- ::= { gbondGroupEntry 3 } + + gbondGroupUpRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The UP stream rate." + ::= { gbondGroupEntry 4 } + + gbondGroupDownRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The DOWN stream rate." + ::= { gbondGroupEntry 5 } + + gbondGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { gbondGroupEntry 6 } +-------------------- +-- voipPort +-------------------- + +-- voipSipLineConfTable + + voipSipLineConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipSipLineConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes common attributes describing the VoIP line." + ::= { voipPort 1 } + + voipSipLineConfEntry OBJECT-TYPE + SYNTAX VoipSipLineConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in voipSipLineConfTable." + INDEX { ifIndex } + ::= { voipSipLineConfTable 1 } + + VoipSipLineConfEntry ::= + SEQUENCE { + voipSipLineConfSipProfile OCTET STRING, + voipSipLineConfSipCallSvcProfile OCTET STRING, + voipSipLineConfDspProfile OCTET STRING + } + + voipSipLineConfSipProfile OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "SIP profile name." + ::= { voipSipLineConfEntry 1 } + + voipSipLineConfSipCallSvcProfile OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "SIP call service profile name." + ::= { voipSipLineConfEntry 2 } + + voipSipLineConfDspProfile OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DSP profile name." + ::= { voipSipLineConfEntry 3 } + +-------------------- +-- voipPortOperation +-------------------- + + portOperations OBJECT IDENTIFIER ::= { voipPort 2 } + + voipPortTarget OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is used for identify the target on which + the port configuration should be performed. The target is encoded as: + Byte 1: 0, Reserved(chaises) + Byte 2~3: 0,0 Reserved(slot) + Byte 4: 0, Reserved + Byte 5~11:Each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc." + ::= { portOperations 1 } + + voipPortOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is for VoIP configuration. When the EMS + wants to issue the desired operation, the EMS shall send SNMP-SET message to set + the corresponding bit value to be 1. The various bit positions are: + BIT 1: enable port + BIT 2: disable port" + ::= { portOperations 2 } + + voipPortEnableStatus OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This read only entry is for showing current voip enable/disable status of each port. The status is encoded as: + Byte 1: 0, Reserved + Byte 2~3: 0,0 Reserved + Byte 4: 0, Reserved + Byte 5~11:Each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc. + " + ::= { portOperations 3 } + + + +-------------------- +-- voipPortTelTable +-------------------- + + + voipPortTelTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipPortTelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes VoIP tel for the port." + ::= { voipPort 3 } + + voipPortTelEntry OBJECT-TYPE + SYNTAX VoipPortTelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in voipPortTelTable." + INDEX { ifIndex } + ::= { voipPortTelTable 1 } + + VoipPortTelEntry ::= + SEQUENCE { + voipPortTel DisplayString + } + + voipPortTel OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..15)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VoIP's telephone number of the specified port." + ::= { voipPortTelEntry 1 } + +-------------------- +-- voipH248PortOperation +-------------------- + +-- voipH248LineConfTable + + voipH248LineConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipH248LineConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes common attributes describing the VoIP line." + ::= { voipPort 7 } + + voipH248LineConfEntry OBJECT-TYPE + SYNTAX VoipH248LineConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in voipH248LineConfTable." + INDEX { ifIndex } + ::= { voipH248LineConfTable 1 } + + VoipH248LineConfEntry ::= + SEQUENCE { + voipH248LineConfMgName OCTET STRING, + voipH248LineConfDspProfile OCTET STRING, + voipH248LineConfVBDProfile OCTET STRING + } + + voipH248LineConfMgName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MG name." + ::= { voipH248LineConfEntry 1 } + + voipH248LineConfDspProfile OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DSP profile name." + ::= { voipH248LineConfEntry 2 } + + voipH248LineConfVBDProfile OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DSP profile name for Voice Band Data (FAX or Modem) mode." + ::= { voipH248LineConfEntry 3 } + + +-------------------- +-- voipPortH248Termination +-------------------- + +-- voipPortH248TerminationTable + + voipPortH248TerminationTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipPortH248TerminationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes Termination name." + ::= { voipPort 8 } + + voipPortH248TerminationEntry OBJECT-TYPE + SYNTAX VoipPortH248TerminationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in voipPortH248TerminationTable." + INDEX { ifIndex } + ::= { voipPortH248TerminationTable 1 } + + VoipPortH248TerminationEntry ::= + SEQUENCE { + voipPortH248TermName OCTET STRING + } + + voipPortH248TermName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Termination name of MG." + ::= { voipPortH248TerminationEntry 1 } + + + +-------------------- +-- voipPortGain +-------------------- + +-- voipPortGainTable + + voipPortGainTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipPortGainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes Port Gain." + ::= { voipPort 6 } + + voipPortGainEntry OBJECT-TYPE + SYNTAX VoipPortGainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in voipPortGainTable." + INDEX { ifIndex } + ::= { voipPortGainTable 1 } + + VoipPortGainEntry ::= + SEQUENCE { + voipPortTXGain INTEGER, + voipPortRXGain INTEGER + } + + voipPortTXGain OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "TX Gain of the port, -200~200 in unit of 0.1dB." + ::= { voipPortGainEntry 1 } + + voipPortRXGain OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "RX Gain of the port, -200~200 in unit of 0.1dB." + ::= { voipPortGainEntry 2 } + +-------------------- +-- snrMgn +-------------------- + +-- snrMgnTable + + snrMgnTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnrMarginEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing the per port SNR Margin configuration." + ::= { snrMgn 1 } + + snrMgnEntry OBJECT-TYPE + SYNTAX SnrMarginEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of snrMgnTable." + INDEX { ifIndex } + ::= { snrMgnTable 1 } + + SnrMarginEntry ::= + SEQUENCE { + snrMgnMode INTEGER, + snrMgnUcTarget INTEGER, + snrMgnUcMax INTEGER, + snrMgnUcMin INTEGER, + snrMgnUcDownshift INTEGER, + snrMgnUcUpshift INTEGER, + snrMgnUrTarget INTEGER, + snrMgnUrMax INTEGER, + snrMgnUrMin INTEGER, + snrMgnUrDownshift INTEGER, + snrMgnUrUpshift INTEGER + } + + snrMgnMode OBJECT-TYPE + SYNTAX INTEGER { + profile(0), + line(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure DSL SNR margin configuration mode of the specified ports. + Profile: the SNR margin configuration comes from DSL profile. + Line: the SNR margin configuration comes from line configuration." + ::= { snrMgnEntry 1 } + + snrMgnUcTarget OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Target Signal/Noise Margin. + This is the Noise Margin the modem must achieve + with a BER of 10-7 or better to successfully complete + initialization." + ::= { snrMgnEntry 2 } + + snrMgnUcMax OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Maximum acceptable Signal/Noise Margin. + If the Noise Margin is above this the modem should + attempt to reduce its power output to optimize its + operation." + ::= { snrMgnEntry 3 } + + snrMgnUcMin OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Minimum acceptable Signal/Noise Margin. + If the noise margin falls below this level, the modem + should attempt to increase its power output. If that + is not possible the modem will attempt to + re-initialize or shut down." + ::= { snrMgnEntry 4 } + + snrMgnUcDownshift OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Signal/Noise Margin for rate downshift. + If the noise margin falls below this level, the modem + should attempt to decrease its transmit rate. In + the case that RADSL mode is not present, + the value will be `0'." + ::= { snrMgnEntry 5 } + + snrMgnUcUpshift OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Signal/Noise Margin for rate upshift. + If the noise margin rises above this level, the modem + should attempt to increase its transmit rate. In + the case that RADSL is not present, the value will + be `0'." + ::= { snrMgnEntry 6 } + + snrMgnUrTarget OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Target Signal/Noise Margin. + This is the Noise Margin the modem must achieve + with a BER of 10-7 or better to successfully complete + initialization." + ::= { snrMgnEntry 7 } + + snrMgnUrMax OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Maximum acceptable Signal/Noise Margin. + If the Noise Margin is above this the modem should + attempt to reduce its power output to optimize its + operation." + ::= { snrMgnEntry 8 } + + snrMgnUrMin OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Minimum acceptable Signal/Noise Margin. + If the noise margin falls below this level, the modem + should attempt to increase its power output. If that + is not possible the modem will attempt to + re-initialize or shut down." + ::= { snrMgnEntry 9 } + + snrMgnUrDownshift OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Signal/Noise Margin for rate downshift. + If the noise margin falls below this level, the modem + should attempt to decrease its transmit rate. + In the case that RADSL mode is not present, + the value will be `0'." + ::= { snrMgnEntry 10 } + + snrMgnUrUpshift OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Signal/Noise Margin for rate upshift. + If the noise margin rises above this level, the modem + should attempt to increase its transmit rate. + In the case that RADSL is not present, + the value will be `0'." + ::= { snrMgnEntry 11 } + +-------------------- +-- dsl rate +-------------------- + +-- dslRateTable + + dslRateTable OBJECT-TYPE + SYNTAX SEQUENCE OF DslRateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing the per port DSL Rate configuration." + ::= { dslRate 1 } + + dslRateEntry OBJECT-TYPE + SYNTAX DslRateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dslRateTable." + INDEX { ifIndex } + ::= { dslRateTable 1 } + + DslRateEntry ::= + SEQUENCE { + dslRateMode INTEGER, + dslRateLatencyMode INTEGER, + dslRateXtucMaxInterleaveDelay INTEGER, + dslRateXtucMaxTxRate Unsigned32, + dslRateXtucMinTxRate Unsigned32, + dslRateXturMaxInterleaveDelay INTEGER, + dslRateXturMaxTxRate Unsigned32, + dslRateXturMinTxRate Unsigned32 + } + + dslRateMode OBJECT-TYPE + SYNTAX INTEGER { + profile(0), + line(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure DSL Rate configuration mode of the specified ports. + Profile: the DSL Rate configuration comes from DSL profile. + Line: the DSL Rate configuration comes from line configuration." + ::= { dslRateEntry 1 } + + dslRateLatencyMode OBJECT-TYPE + SYNTAX INTEGER { + interleave(1), + fast(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The latency mode is fast or interleave" + ::= { dslRateEntry 2 } + + dslRateXtucMaxInterleaveDelay OBJECT-TYPE + SYNTAX INTEGER (0..255) + UNITS "milli-seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured maximum Interleave Delay for this channel. + + Interleave delay applies only to the interleave channel + and defines the mapping (relative spacing) between + subsequent input bytes at the interleaver input and + their placement in the bit stream at the interleaver + output. Larger numbers provide greater separation + between consecutive input bytes in the output bit + stream allowing for improved impulse noise immunity + at the expense of payload latency." + ::= { dslRateEntry 3 } + + dslRateXtucMaxTxRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Maximum Transmit rate for `Fast' or `Interleave' channels, + in bps." + ::= { dslRateEntry 4 } + + dslRateXtucMinTxRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Minimum Transmit rate for `Fast' or `Interleave' channels, + in bps" + ::= { dslRateEntry 5 } + + dslRateXturMaxInterleaveDelay OBJECT-TYPE + SYNTAX INTEGER (0..255) + UNITS "milli-seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured maximum Interleave Delay for this channel. + + Interleave delay applies only to the interleave channel + and defines the mapping (relative spacing) between + subsequent input bytes at the interleaver input and + their placement in the bit stream at the interleaver + output. Larger numbers provide greater separation + between consecutive input bytes in the output bit + stream allowing for improved impulse noise immunity + at the expense of payload latency" + ::= { dslRateEntry 6 } + + dslRateXturMaxTxRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Target Signal/Noise Margin. + This is the Noise Margin the modem must achieve + with a BER of 10-7 or better to successfully complete + initialization." + ::= { dslRateEntry 7 } + + dslRateXturMinTxRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Maximum Transmit rate for `Fast' or `Interleave' channels, + in bps." + ::= { dslRateEntry 8 } + + +---------------------------------------- +-- profile +---------------------------------------- + + voipProfile OBJECT IDENTIFIER ::= { profile 7 } + +-------------------- +-- voipProfile +-------------------- + + sipProfile OBJECT IDENTIFIER ::= { voipProfile 1 } + +-- sip profile + + maxNumOfSipProfiles OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of SIP profiles supported by the system." + ::= { sipProfile 1 } + + sipProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF SipProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes SIP protocol related configuration." + ::= { sipProfile 2 } + + sipProfileEntry OBJECT-TYPE + SYNTAX SipProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in sipProfileTable." + INDEX { IMPLIED sipProfileName } + ::= { sipProfileTable 1 } + + SipProfileEntry ::= + SEQUENCE { + sipProfileName DisplayString, + sipProfileSipSvr OCTET STRING, + sipProfileRegSvr OCTET STRING, + sipProfileProxySvr OCTET STRING, + sipProfileSipPort INTEGER, + sipProfileRegSvrPort INTEGER, + sipProfileProxySvrPort INTEGER, + sipProfileUriType INTEGER, + sipProfilePbit INTEGER, + sipProfileDscp INTEGER, + sipProfileKeepAlive INTEGER, + sipProfileSe INTEGER, + sipProfilePrack INTEGER, + sipProfileRowStatus RowStatus, + sipProfileRegExpire INTEGER + } + + sipProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is used by the SIP profile table in order to identify a row of this table." + ::= { sipProfileEntry 1 } + + sipProfileSipSvr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "IP used for SIP registration or SIP domain name." + ::= { sipProfileEntry 2 } + + sipProfileRegSvr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Registration server IP or registration server domain name." + ::= { sipProfileEntry 3 } + + sipProfileProxySvr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Proxy server IP or proxy server doamin name." + ::= { sipProfileEntry 4 } + + sipProfileSipPort OBJECT-TYPE + SYNTAX INTEGER (1025..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "SIP UA port number." + ::= { sipProfileEntry 5 } + + sipProfileRegSvrPort OBJECT-TYPE + SYNTAX INTEGER (1025..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Registration server port number." + ::= { sipProfileEntry 6 } + + sipProfileProxySvrPort OBJECT-TYPE + SYNTAX INTEGER (1025..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Proxy server port number." + ::= { sipProfileEntry 7 } + + sipProfileUriType OBJECT-TYPE + SYNTAX INTEGER { + useSipUri(1), + useTelUri(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "" + ::= { sipProfileEntry 8 } + + sipProfilePbit OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "802.1p bit for SIP and RTP packet." + ::= { sipProfileEntry 9 } + + sipProfileDscp OBJECT-TYPE + SYNTAX INTEGER (0..63) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DSCP for SIP and RTP packet." + ::= { sipProfileEntry 10 } + + sipProfileKeepAlive OBJECT-TYPE + SYNTAX INTEGER { + on(1), + off(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "" + ::= { sipProfileEntry 11 } + + sipProfileSe OBJECT-TYPE + SYNTAX INTEGER (90..65535) + UNITS "second" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Session expiration time in seconds." + ::= { sipProfileEntry 12 } + + sipProfilePrack OBJECT-TYPE + SYNTAX INTEGER { + on(1), + off(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "" + ::= { sipProfileEntry 13 } + + sipProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in the table." + ::= { sipProfileEntry 14 } + + sipProfileRegExpire OBJECT-TYPE + SYNTAX INTEGER (120..2073600) + UNITS "second" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Registration expiration time in seconds." + ::= { sipProfileEntry 15 } + + +-- sip call service profile + + maxNumOfSipCallSvcProfiles OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of SIP call service profiles supported by the system." + ::= { sipProfile 3 } + + sipCallSvcProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF SipCallSvcProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes SIP call service related configuration." + ::= { sipProfile 4 } + + sipCallSvcProfileEntry OBJECT-TYPE + SYNTAX SipCallSvcProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in sipCallSvcProfileTable." + INDEX { IMPLIED sipCallSvcProfileName } + ::= { sipCallSvcProfileTable 1 } + + SipCallSvcProfileEntry ::= + SEQUENCE { + sipCallSvcProfileName DisplayString, + sipCallSvcProfilePasswdOn INTEGER, + sipCallSvcProfilePasswd OCTET STRING, + sipCallSvcProfileNumberPlanOn INTEGER, + sipCallSvcProfileNumberPlanCc OCTET STRING, + sipCallSvcProfileNumberPlanNdc OCTET STRING, + sipCallSvcProfileNumberPlanTable OCTET STRING, + sipCallSvcProfileStateMask INTEGER, + sipCallSvcProfileDtmf INTEGER, + sipCallSvcProfileFax INTEGER, + sipCallSvcProfileRowStatus RowStatus, + sipCallSvcProfileFlashType INTEGER, + sipCallSvcProfileFlashInfo OCTET STRING, + sipCallSvcProfileSoftSwitchType INTEGER + } + + sipCallSvcProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is used by the SIP call service profile table in order to identify a row of this table." + ::= { sipCallSvcProfileEntry 1 } + + sipCallSvcProfilePasswdOn OBJECT-TYPE + SYNTAX INTEGER { + on(1), + off(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Password is necessary or not for SIP registration." + ::= { sipCallSvcProfileEntry 2 } + + sipCallSvcProfilePasswd OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "SIP registration password." + ::= { sipCallSvcProfileEntry 3 } + + sipCallSvcProfileNumberPlanOn OBJECT-TYPE + SYNTAX INTEGER { + on(1), + off(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "" + ::= { sipCallSvcProfileEntry 4 } + + sipCallSvcProfileNumberPlanCc OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Country code, only digit 0..9 are allowed." + ::= { sipCallSvcProfileEntry 5 } + + sipCallSvcProfileNumberPlanNdc OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "National destination code, only digit 0..9 are allowed." + ::= { sipCallSvcProfileEntry 6 } + + sipCallSvcProfileNumberPlanTable OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Numbering plan table name." + ::= { sipCallSvcProfileEntry 7 } + + sipCallSvcProfileStateMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Bit 1 callforward : call forward(Not supported) + Bit 2 callhold : call hold + Bit 3 callwait : call waiting + Bit 4 callreturn : call return(Not supported) + Bit 5 calltransfer : call transfer + Bit 6 clip : caller line identification presentation (Caller ID) + Bit 7 clir : caller line identification restriction + Bit 8 dnd : do not disturb + Bit 9 conference : native 3-way conference" + ::= { sipCallSvcProfileEntry 8 } + + sipCallSvcProfileDtmf OBJECT-TYPE + SYNTAX INTEGER { + bypass(1), + rfc2833(2), + rfc2833like(3), + sipinfo(4) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "dtmf bypass : bypass DTMF tone + dtmf rfc2833 : DTMF tone relay according to RFC2833 + dtmf rfc2833like : DTMF tone relay by SIP INFO message, but RFC2833 payload + dtmf sipinfo : DTMF tone relay by SIP INFO message" + ::= { sipCallSvcProfileEntry 9 } + + sipCallSvcProfileFax OBJECT-TYPE + SYNTAX INTEGER { + g711(1), + t38(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "fax g711 : FAX service pass through by ITU-T G.711 + fax t38 : FAX service by ITU-T T.38" + ::= { sipCallSvcProfileEntry 10 } + + sipCallSvcProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in the table." + ::= { sipCallSvcProfileEntry 11 } + + sipCallSvcProfileFlashType OBJECT-TYPE + SYNTAX INTEGER { + invite(1), + rfc2833(2), + rfc2833like(3), + sipinfo-1(4), + sipinfo-2(5), + sipinfo-3(6), + sipinfo-4(7), + sipinfo-5(8), + sipinfo-6(9), + bypass(10) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "flash invite : will send SIP INVITE message while press flash button. + flash bypass : flash event will be handled by current switch type specified in sipCallSvcProfileSwitchType. + flash rfc2833 : flash event will send by RTP event (16) defined in RFC 2833. + flash rfc2833like : flash event will send by SIP INFO message but RTP payload. + flash sipinfo-1 : flash event will be sent by SIP INFO signal=16 message. + flash sipinfo-2 : flash event will be sent by SIP INFO signal=hf message. + flash sipinfo-3 : flash event will be sent by SIP INFO signal=hook-flash message. + flash sipinfo-4 : flash event will be sent by SIP INFO plain text 'FLASH' message. + flash sipinfo-5 : flash event will be sent by multiple SIP INFO signal messages and content of signal messages come from sipCallSvcProfileFlashInfo. + flash sipinfo-6 : flash event will be sent by SIP INFO and payload is specified in sipCallSvcProfileFlashInfo." + ::= { sipCallSvcProfileEntry 12 } + + sipCallSvcProfileFlashInfo OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Strings carried in SIP INFO when specified in sipCallSvcProfileFlashType is sipinfo-5 and sipinfo-6." + ::= { sipCallSvcProfileEntry 13 } + + sipCallSvcProfileSoftSwitchType OBJECT-TYPE + SYNTAX INTEGER { + metaswitch(1), + nortel(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Softswitch type is configured to specify softswitch-dependent behavior, + currently only flash event is softswitch-dependent and should follow the softswitch type setting. + When configured the flash event to 'bypass', E5 will follow the softswitch type setting to + report hook flash event." + ::= { sipCallSvcProfileEntry 14 } + +-- dsp profile + + maxNumOfDspProfiles OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of DSP profiles supported by the system." + ::= { voipProfile 2 } + + dspProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF DspProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes DSP related configuration." + ::= { voipProfile 3 } + + dspProfileEntry OBJECT-TYPE + SYNTAX DspProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in dspProfileTable." + INDEX { IMPLIED dspProfileName } + ::= { dspProfileTable 1 } + + DspProfileEntry ::= + SEQUENCE { + dspProfileName DisplayString, + dspProfileCodec OCTET STRING, + dspProfilePlayBufferMinDelay INTEGER, + dspProfilePlayBufferMaxDelay INTEGER, + dspProfileEchoTail INTEGER, + dspProfileRowStatus RowStatus, + dspProfileG711Vpi INTEGER, + dspProfileG723Vpi INTEGER, + dspProfileG726Vpi INTEGER, + dspProfileG729Vpi INTEGER + } + + dspProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is used by the DSP profile table in order to identify a row of this table." + ::= { dspProfileEntry 1 } + + dspProfileCodec OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "0x01: g711a + 0x02: g711mu + 0x03: g723 + 0x04: g726-16 + 0x05: g726-24 + 0x06: g726-32 + 0x07: g726-40 + 0x08: g729ab + the value of dspProfileCodec is OCTET STRING, there are 8 Octets, each octect is + specified as 0x01, 0x03, 0x02, 0x07,0x00, 0x00, 0x00, 0x00 (to specify different + CODE in priority) specify as: g711a, g723, g711mu, g726-40 + " + ::= { dspProfileEntry 2 } + + dspProfilePlayBufferMinDelay OBJECT-TYPE + SYNTAX INTEGER (10..500) + UNITS "millisecond" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Play buffer minimum delay in milliseconds. + It should be less than or equal to dspProfilePlayBufferMaxDelay." + ::= { dspProfileEntry 3 } + + dspProfilePlayBufferMaxDelay OBJECT-TYPE + SYNTAX INTEGER (10..500) + UNITS "millisecond" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Play buffer maximum delay in milliseconds. + It should be greater than or equal to dspProfilePlayBufferMinDelay." + ::= { dspProfileEntry 4 } + + dspProfileEchoTail OBJECT-TYPE + SYNTAX INTEGER { + echotail8(1), + echotail16(2), + echotail32(3), + echotail128(4) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Echo cancellation echo tail period in milliseconds." + ::= { dspProfileEntry 5 } + + dspProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in the table." + ::= { dspProfileEntry 6 } + + dspProfileG711Vpi OBJECT-TYPE + SYNTAX INTEGER { + g711x10ms(1), + g711x20ms(2), + g711x30ms(3), + g711x40ms(4) + } + UNITS "millisecond" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Voice Packetization Interval(VPI) of codec G.711 in milliseconds. + The values are 10, 20, 30, 40" + ::= { dspProfileEntry 7 } + + dspProfileG723Vpi OBJECT-TYPE + SYNTAX INTEGER { + g723x30ms(1), + g723x60ms(2) + } + UNITS "millisecond" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Voice Packetization Interval(VPI) of G.723 codec in milliseconds. + The values are 30,60" + ::= { dspProfileEntry 8 } + + dspProfileG726Vpi OBJECT-TYPE + SYNTAX INTEGER { + g726x10ms(1), + g726x20ms(2), + g726x30ms(3), + g726x40ms(4) + } + UNITS "millisecond" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Voice Packetization Interval(VPI) of G.726 codec in milliseconds. + The values are 10, 20, 30, 40" + ::= { dspProfileEntry 9 } + + dspProfileG729Vpi OBJECT-TYPE + SYNTAX INTEGER { + g729x10ms(1), + g729x20ms(2), + g729x30ms(3), + g729x40ms(4), + g729x50ms(5), + g729x60ms(6) + } + UNITS "millisecond" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Voice Packetization Interval(VPI) of G.729 codec in milliseconds. + The values are 10, 20, 30, 40, 50, 60" + ::= { dspProfileEntry 10 } + +--h248 profile + + h248Profile OBJECT IDENTIFIER ::= { voipProfile 4 } + + maxNumOfH248Profiles OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of H248 profiles supported by the system." + ::= { h248Profile 1 } + + h248ProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF H248ProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes H248 profile related configuration." + ::= { h248Profile 2 } + + h248ProfileEntry OBJECT-TYPE + SYNTAX H248ProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in h248ProfileTable." + INDEX { IMPLIED h248ProfileName } + ::= { h248ProfileTable 1 } + + H248ProfileEntry ::= + SEQUENCE { + h248ProfileName DisplayString, + h248ProfileMgcSvr OCTET STRING, + h248ProfileMgcPort INTEGER, + h248ProfileMgc2On INTEGER, + h248ProfileMgc2Svr OCTET STRING, + h248ProfileMgc2Port INTEGER, + h248ProfileTransport INTEGER, + h248ProfileEncode INTEGER, + h248ProfilePbit INTEGER, + h248ProfileDscp INTEGER, + h248ProfileRowStatus RowStatus, + h248ProfileVbd INTEGER, +-- h248ProfileIt INTEGER, + h248ProfileEphemeralPrefix OCTET STRING, + h248ProfileSoftswitch INTEGER, + h248ProfileForceVer INTEGER, + h248ProfileStartRTPPort INTEGER, + h248ProfileEndRTPPort INTEGER, + h248ProfileEphemeralStartNumber OCTET STRING, + h248ProfileEphemeralSuffixLength INTEGER, + h248ProfilePhysicalPrefix OCTET STRING, + h248ProfilePhysicalStartNumber OCTET STRING, + h248ProfilePhysicalSuffixLength INTEGER + } + + h248ProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is used by the H248 profile table in order to identify a row of this table." + ::= { h248ProfileEntry 1 } + + h248ProfileMgcSvr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "MGC IP or MGC doamin name." + ::= { h248ProfileEntry 2 } + + h248ProfileMgcPort OBJECT-TYPE + SYNTAX INTEGER (1025..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "MGC port number." + ::= { h248ProfileEntry 3 } + + h248ProfileMgc2On OBJECT-TYPE + SYNTAX INTEGER { + on(1), + off(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Secondary MGC on/off." + ::= { h248ProfileEntry 4 } + + h248ProfileMgc2Svr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Secondary MGC IP or MGC doamin name. h248ProfileMgc2On needs to turn on if user want to set Secondary MGC IP or domain name." + ::= { h248ProfileEntry 5 } + + h248ProfileMgc2Port OBJECT-TYPE + SYNTAX INTEGER (1025..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Secondary MGC port number. h248ProfileMgc2On needs to turn on if user want to set Secondary MGC port number." + ::= { h248ProfileEntry 6 } + + h248ProfileTransport OBJECT-TYPE + SYNTAX INTEGER { + udp(1), + tcp(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Transport procotol used by the H.248 protocol stack." + ::= { h248ProfileEntry 7 } + + h248ProfileEncode OBJECT-TYPE + SYNTAX INTEGER { + longtext(1), + shorttext(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Encoding type used by the H.248 protocol stack" + ::= { h248ProfileEntry 8 } + + h248ProfilePbit OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "802.1p bit for H.248 packet." + ::= { h248ProfileEntry 9 } + + h248ProfileDscp OBJECT-TYPE + SYNTAX INTEGER (0..63) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DSCP for H.248 packet." + ::= { h248ProfileEntry 10 } + + h248ProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in the table." + ::= { h248ProfileEntry 11 } + + h248ProfileVbd OBJECT-TYPE + SYNTAX INTEGER { + on(1), + off(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "VBD mode support on/off" + ::= { h248ProfileEntry 12 } + + +-- remove since 3.0.2, ives 2009/12/24 + -- h248ProfileIt OBJECT-TYPE + -- SYNTAX INTEGER (0..65535) + -- UNITS "10ms" + -- MAX-ACCESS read-create + -- STATUS current + -- DESCRIPTION + -- "Inactivity timer" + -- ::= { h248ProfileEntry 13 } + + + h248ProfileEphemeralPrefix OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Ephemeral Termination Prefix" + ::= { h248ProfileEntry 14 } + + + h248ProfileSoftswitch OBJECT-TYPE + SYNTAX INTEGER { + metaswitch(1), + nortelCs1500(2), + nortelCs2000(3) + -- zxss10-ss(2) not support in calix + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Softswitch type" + ::= { h248ProfileEntry 15 } + + h248ProfileForceVer OBJECT-TYPE + SYNTAX INTEGER { + on(1), + off(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Force using H.248 version 1" + ::= { h248ProfileEntry 16 } + + h248ProfileStartRTPPort OBJECT-TYPE + SYNTAX INTEGER (4000..64000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Start of RTP port number." + ::= { h248ProfileEntry 17 } + + h248ProfileEndRTPPort OBJECT-TYPE + SYNTAX INTEGER (5000..65000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "End of RTP port number." + ::= { h248ProfileEntry 18 } + + h248ProfileEphemeralStartNumber OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Ephemeral termination suffix start number, up to 15 digits." + ::= { h248ProfileEntry 19 } + + h248ProfileEphemeralSuffixLength OBJECT-TYPE + SYNTAX INTEGER (0..15) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Ephemeral termination suffix number length , padding zero at the front if not long enough." + ::= { h248ProfileEntry 20 } + + h248ProfilePhysicalPrefix OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Physical Termination Prefix." + ::= { h248ProfileEntry 21 } + + h248ProfilePhysicalStartNumber OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Physical termination suffix start number, up to 15 digits." + ::= { h248ProfileEntry 22 } + + h248ProfilePhysicalSuffixLength OBJECT-TYPE + SYNTAX INTEGER (0..15) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Physical termination suffix number length , padding zero at the front if not long enough." + ::= { h248ProfileEntry 23 } + +---------------------------------------- +-- switch +---------------------------------------- + + dscp OBJECT IDENTIFIER ::= { switch 10 } + vlanIsolation OBJECT IDENTIFIER ::= { switch 12 } + enetMtu OBJECT IDENTIFIER ::= { switch 13 } +-- cfm OBJECT IDENTIFIER ::= { switch 14 } + +-- Standalone IP DSLAM puts all ACL features in 'switch', from OID 51 + dhcp OBJECT IDENTIFIER ::= { switch 51 } + macfilter OBJECT IDENTIFIER ::= { switch 53 } + dhcpSnoop OBJECT IDENTIFIER ::= { switch 55 } + acl OBJECT IDENTIFIER ::= { switch 56 } + pppoeAgent OBJECT IDENTIFIER ::= { switch 57 } + macff OBJECT IDENTIFIER ::= { switch 60 } + +-------------------- +-- dscp +-------------------- + + dscpMappingTable OBJECT-TYPE + SYNTAX SEQUENCE OF DscpMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table contains DSCP mapping configuration for the adsl and ethernet ports." + ::= { dscp 1 } + + dscpMappingEntry OBJECT-TYPE + SYNTAX DscpMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dscpMappingTable." + INDEX { dscpSrcCodePoint } + ::= { dscpMappingTable 1 } + + DscpMappingEntry ::= + SEQUENCE { + dscpSrcCodePoint INTEGER, +-- dscpMapCodePoint INTEGER, + dscpMapPriority INTEGER + } + + dscpSrcCodePoint OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The DSCP source code point used for mapping." + ::= { dscpMappingEntry 1 } + +-- dscpMapCodePoint OBJECT-TYPE +-- SYNTAX INTEGER (0..63) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The mapping code point that will replace the source code point in the incoming packet." +-- ::= { dscpMappingEntry 2 } + + dscpMapPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The mapping p bits that will replace the source p bits in the incoming packet." + ::= { dscpMappingEntry 3 } + +--- pfchen + dscpPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF DscpPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table contains DSCP mapping configuration for the adsl and ethernet ports." + ::= { dscp 2 } + + dscpPortEntry OBJECT-TYPE + SYNTAX DscpPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dscpPortTable." + INDEX { ifIndex } + ::= { dscpPortTable 1 } + + DscpPortEntry ::= + SEQUENCE { + dscpStatusEnable INTEGER + } + + dscpStatusEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The DSCP port status." + ::= { dscpPortEntry 1 } + +-------------------- +-- Vlan Isolation +-------------------- + + vlanIsolationTable OBJECT-TYPE + SYNTAX SEQUENCE OF VlanIsolationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table contains configuration of isolated VLAN." + ::= { vlanIsolation 1 } + + vlanIsolationEntry OBJECT-TYPE + SYNTAX VlanIsolationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of vlanIsolationTable." + INDEX { dot1qVlanIndex } + ::= { vlanIsolationTable 1 } + + VlanIsolationEntry ::= + SEQUENCE { + vlanIsolationRowStatus INTEGER + } + + vlanIsolationRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table used to create/delete an entry." + ::= { vlanIsolationEntry 1 } + +-------------------- +-- enet MTU +-------------------- + + enetMtuEntry OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Sets the MTU size for layer 2 frame, size from 1526 to 1532, default value is 1526." + ::= { enetMtu 1 } + +-------------------- +-- CFM +-------------------- + +-- cfmLoopbackPortTable + +-- cfmLoopbackPortTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF CfmLoopbackPortEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "A table that contains CFM information." +-- ::= { cfm 1 } +-- +-- cfmLoopbackPortEntry OBJECT-TYPE +-- SYNTAX CfmLoopbackPortEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry in cfmLoopbackPortTable." +-- INDEX { ifIndex } +-- ::= { cfmLoopbackPortTable 1 } +-- +-- CfmLoopbackPortEntry ::= SEQUENCE { +-- cfmLoopbackPortState INTEGER +-- } +-- +-- cfmLoopbackPortState OBJECT-TYPE +-- SYNTAX INTEGER { +-- enable(1), +-- disable(2) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "CFM loopback enable/disable on the port." +-- ::= { cfmLoopbackPortEntry 1 } +-- +-- cfmMIPTable +-- +-- cfmMIPTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF CfmMIPEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { cfm 2 } +-- +-- cfmMIPEntry OBJECT-TYPE +-- SYNTAX CfmMIPEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry in cfmMIPTable." +-- INDEX { cfmLevel, cfmVlanID, cfmPort } +-- ::= { cfmMIPTable 1 } +-- +-- CfmMIPEntry ::= +-- SEQUENCE { +-- cfmLevel INTEGER, +-- cfmVlanID INTEGER, +-- cfmPort INTEGER, +-- cfmMIPRowStatus RowStatus +-- } +-- +-- cfmLevel OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { cfmMIPEntry 1 } +-- +-- cfmVlanID OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { cfmMIPEntry 2 } +-- +-- cfmPort OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { cfmMIPEntry 3 } +-- +-- cfmMIPRowStatus OBJECT-TYPE +-- SYNTAX RowStatus +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { cfmMIPEntry 4 } +-- +-- cfmActionEnableStatus OBJECT-TYPE +-- SYNTAX INTEGER { +-- enable(1), +-- disable(2) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "CFM Action enable status for the CO device" +-- ::= { cfm 3 } + + +-------------------- +-- DHCP Relay +-------------------- + +-- dhcpRelayEnable OBJECT-TYPE +-- SYNTAX INTEGER { +-- auto(1), +-- both(2), +-- disable(3) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Enable/disable DHCP relay Option82 function." +-- ::= { dhcp 1 } + + dhcpRelay82Table OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpRelay82Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains DHCP Relay configuration." + ::= { dhcp 2 } + + dhcpRelay82Entry OBJECT-TYPE + SYNTAX DhcpRelay82Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of DHCP Relay table." + INDEX { dot1qVlanIndex } + ::= { dhcpRelay82Table 1 } + + DhcpRelay82Entry ::= + SEQUENCE { + dhcpRelay82PrimaryServer IpAddress, + dhcpRelay82SecondaryServer IpAddress, + dhcpRelay82ActiveServer INTEGER, + dhcpRelay82Enable INTEGER, + dhcpRelay82Info DisplayString, + dhcpRelay82RelayMode INTEGER, + dhcpRelay82Suboption2Enable INTEGER, + dhcpRelay82Suboption2Info DisplayString, + dhcpRelay82EntryEnable INTEGER, + dhcpRelay82EntryOptionMode INTEGER, + dhcpRelay82VlanIp IpAddress, + dhcpRelay82VlanMask INTEGER, + dhcpRelay82VlanGateway IpAddress, + dhcpRelay82ThirdServer IpAddress, + dhcpRelay82FourthServer IpAddress, + dhcpRelay82FifthServer IpAddress, + dhcpRelay82ServerVid INTEGER + } + + dhcpRelay82PrimaryServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Relay primary server." + ::= { dhcpRelay82Entry 1 } + + dhcpRelay82SecondaryServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Relay secondary server." + ::= { dhcpRelay82Entry 2 } + + dhcpRelay82ActiveServer OBJECT-TYPE + SYNTAX INTEGER { + primary(1), + secondary(2), + third(3), + fourth(4), + fifth(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current active DHCP Relay server." + ::= { dhcpRelay82Entry 3 } + + dhcpRelay82Enable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable/disable DHCP relay and Option82 function." + ::= { dhcpRelay82Entry 4 } + + dhcpRelay82Info OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..23)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "User specific Option82 information." + ::= { dhcpRelay82Entry 5 } + + dhcpRelay82RelayMode OBJECT-TYPE + SYNTAX INTEGER { + auto(1), + all(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DHCP relay mode." + ::= { dhcpRelay82Entry 6 } + + + dhcpRelay82Suboption2Enable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable/disable Option 82 sub-option 2." + ::= { dhcpRelay82Entry 8 } + + dhcpRelay82Suboption2Info OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "User specified information for Option 82 sub-option 2." + ::= { dhcpRelay82Entry 9 } + + dhcpRelay82EntryEnable OBJECT-TYPE + SYNTAX INTEGER { + auto(1), + all(2), + disable(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable/disable DHCP Relay" + ::= { dhcpRelay82Entry 10 } + + dhcpRelay82EntryOptionMode OBJECT-TYPE + SYNTAX INTEGER { + private(1), + tr101(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Option82 format." + ::= { dhcpRelay82Entry 11 } + + dhcpRelay82VlanIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Relay interface for this VLAN." + ::= { dhcpRelay82Entry 12 } + + dhcpRelay82VlanMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The network mask of the DHCP Relay interface for this VLAN." + ::= { dhcpRelay82Entry 13 } + + dhcpRelay82VlanGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The gateway of the DHCP Relay interface for this VLAN." + ::= { dhcpRelay82Entry 14 } + + dhcpRelay82ThirdServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Relay third server." + ::= { dhcpRelay82Entry 15 } + + dhcpRelay82FourthServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Relay fourth server." + ::= { dhcpRelay82Entry 16 } + + + dhcpRelay82FifthServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Relay fifth server." + ::= { dhcpRelay82Entry 17 } + + dhcpRelay82ServerVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The VID of the DHCP Relay server for this VLAN." + ::= { dhcpRelay82Entry 18 } + +-- dhcpRelayOption82Sub1Info OBJECT-TYPE +-- SYNTAX DisplayString (SIZE (0..23)) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "User specific Option82 subOption1 (Agent circuit ID) information." +-- ::= { dhcp 3 } + +-- maxNumOfDhcpRelay82Conf OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "The maximum number of rows that can be created in dhcpRelay82Table." +-- ::= { dhcp 4 } + +-- dhcpRelayOption82Sub1Enable OBJECT-TYPE +-- SYNTAX INTEGER { +-- enable(1), +-- disable(2) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Enable/disable DHCP relay Option82 subOption1 (Agent Circuit ID) function." +-- ::= { dhcp 5 } + +-- dhcpRelayOption82Sub2Info OBJECT-TYPE +-- SYNTAX DisplayString (SIZE (0..23)) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "User specific Option82 subOption2 (Agent Remote ID) information." +-- ::= { dhcp 6 } + +-- dhcpRelayOption82Sub2Enable OBJECT-TYPE +-- SYNTAX INTEGER { +-- enable(1), +-- disable(2) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Enable/disable DHCP relay Option82 subOption2 (Agent Remote ID) function." +-- ::= { dhcp 7 } + +-- dhcpRelayTest + dhcpRelayTest OBJECT IDENTIFIER ::= { dhcp 8 } + + dhcpRelayTestVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting the VID of the test server." + ::= { dhcpRelayTest 1 } + + dhcpRelayTestIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting the IP of the test server." + ::= { dhcpRelayTest 2 } + + dhcpRelayTestOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the object to 1 to test DHCP server." + ::= { dhcpRelayTest 3 } + + dhcpRelayTestStatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display testing server status." + ::= { dhcpRelayTest 4 } + +-- dhcpRelayArp + dhcpRelayArp OBJECT IDENTIFIER ::= { dhcp 9 } + + dhcpRelayArpShowTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpRelayArpShowEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table displays DHCP ARP." + ::= { dhcpRelayArp 1 } + + dhcpRelayArpShowEntry OBJECT-TYPE + SYNTAX DhcpRelayArpShowEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dhcpRelayArpShowTable." + INDEX { dhcpRelayArpShowVid, dhcpRelayArpShowIp } + ::= { dhcpRelayArpShowTable 1 } + + DhcpRelayArpShowEntry ::= + SEQUENCE { + dhcpRelayArpShowVid INTEGER, + dhcpRelayArpShowIp IpAddress, + dhcpRelayArpShowMac PhysAddress + } + + dhcpRelayArpShowVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the VID of the DHCP ARP entry." + ::= { dhcpRelayArpShowEntry 1 } + + dhcpRelayArpShowIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the IP of the DHCP ARP entry." + ::= { dhcpRelayArpShowEntry 2 } + + dhcpRelayArpShowMac OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the MAC of the DHCP ARP entry." + ::= { dhcpRelayArpShowEntry 3 } + + dhcpRelayArpFlushOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the object to 1 to start flushing." + ::= { dhcpRelayArp 2 } + +-------------------- +-- MAC Filter +-------------------- + +-- MAC Filter Port Table + + macFilterPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the status of mac filtering for each port." + ::= { macfilter 1 } + + macFilterPortEntry OBJECT-TYPE + SYNTAX MacFilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in macFilterPortTable." + INDEX { ifIndex } + ::= { macFilterPortTable 1 } + + MacFilterPortEntry ::= + SEQUENCE { + macFilterPortEnable INTEGER, + macFilterPortMacCount INTEGER, + macFilterPortFilterMode INTEGER + } + + macFilterPortEnable OBJECT-TYPE + SYNTAX INTEGER { + enableMacFilter(1), + enableMacCount(2), +-- enableOuiFilter(3), + disable(4), + enableMacFilterAndMacCount(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable MAC filtering for the port." + ::= { macFilterPortEntry 1 } + + macFilterPortMacCount OBJECT-TYPE + SYNTAX INTEGER (1..128) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The total number of MAC addresses allowed for the port." + ::= { macFilterPortEntry 2 } + + macFilterPortFilterMode OBJECT-TYPE + SYNTAX INTEGER { + accept(1), + deny(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The mac filter mode (accept or deny) for the port." + ::= { macFilterPortEntry 3 } + + maxNumOfMacFiltersInSystem OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of mac filters supported in the system." + ::= { macfilter 2 } + + maxNumOfMacFiltersPerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of mac filters supported per port." + ::= { macfilter 3 } + + currNumOfMacFiltersInSystem OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of mac filters in the system." + ::= { macfilter 4 } + +-- MAC Table + + macFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains the mac filter addresses." + ::= { macfilter 5 } + + macFilterEntry OBJECT-TYPE + SYNTAX MacFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of macFilterTable." + INDEX { ifIndex, macFilterAddr } + ::= { macFilterTable 1 } + + MacFilterEntry ::= + SEQUENCE { + macFilterAddr PhysAddress, + macFilterRowStatus RowStatus + } + + macFilterAddr OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The mac address which can pass through or be rejected from the port." + ::= { macFilterEntry 1 } + + macFilterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the entry." + ::= { macFilterEntry 2 } + +-- Batch Set for MAC Filter + + macfilterBatchSet OBJECT IDENTIFIER ::= { macfilter 6 } + + macfilterTarget OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This managed object is used for identify the target on which + the port configuration should be performed. The target is encoded as: + Byte 1: 0, Reserved(chassis) + Byte 2~3: 0, Reserved(slot) + Byte 4: 0, reserved + Byte 5~11:each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc." + ::= { macfilterBatchSet 1 } + + macfilterOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The corresponding bit is set to 1 to start the operation. + The various bit positions are: + BIT 1: enable mac filter + BIT 2: enable mac count filter + BIT 3: disable mac filter + BIT 4: set mac count + BIT 5: disable mac count filter." + ::= { macfilterBatchSet 2 } + + macFilterMacCountForBatchSet OBJECT-TYPE + SYNTAX INTEGER (1..128) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The total number of MAC addresses allowed for a port." + ::= { macfilterBatchSet 3 } + + +-- OUI Filter Table +-- obsoleted since V3.0 at 2009/11/26 by maverick +-- Not used for R3.x and above. + ouiFilterTableOld OBJECT-TYPE + SYNTAX SEQUENCE OF OuiFilterEntryOld + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains the OUI filter addresses." + ::= { macfilter 7 } + + ouiFilterEntryOld OBJECT-TYPE + SYNTAX OuiFilterEntryOld + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of ouiFilterTableOld." + INDEX { ifIndex, ouiFilterAddrOld } + ::= { ouiFilterTableOld 1 } + + OuiFilterEntryOld ::= + SEQUENCE { + ouiFilterAddrOld OCTET STRING, + ouiFilterRowStatusOld RowStatus + } + + ouiFilterAddrOld OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The first three bytes of the mac address which can pass through or be rejected from the port." + ::= { ouiFilterEntryOld 1 } + + ouiFilterRowStatusOld OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the entry." + ::= { ouiFilterEntryOld 2 } + + maxNumOfOuiFiltersPerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of OUI filters supported per port." + ::= { macfilter 8 } + + + ouiFilterPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF OuiFilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the status of oui filtering for each port." + ::= { macfilter 9 } + + ouiFilterPortEntry OBJECT-TYPE + SYNTAX OuiFilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in macFilterPortTable." + INDEX { ifIndex } + ::= { ouiFilterPortTable 1 } + + OuiFilterPortEntry ::= + SEQUENCE { + ouiFilterPortEnable INTEGER, + ouiFilterPortFilterMode INTEGER + } + + + ouiFilterPortEnable OBJECT-TYPE + SYNTAX INTEGER { + enableOuiFilter(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable oui filtering for the port." + ::= { ouiFilterPortEntry 1 } + + + + ouiFilterPortFilterMode OBJECT-TYPE + SYNTAX INTEGER { + accept(1), + deny(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The oui filter mode (accept or deny) for the port." + ::= { ouiFilterPortEntry 2 } + +-- new OUI Filter VLAN + + maxNumOfOuiFiltersInSystem OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of OUI filters supported in system." + ::= { macfilter 10 } + + maxNumOfOuiFiltersPerVlan OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of OUI filters supported per vlan." + ::= { macfilter 11 } + + ouiFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF OuiFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains the OUI filter addresses." + ::= { macfilter 12 } + + ouiFilterEntry OBJECT-TYPE + SYNTAX OuiFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of ouiFilterTable." + INDEX { dot1qVlanIndex, ouiFilterAddr } + ::= { ouiFilterTable 1 } + + OuiFilterEntry ::= + SEQUENCE { + ouiFilterAddr OCTET STRING, + ouiFilterRowStatus RowStatus + } + + ouiFilterAddr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The first three bytes of the mac address which can pass through or be rejected from the vlan." + ::= { ouiFilterEntry 1 } + + ouiFilterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the entry." + ::= { ouiFilterEntry 2 } + + + ouiFilterVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF OuiFilterVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the status of oui filtering for each configured VLAN." + ::= { macfilter 13 } + + ouiFilterVlanEntry OBJECT-TYPE + SYNTAX OuiFilterVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in ouiFilterVlanTable." + INDEX { dot1qVlanIndex } + ::= { ouiFilterVlanTable 1 } + + OuiFilterVlanEntry ::= + SEQUENCE { + ouiFilterVlanEnable INTEGER, + ouiFilterVlanFilterMode INTEGER + } + + + ouiFilterVlanEnable OBJECT-TYPE + SYNTAX INTEGER { + enableOuiFilter(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable oui filtering for the VLAN." + ::= { ouiFilterVlanEntry 1 } + + + + ouiFilterVlanFilterMode OBJECT-TYPE + SYNTAX INTEGER { + accept(1), + deny(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The oui filter mode (accept or deny) for the VLAN." + ::= { ouiFilterVlanEntry 2 } + + +-------------------- +-- DHCP Snoop +-------------------- + +-- dhcpSnoopPortTable + + dhcpSnoopPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpSnoopPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes DHCP snooping enable/disable for each port." + ::= { dhcpSnoop 1 } + + dhcpSnoopPortEntry OBJECT-TYPE + SYNTAX DhcpSnoopPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dhcpSnoopPortTable." + INDEX { ifIndex } + ::= { dhcpSnoopPortTable 1 } + + DhcpSnoopPortEntry ::= + SEQUENCE { + dhcpSnoopEnable INTEGER, + dhcpSnoopMaxcnt INTEGER, + dhcpSnoopSmacverifyEnable INTEGER + } + + dhcpSnoopEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable DHCP snooping for a port." + ::= { dhcpSnoopPortEntry 1 } + + dhcpSnoopMaxcnt OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the max entries of the DHCP ARP table." + ::= { dhcpSnoopPortEntry 2 } + + dhcpSnoopSmacverifyEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable DHCP source MAC verify for a port." + ::= { dhcpSnoopPortEntry 3 } + + +-- dhcpSnoopOperation + + dhcpSnoopTarget OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This managed object is used for identify the target on which + the operation should be performed. The target is encoded as: + Byte 1: the octet specifies a set of eight chassis, chassis 0 through 7 + Byte 2~3: each octet specifies a set of eight slots, with the + first octet specifying slots 1 through 8 and the second + octet specifying slots 9 through 16. + Byte 4: reserved + Byte 5~11:each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc." + ::= { dhcpSnoop 2 } + + dhcpSnoopOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The corresponding bit is set to 1 to start the operation. + The various bit positions are: + BIT 1: DHCP snooping table flush." + ::= { dhcpSnoop 3 } + +-- dhcpStaticTable + + dhcpStaticTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpStaticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table defines DHCP static IP addresses." + ::= { dhcpSnoop 4 } + + dhcpStaticEntry OBJECT-TYPE + SYNTAX DhcpStaticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dhcpStaticTable." + INDEX { ifIndex, dhcpStaticIpAddr } + ::= { dhcpStaticTable 1 } + + DhcpStaticEntry ::= + SEQUENCE { + dhcpStaticIpAddr IpAddress, + dhcpStaticRowStatus RowStatus + } + + dhcpStaticIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address which can pass through the port." + ::= { dhcpStaticEntry 1 } + + dhcpStaticRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table entry." + ::= { dhcpStaticEntry 2 } + + maxNumOfDhcpStaticIp OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of DHCP static IP addresses which can be created for a port." + ::= { dhcpSnoop 5 } + + dhcpSnoopMaxcntMode OBJECT-TYPE + SYNTAX INTEGER { + replace(1), + drop(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "When DHCP snooping table is full, new DHCP lease will replace first one in option 0 or will be dropped in option 1." + ::= { dhcpSnoop 6 } + +-------------------- +-- ACL Rule +-------------------- + +-- aclSetTable + + aclSetTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "aclsetTable." + ::= { acl 1 } + + aclSetEntry OBJECT-TYPE + SYNTAX AclSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of aclSetTable." + INDEX { ifIndex, aclSetVpi, aclSetVci, aclSetProfileName } + ::= { aclSetTable 1 } + + AclSetEntry ::= + SEQUENCE { + aclSetVpi INTEGER, + aclSetVci INTEGER, + aclSetProfileName DisplayString, + aclSetRowStatus RowStatus + } + + aclSetVpi OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI value" + ::= { aclSetEntry 1 } + + aclSetVci OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI value" + ::= { aclSetEntry 2 } + + aclSetProfileName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ACL Profile name" + ::= { aclSetEntry 3 } + + aclSetRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "RowStatus of aclSetEntry" + ::= { aclSetEntry 4 } + +-- aclProfileTable + + aclProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "aclProfileTable." + ::= { acl 2 } + + aclProfileEntry OBJECT-TYPE + SYNTAX AclProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of aclProfileTable." + INDEX { aclProfileRuleName } + ::= { aclProfileTable 1 } + + AclProfileEntry ::= + SEQUENCE { + aclProfileRuleName DisplayString, + aclProfileRuleNumber INTEGER, + aclProfileActionNumber INTEGER, + aclProfileRuleParamMask INTEGER, + aclProfileRuleEtype INTEGER, + aclProfileRuleVid INTEGER, + aclProfileRuleSmac PhysAddress, + aclProfileRuleDmac PhysAddress, + aclProfileRulePriority INTEGER, + aclProfileRuleProtocol INTEGER, + aclProfileRuleSrcIP IpAddress, + aclProfileRuleSrcIPMask INTEGER, + aclProfileRuleDestIP IpAddress, + aclProfileRuleDestIPMask INTEGER, + aclProfileRuleStartTos INTEGER, + aclProfileRuleEndTos INTEGER, + aclProfileRuleSrcStartPort INTEGER, + aclProfileRuleSrcEndPort INTEGER, + aclProfileRuleDestStartPort INTEGER, + aclProfileRuleDestEndPort INTEGER, + aclProfileActionRate INTEGER, + aclProfileActionrvlan INTEGER, + aclProfileActionrpri INTEGER, + aclProfileRowStatus RowStatus + } + + aclProfileRuleName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Profile rule name" + ::= { aclProfileEntry 1 } + + aclProfileRuleNumber OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is for acl profile rule configuration. + etype vlan (1), + etype smac (2), + etype dmac (3), + vlan smac (4), + vlan dmac (5), + smac dmac (6), + vlan priority (7), + etype (8), + vlan (9), + smac (10), + dmac (11), + priority (12), + protocol (13), + {srcip /{|dstip /{|tos {|srcport {|dstport }}}}} (14) " + ::= { aclProfileEntry 2 } + + aclProfileActionNumber OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile action number. + Bit 1: rate + Bit 2: rvlan + Bit 3: rpri + Bit 4: deny + Bit 1, Bit 2 & Bit 3 can multiple selection." + ::= { aclProfileEntry 3 } + + aclProfileRuleParamMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule parameter mask. + BIT 1: srcip / + BIT 2: dstip / + BIT 3: tos + BIT 4: srcport + BIT 5: dstport " + ::= { aclProfileEntry 4 } + + aclProfileRuleEtype OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule etype" + ::= { aclProfileEntry 5 } + + aclProfileRuleVid OBJECT-TYPE + SYNTAX INTEGER (1..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule vid" + ::= { aclProfileEntry 6 } + + aclProfileRuleSmac OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule source MAC" + ::= { aclProfileEntry 7 } + + aclProfileRuleDmac OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule destination MAC" + ::= { aclProfileEntry 8 } + + aclProfileRulePriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule priority" + ::= { aclProfileEntry 9 } + + aclProfileRuleProtocol OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule protocol. + icmp(1),igmp(2),ip(4),tcp(6), + udp(17),gre(47),ospf(89), + other ptype" + ::= { aclProfileEntry 10 } + + aclProfileRuleSrcIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule source IP" + ::= { aclProfileEntry 11 } + + aclProfileRuleSrcIPMask OBJECT-TYPE + SYNTAX INTEGER (0..32) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The subnet mask of source IP mask" + ::= { aclProfileEntry 12 } + + aclProfileRuleDestIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule source IP" + ::= { aclProfileEntry 13 } + + aclProfileRuleDestIPMask OBJECT-TYPE + SYNTAX INTEGER (0..32) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The subnet mask of dest IP mask" + ::= { aclProfileEntry 14 } + + aclProfileRuleStartTos OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule start type of service" + ::= { aclProfileEntry 15 } + + aclProfileRuleEndTos OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule end type of service" + ::= { aclProfileEntry 16 } + + aclProfileRuleSrcStartPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule source start port" + ::= { aclProfileEntry 17 } + + aclProfileRuleSrcEndPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule source end port" + ::= { aclProfileEntry 18 } + + aclProfileRuleDestStartPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule destination start port" + ::= { aclProfileEntry 19 } + + aclProfileRuleDestEndPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule destination end port" + ::= { aclProfileEntry 20 } + + aclProfileActionRate OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile action to replace to this rate" + ::= { aclProfileEntry 21 } + + aclProfileActionrvlan OBJECT-TYPE + SYNTAX INTEGER (1..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile action to replace to this vlan" + ::= { aclProfileEntry 22 } + + aclProfileActionrpri OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile action to replace to this priority" + ::= { aclProfileEntry 23 } + + aclProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The row status of the entry." + ::= { aclProfileEntry 24 } + +-------------------- +-- PPPoE Agent +-------------------- + +-- pppoeAgentTable + + pppoeAgentTable OBJECT-TYPE + SYNTAX SEQUENCE OF PppoeAgentEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains PPPoE DHCP Relay configuration." + ::= { pppoeAgent 1 } + + pppoeAgentEntry OBJECT-TYPE + SYNTAX PppoeAgentEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of pppoeAgentTable." + INDEX { dot1qVlanIndex } + ::= { pppoeAgentTable 1 } + + PppoeAgentEntry ::= + SEQUENCE { + pppoeAgentEnable INTEGER, + pppoeAgentInfo DisplayString, + pppoeAgentRowStatus RowStatus, + pppoeAgentOptionMode INTEGER + } + + pppoeAgentEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable/disable DHCP relay and Option82 function." + ::= { pppoeAgentEntry 1 } + + pppoeAgentInfo OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..23)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "User specific Option82 information." + ::= { pppoeAgentEntry 2 } + + pppoeAgentRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table entry." + ::= { pppoeAgentEntry 3 } + + pppoeAgentOptionMode OBJECT-TYPE + SYNTAX INTEGER { + private(1), + tr101(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Option82 format." + ::= { pppoeAgentEntry 4 } + + maxNumOfPppoeDhcpRelay82Conf OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of rows that can be created in pppoeAgentTable." + ::= { pppoeAgent 2 } + +---------------------------------------- +-- macff +---------------------------------------- + macFfTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains MAC Force Forwarding configuration." + ::= { macff 1 } + + macFfEntry OBJECT-TYPE + SYNTAX MacFfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfTable." + INDEX { macFfIndex } + ::= { macFfTable 1 } + + MacFfEntry ::= + SEQUENCE { + macFfIndex INTEGER, + macFfVid INTEGER, + macFfArIP IpAddress, +-- macFfArMask INTEGER, + macFfSrcIP IpAddress, + macFfSrcMask INTEGER, + macFfRowStatus RowStatus + } + + macFfIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of the MACFF." + ::= { macFfEntry 1 } + + macFfVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The VLAN-ID refering to this AR/AS." + ::= { macFfEntry 2 } + + + macFfArIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IP of this AR/AS" + ::= { macFfEntry 3 } + + macFfSrcIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source IP address of the MACFF." + ::= { macFfEntry 4 } + + macFfSrcMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The subnet mask of source IP mask." + ::= { macFfEntry 5 } + + + macFfRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the MacFfEntry entry." + ::= { macFfEntry 6 } + + + macFfArpFlush OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the object to 1 to flush mac table." + ::= { macff 3 } + + maxNumOfMacFfVlanInSystem OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of macff Vlans supported in the system." + ::= { macff 4 } + + macFfVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains MAC Force Forwarding Vlan configuration." + ::= { macff 5 } + + macFfVlanEntry OBJECT-TYPE + SYNTAX MacFfVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfVlanTable." + INDEX { dot1qVlanIndex } + ::= { macFfVlanTable 1 } + + MacFfVlanEntry ::= + SEQUENCE { + macFfVlanRowstatus INTEGER, + macFfVlanUnknownUnicast INTEGER + } + + macFfVlanRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table used to create/delete an entry." + ::= { macFfVlanEntry 1 } + + macFfVlanUnknownUnicast OBJECT-TYPE + SYNTAX INTEGER { + flood(1), + drop(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Setting downstream unknown uni-cast packet on macff vlan to flooding or dropping." + ::= { macFfVlanEntry 2 } + + macFfStaticIPTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfStaticIPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + ::= { macff 6 } + + macFfStaticIPEntry OBJECT-TYPE + SYNTAX MacFfStaticIPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfTable." + INDEX { macFfStaticIPPort, macFfStaticIPVid, macFfstaticIP , macFfStaticIPMask} + ::= { macFfStaticIPTable 1 } + + MacFfStaticIPEntry ::= + SEQUENCE { + macFfStaticIPPort INTEGER, + macFfStaticIPVid INTEGER, + macFfstaticIP IpAddress, + macFfStaticIPMask INTEGER, + macFfStaticIPRowStatus RowStatus + } + + macFfStaticIPPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The port number, 1 ~ 48." + ::= { macFfStaticIPEntry 1 } + + macFfStaticIPVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + + STATUS current + DESCRIPTION + "VLAN ID of the IP range, 1 ~ 4094, the vid should be enable the MACFF function first." + ::= { macFfStaticIPEntry 2 } + + + macFfstaticIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + + STATUS current + DESCRIPTION + "The specified IP range." + ::= { macFfStaticIPEntry 3 } + + macFfStaticIPMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + + STATUS current + DESCRIPTION + "Mask_bits is 24 .. 32." + ::= { macFfStaticIPEntry 4 } + + + macFfStaticIPRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status used to configure the table entry." + ::= { macFfStaticIPEntry 5 } + +---------------------------------------- +-- sys +---------------------------------------- + accessCtrl OBJECT IDENTIFIER ::= { sys 5 } + extAlarm OBJECT IDENTIFIER ::= { sys 8 } + user OBJECT IDENTIFIER ::= { sys 9 } + usbCastCtrl OBJECT IDENTIFIER ::= { sys 10} + dsbCastCtrl OBJECT IDENTIFIER ::= { sys 11} + + + + stdioTimeout OBJECT-TYPE + SYNTAX INTEGER (0..300) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the CLI/TELNET/WEB Session timeout, 0, or 1~300 minutes, 0 => disable." + ::= { sys 12 } + + isConfigChanged OBJECT-TYPE + SYNTAX INTEGER { + yes(1), + no(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If system configuration has been changed." + ::= { sys 13 } + + fwUpgrade OBJECT IDENTIFIER ::= {sys 14} + delayedReboot OBJECT IDENTIFIER ::= {sys 15} +-------------------- +-- Access Control +-------------------- +-- Secured Client Table + + securedClientTable OBJECT-TYPE + SYNTAX SEQUENCE OF SecuredClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about secured clients." + ::= { accessCtrl 2 } + + securedClientEntry OBJECT-TYPE + SYNTAX SecuredClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of secured client entry." + INDEX { securedClientIndex } + ::= { securedClientTable 1 } + + SecuredClientEntry ::= + SEQUENCE { + securedClientIndex INTEGER, + securedClientStartIp IpAddress, + securedClientEndIp IpAddress, + securedClientService INTEGER, + securedClientEnable INTEGER + } + + securedClientIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of the entry." + ::= { securedClientEntry 1 } + + securedClientStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The starting IP address of the secured client set." + ::= { securedClientEntry 2 } + + securedClientEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ending IP address of the secured client set." + ::= { securedClientEntry 3 } + + securedClientService OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Each bit corresponds to a service. The bit is set to 1 if the + service is enabled, and set to 0 if the service is disabled. + The various bit positions are: + BIT 1: telnet + BIT 2: ftp + BIT 3: web + BIT 4: icmp + BIT 5: not support + BIT 6: snmp." + ::= { securedClientEntry 4 } + + securedClientEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable the entry." + ::= { securedClientEntry 5 } + + +-------------------- +-- extAlarm +-------------------- + + extAlarmTable OBJECT-TYPE + SYNTAX SEQUENCE OF ExtAlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains external alarm information." + ::= { extAlarm 1 } + + extAlarmEntry OBJECT-TYPE + SYNTAX ExtAlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of external alarm table." + INDEX { extAlarmIndex } + ::= { extAlarmTable 1 } + + ExtAlarmEntry ::= + SEQUENCE { + extAlarmIndex INTEGER, + extAlarmname OCTET STRING, + extAlarmstatus OCTET STRING, + extAlarmTriggeredMode INTEGER + } + + extAlarmIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of the entry." + ::= { extAlarmEntry 1 } + + extAlarmname OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The external alarm name." + ::= { extAlarmEntry 2 } + + extAlarmstatus OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Dispaly 'Normal' or 'Alarm' string" + ::= { extAlarmEntry 3 } + + extAlarmTriggeredMode OBJECT-TYPE + SYNTAX INTEGER { + closeAlarm(1), + openAlarm(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The external alarm triggered mode." + ::= { extAlarmEntry 4 } + +-------------------- +-- User Management +-------------------- + + userAuthMode OBJECT-TYPE + SYNTAX INTEGER { + local(1), + radius(2), + localThenRadius(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "User authentication procsssing mode." + ::= { user 1 } + + userAuthServerIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the authentication server." + ::= { user 2 } + + userAuthServerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port of the authentication server." + ::= { user 3 } + + userAuthServerSecret OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The secret between the authentication server and the NE for authentication process." + ::= { user 4 } + +-- userTable + + userTable OBJECT-TYPE + SYNTAX SEQUENCE OF UserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains user information." + ::= { user 5 } + + userEntry OBJECT-TYPE + SYNTAX UserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of userTable." + INDEX { userName } + ::= { userTable 1 } + + UserEntry ::= + SEQUENCE { + userName DisplayString, + userPassword DisplayString, + userPriviledge INTEGER, + userRowStatus RowStatus + } + + userName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The user name." + ::= { userEntry 1 } + + userPassword OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The user password." + ::= { userEntry 2 } + + userPriviledge OBJECT-TYPE + SYNTAX INTEGER { + high(1), + middle(2), + low(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The user priviledge to decide what operation the user can and cannot do." + ::= { userEntry 3 } + + userRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status used to create or delete a user." + ::= { userEntry 4 } + + userAuthDefaultPriviledge OBJECT-TYPE + SYNTAX INTEGER { + high(1), + middle(2), + low(3), + deny(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The user default priviledge to be assigned when radius authentication succeds + but no user priviledge information(radius service-type) is provided." + ::= { user 6 } + +-------------------- +-- Upstream Broadcast +-------------------- + + usBcastCtrlEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable upstream broadcast control." + ::= { usbCastCtrl 1 } + + usBcastCtrlRate OBJECT-TYPE + SYNTAX INTEGER + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "32~49984 in step of 32kbps" + ::= { usbCastCtrl 2 } + +-------------------- +-- Downstream Broadcast +-------------------- + + dsBcastCtrlEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable downstream broadcast control." + ::= { dsbCastCtrl 1 } + + dsBcastCtrlRate OBJECT-TYPE + SYNTAX INTEGER + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "32~1000000 in step of 32 kbps" + ::= { dsbCastCtrl 2 } + + +-------------------- +-- fwUpgrade +-------------------- + + fwUpgradeVersion OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure the target firmware version that will be upgraded." + ::= { fwUpgrade 1 } + + fwUpgradeCheck OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable firmware upgrade version checking feature." + ::= { fwUpgrade 2 } + + fwUpgradeStatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display current firmware upgrade status." + ::= { fwUpgrade 3 } + +-------------------- +-- delayedReboot +-------------------- + delayedRebootTimer OBJECT-TYPE + SYNTAX INTEGER + UNITS "sec" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "5~1800 secs, 0: reboot immediately." + ::= { delayedReboot 1 } + + delayedRebootRemainingTime OBJECT-TYPE + SYNTAX INTEGER + UNITS "sec" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the remaining time of scheduled reboot." + ::= { delayedReboot 2 } + + delayedRebootCancel OBJECT-TYPE + SYNTAX INTEGER { + cancel(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "cancel the scheduled reboot." + ::= { delayedReboot 3 } + + + +---------------------------------------- +-- statistics +---------------------------------------- + + dhcpStats OBJECT IDENTIFIER ::= { statistics 11 } + paepvcStats OBJECT IDENTIFIER ::= { statistics 12 } + macStats OBJECT IDENTIFIER ::= { statistics 13 } + ipbpvcStats OBJECT IDENTIFIER ::= { statistics 14 } + voipStats OBJECT IDENTIFIER ::= { statistics 15 } + macffStats OBJECT IDENTIFIER ::= { statistics 16 } + enetStats OBJECT IDENTIFIER ::= { statistics 17 } + adslStats OBJECT IDENTIFIER ::= { statistics 18 } +-------------------- +-- IGMP +-------------------- + + igmpQueryCntTotal OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP query messages received." + ::= { statistics 1 } + + igmpReportCntTotal OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP report messages received." + ::= { statistics 2 } + + igmpLeaveCntTotal OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP leave messages received." + ::= { statistics 3 } + + igmpNumOfActiveGroups OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP learned groups." + ::= { statistics 4 } + +-- igmpGroupTable + + igmpGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes igmp group information." + ::= { statistics 5 } + + igmpGroupEntry OBJECT-TYPE + SYNTAX IgmpGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in igmpGroupTable." + INDEX { igmpGroupIp } + ::= { igmpGroupTable 1 } + + IgmpGroupEntry ::= + SEQUENCE { + igmpGroupIp IpAddress, + igmpGroupvid INTEGER, + igmpGroupnumberOfMembers INTEGER, + igmpGroupMemberPorts PortList + + } + + igmpGroupIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "igmp group IP" + ::= { igmpGroupEntry 1 } + + igmpGroupvid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "vlan id" + ::= { igmpGroupEntry 2 } + + igmpGroupnumberOfMembers OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "number Of Members" + + ::= { igmpGroupEntry 3 } + + igmpGroupMemberPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Group Member Ports" + + ::= { igmpGroupEntry 4 } + +-- igmpGroupPortTable + + igmpGroupPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpGroupPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes igmp Group port information." + ::= { statistics 6 } + + igmpGroupPortEntry OBJECT-TYPE + SYNTAX IgmpGroupPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in igmpGroupPortTable." + INDEX { ifIndex , igmpGroupPortIp , igmpGroupPortvid} + ::= { igmpGroupPortTable 1 } + + IgmpGroupPortEntry ::= + SEQUENCE { + igmpGroupPortIp IpAddress, + igmpGroupPortvid INTEGER + } + + igmpGroupPortIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Igmp Group IP" + ::= { igmpGroupPortEntry 1 } + + igmpGroupPortvid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Igmp Group vid" + ::= { igmpGroupPortEntry 2 } + +-- igmpGroupV2Table + + igmpGroupV2Table OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpGroupV2Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that displays IGMP learned group member information." + ::= { statistics 7 } + + igmpGroupV2Entry OBJECT-TYPE + SYNTAX IgmpGroupV2Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of igmpGroupV2Table." + INDEX { igmpGroupV2Vid, igmpGroupV2Ip } + ::= { igmpGroupV2Table 1 } + + IgmpGroupV2Entry ::= + SEQUENCE { + igmpGroupV2Vid VlanIndex, + igmpGroupV2Ip IpAddress, + igmpGroupV2NumOfMembers INTEGER, + igmpGroupV2MemberPorts PortList + } + + igmpGroupV2Vid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IGMP group VLAN ID." + ::= { igmpGroupV2Entry 1 } + + igmpGroupV2Ip OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The multicast IP address." + ::= { igmpGroupV2Entry 2 } + + igmpGroupV2NumOfMembers OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of member ports in the group." + ::= { igmpGroupV2Entry 3 } + + igmpGroupV2MemberPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The member port list of the group." + ::= { igmpGroupV2Entry 4 } + +-- igmpGroupPortV2Table + + igmpGroupPortV2Table OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpGroupPortV2Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that displays IGMP joined groups in this port." + ::= { statistics 8 } + + igmpGroupPortV2Entry OBJECT-TYPE + SYNTAX IgmpGroupPortV2Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of igmpGroupPortV2Table." + INDEX { ifIndex, igmpGroupPortV2Vid, igmpGroupPortV2Ip, igmpGroupPortV2SourceIp } + ::= { igmpGroupPortV2Table 1 } + + IgmpGroupPortV2Entry ::= + SEQUENCE { + igmpGroupPortV2Vid VlanIndex, + igmpGroupPortV2Ip IpAddress, + igmpGroupPortV2SourceIp IpAddress + } + + igmpGroupPortV2Vid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IGMP group VLAN ID." + ::= { igmpGroupPortV2Entry 1 } + + igmpGroupPortV2Ip OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The multicast IP address." + ::= { igmpGroupPortV2Entry 2 } + + igmpGroupPortV2SourceIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The source IP address that joins the IGMP group." + ::= { igmpGroupPortV2Entry 3 } + +-- igmpPortCtrlPduTable + + igmpPortCtrlPduTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpPortCtrlPduEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that displays IGMP related counter values in this port." + ::= { statistics 9 } + + igmpPortCtrlPduEntry OBJECT-TYPE + SYNTAX IgmpPortCtrlPduEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of igmpPortCtrlPduTable." + INDEX { ifIndex } + ::= { igmpPortCtrlPduTable 1 } + + IgmpPortCtrlPduEntry ::= + SEQUENCE { + igmpPortCtrlPduQueryCnt Counter32, + igmpPortCtrlPduReportCnt Counter32, + igmpPortCtrlPduLeaveCnt Counter32, + igmpPortNumOfActiveGroups INTEGER, + igmpPortCtrlAuditLeaveCnt Counter32 + } + + igmpPortCtrlPduQueryCnt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP query messages received in this port." + ::= { igmpPortCtrlPduEntry 1 } + + igmpPortCtrlPduReportCnt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP report messages received in this port." + ::= { igmpPortCtrlPduEntry 2 } + + igmpPortCtrlPduLeaveCnt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP leave messages received in this port." + ::= { igmpPortCtrlPduEntry 3 } + + igmpPortNumOfActiveGroups OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of active IGMP groups in this port." + ::= { igmpPortCtrlPduEntry 4 } + + igmpPortCtrlAuditLeaveCnt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of groups left by audit query." + ::= { igmpPortCtrlPduEntry 5 } +-------------------- +-- DHCP +-------------------- + +-- dhcpSnoopIpTable + + dhcpSnoopIpTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpSnoopIpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table shows the IP addresses and netmasks offered by the DHCP server." + ::= { dhcpStats 1 } + + dhcpSnoopIpEntry OBJECT-TYPE + SYNTAX DhcpSnoopIpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dhcpSnoopIpTable." + INDEX { ifIndex, dhcpSnoopIp } + ::= { dhcpSnoopIpTable 1 } + + DhcpSnoopIpEntry ::= + SEQUENCE { + dhcpSnoopIp IpAddress, + dhcpSnoopMac PhysAddress, + dhcpSnoopVid VlanIndex, + dhcpSnoopMask INTEGER, + dhcpSnoopGateway IpAddress, + dhcpSnoopRouteMap OCTET STRING + } + + dhcpSnoopIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The snooped IP address." + ::= { dhcpSnoopIpEntry 1 } + + dhcpSnoopMac OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The snooped MAC address." + ::= { dhcpSnoopIpEntry 2 } + + dhcpSnoopVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The snooped VLAN ID." + ::= { dhcpSnoopIpEntry 3 } + + dhcpSnoopMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The snooped IP mask" + ::= { dhcpSnoopIpEntry 4 } + + dhcpSnoopGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The snooped Gateway." + ::= { dhcpSnoopIpEntry 5 } + + dhcpSnoopRouteMap OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The refrence bit map of the dhcp route" + ::= { dhcpSnoopIpEntry 6 } + +-- dhcpSnoopCounterTable + + dhcpSnoopCounterTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpSnoopCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table shows the DHCP statistics." + ::= { dhcpStats 2 } + + dhcpSnoopCounterEntry OBJECT-TYPE + SYNTAX DhcpSnoopCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dhcpSnoopCounterTable." + INDEX { ifIndex } + ::= { dhcpSnoopCounterTable 1 } + + DhcpSnoopCounterEntry ::= + SEQUENCE { + dhcpDiscovery Counter64, + dhcpOffer Counter64, + dhcpRequest Counter64, + dhcpAck Counter64, + dhcpAckBySnoopFull Counter64 + } + + dhcpDiscovery OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received DHCP server discovery packets." + ::= { dhcpSnoopCounterEntry 1 } + + dhcpOffer OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received DHCP server offer packets." + ::= { dhcpSnoopCounterEntry 2 } + + dhcpRequest OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received DHCP IP request packets." + ::= { dhcpSnoopCounterEntry 3 } + + dhcpAck OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received DHCP IP acknowledge packets." + ::= { dhcpSnoopCounterEntry 4 } + + dhcpAckBySnoopFull OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received DHCP IP acknowledge packets that replace the oldest snooping + entry in snooping table due to table full." + ::= { dhcpSnoopCounterEntry 5 } + + dhcpRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains dhcp route information." + ::= { dhcpStats 3 } + + dhcpRouteEntry OBJECT-TYPE + SYNTAX DhcpRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dhcpRouteTable." + INDEX { dhcpRouteIndex } + ::= { dhcpRouteTable 1 } + + DhcpRouteEntry ::= + SEQUENCE { + dhcpRouteIndex INTEGER, + dhcpRouteVid VlanIndex, + dhcpRouteIP IpAddress, + dhcpRouteMask INTEGER, + dhcpRouteGwIP IpAddress + } + + dhcpRouteIndex OBJECT-TYPE + SYNTAX INTEGER (1..24) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { dhcpRouteEntry 1 } + + dhcpRouteVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The VLAN-ID refering to this dhcp route." + ::= { dhcpRouteEntry 2 } + + + dhcpRouteIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP of this dhcp route" + ::= { dhcpRouteEntry 3 } + + dhcpRouteMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The subnet mask of source IP mask." + ::= { dhcpRouteEntry 4 } + + dhcpRouteGwIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The gateway IP address." + ::= { dhcpRouteEntry 5 } + +-------------------- +-- PAE PVC +-------------------- + +-- paepvcSessionTable + + paepvcSessionTable OBJECT-TYPE + SYNTAX SEQUENCE OF PaepvcSessionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table shows the paepvc session statistics." + ::= { paepvcStats 1 } + + paepvcSessionEntry OBJECT-TYPE + SYNTAX PaepvcSessionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of paepvcSessionTable." + INDEX { ifIndex , paepvcSessionVpi, paepvcSessionVci } + ::= { paepvcSessionTable 1 } + + PaepvcSessionEntry ::= + SEQUENCE { + paepvcSessionVpi INTEGER, + paepvcSessionVci INTEGER, + paepvcSessionState INTEGER, + paepvcSessionId INTEGER, + paepvcSessionUptime Unsigned32, + paepvcSessionacname DisplayString, + paepvcSessionsrvcname DisplayString + } + + paepvcSessionVpi OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC VPI." + ::= { paepvcSessionEntry 1 } + + paepvcSessionVci OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC VCI." + ::= { paepvcSessionEntry 2 } + + paepvcSessionState OBJECT-TYPE + SYNTAX INTEGER { + down(1), + pppoe(2), + ppp(3), + up(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC status." + ::= { paepvcSessionEntry 3 } + + paepvcSessionId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC session ID." + ::= { paepvcSessionEntry 4 } + + paepvcSessionUptime OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "second" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC session uptime." + ::= { paepvcSessionEntry 5 } + + paepvcSessionacname OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Access concentrator name." + ::= { paepvcSessionEntry 6 } + + paepvcSessionsrvcname OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Service name." + ::= { paepvcSessionEntry 7 } + +-- paepvcCountTable + + paepvcCountTable OBJECT-TYPE + SYNTAX SEQUENCE OF PaepvcCountEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table shows the paepvc counters." + ::= { paepvcStats 2 } + + paepvcCountEntry OBJECT-TYPE + SYNTAX PaepvcCountEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of paepvcCountTable." + INDEX { ifIndex , paepvcCountVpi, paepvcCountVci } + ::= { paepvcCountTable 1 } + + PaepvcCountEntry ::= + SEQUENCE { + paepvcCountVpi INTEGER, + paepvcCountVci INTEGER, + paepvcCountPppLcpCfgReqRx Unsigned32, + paepvcCountPppLcpEchoReqRx Unsigned32, + paepvcCountPppLcpEchoReplyRx Unsigned32, + paepvcCountPadiTx Unsigned32, + paepvcCountPadoRx Unsigned32, + paepvcCountPadrTx Unsigned32, + paepvcCountPadsRx Unsigned32, + paepvcCountPadtTx Unsigned32, + paepvcCountPadtRx Unsigned32, + paepvcCountSrvcnameErrRx Unsigned32, + paepvcCountAcSystemErrRx Unsigned32, + paepvcCountGenericErrTx Unsigned32, + paepvcCountGenericErrRx Unsigned32 + } + + + paepvcCountVpi OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC VPI." + ::= { paepvcCountEntry 1 } + + paepvcCountVci OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC VCI." + ::= { paepvcCountEntry 2 } + + paepvcCountPppLcpCfgReqRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ppp lcp config-request received." + ::= { paepvcCountEntry 3 } + + paepvcCountPppLcpEchoReqRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ppp lcp echo-request received." + ::= { paepvcCountEntry 4 } + + paepvcCountPppLcpEchoReplyRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ppp lcp echo-reply received." + ::= { paepvcCountEntry 5 } + + paepvcCountPadiTx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe padi transfered" + ::= { paepvcCountEntry 6 } + + paepvcCountPadoRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe pado received" + ::= { paepvcCountEntry 7 } + + paepvcCountPadrTx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe padr transfered" + ::= { paepvcCountEntry 8 } + + paepvcCountPadsRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe pads received" + ::= { paepvcCountEntry 9 } + + paepvcCountPadtTx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe padt transfered" + ::= { paepvcCountEntry 10 } + + paepvcCountPadtRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe padt received" + ::= { paepvcCountEntry 11 } + + paepvcCountSrvcnameErrRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe service name error received" + ::= { paepvcCountEntry 12 } + + paepvcCountAcSystemErrRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe access concentrator name error received" + ::= { paepvcCountEntry 13 } + + paepvcCountGenericErrTx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe generic error transfered" + ::= { paepvcCountEntry 14 } + + paepvcCountGenericErrRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe generic error received" + ::= { paepvcCountEntry 15 } + +-------------------- +-- MAC +-------------------- + + macDisplayTarget OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This managed object is a filter used for identify the target from which + the MAC addresses are learned in macTable. The target could be: + 99: all ports in the system + 98: all subscriber ports + 97: all Ethernet ports + + IfIndex is used for identifying subscriber ports and Ethernet Ports(e.g. 1 ~ 50)." + ::= { macStats 1 } + +-- macTable + + macTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacEntry + MAX-ACCESS not-accessible + STATUS current + 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." + ::= { macStats 2 } + + macEntry OBJECT-TYPE + SYNTAX MacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macTable." + INDEX { macAddress } + ::= { macTable 1 } + + MacEntry ::= + SEQUENCE { + macAddress MacAddress, + macPort INTEGER, + macStatus INTEGER + } + + macAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unicast MAC address for which the bridge has + forwarding and/or filtering information." + ::= { macEntry 1 } + + macPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port from which the mac address has been learned." + ::= { macEntry 2 } + + macStatus 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." + ::= { macEntry 3 } + +-------------------- +-- ipbpvc +-------------------- + +-- arpproxyTable + + arpproxyTable OBJECT-TYPE + SYNTAX SEQUENCE OF ArpproxyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display ARP table. This table is supported by R3.00 and later versions." + ::= { ipbpvcStats 1 } + + arpproxyEntry OBJECT-TYPE + SYNTAX ArpproxyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of arpproxyTable." + INDEX { ipbpvcDomainName, arpproxyIp } + ::= { arpproxyTable 1 } + + ArpproxyEntry ::= + SEQUENCE { + arpproxyIp IpAddress, + arpproxyMac MacAddress, + arpproxyIfIndex INTEGER, + arpproxyVpi INTEGER, + arpproxyVci INTEGER, + arpproxyInterfaceIp IpAddress, + arpproxyInterfaceMask INTEGER, + arpproxyInterfaceVid VlanIndex, + arpproxyDhcpIp INTEGER, + arpproxyType INTEGER + } + + arpproxyIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { arpproxyEntry 1 } + + arpproxyMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { arpproxyEntry 2 } + + arpproxyIfIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { arpproxyEntry 3 } + + arpproxyVpi OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { arpproxyEntry 4 } + + arpproxyVci OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { arpproxyEntry 5 } + + arpproxyInterfaceIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { arpproxyEntry 6 } + + arpproxyInterfaceMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { arpproxyEntry 7 } + + arpproxyInterfaceVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { arpproxyEntry 8 } + + arpproxyDhcpIp OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { arpproxyEntry 9 } + + arpproxyType OBJECT-TYPE + SYNTAX INTEGER { + upstream(1), + downstream(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { arpproxyEntry 10 } + +-- ipbpvcIfDynamicTable + + ipbpvcIfDynamicTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpbpvcIfDynamicEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display runtime interfaces. This table is supported by R3.00 and later versions." + ::= { ipbpvcStats 2 } + + ipbpvcIfDynamicEntry OBJECT-TYPE + SYNTAX IpbpvcIfDynamicEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of ipbpvcIfDynamicTable." + INDEX { ipbpvcDomainName, ipbpvcIfDynamicIp, ipbpvcIfDynamicMask, ipbpvcDomainVlanId } + ::= { ipbpvcIfDynamicTable 1 } + + IpbpvcIfDynamicEntry ::= + SEQUENCE { + ipbpvcIfDynamicIp IpAddress, + ipbpvcIfDynamicMask INTEGER, + ipbpvcIfDynamicIfIndex INTEGER, + ipbpvcIfDynamicVpi INTEGER, + ipbpvcIfDynamicVci INTEGER + } + + ipbpvcIfDynamicIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { ipbpvcIfDynamicEntry 1 } + + ipbpvcIfDynamicMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { ipbpvcIfDynamicEntry 2 } + + ipbpvcIfDynamicIfIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { ipbpvcIfDynamicEntry 3 } + + ipbpvcIfDynamicVpi OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { ipbpvcIfDynamicEntry 4 } + + ipbpvcIfDynamicVci OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { ipbpvcIfDynamicEntry 5 } + +-- ipbpvcRouteDynamicTable + + ipbpvcRouteDynamicTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpbpvcRouteDynamicEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display runtime routing table. This table is supported by R3.00 and later versions." + ::= { ipbpvcStats 3 } + + ipbpvcRouteDynamicEntry OBJECT-TYPE + SYNTAX IpbpvcRouteDynamicEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of ipbpvcRouteDynamicTable." + INDEX { ipbpvcDomainName, ipbpvcRouteDynamicType, ipbpvcRouteDynamicIp, ipbpvcRouteDynamicMask } + ::= { ipbpvcRouteDynamicTable 1 } + + IpbpvcRouteDynamicEntry ::= + SEQUENCE { + ipbpvcRouteDynamicType INTEGER, + ipbpvcRouteDynamicIp IpAddress, + ipbpvcRouteDynamicMask INTEGER, + ipbpvcRouteDynamicNextHop IpAddress, + ipbpvcRouteDynamicMetric INTEGER, + ipbpvcRouteDynamicPriority INTEGER + } + + ipbpvcRouteDynamicType OBJECT-TYPE + SYNTAX INTEGER { + upstream(1), + downstream(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { ipbpvcRouteDynamicEntry 1 } + + ipbpvcRouteDynamicIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { ipbpvcRouteDynamicEntry 2 } + + ipbpvcRouteDynamicMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { ipbpvcRouteDynamicEntry 3 } + + ipbpvcRouteDynamicNextHop OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { ipbpvcRouteDynamicEntry 4 } + + ipbpvcRouteDynamicMetric OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { ipbpvcRouteDynamicEntry 5 } + + ipbpvcRouteDynamicPriority OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { ipbpvcRouteDynamicEntry 6 } + +------------------------------ +-- enetStats +------------------------------ + + enetSfpInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnetSfpInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes sfp info of enet port." + ::= { enetStats 2 } + + enetSfpInfoEntry OBJECT-TYPE + SYNTAX EnetSfpInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in enetSfpInfoTable." + INDEX {ifIndex} + ::= { enetSfpInfoTable 1 } + + EnetSfpInfoEntry ::= + SEQUENCE { + enetSfpInfoTxpower INTEGER, + enetSfpInfoRxpower INTEGER, + enetSfpInfoTemperature INTEGER, + enetSfpInfoTxBias INTEGER, + enetSfpInfoVoltage INTEGER + } + + enetSfpInfoTxpower OBJECT-TYPE + SYNTAX INTEGER (1..65535) + UNITS "10^-4 mW" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured Tx Output Power." + ::= { enetSfpInfoEntry 1 } + + enetSfpInfoRxpower OBJECT-TYPE + SYNTAX INTEGER (1..65535) + UNITS "10^-4 C" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured Rx Output Power." + ::= { enetSfpInfoEntry 2 } + + enetSfpInfoTemperature OBJECT-TYPE + SYNTAX INTEGER (-1280000..1280000) + UNITS "10^-4 C" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured temperature." + ::= { enetSfpInfoEntry 3 } + + enetSfpInfoTxBias OBJECT-TYPE + SYNTAX INTEGER (0..131000) + UNITS "10^-3 mA" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured tx bias." + ::= { enetSfpInfoEntry 4 } + + enetSfpInfoVoltage OBJECT-TYPE + SYNTAX INTEGER (0..65000) + UNITS "0.1mV" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured voltage." + ::= { enetSfpInfoEntry 5 } + +------------------------------ +-- adslStats +------------------------------ + + adslPortUtilTable OBJECT-TYPE + SYNTAX SEQUENCE OF AdslPortUtilEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes adsl port utilization." + ::= { adslStats 1 } + + adslPortUtilEntry OBJECT-TYPE + SYNTAX AdslPortUtilEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in adslPortUtilEntry." + INDEX {ifIndex} + ::= { adslPortUtilTable 1 } + + AdslPortUtilEntry ::= + SEQUENCE { + adslPortUtilTx INTEGER, + adslPortUtilRx INTEGER + } + + adslPortUtilTx OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measure adsl port's tx utilization." + ::= { adslPortUtilEntry 1 } + + adslPortUtilRx OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measure adsl port's rx utilization." + ::= { adslPortUtilEntry 2 } + +---------------------------------------- +-- macFfStats +---------------------------------------- + macFfStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains MAC Force Forwarding static configuration and dynamic information." + ::= { macffStats 1 } + + macFfStatsEntry OBJECT-TYPE + SYNTAX MacFfStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfStatsTable." + INDEX { macFfStatsIndex } + ::= { macFfStatsTable 1 } + + MacFfStatsEntry ::= + SEQUENCE { + macFfStatsIndex INTEGER, + macFfStatsVid VlanIndex, + macFfStatsArIP IpAddress, + macFfStatsSrcIP IpAddress, + macFfStatsSrcMask INTEGER + } + + macFfStatsIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of the MACFF." + ::= { macFfStatsEntry 1 } + + macFfStatsVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The VLAN-ID refering to this AR/AS." + ::= { macFfStatsEntry 2 } + + + macFfStatsArIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP of this AR/AS" + ::= { macFfStatsEntry 3 } + + macFfStatsSrcIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The source IP address of the MACFF." + ::= { macFfStatsEntry 4 } + + macFfStatsSrcMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The subnet mask of source IP mask." + ::= { macFfStatsEntry 5 } + + macFfArpTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfArpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains MAC Force Forwarding ARP information." + ::= { macffStats 2 } + + macFfArpEntry OBJECT-TYPE + SYNTAX MacFfArpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfArpTable." + INDEX { macFfArpVid, macFfArpIP} + ::= { macFfArpTable 1 } + + MacFfArpEntry ::= + SEQUENCE { + macFfArpVid VlanIndex, + macFfArpIP IpAddress, + macFfArpPort INTEGER, + macFfArpMac PhysAddress + } + + macFfArpVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The VLAN-ID refering to this AR/AS." + ::= { macFfArpEntry 1 } + + macFfArpIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP of this AR/AS." + ::= { macFfArpEntry 2 } + + + macFfArpPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Port of this AR/AS." + ::= { macFfArpEntry 3 } + + macFfArpMac OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MAC address of the AR or AS." + ::= { macFfArpEntry 4 } + + macFfArpCounterTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfArpCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains MAC Force Forwarding ARP counter information." + ::= { macffStats 3 } + + macFfArpCounterEntry OBJECT-TYPE + SYNTAX MacFfArpCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfArpCounterTable." + INDEX { ifIndex } + ::= { macFfArpCounterTable 1 } + + MacFfArpCounterEntry ::= + SEQUENCE { + macFfArpCounterRequestTX Counter32, + macFfArpCounterRequestRX Counter32, + macFfArpCounterRequestRXDrop Counter32, + macFfArpCounterReplyTX Counter32, + macFfArpCounterReplyRX Counter32, + macFfArpCounterReplyRXDrop Counter32 + } + + macFfArpCounterRequestTX OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ARP Request TX counter." + ::= { macFfArpCounterEntry 1 } + + macFfArpCounterRequestRX OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ARP Request RX counter." + ::= { macFfArpCounterEntry 2 } + + macFfArpCounterRequestRXDrop OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ARP Request RX drop counter." + ::= { macFfArpCounterEntry 3 } + + macFfArpCounterReplyTX OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ARP Reply TX counter." + ::= { macFfArpCounterEntry 4 } + + macFfArpCounterReplyRX OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ARP Reply RX counter." + ::= { macFfArpCounterEntry 5 } + + macFfArpCounterReplyRXDrop OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ARP Reply RX drop counter." + ::= { macFfArpCounterEntry 6 } + +-------------------- +-- VoIP +-------------------- + +-- voipLineStatusTable + + voipLineStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipLineStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table displays VoIP line status." + ::= { voipStats 1 } + + voipLineStatusEntry OBJECT-TYPE + SYNTAX VoipLineStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of voipLineStatusTable." + INDEX { ifIndex } + ::= { voipLineStatusTable 1 } + + VoipLineStatusEntry ::= + SEQUENCE { + voipLineStatusPhoneStatus INTEGER, + voipLineStatusServiceStatus INTEGER + } + + voipLineStatusPhoneStatus OBJECT-TYPE + SYNTAX INTEGER { + disabled(1), + onHook(2), + offHook(3), + ringing(4), + powerCutDown(5), + testing(6), + fault(7), + bad(8), + uninitialized(9) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Phone status of the line." + ::= { voipLineStatusEntry 1 } + + voipLineStatusServiceStatus OBJECT-TYPE + SYNTAX INTEGER { + disabled(1), + outOfService(2), + idle(3), + waitingForDialing(4), + dialingOut(5), + ringing(6), + conversationCaller(7), + conversationCallee(8), + faxModemCaller(9), + faxModemCallee(10), + waitingForOnHook(11), + dialingTimeout(12), + alertingOffHook(13), + powerCutDown(14) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Service status of the line." + ::= { voipLineStatusEntry 2 } + +-- voipLineInfoTable + + voipLineInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipLineInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table displays VoIP line information." + ::= { voipStats 2 } + + voipLineInfoEntry OBJECT-TYPE + SYNTAX VoipLineInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of voipLineInfoTable." + INDEX { ifIndex } + ::= { voipLineInfoTable 1 } + + VoipLineInfoEntry ::= + SEQUENCE { + voipLineInfoSipLocalUri OCTET STRING, + voipLineInfoSipRemoteUri OCTET STRING, + voipLineInfoRtpTxCodecType OCTET STRING, + voipLineInfoRtpRxCodecType OCTET STRING, + voipLineInfoRtpTxPt INTEGER, + voipLineInfoRtpRxPt INTEGER, + voipLineInfoRtpLocalIp IpAddress, + voipLineInfoRtpRemoteIp IpAddress, + voipLineInfoRtpLocalPort INTEGER, + voipLineInfoRtpRemotePort INTEGER, + voipLineInfoSipLocalUri2 OCTET STRING, + voipLineInfoSipRemoteUri2 OCTET STRING, + voipLineInfoRtpTxCodecType2 OCTET STRING, + voipLineInfoRtpRxCodecType2 OCTET STRING, + voipLineInfoRtpTxPt2 INTEGER, + voipLineInfoRtpRxPt2 INTEGER, + voipLineInfoRtpLocalIp2 IpAddress, + voipLineInfoRtpRemoteIp2 IpAddress, + voipLineInfoRtpLocalPort2 INTEGER, + voipLineInfoRtpRemotePort2 INTEGER + } + + voipLineInfoSipLocalUri OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 1 } + + voipLineInfoSipRemoteUri OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 2 } + + voipLineInfoRtpTxCodecType OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 3 } + + voipLineInfoRtpRxCodecType OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 4 } + + voipLineInfoRtpTxPt OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 5 } + + voipLineInfoRtpRxPt OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 6 } + + voipLineInfoRtpLocalIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 7 } + + voipLineInfoRtpRemoteIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 8 } + + voipLineInfoRtpLocalPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 9 } + + voipLineInfoRtpRemotePort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 10 } + + voipLineInfoSipLocalUri2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 11 } + + voipLineInfoSipRemoteUri2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 12 } + + voipLineInfoRtpTxCodecType2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 13 } + + voipLineInfoRtpRxCodecType2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 14 } + + voipLineInfoRtpTxPt2 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 15 } + + voipLineInfoRtpRxPt2 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 16 } + + voipLineInfoRtpLocalIp2 OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 17 } + + voipLineInfoRtpRemoteIp2 OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 18 } + + voipLineInfoRtpLocalPort2 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 19 } + + voipLineInfoRtpRemotePort2 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 20 } + + +-- voipH248Status + + voipH248Status OBJECT IDENTIFIER ::= { voipStats 3 } + + voipH248StatusMgName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MG name." + ::= { voipH248Status 1 } + + voipH248StatusMgStatus OBJECT-TYPE + SYNTAX INTEGER { + disabled(1), + registering(2), + registered(3), + unregistering(4), + unregistered(5), + disconnected(6), + disabled(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Mg connection status." + ::= { voipH248Status 2 } + +-- voipActiveCallStat + voipActiveCallStat OBJECT IDENTIFIER ::= { voipStats 4 } + + voipActiveCallStatCurrentActiveCalls OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of current active calls." + ::= { voipActiveCallStat 1 } + + voipActiveCallStatFailAttempts OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Failed attempts to setup active call." + ::= { voipActiveCallStat 2 } + +---------------------------------------- +-- clear +---------------------------------------- + + counterClearTarget OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This managed object is used for identify the target on which + the counter would be cleared. The target is encoded as: + Byte 1: reserved + Byte 2~3: reserved + Byte 4: reserved + Byte 5~11:each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc." + ::= { clear 1 } + + counterClearOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The corresponding bit is set to 1 to start the operation. + The various bit positions are: + BIT 1: clear interface counters + BIT 2: clear pvc packet counters + BIT 3: clear port ATM counters + BIT 4: clear pvc ATM counters + BIT 5: clear DHCP counters + BIT 6: clear IGMP counters + BIT 7: clear IGMP port counters + BIT 8: clear MACFF ARP counters + BIT 9: clear current lineperf + BIT 10: clear current 15 minute lineperf + BIT 11: clear current 1 day lineperf" + ::= { clear 2 } + + counterClearVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VPI of the pvc whose counters would be cleared." + ::= { clear 3 } + + counterClearVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VCI of the pvc whose counters would be cleared." + ::= { clear 4 } + + +---------------------------------------- +-- voip +---------------------------------------- + + voipArp OBJECT IDENTIFIER ::= { voip 1 } + voipSip OBJECT IDENTIFIER ::= { voip 2 } + voipIp OBJECT IDENTIFIER ::= { voip 3 } + voipDns OBJECT IDENTIFIER ::= { voip 4 } + voipH248 OBJECT IDENTIFIER ::= { voip 10 } + voipRing OBJECT IDENTIFIER ::= { voip 11 } + voipActiveCall OBJECT IDENTIFIER ::= { voip 13 } +-- voipArpFlushOperation + + voipArpFlushOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the object to 1 to start flushing." + ::= { voipArp 1 } + +-- voipArpShowTable + + voipArpShowTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipArpShowEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display ARP entries learnt in specified slot." + ::= { voipArp 2 } + + voipArpShowEntry OBJECT-TYPE + SYNTAX VoipArpShowEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of voipArpShowTable." + INDEX { voipArpShowIp } + ::= { voipArpShowTable 1 } + + VoipArpShowEntry ::= + SEQUENCE { + voipArpShowIp IpAddress, + voipArpShowMac PhysAddress + } + + voipArpShowIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipArpShowEntry 1 } + + voipArpShowMac OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipArpShowEntry 2 } + +-- voipNumberPlanTable + + maxNumOfVoipNumberPlan OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of VoIP number plan supported by the system." + ::= { voipSip 1 } + + voipNumberPlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipNumberPlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure numbering plan entry of specified index in specified payphone charging table." + ::= { voipSip 2 } + + voipNumberPlanEntry OBJECT-TYPE + SYNTAX VoipNumberPlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of voipNumberPlanTable." + INDEX { voipNumberPlanName, voipNumberPlanIndex } + ::= { voipNumberPlanTable 1 } + + VoipNumberPlanEntry ::= + SEQUENCE { + voipNumberPlanName DisplayString, + voipNumberPlanIndex INTEGER, + voipNumberPlanPattern OCTET STRING, + voipNumberPlanRule OCTET STRING, + voipNumberPlanRowStatus RowStatus + } + + voipNumberPlanName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Numbering plan table name." + ::= { voipNumberPlanEntry 1 } + + voipNumberPlanIndex OBJECT-TYPE + SYNTAX INTEGER (1..32) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipNumberPlanEntry 2 } + + voipNumberPlanPattern OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Allowed characters are 0~9, *, T, S, P, x, ., | + and range format characters that include '~', ',' + and parenthesis '(', ')', brackets '[', ']', braces '{', '}' + and at most one parenthesis pair are allowed, + Examples: '002(*)', '0(*)', and '(*)'. + '*' represents one or more digit characters + 'x' represents any digit character + 'T' timeout send of dial string, can only appear at the end of pattern + 'S' star phone key (*) match character in dial plan + 'P' pound key (#) match character in dial plan + '.' represents zero or more repetitions of character or range + that precedes it, can't use the dot character '.' in brackets + '|' used to separate multiple number plan patterns + [n~m,k] match a range of digits n~m or a specified digit k, + '[' and ']' must pair and nest brackets is illegal + '~' and ',' are allowed showing in brackets only + '~' connected characters must be digit + {n} match n digits" + ::= { voipNumberPlanEntry 3 } + + voipNumberPlanRule OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Allowed characters are 0~9, and + '\c' stand for country code, + '\d' stand for national destination code, + '\1' stand for matched string enclosed by the parenthesis pair, + '\n' stand for no local disconnect + '\p' stand for partial pattern + '\t' stand for confirmation tone play + '\tr' stand for recall dial tone play + 'deny' stand for the pattern specified is not allowed. + Examples: '\1', '\c\1', and '\c\d\1'." + ::= { voipNumberPlanEntry 4 } + + voipNumberPlanRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new entry or delete an existing entry in this table." + ::= { voipNumberPlanEntry 5 } + + voipNumberPlanDftTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipNumberPlanDftEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure the action rule after inter-digit timeout in specified entry of numbering plan table." + ::= { voipSip 3 } + + voipNumberPlanDftEntry OBJECT-TYPE + SYNTAX VoipNumberPlanDftEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of voipNumberDftPlanTable." + INDEX { voipNumberPlanName } + ::= { voipNumberPlanDftTable 1 } + + VoipNumberPlanDftEntry ::= + SEQUENCE { + voipNumberPlanDftRule OCTET STRING + } + + voipNumberPlanDftRule OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Allowed characters are 0~9, and + '\c' stand for country code, + '\d' stand for national destination code, + '\1' stand for matched string enclosed by the parenthesis pair, + '\n' stand for no local disconnect + '\p' stand for partial pattern + '\t' stand for confirmation tone play + 'deny' stand for the pattern specified is not allowed. + Examples: '\1', '\c\1', and '\c\d\1'." + ::= { voipNumberPlanDftEntry 1 } + + digitSetup OBJECT IDENTIFIER ::= { voipSip 4 } + timeoutSetup OBJECT IDENTIFIER ::= {digitSetup 1} + + initialTimeout OBJECT-TYPE + SYNTAX INTEGER (1..20) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "First digit must be dialed before this timeout, 1 ~ 20 seconds." + ::= { timeoutSetup 1 } + + interDigitTimeout OBJECT-TYPE + SYNTAX INTEGER (1..20) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If no pattern string is fully matched, the inter-digit timeout will + trigger device to send out current dialed digits, 1 ~ 20 seconds." + ::= { timeoutSetup 2 } + + digitPauseTimeout OBJECT-TYPE + SYNTAX INTEGER (1..20) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If a pattern string is end with the T pattern, the pattern string + will not be matched until the timeout happens, 1 ~ 20 seconds." + ::= { timeoutSetup 3 } + + matchingTimeout OBJECT-TYPE + SYNTAX INTEGER (1..20) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If a pattern string is fully matched, and there are other pattern + strings partially matched, the pattern string will be sent out if + the timeout happens, 1 ~ 20 seconds." + ::= { timeoutSetup 4 } + +-- voipIp + + voipIpSetIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VoIP's IP address." + ::= { voipIp 1 } + + voipIpSetVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VoIP's VLAN ID." + ::= { voipIp 2 } + + voipIpSetMask OBJECT-TYPE + SYNTAX INTEGER (0..32) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VoIP's network mask." + ::= { voipIp 3 } + +-- voipDns + + + voipDnsIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IP address." + ::= { voipDns 1 } + +-- voipRouteTable + + maxNumOfVoipRoute OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of VoIP routing entries." + ::= { voip 7 } + + voipRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { voip 8 } + + voipRouteEntry OBJECT-TYPE + SYNTAX VoipRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of voipRouteTable." + INDEX { voipRouteIp, voipRouteGateway, voipRouteMask } + ::= { voipRouteTable 1 } + + VoipRouteEntry ::= + SEQUENCE { + voipRouteIp IpAddress, + voipRouteGateway IpAddress, + voipRouteMask INTEGER, + voipRouteMetric INTEGER, + voipRouteRowStatus RowStatus + } + + voipRouteIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP address." + ::= { voipRouteEntry 1 } + + voipRouteGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Gateway IP." + ::= { voipRouteEntry 2 } + + voipRouteMask OBJECT-TYPE + SYNTAX INTEGER (0..32) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Network mask." + ::= { voipRouteEntry 3 } + + voipRouteMetric OBJECT-TYPE + SYNTAX INTEGER (1..15) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Metric number of the route." + ::= { voipRouteEntry 4 } + + voipRouteRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new entry or delete an existing entry in this table." + ::= { voipRouteEntry 5 } + +-- voipCountryCode + + voipCountryCode OBJECT-TYPE + SYNTAX INTEGER { + usa(1) +-- taiwan(2), +-- austria(3), +-- belgium(4), +-- denmark(5), +-- finland(6), +-- netherland(7), +-- norway(8), +-- spain(9), +-- sweden(10), +-- switzerland(11), +-- uk(12), +-- germany(13), +-- australia(14), +-- ireland(15), +-- czech(16), +-- italy(17), +-- japan(18), +-- new_zealand(19), +-- russia(20), +-- china(21), +-- vietnam(22), +-- brazil(23) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure country (information) for VoIP services." + ::= { voip 9 } + + voipBootRegDelay OBJECT-TYPE + SYNTAX INTEGER (0..30) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Registration delay in seconds." + ::= { voip 12} + +-- voipRingTable + + voipRingTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipRingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { voipRing 1 } + + voipRingEntry OBJECT-TYPE + SYNTAX VoipRingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of voipRouteTable." + INDEX { voipRingIndex } + ::= { voipRingTable 1 } + + VoipRingEntry ::= + SEQUENCE { + voipRingIndex INTEGER, + voipRingName DisplayString, + voipRingOn1 INTEGER, + voipRingOff1 INTEGER, + voipRingOn2 INTEGER, + voipRingOff2 INTEGER, + voipRingOn3 INTEGER, + voipRingOff3 INTEGER + } + + voipRingIndex OBJECT-TYPE + SYNTAX INTEGER(1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipRingEntry 1 } + + voipRingName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Ring identifier used in SIP Alert-Info header field" + ::= { voipRingEntry 2 } + + voipRingOn1 OBJECT-TYPE + SYNTAX INTEGER (100..10000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "first on time in milliseconds" + ::= { voipRingEntry 3 } + + voipRingOff1 OBJECT-TYPE + SYNTAX INTEGER (100..10000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "first off time in milliseconds" + ::= { voipRingEntry 4 } + + voipRingOn2 OBJECT-TYPE + SYNTAX INTEGER (100..10000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "second on time in milliseconds" + ::= { voipRingEntry 5 } + + voipRingOff2 OBJECT-TYPE + SYNTAX INTEGER (100..10000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "second off time in milliseconds" + ::= { voipRingEntry 6 } + + voipRingOn3 OBJECT-TYPE + SYNTAX INTEGER (100..10000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "third on time in milliseconds" + ::= { voipRingEntry 7 } + + voipRingOff3 OBJECT-TYPE + SYNTAX INTEGER (100..10000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "third off time in milliseconds" + ::= { voipRingEntry 8 } + + + voipRingSetDefault OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the index to default value." + ::= { voipRing 2 } + +-- voipActiveCall + voipActiveCallMaxActiveCalls OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure maximum number of concurrent active calls, 0~96." + ::= { voipActiveCall 1 } + + voipActiveCallThreshold OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The threshold to report or clear alarm, 50~100." + ::= { voipActiveCall 2 } + +-- voipMode + voipMode OBJECT-TYPE + SYNTAX INTEGER { + sip(1), + csip(2), + h248(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure the Mode for VoIP Service." + ::= { voip 100 } + +-- voipH248 + + maxNumOfVoipH248MgConf OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of virtual media gateway supported by the system." + ::= { voipH248 1 } + + voipH248MgConf OBJECT IDENTIFIER ::= { voipH248 2 } + + + voipH248MgName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "MG name." + ::= { voipH248MgConf 1 } + + voipH248MgEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable MG." + ::= { voipH248MgConf 2 } + + voipH248MgH248Profile OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "H248 profile name used by MG." + ::= { voipH248MgConf 3 } + + voipH248MgPort OBJECT-TYPE + SYNTAX INTEGER (1025..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Port number used by MG." + ::= { voipH248MgConf 4 } + +END \ No newline at end of file diff --git a/mibs/calix/E5-111-TRAPS-MIB b/mibs/calix/E5-111-TRAPS-MIB new file mode 100644 index 0000000000..f54c9b3143 --- /dev/null +++ b/mibs/calix/E5-111-TRAPS-MIB @@ -0,0 +1,714 @@ +-- $Log: E5-111-TRAPS-MIB.mib $ +-- Revision 1.9 2010/10/18 06:23:53 cylien +-- Revision 1.8 2010/09/01 06:56:02 cylien +-- Revision 1.7 2010/04/23 10:46:26 maverick +-- Revision 1.6 2010/03/24 09:03:16 maverick +-- Revision 1.5 2009/11/06 02:10:39 maverick +-- remove cfm, change atmqos to ipqos +-- Revision 1.4 2009/10/30 13:33:33 John +-- Revision 1.3 2009/09/16 02:55:32 niceguy +-- Revision 1.2 2009/06/22 03:24:03 niceguy +-- Revision 1.1 2009/06/03 08:42:39 niceguy +-- Initial revision + + +E5-111-TRAPS-MIB DEFINITIONS ::= BEGIN + + IMPORTS + + OBJECT-TYPE + FROM SNMPv2-SMI + DisplayString, ifIndex + FROM RFC1213-MIB + iesChassisId,iesSlotId + FROM E5-111-IESCOMMON-MIB + e5x111 + FROM E5-111-MIB; + + trap OBJECT IDENTIFIER ::= { e5x111 12 } + +---------------------------------------- +-- trap +---------------------------------------- + + object OBJECT IDENTIFIER ::= { trap 1 } + equipment OBJECT IDENTIFIER ::= { trap 3 } + systrap OBJECT IDENTIFIER ::= { trap 4 } + voiptrap OBJECT IDENTIFIER ::= { trap 7 } + interface OBJECT IDENTIFIER ::= { trap 8 } + e5Alarm OBJECT IDENTIFIER ::= { trap 9 } +-------------------- +-- object +-------------------- + + eqptAlarmInputIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of alarm input." + ::= { object 2 } + + eqptAlarmInputName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Name of alarm input." + ::= { object 8 } + + sysMacAntiSpoofOrig OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Original port of Mac-AntiSpoofing." + ::= { object 9 } + + sysMacAntiSpoofNew OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The New port of Mac-AntiSpoofing." + ::= { object 10 } + + sysMacAntiSpoofMAC OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MAC of Mac-AntiSpoofing." + ::= { object 11 } + + sysAlarmOrigSeverity OBJECT-TYPE + SYNTAX INTEGER { + critical(1), + major(2), + minor(3), + info(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The original severity of alarm." + ::= { object 12 } + + sysAlarmNewSeverity OBJECT-TYPE + SYNTAX INTEGER { + critical(1), + major(2), + minor(3), + info(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The new severity of alarm." + ::= { object 13 } + + sysAlarmConfId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The changed severity of alarm condition ID. + 5000:adslLine_up + 5001:adslLine_down + 5002:adslPerf_lol_thresh + 5003:adslPerf_lof_thresh + 5004:adslPerf_los_thresh + 5005:adslPerf_lop_thresh + 5006:adslPerf_es_thresh + 5007:adslPerf_ses_thresh + 5008:adslPerf_uas_thresh + 5009:adslAtuc_loftrap + 5010:adslAtuc_lostrap + 5011:adslAtur_loftrap + 5012:adslAtur_lostrap + 5013:adslAtur_lprtrap + 5014:ad_dhcp_rt_full + 5015:ad_dhcp_dm_conflict + 5016:ad_dhcp_entry_full + 5017:ad_dhcp_ip_dup + 5018:ad_dhcp_mac_dup + 10000:eqptVol_err + 10001:eqptEqpttemp_err + 10002:eqptFan_err + 10003:eqptHw_rtc_fail + 10004:eqptHw_mon_fail + 10005:eqptCold_start + 10006:eqptWarm_start + 10007:eqptAlm_input + 10008:voip_battery_fail + 10009:voip_clock_fail + 10010:voip_ringer_fault + 10011:eqptI2c_err + 10012:eqptAlm_input2 + 10013:eqptAlm_input3 + 15000:sysReboot + 15001:sysAco + 15002:sysAlm_clear + 15003:sysLogin_fail + 15004:sysAnti_spoofing + 15005:sysAlm_svrty_change + 20000:enetUp + 20001:enetDown + 25000:voip_temp_error + 25001:voip_dc_power_fail + 25002:voip_ac_power_fail + 25003:voip_ring_timer_fail + 25004:voip_ring_rsrce_fail + 25006:voip_call_setup_failed + 25007:voip_call_threshold_violate + " + ::= { object 14 } + + voipDevId OBJECT-TYPE + SYNTAX INTEGER{ + p25-p48(0), + p1-p24(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The device ID of the DUT. 0 means port 25 to 48, 1 means port 1 to 24." + ::= { object 51 } + + + voipCount OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ringer fault" + ::= { object 52 } + + voipPhoneState OBJECT-TYPE + SYNTAX INTEGER { + disable(1), + onHook(2), + offHook(3), + ringing(4), + powerCutDown(5), + testing(6), + fault(7), + bad(8), + uninitialized(9) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Phone status of the line." + ::= { object 53 } + + voipBatType OBJECT-TYPE + SYNTAX INTEGER{ + batteryLow(0), + batteryHigh(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ringer fault" + ::= { object 54 } + +-- intfCfmCcmErrorCause OBJECT-TYPE +-- SYNTAX INTEGER { +-- noDefect(1), +-- rdiReceived(2), +-- macDownReceivedFromDownMEP(3), +-- lostConnectionToRemoteMEP(4), +-- configurationError(5), +-- maintenanceDomainCrossConnect(6) +-- } +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { object 55 } + +-------------------- +-- equipment +-------------------- + + eqptHWMonitorFailure NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Hardware monitor diagnosis is failed." + ::= { equipment 1 } + +-------------------- +-- systrap +-------------------- + + sysMacAntiSpoofing NOTIFICATION-TYPE + OBJECTS { + sysMacAntiSpoofOrig, + sysMacAntiSpoofNew, + sysMacAntiSpoofMAC + } + STATUS current + DESCRIPTION + "MAC Anti-spoofing." + ::= { systrap 1 } + + sysAlarmCutoffEnable NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Alarm cutoff is activated." + ::= { systrap 2 } + + sysAlarmClearEnable NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Alarm clear is activated." + ::= { systrap 3 } + + sysLoginFailure NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "User login is failed." + ::= { systrap 4 } + + sysAlarmSvrtyChange NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Alarm severity is changed." + ::= { systrap 5 } + +-------------------- +-- interface +-------------------- + +-- cfmCcmError NOTIFICATION-TYPE +-- OBJECTS { +-- dot1agCfmMdMdLevel, +-- dot1agCfmVlanPrimaryVid, +-- dot1agCfmMepIdentifier, +-- intfCfmCcmErrorCause +-- } +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { interface 1 } + +-------------------- +-- voip +-------------------- + voipBatteryFail NOTIFICATION-TYPE + OBJECTS { + iesChassisId, + iesSlotId, + voipDevId, + voipBatType + } + STATUS current + DESCRIPTION + "Battery fault trigger." + ::= { voiptrap 1 } + + voipBatteryClear NOTIFICATION-TYPE + OBJECTS { + iesChassisId, + iesSlotId, + voipDevId, + voipBatType + } + STATUS current + DESCRIPTION + "Battery fault release." + ::= { voiptrap 2 } + + voipClockFail NOTIFICATION-TYPE + OBJECTS { + iesChassisId, + iesSlotId, + voipDevId + } + STATUS current + DESCRIPTION + "Clock fault trigger." + ::= { voiptrap 3 } + + voipClockClear NOTIFICATION-TYPE + OBJECTS { + iesChassisId, + iesSlotId, + voipDevId + } + STATUS current + DESCRIPTION + "Clock fault release." + ::= { voiptrap 4 } + + voipRingerFault NOTIFICATION-TYPE + OBJECTS { + iesChassisId, + iesSlotId, + voipCount + } + STATUS current + DESCRIPTION + "Ringer fault trigger." + ::= { voiptrap 5 } + + voipRingerClear NOTIFICATION-TYPE + OBJECTS { + iesChassisId, + iesSlotId, + voipCount + } + STATUS current + DESCRIPTION + "Ringer fault release." + ::= { voiptrap 6 } + + voipTempError NOTIFICATION-TYPE + OBJECTS { + iesChassisId, + iesSlotId, + ifIndex, + voipPhoneState + } + STATUS current + DESCRIPTION + "Temperature error trigger." + ::= { voiptrap 7 } + + voipTempClear NOTIFICATION-TYPE + OBJECTS { + iesChassisId, + iesSlotId, + ifIndex, + voipPhoneState + } + STATUS current + DESCRIPTION + "Temperature error release." + ::= { voiptrap 8 } + + voipDcPowerFail NOTIFICATION-TYPE + OBJECTS { + iesChassisId, + iesSlotId, + ifIndex, + voipPhoneState + } + STATUS current + DESCRIPTION + "DC power error trigger." + ::= { voiptrap 9 } + + voipDcPowerClear NOTIFICATION-TYPE + OBJECTS { + iesChassisId, + iesSlotId, + ifIndex, + voipPhoneState + } + STATUS current + DESCRIPTION + "DC power error release." + ::= { voiptrap 10 } + + voipAcPowerFail NOTIFICATION-TYPE + OBJECTS { + iesChassisId, + iesSlotId, + ifIndex, + voipPhoneState + } + STATUS current + DESCRIPTION + "DC power error trigger." + ::= { voiptrap 11 } + + voipAcPowerClear NOTIFICATION-TYPE + OBJECTS { + iesChassisId, + iesSlotId, + ifIndex, + voipPhoneState + } + STATUS current + DESCRIPTION + "DC power error release." + ::= { voiptrap 12 } + +-------------------- +-- e5Alarm +-------------------- + +e5AlarmTable OBJECT-TYPE + SYNTAX SEQUENCE OF E5AlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table holds all the active alarms" + ::= { e5Alarm 1 } + + +e5AlarmNotify NOTIFICATION-TYPE + OBJECTS { + e5AlarmObjectClass, + e5AlarmObjectInstance1, + e5AlarmObjectInstance2, + e5AlarmObjectInstance3, + e5AlarmObjectInstance4, + e5AlarmType, + e5AlarmSeverity, + e5AlarmTimeStamp, + e5AlarmServiceAffecting, + e5AlarmText, + e5AlarmTime + } + STATUS current + DESCRIPTION + "E5 device alarm notification." + ::= { e5Alarm 2 } + + +e5AlarmEntry OBJECT-TYPE + SYNTAX E5AlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "List of attributes regarding alarm table" + INDEX { e5AlarmObjectClass, e5AlarmObjectInstance1, e5AlarmObjectInstance2, + e5AlarmObjectInstance3, e5AlarmObjectInstance4, + e5AlarmObjectInstance5, e5AlarmObjectInstance6, + e5AlarmObjectInstance7, e5AlarmObjectInstance8, e5AlarmType } + ::= { e5AlarmTable 1 } + +E5AlarmEntry ::= SEQUENCE { + e5AlarmObjectClass INTEGER, + e5AlarmObjectInstance1 INTEGER, + e5AlarmObjectInstance2 INTEGER, + e5AlarmObjectInstance3 INTEGER, + e5AlarmObjectInstance4 INTEGER, + e5AlarmObjectInstance5 INTEGER, + e5AlarmObjectInstance6 INTEGER, + e5AlarmObjectInstance7 INTEGER, + e5AlarmObjectInstance8 INTEGER, + e5AlarmType INTEGER, + e5AlarmSeverity INTEGER, + e5AlarmTimeStamp OCTET STRING, + e5AlarmServiceAffecting INTEGER, + e5AlarmLocationInfo INTEGER, + e5AlarmText OCTET STRING, + e5AlarmTime INTEGER, + e5AlarmCliObject OCTET STRING, + e5AlarmSecObjectClass INTEGER, + e5AlarmSecObjectInstance1 INTEGER, + e5AlarmSecObjectInstance2 INTEGER, + e5AlarmSecObjectInstance3 INTEGER, + e5AlarmSecObjectInstance4 INTEGER, + e5AlarmSecObjectInstance5 INTEGER, + e5AlarmSecObjectInstance6 INTEGER, + e5AlarmSecObjectInstance7 INTEGER, + e5AlarmSecObjectInstance8 INTEGER + } + +e5AlarmObjectClass OBJECT-TYPE + SYNTAX INTEGER { + dsl(1), + eqpt(2), + sys(3), + enet(4), + vop(5), + intf(6), + unknown(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object Class for an alarm" + ::= { e5AlarmEntry 1 } + +e5AlarmObjectInstance1 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 1" + ::= { e5AlarmEntry 2 } + +e5AlarmObjectInstance2 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 2" + ::= { e5AlarmEntry 3 } + +e5AlarmObjectInstance3 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 3" + ::= { e5AlarmEntry 4 } + +e5AlarmObjectInstance4 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 4" + ::= { e5AlarmEntry 5 } + +e5AlarmObjectInstance5 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 5" + ::= { e5AlarmEntry 6 } + +e5AlarmObjectInstance6 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 6" + ::= { e5AlarmEntry 7 } + +e5AlarmObjectInstance7 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 7" + ::= { e5AlarmEntry 8 } + +e5AlarmObjectInstance8 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 8" + ::= { e5AlarmEntry 9 } + +e5AlarmType OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Unique type for an alarm" + ::= { e5AlarmEntry 10 } + +e5AlarmSeverity OBJECT-TYPE + SYNTAX INTEGER { + clear(0), + critical(1), + major(2), + minor(3), + warning(4), + unknown(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Severity of the alarm" + ::= { e5AlarmEntry 11 } + +e5AlarmTimeStamp OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..50)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Timestamp indicating the set/clear time of the alarm" + ::= { e5AlarmEntry 12 } + +e5AlarmServiceAffecting OBJECT-TYPE + SYNTAX INTEGER { + yes(1), + no(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicated the nature of the alarm i.e. service + affecting or not" + ::= { e5AlarmEntry 13 } + +e5AlarmLocationInfo OBJECT-TYPE + SYNTAX INTEGER { + nearEnd(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "" + ::= { e5AlarmEntry 14 } + +e5AlarmText OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Alarm description" + ::= { e5AlarmEntry 15 } + +e5AlarmTime OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "UTC time" + ::= { e5AlarmEntry 16 } + +e5AlarmCliObject OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The short CLI name for the object class and instance" + ::= { e5AlarmEntry 17 } + +e5AlarmSecObjectClass OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary Object Class for an alarm" + ::= { e5AlarmEntry 18 } + +e5AlarmSecObjectInstance1 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 1" + ::= { e5AlarmEntry 19 } + +e5AlarmSecObjectInstance2 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 2" + ::= { e5AlarmEntry 20 } + +e5AlarmSecObjectInstance3 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 3" + ::= { e5AlarmEntry 21 } + +e5AlarmSecObjectInstance4 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 4" + ::= { e5AlarmEntry 22 } + +e5AlarmSecObjectInstance5 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 5" + ::= { e5AlarmEntry 23 } + +e5AlarmSecObjectInstance6 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 6" + ::= { e5AlarmEntry 24 } + +e5AlarmSecObjectInstance7 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 7" + ::= { e5AlarmEntry 25 } + +e5AlarmSecObjectInstance8 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 8" + ::= { e5AlarmEntry 26 } + + END \ No newline at end of file diff --git a/mibs/calix/E5-120-AS-ATM-MIB b/mibs/calix/E5-120-AS-ATM-MIB new file mode 100644 index 0000000000..e52d8fc934 --- /dev/null +++ b/mibs/calix/E5-120-AS-ATM-MIB @@ -0,0 +1,314 @@ +-- $Log: E5-120-AS-ATM-MIB.mib $ +-- Revision 1.3 2010/04/23 10:46:27 maverick +-- Revision 1.2 2008/08/04 12:47:33 maverick +-- Revision 1.1 2008/07/11 09:36:17 maverick +-- Initial revision +-- Revision 1.4 2008/06/30 07:41:03 maverick +-- Revision 1.3 2008/05/04 12:35:35 maverick +-- Revision 1.2 2008/05/04 05:55:25 kenny +-- Revision 1.1 2008/05/04 05:13:58 maverick +-- Initial revision +-- Revision 1.1 2007/12/03 01:45:27 niceguy +-- Initial revision +-- Initial revision + +E5-120-AS-ATM-MIB DEFINITIONS ::= BEGIN + + IMPORTS + + Counter FROM RFC1155-SMI + OBJECT-TYPE FROM RFC-1212 + ifIndex, DisplayString FROM RFC1213-MIB + RowStatus FROM SNMPv2-TC + VlanIndex, PortList FROM Q-BRIDGE-MIB + pvcVpi, pvcVci FROM E5-120-MIB + accessSwitchCommonATM FROM E5-120-MIB; + + + -- Channel Table + +-- asMaxNumOfChannels OBJECT-TYPE +-- SYNTAX INTEGER +-- ACCESS read-only +-- STATUS mandatory +-- DESCRIPTION +-- "The maximum number of virtual channels which can be created on a port." +-- ::= { accessSwitchCommonATM 1 } +-- +-- asChannelTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF AsChannelEntry +-- ACCESS not-accessible +-- STATUS mandatory +-- DESCRIPTION +-- "This table includes the configuration of the virtual channel." +-- ::= { accessSwitchCommonATM 2 } +-- +-- asChannelEntry OBJECT-TYPE +-- SYNTAX AsChannelEntry +-- ACCESS not-accessible +-- STATUS mandatory +-- DESCRIPTION +-- "An entry in asChannelTable." +-- INDEX { ifIndex, asChannelVpi, asChannelVci } +-- ::= { asChannelTable 1 } +-- +-- AsChannelEntry ::= +-- SEQUENCE { +-- asChannelVpi INTEGER, +-- asChannelVci INTEGER, +-- asChannelPvid VlanIndex, +-- asChannelEgressVid VlanIndex, +-- asChannelPriority INTEGER, +-- asChannelProfile DisplayString, +-- asChannelRowStatus RowStatus +-- } +-- +-- asChannelVpi OBJECT-TYPE +-- SYNTAX INTEGER (0..255) +-- ACCESS not-accessible +-- STATUS mandatory +-- DESCRIPTION +-- "VPI of the channel." +-- ::= { asChannelEntry 1 } +-- +-- asChannelVci OBJECT-TYPE +-- SYNTAX INTEGER (1..65535) +-- ACCESS not-accessible +-- STATUS mandatory +-- DESCRIPTION +-- "VCI of the channel." +-- ::= { asChannelEntry 2 } +-- +-- asChannelPvid OBJECT-TYPE +-- SYNTAX VlanIndex +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "The default VID of the channel." +-- ::= { asChannelEntry 3 } +-- +-- asChannelEgressVid OBJECT-TYPE +-- SYNTAX VlanIndex +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "The egress VID of the channel." +-- ::= { asChannelEntry 4 } +-- +-- asChannelPriority OBJECT-TYPE +-- SYNTAX INTEGER (0..7) +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "The 802.1p default priority of the channel." +-- ::= { asChannelEntry 5 } +-- +-- asChannelProfile OBJECT-TYPE +-- SYNTAX DisplayString (SIZE (1..31)) +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "The value of this object identifies the row in the +-- asChannelProfileTable, which applies for this channel." +-- ::= { asChannelEntry 6 } +-- +-- asChannelRowStatus OBJECT-TYPE +-- SYNTAX RowStatus +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "This object is used to create a new row or +-- delete an existing row in this table." +-- ::= { asChannelEntry 7 } +-- +-- +-- Channel Profile Table +-- +-- asMaxNumOfChannelProfiles OBJECT-TYPE +-- SYNTAX INTEGER +-- ACCESS read-only +-- STATUS mandatory +-- DESCRIPTION +-- "The maximum number of channel profiles which the system supports." +-- ::= { accessSwitchCommonATM 3 } +-- +-- asChannelProfileTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF AsChannelProfileEntry +-- ACCESS not-accessible +-- STATUS mandatory +-- DESCRIPTION +-- "This table contains information on the virtual channel +-- configuration. One entry in this table reflects a +-- profile which can be used to configure the virtual channel." +-- ::= { accessSwitchCommonATM 6 } +-- +-- asChannelProfileEntry OBJECT-TYPE +-- SYNTAX AsChannelProfileEntry +-- ACCESS not-accessible +-- STATUS mandatory +-- DESCRIPTION +-- "An entry in asChannelProfileTable." +-- INDEX { IMPLIED asChannelProfileName } +-- ::= { asChannelProfileTable 1 } +-- +-- AsChannelProfileEntry ::= +-- SEQUENCE { +-- asChannelProfileName DisplayString, +-- asChannelProfileEncap INTEGER, +-- asChannelProfileAAL INTEGER, +-- asChannelProfileClass INTEGER, +-- asChannelProfilePcr Unsigned32, +-- asChannelProfileCdvt INTEGER, +-- asChannelProfileScrMcr Unsigned32, +-- asChannelProfileBt INTEGER, +-- asChannelProfileRowStatus RowStatus +-- } +-- +-- asChannelProfileName OBJECT-TYPE +-- SYNTAX DisplayString (SIZE (1..31)) +-- ACCESS not-accessible +-- STATUS mandatory +-- DESCRIPTION +-- "This object is used by the channel profile table +-- in order to identify a row of this table." +-- ::= { asChannelProfileEntry 1 } +-- +-- asChannelProfileEncap OBJECT-TYPE +-- SYNTAX INTEGER { +-- llc(1), +-- vc(2) +-- } +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "RFC1483 encapsulation." +-- ::= { asChannelProfileEntry 2 } +-- +-- asChannelProfileAAL OBJECT-TYPE +-- SYNTAX INTEGER (0..5) +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "ATM Adaptation Layer policy." +-- ::= { asChannelProfileEntry 3 } +-- +-- asChannelProfileClass OBJECT-TYPE +-- SYNTAX INTEGER { +-- cbr(1), +-- rt-vbr(2), +-- nrt-vbr(3), +-- ubr(4), +-- abr(5) +-- } +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "ATM traffic class, including constant bit rate, +-- real-time variable bit rate, non real-time variable bit rate, +-- unspecified bit rate, and available bit rate." +-- ::= { asChannelProfileEntry 4 } +-- +-- asChannelProfilePcr OBJECT-TYPE +-- SYNTAX Unsigned32 +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "Peak cell rate (cells/sec)." +-- ::= { asChannelProfileEntry 5 } +-- +-- asChannelProfileCdvt OBJECT-TYPE +-- SYNTAX INTEGER (0..255) +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "Cell delay variation tolerance." +-- ::= { asChannelProfileEntry 6 } +-- +-- asChannelProfileScrMcr OBJECT-TYPE +-- SYNTAX Unsigned32 +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "Sustain cell rate for vbr traffic class, or +-- minimum cell rate for abr traffic class. +-- The unit is the number of cells per second." +-- ::= { asChannelProfileEntry 7 } +-- +-- asChannelProfileBt OBJECT-TYPE +-- SYNTAX INTEGER (0..255) +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "Burst tolerance for vbr traffic class." +-- ::= { asChannelProfileEntry 8 } +-- +-- asChannelProfileRowStatus OBJECT-TYPE +-- SYNTAX RowStatus +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "This object is used to create a new row or +-- delete an existing row in this table." +-- ::= { asChannelProfileEntry 9 } +-- + +-- Channel Status Table + + asChannelStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsChannelStatusEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table includes the status of the virtual channel." + ::= { accessSwitchCommonATM 7 } + + asChannelStatusEntry OBJECT-TYPE + SYNTAX AsChannelStatusEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in asChannelStatusTable." + INDEX { ifIndex, pvcVpi, pvcVci } + ::= { asChannelStatusTable 1 } + + AsChannelStatusEntry ::= + SEQUENCE { + asChannelTxPackets Counter, + asChannelRxPackets Counter, + asChannelTxCells Counter, + asChannelRxCells Counter + } + + asChannelTxPackets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of channel Tx packets." + ::= { asChannelStatusEntry 1 } + + asChannelRxPackets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of channel Rx packets." + ::= { asChannelStatusEntry 2 } + + asChannelTxCells OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of channel Tx cells." + ::= { asChannelStatusEntry 3 } + + asChannelRxCells OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of channel Rx cells." + ::= { asChannelStatusEntry 4 } + +END diff --git a/mibs/calix/E5-120-IESCOMMON-MIB b/mibs/calix/E5-120-IESCOMMON-MIB new file mode 100644 index 0000000000..895225379a --- /dev/null +++ b/mibs/calix/E5-120-IESCOMMON-MIB @@ -0,0 +1,2410 @@ +-- $Log: E5-120-IESCOMMON-MIB.mib $ +-- Revision 1.7 2011/01/07 07:35:19 cylien +-- modified by Swee +-- Revision 1.6 2010/04/23 10:46:28 maverick +-- Revision 1.5 2009/11/26 13:06:55 maverick +-- add comment to obsoleted mib entries, mibble checked +-- Revision 1.4 2009/07/10 10:39:34 maverick +-- Revision 1.3 2009/05/21 02:28:11 John +-- Revision 1.2 2009/05/15 09:49:05 niceguy +-- Revision 1.1 2008/07/11 09:36:14 maverick +-- Initial revision +-- Revision 1.3 2008/05/20 02:55:58 maverick +-- Revision 1.2 2008/05/04 05:55:25 kenny +-- Revision 1.1 2008/05/04 05:13:59 maverick +-- Initial revision +-- Revision 1.3 2008/01/11 01:21:27 niceguy +-- Revision 1.2 2007/12/12 09:39:50 niceguy +-- Revision 1.1 2007/12/03 01:45:28 niceguy +-- Initial revision +-- Initial revision + +E5-120-IESCOMMON-MIB DEFINITIONS ::= BEGIN + + IMPORTS + + enterprises + FROM RFC1155-SMI + OBJECT-TYPE, IpAddress, NOTIFICATION-TYPE + FROM SNMPv2-SMI +-- FROM RFC-1212 + DisplayString, ifIndex, PhysAddress + FROM RFC1213-MIB + RowStatus + FROM SNMPv2-TC + PortList + FROM Q-BRIDGE-MIB + iesSeriesCommon,e5x120 + FROM E5-120-MIB; + + iesChassis OBJECT IDENTIFIER ::= { iesSeriesCommon 1 } + iesHWMonitor OBJECT IDENTIFIER ::= { iesSeriesCommon 2 } + iesSysMgnt OBJECT IDENTIFIER ::= { iesSeriesCommon 3 } + + iesSysState OBJECT IDENTIFIER ::= { iesSysMgnt 1 } + iesSysMaintenance OBJECT IDENTIFIER ::= { iesSysMgnt 2 } + iesSysTimeSetup OBJECT IDENTIFIER ::= { iesSysMgnt 3 } + iesSysAccessControl OBJECT IDENTIFIER ::= { iesSysMgnt 4 } + iesSysStaticRoute OBJECT IDENTIFIER ::= { iesSysMgnt 5 } + iesSyslogSetup OBJECT IDENTIFIER ::= { iesSysMgnt 6 } + iesSysDhcpSetup OBJECT IDENTIFIER ::= { iesSysMgnt 7 } + iesSysSNMPSetup OBJECT IDENTIFIER ::= { iesSysMgnt 8 } + iesSysDot1xSetup OBJECT IDENTIFIER ::= { iesSysMgnt 9 } + iesSysMacFilter OBJECT IDENTIFIER ::= { iesSysMgnt 10 } + iesSysPacketFilter OBJECT IDENTIFIER ::= { iesSysMgnt 11 } + iesSysMacCountFilter OBJECT IDENTIFIER ::= { iesSysMgnt 12 } + iesSysMulticastGroup OBJECT IDENTIFIER ::= { iesSysMgnt 13 } + iesSysIgmpFilter OBJECT IDENTIFIER ::= { iesSysMgnt 14 } -- Obsoleted since Revision 3.0.0 at 2009/11/26 by maverick + + iesL2SW OBJECT IDENTIFIER ::= { iesSeriesCommon 4 } + +-- Chassis, slot information + + iesNumOfChassis OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of chassis in the IES-2000/3000 system" + ::= { iesChassis 1 } + + iesChassisTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesChassisEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table which contains the chassis information in IES-2000/3000 + system" + ::= { iesChassis 2 } + + iesChassisEntry OBJECT-TYPE + SYNTAX IesChassisEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { iesChassisId } + ::= { iesChassisTable 1 } + + IesChassisEntry ::= + SEQUENCE { + iesChassisId INTEGER, + iesChassisFrameNumber INTEGER, + iesChassisSerialNumber DisplayString, + iesChassisNumber INTEGER, + iesChassisStatus INTEGER, + iesChassisProductPartNumber DisplayString, + iesChassisHwRevisionNumber DisplayString, + iesChassisCleiCode DisplayString, + iesChassisHwVersion DisplayString, + iesChassisMacAddress DisplayString + } + + iesChassisId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Chassis ID" + ::= { iesChassisEntry 1 } + + iesChassisFrameNumber OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Frame ID" + ::= { iesChassisEntry 2 } + + + iesChassisSerialNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Chassis Serial Number" + ::= { iesChassisEntry 3 } + + iesChassisNumber OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Chassis Number which is defined by the system administrator + for management purpose" + ::= { iesChassisEntry 4 } + + iesChassisStatus OBJECT-TYPE + SYNTAX INTEGER { + empty(1), + up(2), + down(3), + testing(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current status of the chassis." + ::= { iesChassisEntry 5 } + + iesChassisProductPartNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Product part number" + ::= { iesChassisEntry 6 } + + iesChassisHwRevisionNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "HW revision Number" + ::= { iesChassisEntry 7 } + + iesChassisCleiCode OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CLEI code" + ::= { iesChassisEntry 8 } + + iesChassisHwVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Hardware version" + ::= { iesChassisEntry 9 } + + iesChassisMacAddress OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MAC address" + ::= { iesChassisEntry 10 } + + iesSlotTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesSlotEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table which contains the slot information in a chassis of + IES-2000/3000 system" + ::= { iesChassis 3 } + + iesSlotEntry OBJECT-TYPE + SYNTAX IesSlotEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { iesChassisId, iesSlotId } + ::= { iesSlotTable 1 } + + IesSlotEntry ::= + SEQUENCE { + iesSlotId INTEGER, + iesSlotModuleType INTEGER, + iesSlotModuleDescr DisplayString, + iesSlotModuleFWVersion DisplayString, + iesSlotModuleDriverVersion DisplayString, + iesSlotModuleModemCodeVersion DisplayString, + iesSlotModuleStatus INTEGER, + iesSlotModuleAlarmStatus INTEGER + } + + iesSlotId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Identity of the slot" + ::= { iesSlotEntry 1 } + + iesSlotModuleType OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + msc1000-L2(2), + msc1000-ML(3), + alc1024-61(4), + vlc1012(5), + slc1024(6), + alc1024-63(7), + msc1000A(8), + vlc1124(9), + alc1224-71(10), + alc1224-73(11), + slc1224-22(12), + alc1224-51(13), + alc1224-53(14) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Card type of the plug-in card in IES-2000/3000." + ::= { iesSlotEntry 2 } + + iesSlotModuleDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The descriptions of the plug-in card in IES-2000/3000." + ::= { iesSlotEntry 3 } + + + iesSlotModuleFWVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The firmware version of the plug-in card in IES-2000/3000." + ::= { iesSlotEntry 4 } + + iesSlotModuleDriverVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The DSL driver of the plug-in card in IES-2000/3000." + ::= { iesSlotEntry 5 } + + iesSlotModuleModemCodeVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The DSL modem code version of the plug-in card in IES-2000/3000" + ::= { iesSlotEntry 6 } + + + iesSlotModuleStatus OBJECT-TYPE + SYNTAX INTEGER { + empty(1), + up(2), + down(3), + testing(4), + standby(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The module state of the plug-in card in IES-2000/3000" + ::= { iesSlotEntry 7 } + + iesSlotModuleAlarmStatus OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This variable indicates the alarm status of the module. + It is a bit map represented as a sum, therefore, it can represent + multiple defects simultaneously. The moduleNoDefect should be set + if and only if no other flag is set. + + The various bit positions are: + 1 moduleNoDefect + 2 moduleOverHeat + 3 moduleFanRpmLow + 4 moduleVoltageLow + 5 moduleThermalSensorFailure + 6 modulePullOut + 7 powerDC48VAFailure + 8 powerDC48VBFailure + 9 extAlarmInputTrigger + 10 moduleDown + 11 mscSwitchOverOK + 12 networkTopologyChange" + ::= { iesSlotEntry 8 } + + + + iesMscPortConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesMscPortConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table contains port configuration information in MSC1000." + ::= { iesChassis 4 } + + iesMscPortConfEntry OBJECT-TYPE + SYNTAX IesMscPortConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { iesChassisId,iesSlotId,iesMscPortId } + ::= { iesMscPortConfTable 1} + + IesMscPortConfEntry ::= + SEQUENCE { + iesMscPortId INTEGER, + iesMscPortType INTEGER, + iesMscPortIfIndex INTEGER, + iesMscPortSpeed INTEGER, + iesMscPortDuplex INTEGER, + iesMscPortFlowControl INTEGER, + iesMscPortDefaultVLANTagging INTEGER, + iesMscPortTrunkGroupId INTEGER, + iesMscPortMode INTEGER, + iesMscPortVLANTrunking INTEGER + } + + iesMscPortId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Identity of the extension slot in MSC1000." + ::= { iesMscPortConfEntry 1 } + + iesMscPortType OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + e1000BaseT(2), + e1000BaseLX(3), + e1000BaseSX(4), + e100BaseFX(5), + e100BaseTX(6), + e1000BaseGBIC(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Port type of the extension slot in MSC1000." + ::= { iesMscPortConfEntry 2 } + + iesMscPortIfIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { iesMscPortConfEntry 3 } + + iesMscPortSpeed OBJECT-TYPE + SYNTAX INTEGER { + auto(1), + e1000M(2), + e100M(3), + e10M(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { iesMscPortConfEntry 4 } + + iesMscPortDuplex OBJECT-TYPE + SYNTAX INTEGER { + full(1), + half(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { iesMscPortConfEntry 5 } + + iesMscPortFlowControl OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { iesMscPortConfEntry 6 } + + iesMscPortDefaultVLANTagging OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { iesMscPortConfEntry 7 } + + iesMscPortTrunkGroupId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { iesMscPortConfEntry 8 } + + iesMscPortMode OBJECT-TYPE + SYNTAX INTEGER { + uplink(1), + subtending(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " The operational mode for uplink and subtending ports in MSC. Only + the operational mode of subtending ports can be modified." + ::= { iesMscPortConfEntry 9 } + + iesMscPortVLANTrunking OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " The VLAN trunking setting for uplink and subtending ports in MSC." + ::= { iesMscPortConfEntry 10 } + + + +-- System Hardware Monitoring + +-- Fan rpm table + + iesFanRpmTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesFanRpmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains rpm information about the fans." + ::= { iesHWMonitor 1 } + + iesFanRpmEntry OBJECT-TYPE + SYNTAX IesFanRpmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of rpm information for each fan." + INDEX { iesChassisId,iesFanRpmIndex } + ::= { iesFanRpmTable 1 } + + IesFanRpmEntry ::= + SEQUENCE { + iesFanRpmIndex INTEGER, + iesFanRpmCurValue INTEGER, + iesFanRpmMaxValue INTEGER, + iesFanRpmMinValue INTEGER, + iesFanRpmLowThresh INTEGER, + iesFanRpmDescr DisplayString + } + + iesFanRpmIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identity of the fan." + ::= { iesFanRpmEntry 1 } + + iesFanRpmCurValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current rpm of the fan." + ::= { iesFanRpmEntry 2 } + + iesFanRpmMaxValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum rpm ever performed by the fan." + ::= { iesFanRpmEntry 3 } + + iesFanRpmMinValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum rpm ever performed by the fan." + ::= { iesFanRpmEntry 4 } + + iesFanRpmLowThresh OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The low threshold of the rpm of the fan. If the current rpm is less than + the threshold, the device will initiate the fanRpmLow trap." + ::= { iesFanRpmEntry 5 } + + iesFanRpmDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The description of the fan (e.g. location, function, etc.)." + ::= { iesFanRpmEntry 6 } + + + +-- Voltage table + + iesVoltageTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesVoltageEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains voltage information about the system." + ::= { iesHWMonitor 2 } + + iesVoltageEntry OBJECT-TYPE + SYNTAX IesVoltageEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of voltage information for each sensor." + INDEX { iesChassisId,iesSlotId,iesVoltageIndex } + ::= { iesVoltageTable 1 } + + IesVoltageEntry ::= + SEQUENCE { + iesVoltageIndex INTEGER, + iesVoltageCurValue INTEGER, + iesVoltageMaxValue INTEGER, + iesVoltageMinValue INTEGER, + iesVoltageNominalValue INTEGER, + iesVoltageLowThresh INTEGER, + iesVoltageDescr DisplayString + } + + iesVoltageIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identity of the sensor." + ::= { iesVoltageEntry 1 } + + iesVoltageCurValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current voltage detected by the sensor (in milli-voltage)." + ::= { iesVoltageEntry 2 } + + iesVoltageMaxValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum voltage ever detected by the sensor (in milli-voltage)." + ::= { iesVoltageEntry 3 } + + iesVoltageMinValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum voltage ever detected by the sensor (in milli-voltage)." + ::= { iesVoltageEntry 4 } + + iesVoltageNominalValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The nominal voltage which the power should supply (in milli-voltage)." + ::= { iesVoltageEntry 5 } + + iesVoltageLowThresh OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The low threshold of the voltage (in milli-voltage). If the current voltage + is less than the threshold, the device will initiate the voltageLow trap." + ::= { iesVoltageEntry 6 } + + iesVoltageDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The description of the voltage (e.g. location, nominal value, etc.)." + ::= { iesVoltageEntry 7 } + + + +-- System temperature table + + iesSysTempTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesSysTempEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information about system." + ::= { iesHWMonitor 3 } + + iesSysTempEntry OBJECT-TYPE + SYNTAX IesSysTempEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information for each sensor." + INDEX { iesChassisId,iesSlotId,iesSysTempIndex } + ::= { iesSysTempTable 1 } + + IesSysTempEntry ::= + SEQUENCE { + iesSysTempIndex INTEGER, + iesSysTempCurValue INTEGER, + iesSysTempMaxValue INTEGER, + iesSysTempMinValue INTEGER, + iesSysTempHighThresh INTEGER, + iesSysTempDescr DisplayString + } + + iesSysTempIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identity of the sensor." + ::= { iesSysTempEntry 1 } + + iesSysTempCurValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current temperature detected in Celsius by the sensor." + ::= { iesSysTempEntry 2 } + + iesSysTempMaxValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum temperature ever detected in Celsius by the sensor." + ::= { iesSysTempEntry 3 } + + iesSysTempMinValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum temperature ever detected in Celsius by the sensor." + ::= { iesSysTempEntry 4 } + + iesSysTempHighThresh OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The high threshold of the temperature in Celsius. If the current temperature + is higher than the threshold, the device will initiate the overheat trap." + ::= { iesSysTempEntry 5 } + + iesSysTempDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The description of the temperature sensor (e.g. location, function, etc.)." + ::= { iesSysTempEntry 6 } + + + +-- System Management + + -- System Status + + iesSystemCurrentStatus OBJECT-TYPE + SYNTAX INTEGER(0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This variable indicates the status of the system. + The sysCurrentStatus is a bit map represented + as a sum, therefore, it can represent multiple defects + simultaneously. The sysNoDefect should be set if and only if + no other flag is set. + + The various bit positions are: + 1 sysNoDefect + 2 sysOverHeat + 3 sysFanRpmLow + 4 sysVoltageLow + 5 sysThermalSensorFailure + 6 modulePullOut + 7 powerDC48VAFailure + 8 powerDC48VBFailure + 9 extAlarmInputTrigger + 10 moduleDown + 11 mscSwitchOverOK + 12 networkTopologyChange" + + ::= {iesSysState 1 } + + iesProblemCause OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "It describes the problem occurred in the system, e.g. maintenance + operation failures, system reboot, error log, ...etc." + ::= { iesSysState 2 } + + + +-- System Maintenance + + iesMaintenanceOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is for system maintenance. When the EMS + wants to trigger the system maitenance operation, the EMS + shall send SNMP-SET message to set the corresponding bit value + to be 1. The various bit positions are: + BIT 1: config save + BIT 2: reset + BIT 3: local loopback test + BIT 4: remote loopback test + BIT 5: clear system alarms + BIT 6: F4 loopback test + BIT 7: F5 loopback test + BIT 8: DSL Line Diagnostic" + ::= { iesSysMaintenance 1 } + + iesMaintenanceTarget OBJECT-TYPE + SYNTAX INTEGER (1..48) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is used for identify the target on which + the maintenance operation should be performed." + ::= { iesSysMaintenance 2 } + + +-- variables for provisioning DSL line in batch mode + + iesMaintenanceDSLConfOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is for xDSL line configuration. When the EMS + wants to issue the desired operation, the EMS + shall send SNMP-SET message to set the corresponding bit value + to be 1. The various bit positions are: + BIT 1: enable port + BIT 2: disable port + BIT 3: set DSL mode + BIT 4: set profile + BIT 5: enable mac filter + BIT 6: disable mac filter + BIT 7: set packet filter + BIT 8: enable dot1x + BIT 9: disable dot1x + BIT 10: set dot1x control + BIT 11: enable dot1x re-authentication + BIT 12: disable dot1x re-authentication + BIT 13: set dot1x re-authentication period + BIT 14: enable mac count filter + BIT 15: disable mac count filter + BIT 16: set mac count filter + BIT 17: set alarm profile + BIT 18: set Annex L (Only in AnnexA) + BIT 19: set power management + BIT 20: set rate adaptation mode + BIT 21: set IGMP filter + BIT 22: enable Annex M + BIT 23: disable Annex M" + ::= { iesSysMaintenance 3 } + + iesMaintenanceDSLConfTarget OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is used for identify the target on which + the line configuration should be performed. The target is encoded + as: + Byte 1: the octet specifies a set of eight Chassis, Chassis 0 through 7 + Byte 2~3: each octet specifies a set of eight slots, with the + first octet specifying slots 1 through 8 and the second + octet specifying slots 9 through 16. + Byte 4: reserved + Byte 5~11: each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc." + ::= { iesSysMaintenance 4 } + + iesMaintenanceDSLConfProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The DSL profile name" + ::= { iesSysMaintenance 5 } + + iesMaintenanceDSLConfMode OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The DSL mode. The semantic for each bit is: + Bit 1: ADSL, G.lite + Bit 2: ADSL, G.dmt + Bit 3: ADSL, T1.413 + Bit 4: ADSL, Auto + Bit 5: ADSL, ETSI + Bit 6: ADSL2, + Bit 7: ADSL2+" + ::= { iesSysMaintenance 6 } + + iesMaintenanceDSLConfPktFilter OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The packet filter. The semantic for each bit is: + Bit 1: accept all + Bit 2: accept PPPoE only + Bit 3: reject ARP + Bit 4: reject DHCP + Bit 5: reject EAPOL + Bit 6: reject PPPoE + Bit 7: reject NetBIOS + Bit 8: reject IGMP + Bit 9: reject IP" + ::= { iesSysMaintenance 7 } + + iesMaintenanceDSLConfDot1xControl OBJECT-TYPE + SYNTAX INTEGER { + auto(1), + forceAuth(2), + forceUnAuth(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configuration defines the 802.1x control type." + ::= { iesSysMaintenance 8 } + + iesMaintenanceDSLConfDot1xReauthPeriod OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configuration defines the 802.1x re-authentication period (seconds)." + ::= { iesSysMaintenance 9 } + + iesMaintenanceDSLConfMacCount OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configuration defines the number of mac addresses which can pass through the port." + ::= { iesSysMaintenance 10 } + + iesMaintenanceVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VPI of the channel" + ::= { iesSysMaintenance 11 } + + iesMaintenanceVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VCI of the channel" + ::= { iesSysMaintenance 12 } + + iesMaintenanceDSLConfAlarmProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The DSL alarm profile name" + ::= { iesSysMaintenance 13 } + + iesMaintenanceDSLConfAnnexL OBJECT-TYPE + SYNTAX INTEGER { + enableNarrowMode(1), + enableWideMode(2), + disable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The annex L setting of the ADSL line (Only in AnnexA)." + ::= { iesSysMaintenance 14 } + + iesMaintenanceDSLConfPmMode OBJECT-TYPE + SYNTAX INTEGER { + enableL2Mode(1), + enableL3Mode(2), + disable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The power management mode of the ADSL line." + ::= { iesSysMaintenance 15 } + + iesMaintenanceDSLConfRateMode OBJECT-TYPE + SYNTAX INTEGER { + fixed(1), -- no rate adaptation + adaptAtStartup(2), -- perform rate adaptation + -- only at initialization + adaptAtRuntime(3) -- perform rate adaptation at + -- any time + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Defines what form of transmit rate adaptation is + configured on this modem. See ADSL Forum TR-005 [3] + for more information." + ::= { iesSysMaintenance 16 } + + iesMaintenanceDSLConfIgmpFilter OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IGMP filter name." + ::= { iesSysMaintenance 17 } + + + -- System Time Setup + + iesTimeServerMode OBJECT-TYPE + SYNTAX INTEGER { + none(1), + daytime(2), + time(3), + ntp(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The mechanism of Time Server when the system boots up." + ::= { iesSysTimeSetup 1 } + + iesTimeServerIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP Address of Time Server" + ::= { iesSysTimeSetup 2 } + + iesSystemTime OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The system time" + ::= { iesSysTimeSetup 3 } + + iesSystemDate OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The system date" + ::= { iesSysTimeSetup 4 } + + iesSystemTimeZone OBJECT-TYPE + SYNTAX INTEGER { + none(0), + utc-1200(1), + utc-1100(2), + utc-1000(3), + utc-0900(4), + utc-0800(5), + utc-0700(6), + utc-0600(7), + utc-0500(8), + utc-0400(9), + utc-0300(10), + utc-0200(11), + utc-0100(12), + utc(13), + utc0100(14), + utc0200(15), + utc0300(16), + utc0400(17), + utc0500(18), + utc0600(19), + utc0700(20), + utc0800(21), + utc0900(22), + utc1000(23), + utc1100(24), + utc1200(25) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The system time zone" + ::= { iesSysTimeSetup 5 } + + + +-- System Access Control + + iesAccessCtrlTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesAccessCtrlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about service access control." + ::= { iesSysAccessControl 1 } + + iesAccessCtrlEntry OBJECT-TYPE + SYNTAX IesAccessCtrlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of access control entry." + INDEX { iesAccessCtrlService } + ::= { iesAccessCtrlTable 1 } + + IesAccessCtrlEntry ::= + SEQUENCE { + iesAccessCtrlService INTEGER, + iesAccessCtrlEnable INTEGER, + iesAccessCtrlPort INTEGER + } + + iesAccessCtrlService OBJECT-TYPE + SYNTAX INTEGER { + telnet(1), + ftp(2), + web(3), + icmp(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The service type of the access control entry." + ::= { iesAccessCtrlEntry 1 } + + iesAccessCtrlEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable the service." + ::= { iesAccessCtrlEntry 2 } + + iesAccessCtrlPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port number which the service uses." + ::= { iesAccessCtrlEntry 3 } + + -- secured client table + iesMaxNumOfSecuredClients OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of sets of secured clients." + ::= { iesSysAccessControl 2} + + iesSecuredClientTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesSecuredClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about secured clients." + ::= { iesSysAccessControl 3 } + + iesSecuredClientEntry OBJECT-TYPE + SYNTAX IesSecuredClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of secured client entry." + INDEX { iesSecuredClientStartIp, iesSecuredClientEndIp } + ::= { iesSecuredClientTable 1 } + + IesSecuredClientEntry ::= + SEQUENCE { + iesSecuredClientStartIp IpAddress, + iesSecuredClientEndIp IpAddress, + iesSecuredClientService INTEGER, + iesSecuredClientRowStatus RowStatus + } + + iesSecuredClientStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The starting IP address of a set of secured clients." + ::= { iesSecuredClientEntry 1 } + + iesSecuredClientEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ending IP address of a set of secured clients." + ::= { iesSecuredClientEntry 2 } + + iesSecuredClientService OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Each bit corresponds to a service. The bit is set to 1 if the + service is enabled, and set to 0 if the service is disabled. + The various bit positions are: + BIT 1: telnet + BIT 2: FTP + BIT 3: web + BIT 4: ICMP" + ::= { iesSecuredClientEntry 3 } + + iesSecuredClientRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or modify or delete an existing row + in this table. A row is activated by setting this object to `active', and is + deactivated by setting it to 'notInService'." + ::= { iesSecuredClientEntry 4 } + + + +-- Static Route + + iesMaxNumOfStaticRoutes OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of static routes." + ::= { iesSysStaticRoute 1 } + + iesStaticRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesStaticRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about static routes." + ::= { iesSysStaticRoute 2 } + + iesStaticRouteEntry OBJECT-TYPE + SYNTAX IesStaticRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of static route entry." + INDEX { iesStaticRouteName } + ::= { iesStaticRouteTable 1 } + + IesStaticRouteEntry ::= + SEQUENCE { + iesStaticRouteName DisplayString, + iesStaticRouteDest IpAddress, + iesStaticRouteMask IpAddress, + iesStaticRouteGateway IpAddress, + iesStaticRouteMetric INTEGER, + iesStaticRouteRowStatus RowStatus + } + + iesStaticRouteName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the static route." + ::= { iesStaticRouteEntry 1 } + + iesStaticRouteDest OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The destination IP address of the static route." + ::= { iesStaticRouteEntry 2 } + + iesStaticRouteMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The subnet mask of the static route." + ::= { iesStaticRouteEntry 3 } + + iesStaticRouteGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The gateway IP address of the static route." + ::= { iesStaticRouteEntry 4 } + + iesStaticRouteMetric OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The routing metric of the static route." + ::= { iesStaticRouteEntry 5 } + + iesStaticRouteRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or modify or delete an existing row + in this table. A row is activated by setting this object to `active', and is + deactivated by setting it to 'notInService'." + ::= { iesStaticRouteEntry 6 } + + + +-- syslog + + iesSysLogEnable OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable syslog function." + ::= { iesSyslogSetup 1 } + + iesSysLogServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IP address of the syslog server." + ::= { iesSyslogSetup 2 } + + iesSysLogFacility OBJECT-TYPE + SYNTAX INTEGER { + local1(1), + local2(2), + local3(3), + local4(4), + local5(5), + local6(6), + local7(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Log facility used by the syslog function." + ::= { iesSyslogSetup 3 } + + + +-- DHCP Setup + + iesDhcpRelayEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable DHCP relay function." + ::= { iesSysDhcpSetup 1 } + + iesDhcpRelayOption82Enable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable DHCP relay Option82 function." + ::= { iesSysDhcpSetup 2 } + + iesDhcpRelayOption82Info OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "User specific Option82 information." + ::= { iesSysDhcpSetup 3 } + + iesMaxNumOfDhcpServers OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of DHCP servers." + ::= { iesSysDhcpSetup 4 } + + iesDhcpServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesDhcpServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains DHCP server information." + ::= { iesSysDhcpSetup 5 } + + iesDhcpServerEntry OBJECT-TYPE + SYNTAX IesDhcpServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of DHCP server table." + INDEX { iesDhcpServerIp } + ::= { iesDhcpServerTable 1 } + + IesDhcpServerEntry ::= + SEQUENCE { + iesDhcpServerIp IpAddress, + iesDhcpServerRowStatus RowStatus + } + + iesDhcpServerIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of the DHCP server." + ::= { iesDhcpServerEntry 1 } + + iesDhcpServerRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the DHCP server entry." + ::= { iesDhcpServerEntry 2 } + +-- SNMP setup, Trap Destination + + iesMaxNumberOfTrapDestinations OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of the trap destinations." + ::= { iesSysSNMPSetup 1 } + + iesSNMPTrapDestTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesSNMPTrapDestEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains SNMP trap destination information." + ::= { iesSysSNMPSetup 2 } + + iesSNMPTrapDestEntry OBJECT-TYPE + SYNTAX IesSNMPTrapDestEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of SNMP trap destination table." + INDEX { iesTrapDestIp, iesTrapDestPort } + ::= { iesSNMPTrapDestTable 1 } + + IesSNMPTrapDestEntry ::= + SEQUENCE { + iesTrapDestIp IpAddress, + iesTrapDestPort INTEGER, + iesTrapDestRowStatus RowStatus + } + + iesTrapDestIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of the trap destination." + ::= { iesSNMPTrapDestEntry 1 } + + iesTrapDestPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The UDP port of the trap destination." + ::= { iesSNMPTrapDestEntry 2 } + + iesTrapDestRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the trap destination entry." + ::= { iesSNMPTrapDestEntry 3} + + iesSnmpGetCommunity OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The SNMP get community." + ::= { iesSysSNMPSetup 3 } + + iesSnmpSetCommunity OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The SNMP set community." + ::= { iesSysSNMPSetup 4 } + + iesSnmpTrapCommunity OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The SNMP trap community." + ::= { iesSysSNMPSetup 5 } + + +-- RADIUS Server setup + + iesMaxNumberOfRadiusServers OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of the RADIUS Servers." + ::= { iesSysDot1xSetup 1 } + + iesRadiusServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesRadiusServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains Radius Server information." + ::= { iesSysDot1xSetup 2 } + + iesRadiusServerEntry OBJECT-TYPE + SYNTAX IesRadiusServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of Radius Server table." + INDEX { iesRadiusServerIndex } + ::= { iesRadiusServerTable 1 } + + IesRadiusServerEntry ::= + SEQUENCE { + iesRadiusServerIndex INTEGER, + iesRadiusServerIp IpAddress, + iesRadiusServerPort INTEGER, + iesRadiusSharedSecret DisplayString, + iesRadiusServerRowStatus RowStatus + } + + iesRadiusServerIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identity of the RADIUS server." + ::= { iesRadiusServerEntry 1 } + + iesRadiusServerIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The IP address of the Radius Server." + ::= { iesRadiusServerEntry 2 } + + iesRadiusServerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The UDP port of the Radius Server." + ::= { iesRadiusServerEntry 3 } + + iesRadiusSharedSecret OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The shared secret of the Radius Server." + ::= { iesRadiusServerEntry 4 } + + iesRadiusServerRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the Radius Server entry." + ::= { iesRadiusServerEntry 5 } + + +-- 802.1x option + + iesDot1xEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable the 802.1x function." + ::= { iesSysDot1xSetup 3 } + + + +-- 802.1x Table + + iesDot1xPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesDot1xPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the configuration of 802.1x." + ::= { iesSysDot1xSetup 4 } + + iesDot1xPortEntry OBJECT-TYPE + SYNTAX IesDot1xPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in iesDot1xPortTable." + INDEX { ifIndex } + ::= { iesDot1xPortTable 1 } + + IesDot1xPortEntry ::= + SEQUENCE { + iesDot1xPortEnable INTEGER, + iesDot1xPortControl INTEGER, + iesDot1xPortReAuthEnable INTEGER, + iesDot1xPortReAuthPeriod INTEGER + } + + iesDot1xPortEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The option defines if the port enables 802.1x + settings." + ::= { iesDot1xPortEntry 1 } + + iesDot1xPortControl OBJECT-TYPE + SYNTAX INTEGER { + auto(1), + forceAuth(2), + forceUnAuth(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configuration defines the 802.1x port control + type." + ::= { iesDot1xPortEntry 2 } + + iesDot1xPortReAuthEnable OBJECT-TYPE + SYNTAX INTEGER { + on(1), + off(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The option defines if the port enables 802.1x + re-authentication." + ::= { iesDot1xPortEntry 3 } + + iesDot1xPortReAuthPeriod OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configuration defines the 802.1x + re-authentication period (seconds) for each port." + ::= { iesDot1xPortEntry 4 } + + + +-- Mac Filter + + iesMacFilterStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesMacFilterStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the status of mac filtering for each port." + ::= { iesSysMacFilter 1 } + + iesMacFilterStatusEntry OBJECT-TYPE + SYNTAX IesMacFilterStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in iesMacFilterStatusTable." + INDEX { ifIndex } + ::= { iesMacFilterStatusTable 1 } + + IesMacFilterStatusEntry ::= + SEQUENCE { + iesMacFilterStatusEnable INTEGER + } + + iesMacFilterStatusEnable OBJECT-TYPE + SYNTAX INTEGER { + enableAccept(1), + disable(2), + enableDeny(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The option defines if the port enables mac filtering." + ::= { iesMacFilterStatusEntry 1 } + + iesMaxNumberOfMacFilters OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of the mac filters in the system." + ::= { iesSysMacFilter 2 } + + iesMaxNumberOfMacFiltersPerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of the mac filters for each port." + ::= { iesSysMacFilter 3 } + + iesCurrNumberOfMacFilters OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of the mac filters in the system." + ::= { iesSysMacFilter 4 } + + iesMacFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesMacFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains the mac filtering information." + ::= { iesSysMacFilter 5 } + + iesMacFilterEntry OBJECT-TYPE + SYNTAX IesMacFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of iesMacFilterTable." + INDEX { ifIndex, iesMacFilterMacAddr } + ::= { iesMacFilterTable 1 } + + IesMacFilterEntry ::= + SEQUENCE { + iesMacFilterMacAddr PhysAddress, + iesMacFilterRowStatus RowStatus + } + + iesMacFilterMacAddr OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The mac address which can pass through the port." + ::= { iesMacFilterEntry 1 } + + iesMacFilterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the entry." + ::= { iesMacFilterEntry 2 } + + + +-- Packet Filter + + iesPacketFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesPacketFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes packet filtering for each port." + ::= { iesSysPacketFilter 1 } + + iesPacketFilterEntry OBJECT-TYPE + SYNTAX IesPacketFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in iesPacketFilterTable." + INDEX { ifIndex } + ::= { iesPacketFilterTable 1 } + + IesPacketFilterEntry ::= + SEQUENCE { + iesPacketFilter INTEGER + } + + iesPacketFilter OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The packet filter. The semantic for each bit is: + Bit 1: accept all + Bit 2: accept PPPoE only + Bit 3: reject ARP + Bit 4: reject DHCP + Bit 5: reject EAPOL + Bit 6: reject PPPoE + Bit 7: reject NetBIOS + Bit 8: reject IGMP + Bit 9: reject IP" + ::= { iesPacketFilterEntry 1 } + + + +-- Mac Count Filter + + iesMacCountFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesMacCountFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes mac count filtering for each port." + ::= { iesSysMacCountFilter 1 } + + iesMacCountFilterEntry OBJECT-TYPE + SYNTAX IesMacCountFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in iesMacCountFilterTable." + INDEX { ifIndex } + ::= { iesMacCountFilterTable 1 } + + IesMacCountFilterEntry ::= + SEQUENCE { + iesMacCountFilterStatus INTEGER, + iesMacCountFilterCount INTEGER + } + + iesMacCountFilterStatus OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The option defines if the port enables mac count filtering." + ::= { iesMacCountFilterEntry 1 } + + iesMacCountFilterCount OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The number of mac addresses which can pass through the port." + ::= { iesMacCountFilterEntry 2 } + + + +-- Static Multicast Group + + iesMaxNumberOfMulticastGroups OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of static multicast groups in the system." + ::= { iesSysMulticastGroup 1 } + + iesMulticastGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesMulticastGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains static multicast group information." + ::= { iesSysMulticastGroup 2 } + + iesMulticastGroupEntry OBJECT-TYPE + SYNTAX IesMulticastGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of multicast group table." + INDEX { iesMulticastGroupVid, iesMulticastGroupMacAddr } + ::= { iesMulticastGroupTable 1 } + + IesMulticastGroupEntry ::= + SEQUENCE { + iesMulticastGroupVid INTEGER, + iesMulticastGroupMacAddr PhysAddress, + iesMulticastGroupPorts PortList, + iesMulticastGroupRowStatus RowStatus + } + + iesMulticastGroupVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The multicast VLAN of the group." + ::= { iesMulticastGroupEntry 1 } + + + iesMulticastGroupMacAddr OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The multicast MAC address of the group." + ::= { iesMulticastGroupEntry 2 } + + iesMulticastGroupPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The port list which specifies the ports joining the multicast group." + ::= { iesMulticastGroupEntry 3 } + + iesMulticastGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the multicast group entry." + ::= { iesMulticastGroupEntry 4 } + + +-- IGMP Filter +-- Obsoleted since Revision 3.0.0 at 2009/11/26 by maverick +-- Not used for R3.x and above. + + iesMaxNumberOfIgmpFilters OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of IGMP filters in the system." + ::= { iesSysIgmpFilter 1 } + + iesIgmpFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesIgmpFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains IGMP filters." + ::= { iesSysIgmpFilter 2 } + + iesIgmpFilterEntry OBJECT-TYPE + SYNTAX IesIgmpFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of IGMP filter table." + INDEX { iesIgmpFilterName, iesIgmpFilterIndex } + ::= { iesIgmpFilterTable 1 } + + IesIgmpFilterEntry ::= + SEQUENCE { + iesIgmpFilterName OCTET STRING, + iesIgmpFilterIndex INTEGER, + iesIgmpFilterStartIp IpAddress, + iesIgmpFilterEndIp IpAddress, + iesIgmpFilterRowStatus RowStatus + } + + iesIgmpFilterName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IGMP filter name." + ::= { iesIgmpFilterEntry 1 } + + iesIgmpFilterIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index which specifies the filter rule." + ::= { iesIgmpFilterEntry 2 } + + iesIgmpFilterStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The start IP of the filter rule." + ::= { iesIgmpFilterEntry 3 } + + iesIgmpFilterEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The end IP of the filter rule." + ::= { iesIgmpFilterEntry 4 } + + iesIgmpFilterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the IGMP filter entry." + ::= { iesIgmpFilterEntry 5 } + + iesIgmpFilterPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesIgmpFilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table specifies the IGMP filter of the port." + ::= { iesSysIgmpFilter 3 } + + iesIgmpFilterPortEntry OBJECT-TYPE + SYNTAX IesIgmpFilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An entry in iesIgmpFilterPortTable." + INDEX { ifIndex } + ::= { iesIgmpFilterPortTable 1 } + + IesIgmpFilterPortEntry ::= + SEQUENCE { + iesIgmpFilterPortFilter OCTET STRING + } + + iesIgmpFilterPortFilter OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IGMP filter of the port." + ::= { iesIgmpFilterPortEntry 1 } + + +-- L2 Switch Configuration + + iesIGMPSnoopingEnabled OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A flag indicating whether IGMP snooping function is enabled or not." + ::= { iesL2SW 1 } + + iesManagementVLANId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The VLAN ID for management." + ::= { iesL2SW 2 } + + iesMaxNumOfStaticVlans OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of static VLANs supported by the system." + ::= { iesL2SW 3 } + + iesPortIsolationEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A flag indicating whether VLAN port isolation function is enabled or not." + ::= { iesL2SW 6 } + + iesRSTPEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/Disable RSTP." + ::= { iesL2SW 7 } + + iesSwitchMode OBJECT-TYPE + SYNTAX INTEGER { + daisyChain(1), + standalone(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Switch DSLAM's operatrion Mode." + ::= { iesL2SW 8 } + + + -- Trunk Group + + iesMaxNumOfTrunkGroups OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of trunk groups." + ::= { iesL2SW 4} + + iesTrunkGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesTrunkGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains trunk group configuration." + ::= { iesL2SW 5 } + + iesTrunkGroupEntry OBJECT-TYPE + SYNTAX IesTrunkGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of trunk group table" + INDEX { iesTrunkGroupId } + ::= { iesTrunkGroupTable 1 } + + IesTrunkGroupEntry ::= + SEQUENCE { + iesTrunkGroupId INTEGER, + iesTrunkGroupName DisplayString, + iesTrunkGroupPorts PortList, + iesTrunkGroupRowStatus RowStatus + } + + iesTrunkGroupId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ID of the trunk group" + ::= { iesTrunkGroupEntry 1 } + + iesTrunkGroupName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The name of the trunk group" + ::= { iesTrunkGroupEntry 2 } + + iesTrunkGroupPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The port list of the trunk group" + ::= { iesTrunkGroupEntry 3 } + + iesTrunkGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the trunk group entry" + ::= { iesTrunkGroupEntry 4 } + + +-- Enterprise specific traps + + reboot NOTIFICATION-TYPE + OBJECTS { iesProblemCause } + STATUS current + DESCRIPTION "Send a message to the manager that the system is going to shutdown. + The variable is the reason that causes the system to shutdown." + ::= { e5x120 0 1 } + + systemShutdown NOTIFICATION-TYPE + OBJECTS { iesProblemCause } + STATUS current + DESCRIPTION "Send a message to the manager that the system is going to shutdown. + The variable is the reason that causes the system to shutdown." + ::= { e5x120 0 2 } + + overheat NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesSlotId, + iesSysTempIndex, + iesSysTempCurValue } + STATUS current + DESCRIPTION "Send a message to the manager that the system is overheated. + The variable in the binding list is the current temperature in Celsius + of the system." + ::= { e5x120 0 3 } + + overheatOver NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesSlotId, + iesSysTempIndex, + iesSysTempCurValue } + STATUS current + DESCRIPTION "Send a message to the manager that the overheated condition is over. + The variable in the binding list is the current temperature in Celsius + of the system." + ::= { e5x120 0 4 } + + errLog NOTIFICATION-TYPE + OBJECTS { iesProblemCause } + STATUS current + DESCRIPTION "Send a message to the manager that an error log is created in system. + The variable in the binding list is the content of the error log." + ::= { e5x120 0 5 } + + fanRpmLow NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesFanRpmIndex, + iesFanRpmCurValue } + STATUS current + DESCRIPTION "Send a message to the manager that the rpm of the fan is too low. + The variable in the binding list is the current rpm of the fan." + ::= { e5x120 0 6 } + + fanRpmNormal NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesFanRpmIndex, + iesFanRpmCurValue } + STATUS current + DESCRIPTION "Send a message to the manager that the low-rpm condition of the fan is over. + The variable in the binding list is the current rpm of the fan." + ::= { e5x120 0 7 } + + voltageOutOfRange NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesSlotId, + iesVoltageIndex, + iesVoltageCurValue } + STATUS current + DESCRIPTION "Send a message to the manager that the voltage of the system is out of range. + The variable in the binding list is the current voltage in volt + of the system." + ::= { e5x120 0 8 } + + voltageNormal NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesSlotId, + iesVoltageIndex, + iesVoltageCurValue } + STATUS current + DESCRIPTION "Send a message to the manager that the low-voltage condition is over. + The variable in the binding list is the current voltage in volt + of the system." + ::= { e5x120 0 9 } + + systemMaintenanceFailure NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesSlotId, + iesProblemCause } + STATUS current + DESCRIPTION "Send a message to the manager that the system maintence operation + fail. The variable in the variable binding indicates the problem." + ::= { e5x120 0 10 } + + configChange NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesSlotId, + iesProblemCause } + STATUS current + DESCRIPTION "This notification indicates that the configuration data of one module is changed." + ::= { e5x120 0 11 } + + moduleUp NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesSlotId } + STATUS current + DESCRIPTION "A moduleUp trap signifies that the sending + protocol entity recognizes that one of the + modules represented in the agent's + configuration has come up." + ::= { e5x120 0 12 } + + moduleDown NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesSlotId } + STATUS current + DESCRIPTION "A moduleDown trap signifies that the sending + protocol entity recognizes a failure in one of + the modules represented in the agent's + configuration." + ::= { e5x120 0 13 } + + modulePlugIn NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesSlotId } + STATUS current + DESCRIPTION "A modulePlugIn trap signifies that the sending + protocol entity recognizes that one module is + plugged into the device." + ::= { e5x120 0 14 } + + modulePullOut NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesSlotId } + STATUS current + DESCRIPTION "A modulePullOut trap signifies that the sending + protocol entity recognizes one module is pulled out + from the device." + ::= { e5x120 0 15 } + + powerDC48VAFailure NOTIFICATION-TYPE +-- OBJECTS { } + STATUS current + DESCRIPTION "The trap signifies that the power supply of DC 48V at the + right side of main Chassis (front view) failed." + ::= { e5x120 0 16 } + + powerDC48VANormal NOTIFICATION-TYPE +-- OBJECTS { } + STATUS current + DESCRIPTION "The trap signifies that the power supply of DC 48V at the + right side of main Chassis (front view) is in normal state." + ::= { e5x120 0 17 } + + powerDC48VBFailure NOTIFICATION-TYPE +-- OBJECTS { } + STATUS current + DESCRIPTION "The trap signifies that the power supply of DC 48V at the + left side of main Chassis (front view) failed." + ::= { e5x120 0 18 } + + powerDC48VBNormal NOTIFICATION-TYPE +-- OBJECTS { } + STATUS current + DESCRIPTION "The trap signifies that the power supply of DC 48V at the + left side of main Chassis (front view) is in normal state." + ::= { e5x120 0 19 } + + extAlarmInputTrigger NOTIFICATION-TYPE +-- OBJECTS { } + STATUS current + DESCRIPTION "The trap signifies that the external alarm input of MSC card + is triggered." + ::= { e5x120 0 20 } + + extAlarmInputRelease NOTIFICATION-TYPE +-- OBJECTS { } + STATUS current + DESCRIPTION "The trap signifies that the external alarm input of MSC card + is released." + ::= { e5x120 0 21 } + + thermalSensorFailure NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesSlotId } + STATUS current + DESCRIPTION "The trap signifies that the thermal sensor failed." + ::= { e5x120 0 22 } + + mscSwitchOverOK NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesSlotId } + STATUS current + DESCRIPTION "The trap signifies that MSC card is switched over successfully. The value of + iesSlotId is the slot ID of the current working MSC." + ::= { e5x120 0 23 } + + networkTopologyChange NOTIFICATION-TYPE +-- OBJECTS { } + STATUS current + DESCRIPTION "The trap signifies the network topology is changed." + ::= { e5x120 0 24 } + + adslAtucLof NOTIFICATION-TYPE + OBJECTS { ifIndex } + STATUS current + DESCRIPTION "The trap signifies ATU-C Loss of Framing." + ::= { e5x120 0 25 } + + adslAturLof NOTIFICATION-TYPE + OBJECTS { ifIndex } + STATUS current + DESCRIPTION "The trap signifies ATU-R Loss of Framing." + ::= { e5x120 0 26 } + + adslAtucLos NOTIFICATION-TYPE + OBJECTS { ifIndex } + STATUS current + DESCRIPTION "The trap signifies ATU-C Loss of Signal." + ::= { e5x120 0 27 } + + adslAturLos NOTIFICATION-TYPE + OBJECTS { ifIndex } + STATUS current + DESCRIPTION "The trap signifies ATU-R Loss of Signal." + ::= { e5x120 0 28 } + + adslAturLpr NOTIFICATION-TYPE + OBJECTS { ifIndex } + STATUS current + DESCRIPTION "The trap signifies ATU-R Loss of Power." + ::= { e5x120 0 29 } + + adslAtucLofClear NOTIFICATION-TYPE + OBJECTS { ifIndex } + STATUS current + DESCRIPTION "The trap signifies ATU-C Loss of Framing is cleared." + ::= { e5x120 0 30 } + + adslAturLofClear NOTIFICATION-TYPE + OBJECTS { ifIndex } + STATUS current + DESCRIPTION "The trap signifies ATU-R Loss of Framing is cleared." + ::= { e5x120 0 31 } + + adslAtucLosClear NOTIFICATION-TYPE + OBJECTS { ifIndex } + STATUS current + DESCRIPTION "The trap signifies ATU-C Loss of Signal is cleared." + ::= { e5x120 0 32 } + + adslAturLosClear NOTIFICATION-TYPE + OBJECTS { ifIndex } + STATUS current + DESCRIPTION "The trap signifies ATU-R Loss of Signal is cleared." + ::= { e5x120 0 33 } + + adslAturLprClear NOTIFICATION-TYPE + OBJECTS { ifIndex } + STATUS current + DESCRIPTION "The trap signifies ATU-R Loss of Power is cleared." + ::= { e5x120 0 34 } + +END diff --git a/mibs/calix/E5-120-MIB b/mibs/calix/E5-120-MIB new file mode 100644 index 0000000000..43647e17f6 --- /dev/null +++ b/mibs/calix/E5-120-MIB @@ -0,0 +1,10451 @@ +-- $Log: E5-120-MIB.mib $ +-- Revision 1.67 2011/04/28 03:38:13 Alex.Shih +-- Revision 1.66 2011/03/10 09:37:48 swee +-- Remove supported in R5.x or later version info +-- Revision 1.65 2011/02/09 00:24:59 Alex.Shih +-- Revision 1.65 2011/02/09 00:09:50 Alex.Shih +-- Revision 1.64 2011/01/27 09:24:10 Alex.Shih +-- Revision 1.63 2011/01/24 06:02:44 Alex.Shih +-- Revision 1.62 2011/01/07 07:32:03 cylien +-- fix compile error of mibble +-- Revision 1.61 2010/11/15 11:01:01 Alex.Shih +-- Revision 1.60 2010/11/12 02:58:57 cylien +-- Revision 1.59 2010/11/03 11:00:56 john +-- Revision 1.58 2010/10/26 01:35:33 DavidGong +-- Revision 1.57 2010/10/25 10:07:59 Alex.Shih +-- Revision 1.56 2010/10/14 08:58:32 cylien +-- Revision 1.55 2010/09/30 08:23:27 Alex.Shih +-- Revision 1.54 2010/09/30 04:12:02 cylien +-- Revision 1.53 2010/09/29 02:29:27 cylien +-- Revision 1.52 2010/09/29 01:18:50 john +-- Revision 1.51 2010/09/28 01:01:45 DavidGong +-- Revision 1.50 2010/09/23 07:59:17 cylien +-- Revision 1.49 2010/09/16 10:34:06 DavidGong +-- Revision 1.48 2010/09/08 07:02:34 Alex.Shih +-- Revision 1.47 2010/09/08 03:47:53 Alex.Shih +-- Revision 1.46 2010/08/27 09:00:40 John +-- Revision 1.45 2010/08/27 05:45:47 Alex.Shih +-- Revision 1.44 2010/08/10 07:47:54 Alex.Shih +-- Revision 1.43 2010/07/19 05:35:13 John +-- Revision 1.42 2010/07/17 05:59:03 Alex.Shih +-- Revision 1.41 2010/07/16 09:19:43 cylien +-- Revision 1.40 2010/07/09 11:03:17 John +-- Revision 1.39 2010/07/01 11:38:20 davidgong +-- Revision 1.38 2010/07/01 11:12:01 davidgong +-- Revision 1.37 2010/06/30 07:01:19 Alex.Shih +-- Revision 1.36 2010/06/29 06:43:44 Alex.Shih +-- Revision 1.35 2010/06/28 17:05:02 John +-- Revision 1.33 2010/06/24 07:47:21 davidgong +-- Revision 1.32 2010/06/24 05:28:14 davidgong +-- Revision 1.31 2010/06/08 03:52:08 cylien +-- Revision 1.30 2010/06/07 00:57:38 davidgong +-- Revision 1.29 2010/06/03 12:06:07 JeFF +-- Revision 1.28 2010/06/02 01:18:24 Alex.Shih +-- Revision 1.27 2010/05/21 03:57:37 maverick +-- Revision 1.26 2010/04/23 10:46:29 maverick +-- Revision 1.25 2009/11/26 13:06:56 maverick +-- add comment to obsoleted mib entries, mibble checked +-- Revision 1.24 2009/09/15 05:51:30 maverick +-- Revision 1.23 2009/07/27 08:16:55 niceguy +-- Revision 1.22 2009/07/10 10:39:39 maverick +-- Revision 1.21 2009/06/26 11:01:55 John +-- Revision 1.20 2009/06/25 02:47:25 niceguy +-- Revision 1.19 2009/06/10 02:26:38 John +-- Revision 1.18 2009/05/21 12:28:27 maverick +-- Revision 1.17 2009/05/21 04:05:18 John +-- Revision 1.16 2009/05/20 13:04:20 maverick +-- Revision 1.15 2009/05/20 00:58:57 maverick +-- Revision 1.14 2009/04/29 09:45:26 Ives +-- Revision 1.13 2009/04/29 05:51:21 niceguy +-- Revision 1.12 2009/04/21 12:25:22 Ives +-- Revision 1.10 2008/11/12 08:19:34 kenny +-- Revision 1.9 2008/09/26 10:45:17 niceguy +-- Revision 1.8 2008/09/26 05:51:34 maverick +-- Revision 1.7 2008/09/16 08:11:26 kenny +-- Revision 1.6 2008/08/25 07:12:03 kenny +-- Revision 1.5 2008/08/21 10:55:19 kenny +-- Revision 1.4 2008/08/15 10:29:16 maverick +-- Revision 1.3 2008/08/05 06:35:53 maverick +-- Revision 1.2 2008/08/04 12:47:34 maverick +-- Revision 1.1 2008/07/11 09:36:15 maverick +-- Initial revision +-- Revision 1.7 2008/06/27 16:08:09 maverick +-- Revision 1.6 2008/06/23 08:54:10 kenny +-- Revision 1.5 2008/06/10 13:53:03 maverick +-- Revision 1.4 2008/05/30 14:12:22 maverick +-- Revision 1.3 2008/05/20 02:55:59 maverick +-- Revision 1.2 2008/05/13 02:03:13 maverick +-- Revision 1.6 2008/03/07 07:56:43 kenny +-- Revision 1.5 2007/12/14 10:00:11 niceguy +-- Revision 1.4 2007/12/14 02:42:41 niceguy +-- Revision 1.3 2007/12/06 02:03:04 kenny +-- Revision 1.2 2007/12/03 01:54:35 niceguy +-- Revision 1.1 2007/12/03 01:45:30 niceguy +-- Initial revision +-- Initial revision + + + E5-120-MIB DEFINITIONS ::= BEGIN + + IMPORTS + + enterprises + FROM RFC1155-SMI + OBJECT-TYPE, Counter32, Gauge32, Unsigned32, Counter64, IpAddress, TimeTicks, NOTIFICATION-TYPE + FROM SNMPv2-SMI + DisplayString, PhysAddress, ifIndex + FROM RFC1213-MIB + RowStatus, TEXTUAL-CONVENTION + FROM SNMPv2-TC + VlanIndex, PortList, dot1qVlanIndex + FROM Q-BRIDGE-MIB + dot1dTrafficClass + FROM P-BRIDGE-MIB + MacAddress, Timeout, BridgeId, dot1dBasePort + FROM BRIDGE-MIB + dot1agCfmMdIndex, dot1agCfmMaIndex, dot1agCfmMepIdentifier + FROM IEEE8021-CFMD8-MIB; + + + calixNetworks OBJECT IDENTIFIER ::= { enterprises 6321 } + calixRegistrations OBJECT IDENTIFIER ::= { calixNetworks 1 } + calixProducts OBJECT IDENTIFIER ::= { calixRegistrations 2 } + e5x100 OBJECT IDENTIFIER ::= { calixProducts 3 } + e5x120 OBJECT IDENTIFIER ::= { e5x100 3 } + + + + alarmconf OBJECT IDENTIFIER ::= { e5x120 2 } + diagnostic OBJECT IDENTIFIER ::= { e5x120 4 } + multicast OBJECT IDENTIFIER ::= { e5x120 7 } + port OBJECT IDENTIFIER ::= { e5x120 8 } + profile OBJECT IDENTIFIER ::= { e5x120 9 } + switch OBJECT IDENTIFIER ::= { e5x120 10 } + sys OBJECT IDENTIFIER ::= { e5x120 11 } + trap OBJECT IDENTIFIER ::= { e5x120 12 } + statistics OBJECT IDENTIFIER ::= { e5x120 13 } + clear OBJECT IDENTIFIER ::= { e5x120 14 } + aesSeriesCommon OBJECT IDENTIFIER ::= { e5x120 97 } -- obsoleted since R2.0 by maverick + iesSeriesCommon OBJECT IDENTIFIER ::= { e5x120 98 } + accessSwitchCommonATM OBJECT IDENTIFIER ::= { e5x120 99 } + + + +---------------------------------------- +-- alarmconf +---------------------------------------- + + alarmOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The manager sets the corresponding bit value to 1 to start the operation + and the agent clears the object to zero when the operation is successfully completed. + The various bit positions are: + BIT 1: clear + BIT 2: cutoff" + ::= { alarmconf 1 } + +-- Alarm Conf Table + + alarmConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF AlarmConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes alarm configuration." + ::= { alarmconf 2 } + + alarmConfEntry OBJECT-TYPE + SYNTAX AlarmConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in alarmConfTable." + INDEX { alarmConfId } + ::= { alarmConfTable 1 } + + AlarmConfEntry ::= + SEQUENCE { + alarmConfId INTEGER, + alarmConfFacility INTEGER, + alarmConfTarget INTEGER, + alarmConfSeverity INTEGER, + alarmConfClearable INTEGER + } + + alarmConfId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + 5000:vdslLine_up + 5001:vdslLine_down + 5002:vdsl_tca_lol + 5003:vdsl_tca_lof + 5004:vdsl_tca_los + 5005:vdsl_tca_lop + 5006:vdsl_tca_es + 5007:vdsl_tca_ses + 5008:vdsl_tca_uas + 5009:xd_xtuc_loftrap + 5010:xd_xtuc_lostrap + 5011:xd_xtur_loftrap + 5012:xd_xtur_lostrap + 5013:xd_xtur_lprtrap + 5014:ad_dhcp_rt_full + 5015:ad_dhcp_dm_conflict + 5016:ad_dhcp_entry_full + 5017:ad_dhcp_ip_dup + 5018:ad_dhcp_mac_dup + 10000:eqptVol_err + 10001:eqptEqpttemp_err + 10002:eqptFan_err + 10003:eqptHw_rtc_fail + 10004:eqptHw_mon_fail + 10005:eqptCold_start + 10006:eqptWarm_start + 10007:eqptAlm_input + 10008:eqptAlm_input2 + 10009:eqptAlm_input3 + 15000:sysReboot + 15001:sysAco + 15002:sysAlm_clear + 15003:sysLogin_fail + 15004:sysAnti_spoofing + 15005:sysAlm_svrty_change + 15006:sysHost_terminate + 20000:enetUp + 20001:enetDown + 30000:cfmError + " + ::= { alarmConfEntry 1 } + + alarmConfFacility OBJECT-TYPE + SYNTAX INTEGER { + local1(1), + local2(2), + local3(3), + local4(4), + local5(5), + local6(6), + local7(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Alarm facility." + ::= { alarmConfEntry 2 } + + alarmConfTarget OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination which alarms are reported to. Set the bit to 1 to enable the target. + BIT 1: snmp trap + BIT 2: syslog" + ::= { alarmConfEntry 3 } + + alarmConfSeverity OBJECT-TYPE + SYNTAX INTEGER { + critical(1), + major(2), + minor(3), + info(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Alarm severity" + ::= { alarmConfEntry 4 } + + alarmConfClearable OBJECT-TYPE + SYNTAX INTEGER { + clearable(1), + unclearable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting the object to one indicates that the alarm is to be cleared when user submits alarm clear." + ::= { alarmConfEntry 5 } + +-- Alarm Current Table + + alarmCurrTable OBJECT-TYPE + SYNTAX SEQUENCE OF AlarmCurrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes current alarm information." + ::= { alarmconf 3 } + + alarmCurrEntry OBJECT-TYPE + SYNTAX AlarmCurrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in alarmCurrTable." + INDEX { alarmCurrIndex } + ::= { alarmCurrTable 1 } + + AlarmCurrEntry ::= + SEQUENCE { + alarmCurrIndex INTEGER, + alarmCurrOccurTime TimeTicks, + alarmCurrTrapOid OBJECT IDENTIFIER, + alarmCurrParam1 INTEGER, + alarmCurrParam2 INTEGER, + alarmCurrParam3 INTEGER, + alarmCurrParam4 INTEGER, + alarmCurrParam5 INTEGER, + alarmCurrParam6 INTEGER, + alarmCurrParam7 INTEGER, + alarmCurrParam8 INTEGER, + alarmCurrTimeDescr DisplayString, + alarmCurrSeverity INTEGER, + alarmCurrDescr DisplayString + } + + alarmCurrIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of the alarm." + ::= { alarmCurrEntry 1 } + + alarmCurrOccurTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Alarm occurence time (in hundredths of a second) since the system was last re-initialized." + ::= { alarmCurrEntry 2 } + + alarmCurrTrapOid OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Trap OID of the alarm." + ::= { alarmCurrEntry 3 } + + alarmCurrParam1 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 1st parameter of the alarm." + ::= { alarmCurrEntry 4 } + + alarmCurrParam2 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 2nd parameter of the alarm." + ::= { alarmCurrEntry 5 } + + alarmCurrParam3 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 3rd parameter of the alarm." + ::= { alarmCurrEntry 6 } + + alarmCurrParam4 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 4th parameter of the alarm." + ::= { alarmCurrEntry 7 } + + alarmCurrParam5 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 5th parameter of the alarm." + ::= { alarmCurrEntry 8 } + + alarmCurrParam6 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 6th parameter of the alarm." + ::= { alarmCurrEntry 9 } + + alarmCurrParam7 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 7th parameter of the alarm." + ::= { alarmCurrEntry 10 } + + alarmCurrParam8 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 8th parameter of the alarm." + ::= { alarmCurrEntry 11 } + + alarmCurrTimeDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The string representation of occurence time (YYYY/MM/DD HH:MM:SS)." + ::= { alarmCurrEntry 12 } + + alarmCurrSeverity OBJECT-TYPE + SYNTAX INTEGER { + critical(1), + major(2), + minor(3), + info(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The severity of the alarm." + ::= { alarmCurrEntry 13 } + + alarmCurrDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The description of the alarm." + ::= { alarmCurrEntry 14 } + +-- Alarm Severity Port Table + + alarmSeverityPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF AlarmSeverityPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the configuration of alarm reporting severity threshold for each port." + ::= { alarmconf 4 } + + alarmSeverityPortEntry OBJECT-TYPE + SYNTAX AlarmSeverityPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in alarmSeverityPortTable." + INDEX { ifIndex } + ::= { alarmSeverityPortTable 1 } + + AlarmSeverityPortEntry ::= + SEQUENCE { + severityThresh INTEGER + } + + severityThresh OBJECT-TYPE + SYNTAX INTEGER { + critical(1), + major(2), + minor(3), + info(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The minimum alarm severity that is reported." + ::= { alarmSeverityPortEntry 1 } + +---------------------------------------- +-- diagnostic +---------------------------------------- + + selt OBJECT IDENTIFIER ::= { diagnostic 3 } + ldm OBJECT IDENTIFIER ::= { diagnostic 4 } + + +-------------------- +-- selt +-------------------- + + seltTarget OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IfIndex of the port which would be performed single end loopback test." + ::= { selt 1 } + + seltOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The manager sets the object to 1 to start the selt + and the agent clears the object to zero when selt is successfully completed." + ::= { selt 2 } + + seltStatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Status description of the selt result." + ::= { selt 3 } + + seltCableType OBJECT-TYPE + SYNTAX INTEGER { + awg24(1), + awg26(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The cable type that selt result indicates." + ::= { selt 4 } + + seltLoopEstimateLengthFt OBJECT-TYPE + SYNTAX INTEGER + UNITS "feet" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The estimated loop length that selt result indicates." + ::= { selt 5 } + + seltLoopEstimateLengthMeter OBJECT-TYPE + SYNTAX INTEGER + UNITS "meter" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The estimated loop length that selt result indicates." + ::= { selt 6 } + +-------------------- +-- ldm +-------------------- + + ldmTarget OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IfIndex of the port which would be performed ldm test." + ::= { ldm 1 } + + ldmOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The manager sets the object to 1 to start the ldm test + and the agent clears the object to zero when ldm test is successfully completed." + ::= { ldm 2 } + + ldmStatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Status description of ldm test result." + ::= { ldm 3 } + + ldmXtucLoopAttenuation OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Loop Attenuation." + ::= { ldm 4 } + + ldmXtucSignalAttenuation OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Signal Attenuation." + ::= { ldm 5 } + + ldmXtucSignalMargin OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Signal Margin." + ::= { ldm 6 } + + ldmXtucAggregateTxPower OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Actual Aggregate Transmit Power." + ::= { ldm 7 } + + ldmXtucAttainableBitRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "bits per second" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Attainable Bit Rate." + ::= { ldm 8 } + + ldmXturLoopAttenuation OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Loop Attenuation." + ::= { ldm 9 } + + ldmXturSignalAttenuation OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Signal Attenuation." + ::= { ldm 10 } + + ldmXturSignalMargin OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Signal Margin." + ::= { ldm 11 } + + ldmXturAggregateTxPower OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Actual Aggregate Transmit Power." + ::= { ldm 12 } + + ldmXturAttainableBitRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "bits per second" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Attainable Bit Rate." + ::= { ldm 13 } + + ldmXtucNumOfSubcarriersPerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of subcarriers per port for ATU-C." + ::= { ldm 14 } + + ldmXturNumOfSubcarriersPerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of subcarriers per port for ATU-R." + ::= { ldm 15 } + + ldmXtucHlinScale OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Scale of Hlin." + ::= { ldm 16 } + + ldmXtucHlinReal1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides real part of Hlin for the first 256 subcarriers. + Each subcarrier takes two octets to store the value." + ::= { ldm 17 } + + ldmXtucHlinReal2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides real part of Hlin for the last 256 subcarriers. + Each subcarrier takes two octets to store the value." + ::= { ldm 18 } + + ldmXtucHlinImage1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides image part of Hlin for the first 256 subcarriers. + Each subcarrier takes two octets to store the value." + ::= { ldm 19 } + + ldmXtucHlinImage2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides image part of Hlin for the last 256 subcarriers. + Each subcarrier takes two octets to store the value." + ::= { ldm 20 } + + ldmXtucHlog1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Hlog for the first 256 subcarriers. + Each subcarrier takes two octets to store the value." + ::= { ldm 21 } + + ldmXtucHlog2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Hlog for the last 256 subcarriers. + Each subcarrier takes two octets to store the value." + ::= { ldm 22 } + + ldmXtucQln1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides QLN for the first 256 subcarriers. + Each subcarrier takes two octets to store the value." + ::= { ldm 23 } + + ldmXtucQln2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides QLN for the last 256 subcarriers. + Each subcarrier takes two octets to store the value." + ::= { ldm 24 } + + ldmXtucSnr1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides SNR for the first 256 subcarriers. + Each subcarrier takes two octets to store the value." + ::= { ldm 25 } + + ldmXtucSnr2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides SNR for the last 256 subcarriers. + Each subcarrier takes two octets to store the value." + ::= { ldm 26 } + + ldmXturHlinScale OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Scale of Hlin." + ::= { ldm 27 } + + ldmXturHlinReal OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Real part of Hlin. Each subcarrier takes two octets to store the value." + ::= { ldm 28 } + + ldmXturHlinImage OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Image part of Hlin. Each subcarrier takes two octets to store the value." + ::= { ldm 29 } + + ldmXturHlog OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Hlog of subcarrier. Each subcarrier takes two octets to store the value." + ::= { ldm 30 } + + ldmXturQln OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "QLN of subcarrier. Each subcarrier takes two octets to store the value." + ::= { ldm 31 } + + ldmXturSnr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "SNR of subcarrier. Each subcarrier takes two octets to store the value." + ::= { ldm 32 } + + ldmXtucHlogGroupFactor OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Hlog group factor of ATU-C." + ::= { ldm 33 } + + ldmXtucQlnGroupFactor OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Qln group factor of ATU-C." + ::= { ldm 34 } + + ldmXtucSnrGroupFactor OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Snr group factor of ATU-C." + ::= { ldm 35 } + + ldmXturHlogGroupFactor OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Hlog group factor of ATU-R." + ::= { ldm 36 } + + ldmXturQlnGroupFactor OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Qln group factor of ATU-R." + ::= { ldm 37 } + + ldmXturSnrGroupFactor OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Snr group factor of ATU-R." + ::= { ldm 38 } + +---------------------------------------- +-- multicast +---------------------------------------- +-- Obsoleted in calix MRD20 since Revision 1.20 at 2009/06/25 by niceguy +-- Object mcastBandwidth, igmpCount below is kept for e5-110 R1.x below. Not used for R2.x and above. + mcastBandwidth OBJECT IDENTIFIER ::= { multicast 4 } + igmpCount OBJECT IDENTIFIER ::= { multicast 5 } + mvlan OBJECT IDENTIFIER ::= { multicast 6 } + queryVid OBJECT IDENTIFIER ::= { multicast 7 } + igmpTimer OBJECT IDENTIFIER ::= { multicast 11 } + auditQuery OBJECT IDENTIFIER ::= { multicast 12 } + igmpProfile OBJECT IDENTIFIER ::= { multicast 13 } + + igmpEnable OBJECT-TYPE + SYNTAX INTEGER { + enableProxy(1), + enableSnooping(2), + disable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable IGMP protocol." + ::= { multicast 1 } + + igmpVersion OBJECT-TYPE + SYNTAX INTEGER { + v2(1), + v3(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting IGMP version." + ::= { multicast 9 } + + igmpLeaveMode OBJECT-TYPE + SYNTAX INTEGER { + immediateLeave(1), + lastMemberQuery(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure IGMP leave message handling mode." + ::= { multicast 10 } + +-------------------- +-- bandwidth +-------------------- +-- removed in calix MRD20 +-- To support multiple version of E5-1xx (Currently R1.x and R2.x), we keep all those useful entries in the MIB + mcastDefaultBandwidth OBJECT-TYPE + SYNTAX INTEGER (1..100000) + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Default bandwidth requirement for a multicast channel." + ::= { mcastBandwidth 1 } + + maxNumOfMcastBw OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of row entries that user can create in mcastBwTable." + ::= { mcastBandwidth 2 } + +-- mcastBwTable + + mcastBwTable OBJECT-TYPE + SYNTAX SEQUENCE OF McastBwEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table defines bandwidth budget for a range of multicast IP channels." + ::= { mcastBandwidth 3 } + + mcastBwEntry OBJECT-TYPE + SYNTAX McastBwEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of mcastBwTable." + INDEX { mcastBwIndex, mcastBwStartIp, mcastBwEndIp } + ::= { mcastBwTable 1 } + + McastBwEntry ::= + SEQUENCE { + mcastBwIndex INTEGER, + mcastBwStartIp IpAddress, + mcastBwEndIp IpAddress, + mcastBwBandwidth INTEGER, + mcastBwRowStatus RowStatus + } + + mcastBwIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index which specify the entry." + ::= { mcastBwEntry 1 } + + mcastBwStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The start multicast IP of the bandwidth control range." + ::= { mcastBwEntry 2 } + + mcastBwEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The end multicast IP of the bandwidth control range." + ::= { mcastBwEntry 3 } + + mcastBwBandwidth OBJECT-TYPE + SYNTAX INTEGER + UNITS "Kbps" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The bandwidth budget for the multicast IP channels." + ::= { mcastBwEntry 4 } + + mcastBwRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the entry." + ::= { mcastBwEntry 5 } + +-- mcastBwPortTable + + mcastBwPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF McastBwPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table specify the multicast bandwidth control of the port." + ::= { mcastBandwidth 4 } + + mcastBwPortEntry OBJECT-TYPE + SYNTAX McastBwPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of mcastBwPortTable." + INDEX { ifIndex } + ::= { mcastBwPortTable 1 } + + McastBwPortEntry ::= + SEQUENCE { + mcastBwPortEnable INTEGER, + mcastBwPortBandwidth INTEGER + } + + mcastBwPortEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable multicast bandwidth control for a port." + ::= { mcastBwPortEntry 1 } + + mcastBwPortBandwidth OBJECT-TYPE + SYNTAX INTEGER + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set bandwidth threshold for a port." + ::= { mcastBwPortEntry 2 } + +-------------------- +-- igmpCount +-------------------- +-- removed in calix MRD20 +-- To support multiple version of E5-1xx (Currently R1.x and R2.x), we keep all those useful entries in the MIB + igmpCountPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpCountPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table specify the IGMP count limiting of the port." + ::= { igmpCount 1 } + + igmpCountPortEntry OBJECT-TYPE + SYNTAX IgmpCountPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of igmpCountPortTable." + INDEX { ifIndex } + ::= { igmpCountPortTable 1 } + + IgmpCountPortEntry ::= + SEQUENCE { + igmpCountPortEnable INTEGER, + igmpCountPortLimit INTEGER + } + + igmpCountPortEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable IGMP count limiting for a port." + ::= { igmpCountPortEntry 1 } + + igmpCountPortLimit OBJECT-TYPE + SYNTAX INTEGER (0..16) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum allowed IGMP report count for a port." + ::= { igmpCountPortEntry 2 } + +-------------------- +-- mvlan +-------------------- + + maxNumOfMvlan OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of row entries that user can create in mvlanTable." + ::= { mvlan 1 } + +-- mvlanTable + + mvlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF MvlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing static configuration information for + each multicast VLAN configured into the device." + ::= { mvlan 2 } + + mvlanEntry OBJECT-TYPE + SYNTAX MvlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of mvlanTable." + INDEX { mvlanIndex } + ::= { mvlanTable 1 } + + MvlanEntry ::= + SEQUENCE { + mvlanIndex VlanIndex, + mvlanName DisplayString, + mvlanEgressPorts PortList, + mvlanUntaggedPorts PortList, + mvlanRowStatus RowStatus + } + + mvlanIndex OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The VLAN-ID refering to this VLAN." + ::= { mvlanEntry 1 } + + mvlanName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "An administratively assigned string, which may be used to identify the VLAN." + ::= { mvlanEntry 2 } + + mvlanEgressPorts 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 multicast VLAN." + ::= { mvlanEntry 3 } + + mvlanUntaggedPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The set of ports which should transmit egress packets + for this multicast VLAN as untagged." + ::= { mvlanEntry 4 } + + mvlanRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { mvlanEntry 5 } + +-- mvlanTranslateTable + + mvlanTranslateTable OBJECT-TYPE + SYNTAX SEQUENCE OF MvlanTranslateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains multicast to VLAN translation." + ::= { mvlan 3 } + + mvlanTranslateEntry OBJECT-TYPE + SYNTAX MvlanTranslateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of mvlanTranslateTable." + INDEX { dot1qVlanIndex, mvlanTranslateIndex } + ::= { mvlanTranslateTable 1 } + + MvlanTranslateEntry ::= + SEQUENCE { + mvlanTranslateIndex INTEGER, + mvlanTranslateStartIp IpAddress, + mvlanTranslateEndIp IpAddress + } + + mvlanTranslateIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index which specif the entry." + ::= { mvlanTranslateEntry 1 } + + mvlanTranslateStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The start IP of the multicast VLAN translation." + ::= { mvlanTranslateEntry 2 } + + mvlanTranslateEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The end IP of the multicast VLAN translation." + ::= { mvlanTranslateEntry 3 } + +-------------------- +-- queryVid +-------------------- + + maxNumOfQryVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of row entries that user can create in qryVidConfTable." + ::= { queryVid 1 } + +-- qryVidConfTable + + qryVidConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF QryVidConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table defines statically set VLANs used for response IGMP report." + ::= { queryVid 2 } + + qryVidConfEntry OBJECT-TYPE + SYNTAX QryVidConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in qryVidConfTable." + INDEX { qryVid } + ::= { qryVidConfTable 1 } + + QryVidConfEntry ::= + SEQUENCE { + qryVid INTEGER, + qryVidRowStatus RowStatus + } + + qryVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VLAN ID." + ::= { qryVidConfEntry 1 } + + qryVidRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { qryVidConfEntry 2 } + +-- qryVidStatusTable + + qryVidStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF QryVidStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table shows statically set or dynamically learned VLANs used for response IGMP report." + ::= { queryVid 3 } + + qryVidStatusEntry OBJECT-TYPE + SYNTAX QryVidStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in qryVidStatusTable." + INDEX { qryVid } + ::= { qryVidStatusTable 1 } + + QryVidStatusEntry ::= + SEQUENCE { + qryVidType INTEGER + } + + qryVidType OBJECT-TYPE + SYNTAX INTEGER { + static(1), + dynamic(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VLAN type." + ::= { qryVidStatusEntry 1 } + +-------------------- +-- igmpTimer +-------------------- + + igmpQryInterval OBJECT-TYPE + SYNTAX INTEGER (10..1000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IGMP query interval, 10~1000 in seconds." + ::= { igmpTimer 1 } + + igmpRobust OBJECT-TYPE + SYNTAX INTEGER (1..5) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IGMP query Robustness, 1~5." + ::= { igmpTimer 2 } + + igmpQryRespInterval OBJECT-TYPE + SYNTAX INTEGER (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IGMP query response interval, 1~100 in 100 milliseconds." + ::= { igmpTimer 3 } + + igmpLastMemQryInterval OBJECT-TYPE + SYNTAX INTEGER (1..5) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IGMP Last Member Query interval, 1~5 in 100 milliseconds." + ::= { igmpTimer 4 } + + igmpLastMemQryRobust OBJECT-TYPE + SYNTAX INTEGER (1..5) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set Last Member Query Robustness, 1~5." + ::= { igmpTimer 5 } + +-------------------- +-- auditQuery +-------------------- + + auditQryEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable IGMP audit query." + ::= { auditQuery 1 } + + auditQryInterval OBJECT-TYPE + SYNTAX INTEGER (1..4) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IGMP Audit Query Interval, 1~4 in 100 milliseconds." + ::= { auditQuery 2 } + + auditQryRobust OBJECT-TYPE + SYNTAX INTEGER (1..5) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IGMP Audit Query Robustness, 1~5." + ::= { auditQuery 3 } + +-------------------- +-- igmpProfile +-------------------- + + maxNumberOfIgmpProfiles OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of IGMP profiles in the system." + ::= { igmpProfile 1 } + + igmpProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains IGMP Profiles." + ::= { igmpProfile 2 } + + igmpProfileEntry OBJECT-TYPE + SYNTAX IgmpProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of IGMP Profile table." + INDEX {IMPLIED igmpProfileName } + ::= { igmpProfileTable 1 } + + IgmpProfileEntry ::= + SEQUENCE { + igmpProfileName DisplayString, + igmpProfileEnable INTEGER, + igmpProfileMaxGroup INTEGER, + igmpProfileRowStatus RowStatus + } + + igmpProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IGMP Profile name." + ::= { igmpProfileEntry 1 } + + igmpProfileEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable IGMP Profile." + ::= { igmpProfileEntry 2 } + + igmpProfileMaxGroup OBJECT-TYPE + SYNTAX INTEGER (1..64) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set maximum allowed multicast group, 1~64." + ::= { igmpProfileEntry 3 } + + igmpProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the IGMP Profile entry." + ::= { igmpProfileEntry 4 } + + igmpFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains IGMP Filters." + ::= { igmpProfile 3 } + + igmpFilterEntry OBJECT-TYPE + SYNTAX IgmpFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of IGMP Filter table." + INDEX { igmpProfileName, igmpFilterIndex } + ::= { igmpFilterTable 1 } + + IgmpFilterEntry ::= + SEQUENCE { + igmpFilterIndex INTEGER, + igmpFilterStartIp IpAddress, + igmpFilterEndIp IpAddress + } + + igmpFilterIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index which specifies the filter rule." + ::= { igmpFilterEntry 1 } + + igmpFilterStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The start IP of the filter rule." + ::= { igmpFilterEntry 2 } + + igmpFilterEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The end IP of the filter rule." + ::= { igmpFilterEntry 3 } + + igmpProfilePortTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpProfilePortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table specifies the IGMP Profile of the port." + ::= { igmpProfile 4 } + + igmpProfilePortEntry OBJECT-TYPE + SYNTAX IgmpProfilePortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in igmpProfilePortTable." + INDEX { ifIndex } + ::= { igmpProfilePortTable 1 } + + IgmpProfilePortEntry ::= + SEQUENCE { + igmpProfilePortProfile OCTET STRING + } + + igmpProfilePortProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IGMP Profile of the port." + ::= { igmpProfilePortEntry 1 } + + + +---------------------------------------- +-- port +---------------------------------------- +-- Since we define it latter, mark the definition here +-- subrPortTable OBJECT IDENTIFIER ::= { port 1 } +-- adslPort OBJECT IDENTIFIER ::= { port 2 } + vdslPort OBJECT IDENTIFIER ::= { port 3 } + pvc OBJECT IDENTIFIER ::= { port 4 } +-- ppvc OBJECT IDENTIFIER ::= { port 5 } + rpvc OBJECT IDENTIFIER ::= { port 8 } +-- Since we define it latter, mark the definition here +-- dsBcastDisableTable OBJECT IDENTIFIER ::= { port 9 } + paepvc OBJECT IDENTIFIER ::= { port 10 } + tlspvc OBJECT IDENTIFIER ::= { port 11 } +-- ipbpvc OBJECT IDENTIFIER ::= { port 12 } + dtpvc OBJECT IDENTIFIER ::= { port 13 } + snrMgn OBJECT IDENTIFIER ::= { port 15 } + dslRate OBJECT IDENTIFIER ::= { port 16 } +-- G.bond start from 51 + gbond OBJECT IDENTIFIER ::= { port 51 } +-- Subscriber Port Table + + subrPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF SubrPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes subscriber attributes for the port." + ::= { port 1 } + + subrPortEntry OBJECT-TYPE + SYNTAX SubrPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in subrPortTable." + INDEX { ifIndex } + ::= { subrPortTable 1 } + + SubrPortEntry ::= + SEQUENCE { + subrPortName DisplayString, + subrPortTel DisplayString + } + + subrPortName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Name of the subscriber." + ::= { subrPortEntry 1 } + + subrPortTel OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..15)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Telephone number of the subscriber." + ::= { subrPortEntry 2 } + +-------------------- +-- adslPort +-------------------- + +-- ADSL Line Table + +-- adslLineConfTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF AdslLineConfEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "This table includes common attributes describing the ADSL line." +-- ::= { adslPort 1 } +-- +-- adslLineConfEntry OBJECT-TYPE +-- SYNTAX AdslLineConfEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry in adslLineConfTable." +-- INDEX { ifIndex } +-- ::= { adslLineConfTable 1 } +-- +-- AdslLineConfEntry ::= +-- SEQUENCE { +-- adslLineConfAdslMode INTEGER, +-- adslLineConfAnnexL INTEGER, +-- adslLineConfAnnexM INTEGER, +-- adslLineConfAnnexI INTEGER, +-- adslLineConfOptionMask INTEGER, +-- adslLineConfPowerMgmt INTEGER, +-- adslLineConfPowerMode INTEGER, +-- adslLineConfAturMaxTxPower INTEGER, +-- adslLineConfAtucMaxTxPower INTEGER, +-- adslLineConfMaxRxPower INTEGER, +-- adslLineConfAturCarrierMask OCTET STRING, +-- adslLineConfAtucCarrierMask0 OCTET STRING, +-- adslLineConfAtucCarrierMask1 OCTET STRING, +-- adslLineConfAturInp INTEGER, +-- adslLineConfAtucInp INTEGER, +-- adslLineConfL0Time INTEGER, +-- adslLineConfL2Time INTEGER, +-- adslLineConfL2ATPR INTEGER, +-- adslLineConfL2ATPRT INTEGER, +-- adslLineConfMaxL2Rate INTEGER, +-- adslLineConfMinL2Rate INTEGER, +-- adslLineConfL0toL2Rate INTEGER +-- } +-- +-- adslLineConfAdslMode OBJECT-TYPE +-- SYNTAX INTEGER { +-- gDotLite(1), +-- gDotDmt(2), +-- t1Dot413(3), +-- auto(4), +-- etsi(5), +-- adsl2(6), +-- adsl2Plus(7) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "G.lite and T1.413 are only applicable to annex A board. +-- ETSI is only applicable to annex B board." +-- ::= { adslLineConfEntry 1 } +-- +-- adslLineConfAnnexL OBJECT-TYPE +-- SYNTAX INTEGER { +-- enableNarrowMode(1), +-- enableWideMode(2), +-- disable(3) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Enable/disable annex L for the port(Only in AnnexA)." +-- ::= { adslLineConfEntry 2 } +-- +-- adslLineConfAnnexM OBJECT-TYPE +-- SYNTAX INTEGER { +-- enable(1), +-- disable(2) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Enable/disable annex M for the port(For BCM AnnexA solution)." +-- ::= { adslLineConfEntry 3 } +-- +-- adslLineConfAnnexI OBJECT-TYPE +-- SYNTAX INTEGER { +-- enable(1), +-- disable(2) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Enable/disable annex I for the port(For BCM AnnexA solution)." +-- ::= { adslLineConfEntry 4 } +-- +-- adslLineConfOptionMask OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The semantic for each bit is: +-- BIT 1 : Disable Trellis +-- BIT 2 : Disable Reed-Solomon +-- BIT 3 : Disable upstream bitswap +-- BIT 4 : Disable downstream bitswap +-- BIT 5 : Disable 1-bit constellation +-- BIT 6 : Disable transmit windowing +-- BIT 7 : Disable s=0.5 support (ADSL1 only) +-- BIT 8 : Disable G.lite rate limit (ADSL1 only)" +-- ::= { adslLineConfEntry 5 } +-- +-- adslLineConfPowerMgmt OBJECT-TYPE +-- SYNTAX INTEGER { +-- enableL2(1), +-- enableL2(2), +-- disable(3) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Enable/disable power management for the port." +-- ::= { adslLineConfEntry 6 } +-- +-- adslLineConfPowerMode OBJECT-TYPE +-- SYNTAX INTEGER { +-- fix(1), +-- priorityToPower(2), +-- priorityToRate(3) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The power mode of the ADSL line." +-- ::= { adslLineConfEntry 7 } +-- +-- adslLineConfAturMaxTxPower OBJECT-TYPE +-- SYNTAX INTEGER (-130..200) +-- UNITS "tenth dBm" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The maximum allowed transmit power of ATU-R." +-- ::= { adslLineConfEntry 8 } +-- +-- adslLineConfAtucMaxTxPower OBJECT-TYPE +-- SYNTAX INTEGER (-50..200) +-- UNITS "tenth dBm" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The maximum allowed transmit power of ATU-C." +-- ::= { adslLineConfEntry 9 } +-- +-- adslLineConfMaxRxPower OBJECT-TYPE +-- SYNTAX INTEGER (-255..255) +-- UNITS "tenth dBm" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The maximum aggregate received power." +-- ::= { adslLineConfEntry 10 } +-- +-- adslLineConfAturCarrierMask OBJECT-TYPE +-- SYNTAX OCTET STRING +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The upstream carrier mask. For CTLM AnnexA solution, bin is from 0 to 31; +-- CTLM AnnexB solution, bin is from 0 to 63; BCM solution, bin is from 0 to 63. +-- Bit set to 1 indicates the bin is masked off." +-- ::= { adslLineConfEntry 11 } +-- +-- adslLineConfAtucCarrierMask0 OBJECT-TYPE +-- SYNTAX OCTET STRING +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The downstream carrier mask. For CTLM AnnexA solution, bin is from 32 to 255; +-- CTLM AnnexB solution, bin is from 64 to 255; BCM solution, bin is from 32 to 255. +-- Bit set to 1 indicates the bin is masked off." +-- ::= { adslLineConfEntry 12 } +-- +-- adslLineConfAtucCarrierMask1 OBJECT-TYPE +-- SYNTAX OCTET STRING +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The downstream carrier mask from bin 256 to 511. Bit set to 1 indicates +-- the bin is masked off." +-- ::= { adslLineConfEntry 13 } +-- +-- adslLineConfAturInp OBJECT-TYPE +-- SYNTAX INTEGER { +-- zero(1), +-- zero_point_five(2), +-- one(3), +-- two(4), +-- four(5), +-- eight(6), +-- sixteen(7) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The upstream Impulse Noise Protection minimum setting in unit of DMT symbol. +-- For CTLM solution, user can set value from 1 ~ 4, +-- but for BCM solution, user can set value from 1 ~ 7." +-- ::= { adslLineConfEntry 14 } +-- +-- adslLineConfAtucInp OBJECT-TYPE +-- SYNTAX INTEGER { +-- zero(1), +-- zero_point_five(2), +-- one(3), +-- two(4), +-- four(5), +-- eight(6), +-- sixteen(7) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The downstream Impulse Noise Protection minimum setting in unit of DMT symbol. +-- For CTLM solution, user can set value from 1 ~ 4, +-- but for BCM solution, user can set value from 1 ~ 7." +-- ::= { adslLineConfEntry 15 } +-- +-- +-- adslLineConfL0Time OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Set the minimum time in seconds that the ADSL line +-- must stay in L0 power mode before changing to the L2 power mode. +-- For CTLM solution, the range is 120 ~ 65535; +-- for BCM solution, the range is 10 ~ 65535." +-- ::= { adslLineConfEntry 16 } +-- +-- adslLineConfL2Time OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Set minimum time in seconds that the ADSL line must stay in the +-- L2 power mode before reducing the power again in the L2 power mode. +-- For CTLM solution, the range is 60 ~ 65535; +-- for BCM solution, the range is 10 ~ 65535." +-- ::= { adslLineConfEntry 17 } +-- +-- adslLineConfL2ATPR OBJECT-TYPE +-- SYNTAX INTEGER +-- UNITS "dB" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Set the maximum Aggregate Transmit Power Reduction (ATPR) +-- in decibels (dB) that is permitted in a L2 power reduction. +-- The system can gradually decrease the ADSL line transmission power +-- while it is in the L2 power mode. This is the largest individual +-- power reduction allowed in the L2 power mode. +-- For CTLM solution, the range is 1 ~ 5(dB); +-- for BCM solution, the range is 0 ~ 15(dB)." +-- ::= { adslLineConfEntry 18 } +-- +-- adslLineConfL2ATPRT OBJECT-TYPE +-- SYNTAX INTEGER +-- UNITS "dB" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "the maximum Aggregate Transmit Power Reduction Total (ATPRT) +-- in decibels (dB) that is permitted in the L2 power mode. +-- This is the total transmit power decrease that is allowed +-- to occur in the L2 power mode. +-- For CTLM solution, the range is 1 ~ 40(dB); +-- for BCM solution, the range is 0 ~ 15(dB)." +-- ::= { adslLineConfEntry 19 } +-- +-- +-- adslLineConfMaxL2Rate OBJECT-TYPE +-- SYNTAX INTEGER +-- UNITS "kbps" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "configured maximum L2 rate. +-- (32~4096 Kbps, 4 Kbps resolution. For CTLM solution, 0 for system assign; for BCM solution, default:4096.)" +-- ::= { adslLineConfEntry 20 } +-- +-- adslLineConfMinL2Rate OBJECT-TYPE +-- SYNTAX INTEGER +-- UNITS "kbps" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "configured minimum L2 rate. +-- (32~4096 Kbps, 4 Kbps resolution, For CTLM solution, 0 for system assign; for BCM solution, default:32.)" +-- ::= { adslLineConfEntry 21 } +-- +-- adslLineConfL0toL2Rate OBJECT-TYPE +-- SYNTAX INTEGER +-- UNITS "kbps" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "configured transition L0 to L2 rate. +-- (<=min_l2rate/2 and >= 16 Kbps, For CTLM solution, 0 for system assign; for BCM solution, default:16.)" +-- ::= { adslLineConfEntry 22 } +-- +-- ADSL Port Batch Set +-- +-- adslPortBatchSet OBJECT IDENTIFIER ::= { adslPort 3 } +-- +-- adslPortTarget OBJECT-TYPE +-- SYNTAX OCTET STRING +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The managed object is used for identify the target on which +-- the port configuration should be performed. The target is encoded as: +-- Byte 1: 0, Reserved(chaises) +-- Byte 2~3: 0,0 Reserved(slot) +-- Byte 4: 0, reserved +-- Byte 5~11:each octet specifies a set of eight ports, with the first +-- octet specifying ports 1 through 8, etc." +-- ::= { adslPortBatchSet 1 } +-- +-- adslPortOps OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The managed object is for ADSL line configuration. When the EMS +-- wants to issue the desired operation, the EMS shall send SNMP-SET message to set +-- the corresponding bit value to be 1. The various bit positions are: +-- BIT 1: enable port +-- BIT 2: disable port +-- BIT 3: set ADSL mode +-- BIT 4: set line profile +-- BIT 5: set alarm profile +-- BIT 6: enable Annex L to be narrow mode(Only in AnnexA) +-- BIT 7: enable Annex L to be wide mode(Only in AnnexA) +-- BIT 8: disable Annex L(Only in AnnexA) +-- BIT 9: enable Annex M (For BCM AnnexA solution) +-- BIT 10: disable Annex M (For BCM AnnexA solution) +-- BIT 11: enable Annex I (For BCM AnnexA solution) +-- BIT 12: disable Annex I (For BCM AnnexA solution) +-- BIT 13: set option mask +-- BIT 14: enable power management mode to be L2 +-- BIT 15: enable power management mode to be L2 +-- BIT 16: disable power management mode +-- BIT 17: set power mode to be fixed +-- BIT 18: set power mode to be priority to power +-- BIT 19: set power mode to be priority to rate +-- BIT 20: set ATU-R max Tx power +-- BIT 21: set ATU-C max Tx power +-- BIT 22: set max Rx power +-- BIT 23: set ATU-R carrier mask +-- BIT 24: set ATU-C carrier mask +-- BIT 25: set ATU-R INP minimum setting +-- BIT 26: set ATU-C INP minimum setting" +-- ::= { adslPortBatchSet 2 } +-- +-- adslPortOps2 OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The managed object is for ADSL line configuration. When the EMS +-- wants to issue the desired operation, the EMS shall send SNMP-SET message to set +-- the corresponding bit value to be 1. The various bit positions are: +-- BIT 1: set L0 Time +-- BIT 2: set L2 Time +-- BIT 3: set L2 ATPR +-- BIT 4: set L2 ATPRT +-- BIT 5: set maximum L2 rate +-- BIT 6: set minimum L2 rate +-- BIT 7: set transition L0 to L2 rate" +-- ::= { adslPortBatchSet 3 } +-- +-- +-- adslModeForBatchSet OBJECT-TYPE +-- SYNTAX INTEGER { +-- gDotLite(1), +-- gDotDmt(2), +-- t1Dot413(3), +-- auto(4), +-- etsi(5), +-- adsl2(6), +-- adsl2Plus(7) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "G.lite and T1.413 are only applicable to annex A board. +-- ETSI is only applicable to annex B board." +-- ::= { adslPortBatchSet 4 } +-- +-- adslLineProfileForBatchSet OBJECT-TYPE +-- SYNTAX DisplayString (SIZE (1..31)) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The ADSL line profile." +-- ::= { adslPortBatchSet 5 } +-- +-- adslAlarmProfileForBatchSet OBJECT-TYPE +-- SYNTAX DisplayString (SIZE (1..31)) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The ADSL alarm profile." +-- ::= { adslPortBatchSet 6 } +-- +-- adslOptionMaskForBatchSet OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The semantic for each bit is identical to the object adslLineConfOptionMask." +-- ::= { adslPortBatchSet 7 } +-- +-- adslAturMaxTxPowerForBatchSet OBJECT-TYPE +-- SYNTAX INTEGER (-130..200) +-- UNITS "tenth dBm" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The maximum allowed transmit power of ATU-R." +-- ::= { adslPortBatchSet 8 } +-- +-- adslAtucMaxTxPowerForBatchSet OBJECT-TYPE +-- SYNTAX INTEGER (-50..200) +-- UNITS "tenth dBm" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The maximum allowed transmit power of ATU-C." +-- ::= { adslPortBatchSet 9 } +-- +-- adslMaxRxPowerForBatchSet OBJECT-TYPE +-- SYNTAX INTEGER (-255..255) +-- UNITS "tenth dBm" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The maximum aggregate received power." +-- ::= { adslPortBatchSet 10 } +-- +-- adslAturCarrierMaskForBatchSet OBJECT-TYPE +-- SYNTAX OCTET STRING +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The upstream carrier mask.For CTLM AnnexA solution, bin is from 0 to 31; +-- CTLM AnnexB solution, bin is from 0 to 63; BCM solution, bin is from 0 to 63. +-- Bit set to 1 indicates the bin is masked off." +-- ::= { adslPortBatchSet 11 } +-- +-- adslAtucCarrierMask0ForBatchSet OBJECT-TYPE +-- SYNTAX OCTET STRING +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The downstream carrier mask from bin 32 to 255. Bit set to 1 indicates +-- the bin is masked off." +-- ::= { adslPortBatchSet 12 } +-- +-- adslAtucCarrierMask1ForBatchSet OBJECT-TYPE +-- SYNTAX OCTET STRING +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The downstream carrier mask from bin 256 to 511. Bit set to 1 indicates +-- the bin is masked off." +-- ::= { adslPortBatchSet 13 } +-- +-- adslAturInpForBatchSet OBJECT-TYPE +-- SYNTAX INTEGER { +-- zero(1), +-- zero_point_five(2), +-- one(3), +-- two(4), +-- four(5), +-- eight(6), +-- sixteen(7) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The upstream Impulse Noise Protection minimum setting in unit of DMT symbol. +-- For CTLM solution, user can set value from 1 ~ 4, but for BCM solution, user can set value from 1 ~ 7." +-- ::= { adslPortBatchSet 14 } +-- +-- adslAtucInpForBatchSet OBJECT-TYPE +-- SYNTAX INTEGER { +-- zero(1), +-- zero_point_five(2), +-- one(3), +-- two(4), +-- four(5), +-- eight(6), +-- sixteen(7) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The downstream Impulse Noise Protection minimum setting in unit of DMT symbol. +-- For CTLM solution, user can set value from 1 ~ 4, but for BCM solution, user can set value from 1 ~ 7." +-- ::= { adslPortBatchSet 15 } +-- +-- +-- adslL0TimeForBatchSet OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Set the minimum time in seconds that the ADSL line +-- must stay in L0 power mode before changing to the L2 power mode. +-- For CTLM solution, the range is 120 ~ 65535; for BCM solution, the range is 10 ~ 65535." +-- ::= { adslPortBatchSet 16 } +-- +-- adslL2TimeForBatchSet OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Set minimum time in seconds that the ADSL line +-- must stay in the L2 power mode before reducing the power +-- again in the L2 power mode. +-- For CTLM solution, the range is 60 ~ 65535; for BCM solution, the range is 10 ~ 65535." +-- ::= { adslPortBatchSet 17 } +-- +-- adslL2ATPRForBatchSet OBJECT-TYPE +-- SYNTAX INTEGER +-- UNITS "dB" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Set the maximum Aggregate Transmit Power Reduction (ATPR) +-- in decibels (dB) that is permitted in a L2 power reduction. +-- The system can gradually decrease the ADSL line transmission power +-- while it is in the L2 power mode. This is the largest individual +-- power reduction allowed in the L2 power mode. +-- For CTLM solution, the range is 1 ~ 5(dB); for BCM solution, the range is 0 ~ 15(dB)." +-- ::= { adslPortBatchSet 18 } +-- +-- adslL2ATPRTForBatchSet OBJECT-TYPE +-- SYNTAX INTEGER +-- UNITS "dB" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "the maximum Aggregate Transmit Power Reduction Total (ATPRT) +-- in decibels (dB) that is permitted in the L2 power mode. +-- This is the total transmit power decrease that is allowed +-- to occur in the L2 power mode. +-- For CTLM solution, the range is 1 ~ 40(dB); for BCM solution, the range is 0 ~ 15(dB)." +-- ::= { adslPortBatchSet 19 } +-- +-- adslMaxL2RateForBatchSet OBJECT-TYPE +-- SYNTAX INTEGER +-- UNITS "kbps" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "configured maximum L2 rate. +-- (32~4096 Kbps, 4 Kbps resolution. For CTLM solution, 0 for system assign; for BCM solution, default:4096.)" +-- ::= { adslPortBatchSet 20 } +-- +-- adslMinL2RateForBatchSet OBJECT-TYPE +-- SYNTAX INTEGER +-- UNITS "kbps" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "configured minimum L2 rate. +-- (32~4096 Kbps, 4 Kbps resolution, For CTLM solution, 0 for system assign; for BCM solution, default:32.)" +-- ::= { adslPortBatchSet 21 } +-- +-- adslL0toL2RateForBatchSet OBJECT-TYPE +-- SYNTAX INTEGER +-- UNITS "kbps" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "configured transition L0 to L2 rate. +-- (<=min_l2rate/2 and >= 16 Kbps, For CTLM solution, 0 for system assign; for BCM solution, default:16.)" +-- ::= { adslPortBatchSet 22 } +-- +-- Line Status +-- +-- adslLineStatusTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF AdslLineStatusEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "This table includes the ADSL line status." +-- ::= { adslPort 4 } +-- +-- adslLineStatusEntry OBJECT-TYPE +-- SYNTAX AdslLineStatusEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry in adslLineStatusTable." +-- INDEX { ifIndex } +-- ::= { adslLineStatusTable 1 } +-- +-- AdslLineStatusEntry ::= +-- SEQUENCE { +-- adslLineStatusMode INTEGER, +-- adslLineUpTime INTEGER +-- } +-- +-- adslLineStatusMode OBJECT-TYPE +-- SYNTAX INTEGER { +-- gDotLite(1), +-- gDotDmt(2), +-- t1Dot413(3), +-- etsi(4), +-- adsl2(5), +-- adsl2Plus(6), +-- none(7) +-- } +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "The link up mode of the ADSL line." +-- ::= { adslLineStatusEntry 1 } +-- +-- adslLineUpTime OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "The link up time of the ADSL line, in unit of seconds" +-- ::= { adslLineStatusEntry 2 } +-- +-- Power Mgmt Parameter Table +-- +-- powerMgmtParamTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF PowerMgmtParamEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "This table defines L0 to L2 power transition parameters." +-- ::= { adslPort 5 } +-- +-- powerMgmtParamEntry OBJECT-TYPE +-- SYNTAX PowerMgmtParamEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry in powerMgmtParamTable." +-- INDEX { ifIndex } +-- ::= { powerMgmtParamTable 1 } +-- +-- PowerMgmtParamEntry ::= +-- SEQUENCE { +-- powerMgmtL0Time INTEGER, +-- powerMgmtL2Time INTEGER, +-- powerMgmtL2Atpr INTEGER, +-- powerMgmtL2Atprt INTEGER, +-- powerMgmtL2MinRate INTEGER, +-- powerMgmtL2MaxRate INTEGER, +-- powerMgmtL2ThreshRate INTEGER +-- } +-- +-- powerMgmtL0Time OBJECT-TYPE +-- SYNTAX INTEGER +-- UNITS "second" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The object specifies the minimum time in L0 mode before L2 mode may be entered." +-- ::= { powerMgmtParamEntry 1 } +-- +-- powerMgmtL2Time OBJECT-TYPE +-- SYNTAX INTEGER +-- UNITS "second" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The object specifies the minimum time in L2 mode before trimming and in between power trims." +-- ::= { powerMgmtParamEntry 2 } +-- +-- powerMgmtL2Atpr OBJECT-TYPE +-- SYNTAX INTEGER +-- UNITS "dB" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The maximum Aggregate Transmit Power Reduction." +-- ::= { powerMgmtParamEntry 3 } +-- +-- powerMgmtL2Atprt OBJECT-TYPE +-- SYNTAX INTEGER +-- UNITS "dB" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The maximum Aggregate Transmit Power Reduction Total." +-- ::= { powerMgmtParamEntry 4 } +-- +-- powerMgmtL2MinRate OBJECT-TYPE +-- SYNTAX INTEGER +-- UNITS "Kbps" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The object specifies the minimum L2 rate." +-- ::= { powerMgmtParamEntry 5 } +-- +-- powerMgmtL2MaxRate OBJECT-TYPE +-- SYNTAX INTEGER +-- UNITS "Kbps" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The object specifies the maximum L2 rate." +-- ::= { powerMgmtParamEntry 6 } +-- +-- powerMgmtL2ThreshRate OBJECT-TYPE +-- SYNTAX INTEGER +-- UNITS "Kbps" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The object specifies the rate threshold that triggers the line entering L0 or L2 mode." +-- ::= { powerMgmtParamEntry 7 } +-- +-- Power Mgmt PSD Table +-- Not support in 7324 RU R4.0.2 +-- powerMgmtPSDTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF PowerMgmtPSDEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "This table provides the PSD setting for both ATU-C and ATU-R." +-- ::= { adslPort 6 } +-- +-- powerMgmtPSDEntry OBJECT-TYPE +-- SYNTAX PowerMgmtPSDEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry in powerMgmtPSDTable." +-- INDEX { ifIndex } +-- ::= { powerMgmtPSDTable 1 } +-- +-- PowerMgmtPSDEntry ::= +-- SEQUENCE { +-- powerMgmtAtucMaxPSD INTEGER, +-- powerMgmtAturMaxPSD INTEGER +-- } +-- +-- powerMgmtAtucMaxPSD OBJECT-TYPE +-- SYNTAX INTEGER +-- UNITS "0.1dBm/Hz" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The object specifies the maximum ATU-C PSD." +-- ::= { powerMgmtPSDEntry 1 } +-- +-- powerMgmtAturMaxPSD OBJECT-TYPE +-- SYNTAX INTEGER +-- UNITS "0.1dBm/Hz" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The object specifies the maximum ATU-R PSD." +-- ::= { powerMgmtPSDEntry 2 } + +-------------------- +-- vdslPort +-------------------- + +-- VDSL Line Table + + vdslLineConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslLineConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes common attributes describing the VDSL line. + This table is supported by R2.00 and later versions." + ::= { vdslPort 1 } + + vdslLineConfEntry OBJECT-TYPE + SYNTAX VdslLineConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in vdslLineConfTable." + INDEX { ifIndex } + ::= { vdslLineConfTable 1 } + + VdslLineConfEntry ::= + SEQUENCE { + vdslLineConfUpbo INTEGER, + vdslLineConfVdslProfile INTEGER, +-- vdslLineConfFrequencyPlan INTEGER, + vdslLineConfRfiBand INTEGER, + vdslLineConfIpqosProfile DisplayString, + vdslLineConfVturInp INTEGER, + vdslLineConfVtucInp INTEGER, + vdslLineConfOptionMask INTEGER, + vdslLineConfUpboForceLength INTEGER, + vdslLineConfPsdShape INTEGER, + vdslLineConfDpbo INTEGER, + vdslLineConfDpboParamEsel INTEGER, + vdslLineConfDpboParamEscma INTEGER, + vdslLineConfDpboParamEscmb INTEGER, + vdslLineConfDpboParamEscmc INTEGER, + vdslLineConfDpboParamMus INTEGER, + vdslLineConfDpboParamFmin INTEGER, + vdslLineConfDpboParamFmax INTEGER, + vdslLineConfDpboParamPsdId INTEGER +-- vdslLineConfPMask INTEGER + } + + vdslLineConfUpbo OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable upstream power backoff control." + ::= { vdslLineConfEntry 1 } + + vdslLineConfVdslProfile OBJECT-TYPE + SYNTAX INTEGER { + vdsl8a(1), + vdsl8b(2), + vdsl8c(3), + vdsl8d(4), + vdsl12a(5), + vdsl12b(6), + vdsl17a(7), + auto(8), + adsl2plus(9), + vdsl2(10), + gdmt(11), + glite(12), + adsl2(13), + t1413(14), + vdsl2adsl2(15), + vdsl2gdmt(16), + vdsl2glite(17), + vdsl2t1413(18) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set VDSL profile." + ::= { vdslLineConfEntry 2 } + +-- vdslLineConfFrequencyPlan OBJECT-TYPE +-- SYNTAX INTEGER { +-- plan997(1), +-- plan998(2) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Set VDSL frequency plan." +-- ::= { vdslLineConfEntry 3 } + + vdslLineConfRfiBand OBJECT-TYPE + SYNTAX INTEGER { + disable(1), + ansi(2), + etsi(3), + custom(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set VDSL customized RFI configuration. + disable: not apply RFI notch to port + ansi: use pre-defined ANSI RFI notch + etsi: use pre-defined ETSI notch + custom: user needs to define customized RFI notch band through vdslRfiCustomTable" + ::= { vdslLineConfEntry 4 } + + vdslLineConfIpqosProfile OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { vdslLineConfEntry 5 } + + vdslLineConfVturInp OBJECT-TYPE + SYNTAX INTEGER (0..160) + UNITS "0.1 DTM symbol" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VTUR minimum INP value" + ::= { vdslLineConfEntry 6 } + + vdslLineConfVtucInp OBJECT-TYPE + SYNTAX INTEGER (0..160) + UNITS "0.1 DTM symbol" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VTUC mimimum INT value" + ::= { vdslLineConfEntry 7 } + + vdslLineConfOptionMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + Bit1: disable Trellis coding in ADSL mode + Bit2: disable Reed-Solomon coding for ADSL + Bit3: disable upstream bitswaps + Bit4: disable downstream bitwaps + Bit5: disable upstream 1-bit constellation support + Bit6: disable the transmit windowing in ADSL2+ mode + Bit7: disable S=0.5 support in G.dmt + Bit8: reserved + Bit9: enable nitro + Bit10: enable ADSL2 Annex L + Bit11: enable ADSL2+ Annex M + Bit12: enable US PTM optimization + Bit13: enable DS PTM optimization + Bit14: enable US PHYR + Bit15: enable DS PHYR" + ::= { vdslLineConfEntry 8 } + + vdslLineConfUpboForceLength OBJECT-TYPE + SYNTAX INTEGER (-5..1270) + UNITS "0.1dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-1 means max(kl0_CO,kl0_CPE). + -2 means min(kl0_CO,kl0_CPE). + -3 means kl0_CO. + -4 means kl0_CPE. + -5 means kl0_CPE + delta as calculated from. + " + ::= { vdslLineConfEntry 9 } + + vdslLineConfPsdShape OBJECT-TYPE + SYNTAX INTEGER { + vdsl2aNus0(1), + vdsl2aEu32(2), + vdsl2aEu36(3), + vdsl2aEu40(4), + vdsl2aEu44(5), + vdsl2aEu48(6), + vdsl2aEu52(7), + vdsl2aEu56(8), + vdsl2aEu60(9), + vdsl2aEu64(10), + vdsl2aEu128(11), + vdsl1fttexAnsiM1(12), + vdsl1fttexAnsiM2(13), + vdsl1fttcabAnsiM1(14), + vdsl1fttcabAnsiM2(15), + vdsl1fttexAnsiM1E(16), + vdsl1fttexAnsiM2E(17), + vdslFttcabAnsiM1E(18), + vdslFttcabAnsiM2E(19), + vdsl2aCt(20), + vdsl2b8x1(21), + vdsl2b8x2(22), + vdsl2b8x3(23), + vdsl2b8x4(24), + vdsl2b8x5(25), + vdsl2b8x6(26), + vdsl2b8x7(27), + vdsl2b8x8(28), + vdsl2b8x9(29), + vdsl2b8x10(30), + vdsl2b8x11(31), + vdsl2b8x12(32), + vdsl2b8x13(33), + vdsl2b8x14(34), + vdsl2b8x15(35), + vdsl2b8x16(36), + vdsl2b7x1(37), + vdsl2b7x2(38), + vdsl2b7x3(39), + vdsl2b7x4(40), + vdsl2b7x5(41), + vdsl2b7x6(42), + vdsl2b7x7(43), + vdsl2b7x8(44), + vdsl2b7x9(45), + vdsl2b7x10(46), + vdsl2btAnfp(47), + vdsl2c138b(48), + vdsl2c276b(49), + vdsl2c138co(50), + vdsl2c276co(51), + vdsl2cTcmisdn(52), + vdsl1QAMCompatible(53) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "PSD mask type" + ::= { vdslLineConfEntry 10 } + + vdslLineConfDpbo OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/Disable DPBO" + ::= { vdslLineConfEntry 11 } + + vdslLineConfDpboParamEsel OBJECT-TYPE + SYNTAX INTEGER (0..511) + UNITS "0.5dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DPBO ESEL parameter" + ::= { vdslLineConfEntry 12 } + + vdslLineConfDpboParamEscma OBJECT-TYPE + SYNTAX INTEGER (0..640) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DPBO ESCMA parameter -1~1.5 in step of 1/256." + ::= { vdslLineConfEntry 13 } + + vdslLineConfDpboParamEscmb OBJECT-TYPE + SYNTAX INTEGER (0..640) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DPBO ESCMB parameter -1~1.5 in step of 1/256." + ::= { vdslLineConfEntry 14 } + + vdslLineConfDpboParamEscmc OBJECT-TYPE + SYNTAX INTEGER (0..640) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DPBO ESCMC parameter -1~1.5 in step of 1/256." + ::= { vdslLineConfEntry 15 } + + vdslLineConfDpboParamMus OBJECT-TYPE + SYNTAX INTEGER (0..255) + UNITS "-0.5 dBm/Hz" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DPBO MUS parameter." + ::= { vdslLineConfEntry 16 } + + vdslLineConfDpboParamFmin OBJECT-TYPE + SYNTAX INTEGER (0..2048) + UNITS "4.3125kHz" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DPBO FMIN parameter" + ::= { vdslLineConfEntry 17 } + + vdslLineConfDpboParamFmax OBJECT-TYPE + SYNTAX INTEGER (32..6956) + UNITS "4.3125kHz" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DPBO FMAX parameter" + ::= { vdslLineConfEntry 18 } + + vdslLineConfDpboParamPsdId OBJECT-TYPE + SYNTAX INTEGER { + unknown(0), + psdCo(1), + psdFlat(2), + psdCabAnsi(3), + psdCabEtsi(4), + psdExchEtsi(5), + psdExchAnsi(6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Valid range for setting is 1~6." + ::= { vdslLineConfEntry 19 } + +-- vdslLineConfPMask OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- " +-- Bit1: G.DMT (G.992.1) +-- Bit2: G.LITE (G.992.2) +-- Bit3: ADSL2 (G.992.3) +-- Bit5: ADSL2+ (G.992.5) +-- Bit6: ANSI T1.413 +-- Bit8: G.993.2 VDSL profile 8a +-- Bit9: G.993.2 VDSL profile 8b +-- Bit10: G.993.2 VDSL profile 8c +-- Bit11: G.993.2 VDSL profile 8d +-- Bit12: G.993.2 VDSL profile 12a +-- Bit13: G.993.2 VDSL profile 12b +-- Bit14: G.993.2 VDSL profile 17a" +-- ::= { vdslLineConfEntry 20 } + + vdslVlan OBJECT IDENTIFIER ::= { vdslPort 2 } + +-- vdslPortConfTable + + vdslPortConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslPortConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes common attributes describing the VDSL port. + This table is supported by R2.00 and later versions." + ::= { vdslVlan 1 } + + vdslPortConfEntry OBJECT-TYPE + SYNTAX VdslPortConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in vdslPortConfTable." + INDEX { ifIndex } + ::= { vdslPortConfTable 1 } + + VdslPortConfEntry ::= + SEQUENCE { +-- vdslPortConfPvid VlanIndex, +-- vdslPortConfPriority INTEGER, +-- vdslPortConfAcceptableFrameType INTEGER, + vdslPortConfTlsEnable INTEGER, + vdslPortConfTlsVid VlanIndex, + vdslPortConfTlsPriority INTEGER, + vdslPortConfDtEnable INTEGER, + vdslPortConfDtSVid VlanIndex, + vdslPortConfDtSPriority INTEGER, + vdslPortConfDtCVid VlanIndex, + vdslPortConfDtCPriority INTEGER + } + +-- vdslPortConfPvid OBJECT-TYPE +-- SYNTAX VlanIndex +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The PVID, the VLAN ID assigned to untagged frames or +-- Priority-Tagged frames received on this port." +-- ::= { vdslPortConfEntry 1 } +-- +-- vdslPortConfPriority OBJECT-TYPE +-- SYNTAX INTEGER (0..7) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The default ingress User Priority for this port." +-- ::= { vdslPortConfEntry 2 } +-- +-- vdslPortConfAcceptableFrameType OBJECT-TYPE +-- SYNTAX INTEGER { +-- admitAll(1), +-- admitOnlyVlanTagged(2) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "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 Priority-Tagged frames received on this port +-- will be accepted and assigned to the PVID for this port" +-- ::= { vdslPortConfEntry 3 } + + vdslPortConfTlsEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable the transparent LAN service." + ::= { vdslPortConfEntry 4 } + + vdslPortConfTlsVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The transparent LAN service s-tag VID." + ::= { vdslPortConfEntry 5 } + + vdslPortConfTlsPriority OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The transparent LAN service s-tag priority." + ::= { vdslPortConfEntry 6 } + + vdslPortConfDtEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable the Double Tagging service." + ::= { vdslPortConfEntry 7 } + + vdslPortConfDtSVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Double Tagging service s-tag VID." + ::= { vdslPortConfEntry 8 } + + vdslPortConfDtSPriority OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Double Tagging service s-tag priority." + ::= { vdslPortConfEntry 9 } + + vdslPortConfDtCVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Double Tagging service c-tag VID." + ::= { vdslPortConfEntry 10 } + + vdslPortConfDtCPriority OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Double Tagging service c-tag priority." + ::= { vdslPortConfEntry 11 } + +-- vdslPortVlanTranslateTable + vdslPortVlanTranslateTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslPortVlanTranslateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains VLAN translation." + ::= { vdslVlan 2 } + + vdslPortVlanTranslateEntry OBJECT-TYPE + SYNTAX VdslPortVlanTranslateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in vdslPortVlanTranslateTable." + INDEX { ifIndex , vdslPortVlanTranslateVpi , vdslPortVlanTranslateVci , vdslPortVlanTranslateCvid } + ::= { vdslPortVlanTranslateTable 1 } + + VdslPortVlanTranslateEntry ::= + SEQUENCE { + vdslPortVlanTranslateVpi INTEGER, + vdslPortVlanTranslateVci INTEGER, + vdslPortVlanTranslateCxvid VlanIndex, + vdslPortVlanTranslateCvid VlanIndex, + vdslPortVlanTranslateSvid VlanIndex, + vdslPortVlanTranslateDsonly INTEGER, + vdslPortVlanTranslateRowStatus RowStatus + } + + vdslPortVlanTranslateVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the vtt." + ::= { vdslPortVlanTranslateEntry 1 } + + vdslPortVlanTranslateVci OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the vtt." + ::= { vdslPortVlanTranslateEntry 2 } + + vdslPortVlanTranslateCxvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CXVID of the vtt." + ::= { vdslPortVlanTranslateEntry 3 } + + vdslPortVlanTranslateCvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CVID of the vtt." + ::= { vdslPortVlanTranslateEntry 4 } + + vdslPortVlanTranslateSvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "SVID of the vtt." + ::= { vdslPortVlanTranslateEntry 5 } + + vdslPortVlanTranslateDsonly OBJECT-TYPE + SYNTAX INTEGER (1..2) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Donwstream direction only of the vtt." + ::= { vdslPortVlanTranslateEntry 6 } + + vdslPortVlanTranslateRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { vdslPortVlanTranslateEntry 7 } + +-- vdslPortVlanTable + +-- vdslPortVlanTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF VdslPortVlanEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "This table includes common attributes describing the VDSL port. +-- This table is supported by R2.00 and later versions." +-- ::= { vdslVlan 2 } +-- +-- vdslPortVlanEntry OBJECT-TYPE +-- SYNTAX VdslPortVlanEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry in vdslPortVlanTable." +-- INDEX { ifIndex, dot1qVlanIndex } +-- ::= { vdslPortVlanTable 1 } +-- +-- VdslPortVlanEntry ::= +-- SEQUENCE { +-- vdslPortVlanReg INTEGER, +-- vdslPortVlanTag INTEGER, +-- vdslPortVlanRowStatus RowStatus +-- } +-- +-- vdslPortVlanReg OBJECT-TYPE +-- SYNTAX INTEGER { +-- egress(1), +-- forbidden(2) +-- } +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "The port is egress or forbidden for this VLAN." +-- ::= { vdslPortVlanEntry 1 } +-- +-- vdslPortVlanTag OBJECT-TYPE +-- SYNTAX INTEGER { +-- tag(1), +-- untag(2) +-- } +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "The port should transmit egress packets for this VLAN as tagged or untagged." +-- ::= { vdslPortVlanEntry 2 } +-- +-- vdslPortVlanRowStatus OBJECT-TYPE +-- SYNTAX RowStatus +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "This object is used to create a new row or delete an existing row in this table." +-- ::= { vdslPortVlanEntry 3 } + +-- vdslVlanStaticTable + +-- vdslVlanStaticTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF VdslVlanStaticEntry +-- 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. +-- This table is supported by R2.00 and later versions." +-- ::= { vdslVlan 3 } +-- +-- vdslVlanStaticEntry OBJECT-TYPE +-- SYNTAX VdslVlanStaticEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry in vdslVlanStaticTable." +-- INDEX { dot1qVlanIndex } +-- ::= { vdslVlanStaticTable 1 } +-- +-- VdslVlanStaticEntry ::= +-- SEQUENCE { +-- vdslVlanStaticEgressPorts PortList, +-- vdslVlanStaticUntaggedPorts PortList, +-- vdslVlanStaticRowStatus RowStatus +-- } +-- +-- vdslVlanStaticEgressPorts 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." +-- ::= { vdslVlanStaticEntry 1 } +-- +-- vdslVlanStaticUntaggedPorts 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." +-- ::= { vdslVlanStaticEntry 2 } +-- +-- vdslVlanStaticRowStatus OBJECT-TYPE +-- SYNTAX RowStatus +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "This object indicates the status of this entry." +-- ::= { vdslVlanStaticEntry 3 } + +-- vdslPortPvlanTable + + vdslPortPvlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslPortPvlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Protocol VLAN configuration table." + ::= { vdslVlan 4 } + + vdslPortPvlanEntry OBJECT-TYPE + SYNTAX VdslPortPvlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in vdslPortPvlanTable." + INDEX { ifIndex, vdslPortPvlanEtype } + ::= { vdslPortPvlanTable 1 } + + VdslPortPvlanEntry ::= + SEQUENCE { + vdslPortPvlanEtype Unsigned32, + vdslPortPvlanVid VlanIndex, + vdslPortPvlanPriority INTEGER, + vdslPortPvlanRowStatus RowStatus + } + + vdslPortPvlanEtype OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0~0xffff." + ::= { vdslPortPvlanEntry 1 } + + vdslPortPvlanVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "" + ::= { vdslPortPvlanEntry 2 } + + vdslPortPvlanPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "" + ::= { vdslPortPvlanEntry 3 } + + vdslPortPvlanRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "" + ::= { vdslPortPvlanEntry 4 } + +-- VDSL RFI Custom Table + + vdslRfiCustomTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslRfiCustomEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes VDSL customized RFI configuration. + This table is supported by R2.00 and later versions." + ::= { vdslPort 3 } + + vdslRfiCustomEntry OBJECT-TYPE + SYNTAX VdslRfiCustomEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in vdslRfiCustomTable." + INDEX { vdslRfiCustomIndex } + ::= { vdslRfiCustomTable 1 } + + VdslRfiCustomEntry ::= + SEQUENCE { + vdslRfiCustomIndex INTEGER, + vdslRfiCustomStartFreq INTEGER, + vdslRfiCustomEndFreq INTEGER, + vdslRfiCustomEnable INTEGER + } + + vdslRfiCustomIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of the table." + ::= { vdslRfiCustomEntry 1 } + + vdslRfiCustomStartFreq OBJECT-TYPE + SYNTAX INTEGER + UNITS "KHz" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The start value of the customized frequency range." + ::= { vdslRfiCustomEntry 2 } + + vdslRfiCustomEndFreq OBJECT-TYPE + SYNTAX INTEGER + UNITS "KHz" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The end value of the customized frequency range." + ::= { vdslRfiCustomEntry 3 } + + vdslRfiCustomEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable the customized frequency range setting." + ::= { vdslRfiCustomEntry 4 } + +-- vdslLineConfUpboParamTable + + vdslLineConfUpboParamTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslLineConfUpboParamEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes VDSL UPBO configuration." + ::= { vdslPort 4 } + + vdslLineConfUpboParamEntry OBJECT-TYPE + SYNTAX VdslLineConfUpboParamEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in vdslLineConfUpboParamTable." + INDEX { ifIndex,vdslLineConfUpboParamBand } + ::= { vdslLineConfUpboParamTable 1 } + + VdslLineConfUpboParamEntry ::= + SEQUENCE { + vdslLineConfUpboParamBand INTEGER, + vdslLineConfUpboParamA INTEGER, + vdslLineConfUpboParamB INTEGER + } + + vdslLineConfUpboParamBand OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of the table." + ::= { vdslLineConfUpboParamEntry 1 } + + vdslLineConfUpboParamA OBJECT-TYPE + SYNTAX INTEGER (4000..8095) + UNITS "0.01 dBm/Hz" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { vdslLineConfUpboParamEntry 2 } + + vdslLineConfUpboParamB OBJECT-TYPE + SYNTAX INTEGER (0..4095) + UNITS "0.01 dBm/Hz" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { vdslLineConfUpboParamEntry 3 } + +-- vdslLineConfDpboTable + + vdslLineConfDpboTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslLineConfDpboEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes VDSL DPBO configuration." + ::= { vdslPort 5 } + + vdslLineConfDpboEntry OBJECT-TYPE + SYNTAX VdslLineConfDpboEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in vdslLineConfDpboTable." + INDEX { ifIndex, vdslLineConfDpboIndex } + ::= { vdslLineConfDpboTable 1 } + + VdslLineConfDpboEntry ::= + SEQUENCE { + vdslLineConfDpboIndex INTEGER, + vdslLineConfDpboTone INTEGER, + vdslLineConfDpboPsd INTEGER + } + + vdslLineConfDpboIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of the table." + ::= { vdslLineConfDpboEntry 1 } + + vdslLineConfDpboTone OBJECT-TYPE + SYNTAX INTEGER (1..512) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { vdslLineConfDpboEntry 2 } + + vdslLineConfDpboPsd OBJECT-TYPE + SYNTAX INTEGER (0..255) + UNITS "-0.5dBm/Hz" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { vdslLineConfDpboEntry 3 } + +-------------------- +-- pvc +-------------------- + + maxNumOfPvcs OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of PVCs which could be created on a port." + ::= { pvc 1 } + +-- PVC Table + + pvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF PvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes PVC configuration." + ::= { pvc 2 } + + pvcEntry OBJECT-TYPE + SYNTAX PvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in pvcTable." + INDEX { ifIndex, pvcVpi, pvcVci, pvcPvid } + ::= { pvcTable 1 } + + PvcEntry ::= + SEQUENCE { + -- Common -- + pvcVpi INTEGER, + pvcVci INTEGER, + pvcPvid VlanIndex, + pvcPriority INTEGER, + pvcProfile DisplayString, + pvcAuto INTEGER, + + -- Only for pvc -- + pvcEncap INTEGER, + + -- Only for paepvc -- + pvcAcName DisplayString, + pvcServiceName DisplayString, + pvcHelloTime INTEGER, + + -- Other -- + pvcRowStatus RowStatus + } + + -- Common -- + pvcVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the pvc." + ::= { pvcEntry 1 } + + pvcVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the pvc." + ::= { pvcEntry 2 } + + pvcPvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default VID of the pvc." + ::= { pvcEntry 3 } + + + pvcPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "802.1p default priority of the pvc." + ::= { pvcEntry 5 } + + pvcProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row in the ipqosProfileTable. + " + ::= { pvcEntry 6 } + + pvcAuto OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable/disable auto detection for PPPoE/PPPoA encapsulation." + ::= { pvcEntry 14 } + + -- Only for PVC -- + pvcEncap OBJECT-TYPE + SYNTAX INTEGER { + llc(1), + vc(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Encapsulation of the pvc." + ::= { pvcEntry 7 } + + -- Other -- + pvcRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { pvcEntry 8 } + + -- Only for PAEPVC -- + pvcAcName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Access concentrator name for paepvc." + ::= { pvcEntry 11 } + + pvcServiceName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Service name for paepvc." + ::= { pvcEntry 12 } + + pvcHelloTime OBJECT-TYPE + SYNTAX INTEGER + UNITS "second" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The system will close the PVC if there are not any LCP echo messages passed through during the LCP hello time." + ::= { pvcEntry 13 } + +-- PVC state -- + pvcStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF PvcStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table show current PVC status." + ::= { pvc 3 } + + pvcStateEntry OBJECT-TYPE + SYNTAX PvcStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in pvcStateTable." + INDEX { ifIndex, pvcStateVpi, pvcStateVci, pvcStatePvid } + ::= { pvcStateTable 1 } + + PvcStateEntry ::= + SEQUENCE { + pvcStateVpi INTEGER, + pvcStateVci INTEGER, + pvcStatePvid VlanIndex, + pvcStatePriority INTEGER, + --pvcStateCvid VlanIndex, + --pvcStateCPriority INTEGER, + --pvcStateMode DisplayString, + pvcStateChannelType DisplayString, + pvcStateEncap DisplayString + } + + pvcStateVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the pvc." + ::= { pvcStateEntry 1 } + + pvcStateVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the pvc." + ::= { pvcStateEntry 2 } + + pvcStatePvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default VID of the pvc." + ::= { pvcStateEntry 3 } + + pvcStatePriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "802.1p default priority of the pvc." + ::= { pvcStateEntry 4 } + + --pvcStateCvid OBJECT-TYPE + --SYNTAX VlanIndex + --MAX-ACCESS read-only + --STATUS current + --DESCRIPTION + --"Default C-VID for paepvc." + --::= { pvcStateEntry 5 } + + --pvcStateCPriority OBJECT-TYPE + --SYNTAX INTEGER (0..7) + --MAX-ACCESS read-only + --STATUS current + --DESCRIPTION + --"802.1p default C-priority for paepvc." + --::= { pvcStateEntry 6 } + + --pvcStateMode OBJECT-TYPE + --SYNTAX DisplayString (SIZE (1..31)) + --MAX-ACCESS read-only + --STATUS current + --DESCRIPTION + --"The value of this object identifies the link mode at runntime." + --::= { pvcStateEntry 7 } + + pvcStateChannelType OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the channel type at runtime." + ::= { pvcStateEntry 8 } + + pvcStateEncap OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the channel encapsulation at runtime." + ::= { pvcStateEntry 9 } + + +-- Upstream Rate Limit Table + +-- pvcUsRateLimitTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF PvcUsRateLimitEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "This table defines the upstream rate limit for each PVC." +-- ::= { pvc 4 } +-- +-- pvcUsRateLimitEntry OBJECT-TYPE +-- SYNTAX PvcUsRateLimitEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry in pvcUsRateLimitTable." +-- INDEX { ifIndex, pvcVpi, pvcVci } +-- ::= { pvcUsRateLimitTable 1 } +-- +-- PvcUsRateLimitEntry ::= +-- SEQUENCE { +-- pvcUsRateLimitEnable INTEGER, +-- pvcUsRateLimit INTEGER +-- } +-- +-- pvcUsRateLimitEnable OBJECT-TYPE +-- SYNTAX INTEGER { +-- enable(1), +-- disable(2) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Enable/disable upstream rate limit for a PVC." +-- ::= { pvcUsRateLimitEntry 1 } +-- +-- pvcUsRateLimit OBJECT-TYPE +-- SYNTAX INTEGER +-- UNITS "Kbps" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Upstream rate limit in Kbps for a PVC." +-- ::= { pvcUsRateLimitEntry 2 } +-- + +-------------------- +-- priority pvc +-------------------- + +-- maxNumOfPriorityPvcs OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "The maximum number of priority PVCs which could be created on a port." +-- ::= { ppvc 1 } + +-- Priority PVC Table + +-- ppvcTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF PpvcEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "This table includes priority PVC configuration." +-- ::= { ppvc 2 } +-- +-- ppvcEntry OBJECT-TYPE +-- SYNTAX PpvcEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry in ppvcTable." +-- INDEX { ifIndex, ppvcVpi, ppvcVci, ppvcPvid } +-- ::= { ppvcTable 1 } +-- +-- PpvcEntry ::= +-- SEQUENCE { +-- ppvcVpi INTEGER, +-- ppvcVci INTEGER, +-- ppvcPvid VlanIndex, +-- ppvcEncap INTEGER, +-- ppvcPriority INTEGER, +-- ppvcRowStatus RowStatus +-- } +-- +-- ppvcVpi OBJECT-TYPE +-- SYNTAX INTEGER (0..255) +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "VPI of the ppvc." +-- ::= { ppvcEntry 1 } +-- +-- ppvcVci OBJECT-TYPE +-- SYNTAX INTEGER (1..65535) +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "VCI of the ppvc." +-- ::= { ppvcEntry 2 } +-- +-- ppvcPvid OBJECT-TYPE +-- SYNTAX VlanIndex +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Default VID of the ppvc." +-- ::= { ppvcEntry 3 } +-- +-- ppvcEncap OBJECT-TYPE +-- SYNTAX INTEGER { +-- llc(1), +-- vc(2) +-- } +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "Encapsulation of the ppvc." +-- ::= { ppvcEntry 4 } +-- +-- ppvcPriority OBJECT-TYPE +-- SYNTAX INTEGER (0..7) +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "802.1p default priority of the ppvc." +-- ::= { ppvcEntry 5 } +-- +-- ppvcRowStatus OBJECT-TYPE +-- SYNTAX RowStatus +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "This object is used to create a new row or delete an existing row in this table." +-- ::= { ppvcEntry 6 } + +-- Priority PVC Member Table + +-- ppvcMemberTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF PpvcMemberEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "This table includes priority PVC member configuration." +-- ::= { ppvc 4 } +-- +-- ppvcMemberEntry OBJECT-TYPE +-- SYNTAX PpvcMemberEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry in ppvcMemberTable." +-- INDEX { ifIndex, ppvcVpi, ppvcVci, ppvcMemberVpi, ppvcMemberVci, ppvcMemberPriority } +-- ::= { ppvcMemberTable 1 } +-- +-- PpvcMemberEntry ::= +-- SEQUENCE { +-- ppvcMemberVpi INTEGER, +-- ppvcMemberVci INTEGER, +-- ppvcMemberPriority INTEGER, +-- ppvcMemberProfileDS DisplayString, +-- ppvcMemberRowStatus RowStatus, +-- ppvcMemberProfileUS DisplayString +-- } +-- +-- ppvcMemberVpi OBJECT-TYPE +-- SYNTAX INTEGER (0..255) +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "VPI of the member ppvc." +-- ::= { ppvcMemberEntry 1 } +-- +-- ppvcMemberVci OBJECT-TYPE +-- SYNTAX INTEGER (1..65535) +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "VCI of the member ppvc." +-- ::= { ppvcMemberEntry 2 } +-- +-- ppvcMemberPriority OBJECT-TYPE +-- SYNTAX INTEGER (0..7) +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "802.1p default priority of the member ppvc." +-- ::= { ppvcMemberEntry 3 } +-- +-- ppvcMemberProfileDS OBJECT-TYPE +-- SYNTAX DisplayString (SIZE (1..31)) +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "The profile of the member ppvc in DS side." +-- ::= { ppvcMemberEntry 4 } +-- +-- ppvcMemberRowStatus OBJECT-TYPE +-- SYNTAX RowStatus +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "This object is used to create a new row or delete an existing row in this table." +-- ::= { ppvcMemberEntry 5 } +-- +-- ppvcMemberProfileUS OBJECT-TYPE +-- SYNTAX DisplayString (SIZE (1..31)) +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "The profile of the member ppvc in US side." +-- ::= { ppvcMemberEntry 6 } + +------------------------------- +-- 2684 routed mode pvc (rpvc) +------------------------------- + +-- Routed Gateway Table + + rpvcGatewayTable OBJECT-TYPE + SYNTAX SEQUENCE OF RpvcGatewayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes Routed Gateway configuration." + ::= { rpvc 1 } + + rpvcGatewayEntry OBJECT-TYPE + SYNTAX RpvcGatewayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in Routed Gateway table." + INDEX { rpvcGatewayIp } + ::= { rpvcGatewayTable 1 } + + RpvcGatewayEntry ::= + SEQUENCE { + rpvcGatewayIp IpAddress, + rpvcGatewayVlanId VlanIndex, + rpvcGatewayRowStatus RowStatus, + rpvcGatewayPriority INTEGER + } + + rpvcGatewayIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP of RPVC gateway." + ::= { rpvcGatewayEntry 1 } + + rpvcGatewayVlanId OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Vlan id send to this RPVC gateway." + ::= { rpvcGatewayEntry 2 } + + rpvcGatewayRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { rpvcGatewayEntry 3 } + + rpvcGatewayPriority OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "802.1p p bit send to this RPVC gateway." + ::= { rpvcGatewayEntry 4 } + +-- Routed PVC Table + + rpvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF RpvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes RPVC configuration." + ::= { rpvc 2 } + + rpvcEntry OBJECT-TYPE + SYNTAX RpvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in rpvcTable." + INDEX { ifIndex, rpvcVpi, rpvcVci, rpvcIp, rpvcNetmask } + ::= { rpvcTable 1 } + + RpvcEntry ::= + SEQUENCE { + rpvcVpi INTEGER, + rpvcVci INTEGER, + rpvcEncap INTEGER, + rpvcProfile DisplayString, + rpvcIp IpAddress, + rpvcNetmask IpAddress, + rpvcGatewayIpAddress IpAddress, + rpvcRowStatus RowStatus + } + + rpvcVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the rpvc." + ::= { rpvcEntry 1 } + + rpvcVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the rpvc." + ::= { rpvcEntry 2 } + + rpvcEncap OBJECT-TYPE + SYNTAX INTEGER { + llc(1), + vc(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Encapsulation of the rpvc." + ::= { rpvcEntry 3 } + + rpvcProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The ipqos profile of the rpvc." + ::= { rpvcEntry 4 } + + rpvcIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP of the rpvc." + ::= { rpvcEntry 5 } + + rpvcNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP mask of the rpvc IP." + ::= { rpvcEntry 6 } + + rpvcGatewayIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The gateway IP of rpvc." + ::= { rpvcEntry 7 } + + rpvcRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { rpvcEntry 8 } + +-- Routed PVC Routed Domain Table + + rpvcRouteDomainTable OBJECT-TYPE + SYNTAX SEQUENCE OF RpvcRouteDomainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes RPVC route domain configuration." + ::= { rpvc 3 } + + rpvcRouteDomainEntry OBJECT-TYPE + SYNTAX RpvcRouteDomainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in rpvcRouteDomainTable." + INDEX { ifIndex, rpvcRouteDomainVpi, rpvcRouteDomainVci, rpvcRouteDomainIp, rpvcRouteDomainNetmask } + ::= { rpvcRouteDomainTable 1 } + + RpvcRouteDomainEntry ::= + SEQUENCE { + rpvcRouteDomainVpi INTEGER, + rpvcRouteDomainVci INTEGER, + rpvcRouteDomainIp IpAddress, + rpvcRouteDomainNetmask IpAddress, + rpvcRouteDomainRowStatus RowStatus + } + + rpvcRouteDomainVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the rpvc." + ::= { rpvcRouteDomainEntry 1 } + + rpvcRouteDomainVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the rpvc." + ::= { rpvcRouteDomainEntry 2 } + + rpvcRouteDomainIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The route domain IP." + ::= { rpvcRouteDomainEntry 3 } + + rpvcRouteDomainNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP mask of the route domain IP." + ::= { rpvcRouteDomainEntry 4 } + + rpvcRouteDomainRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { rpvcRouteDomainEntry 5 } + + rpvcArpAgingTime OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set RPVC ARP proxy aging time 10..10000 seconds, + 0 to disable againg." + ::= { rpvc 4 } + + rpvcArpFlush OBJECT-TYPE + SYNTAX INTEGER { + enable(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flush the RPVC ARP proxy table." + ::= { rpvc 5 } + +-------------------- +-- dsBcastDisableTable +-------------------- + + dsBcastDisableTable OBJECT-TYPE + SYNTAX SEQUENCE OF DsBcastDisableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes Down Stream Bcast configuration." + ::= { port 9 } + + dsBcastDisableEntry OBJECT-TYPE + SYNTAX DsBcastDisableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in Down Stream Bcast table." + INDEX { ifIndex, dsBcastDisableVlanId } + ::= { dsBcastDisableTable 1 } + + DsBcastDisableEntry ::= + SEQUENCE { + dsBcastDisableVlanId INTEGER, + dsBcastDisableRowStatus RowStatus + } + + dsBcastDisableVlanId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "downstream broadcast disabled vid." + ::= { dsBcastDisableEntry 1 } + + dsBcastDisableRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { dsBcastDisableEntry 2 } + +-------------------- +-- paepvc +-------------------- + +-- PPPoAoE PVC Table + + paepvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF PaepvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes PPPoAoE PVC configuration." + ::= { paepvc 1 } + + paepvcEntry OBJECT-TYPE + SYNTAX PaepvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of paepvcTable." + INDEX { ifIndex, paepvcVpi, paepvcVci, paepvcPvid } + ::= { paepvcTable 1 } + + PaepvcEntry ::= + SEQUENCE { + paepvcVpi INTEGER, + paepvcVci INTEGER, + paepvcPvid VlanIndex, + paepvcEncap INTEGER, + paepvcPriority INTEGER, + paepvcProfile DisplayString, + paepvcAcName DisplayString, + paepvcServiceName DisplayString, + paepvcHelloTime INTEGER, + paepvcRowStatus RowStatus, + paepvcCvid VlanIndex, + paepvcCPriority INTEGER + } + + paepvcVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the pvc." + ::= { paepvcEntry 1 } + + paepvcVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the pvc." + ::= { paepvcEntry 2 } + + paepvcPvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default VID of the pvc." + ::= { paepvcEntry 3 } + + paepvcEncap OBJECT-TYPE + SYNTAX INTEGER { + llc(1), + vc(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Encapsulation of the paepvc." + ::= { paepvcEntry 4 } + + paepvcPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "802.1p default priority of the pvc." + ::= { paepvcEntry 5 } + + paepvcProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row in the ipqosProfileTable." + ::= { paepvcEntry 6 } + + paepvcAcName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Access concentrator name." + ::= { paepvcEntry 7 } + + paepvcServiceName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Service name." + ::= { paepvcEntry 8 } + + paepvcHelloTime OBJECT-TYPE + SYNTAX INTEGER + UNITS "second" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The system will close the PVC if there are not any LCP echo messages passed through + during the LCP hello time." + ::= { paepvcEntry 9 } + + paepvcRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { paepvcEntry 10 } + + paepvcCvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Default C-VID of the pvc." + ::= { paepvcEntry 12 } + + + paepvcCPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "802.1p default C-priority of the pvc." + ::= { paepvcEntry 13 } + +-------------------- +-- tlspvc +-------------------- + +-- TLS PVC Table + + tlspvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF TlspvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes Transparent LAN Service (TLS) PVC configuration." + ::= { tlspvc 1 } + + tlspvcEntry OBJECT-TYPE + SYNTAX TlspvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of tlspvcTable." + INDEX { ifIndex, tlspvcVpi, tlspvcVci, tlspvcSvid } + ::= { tlspvcTable 1 } + + TlspvcEntry ::= + SEQUENCE { + tlspvcVpi INTEGER, + tlspvcVci INTEGER, + tlspvcSvid VlanIndex, + tlspvcEncap INTEGER, + tlspvcSpriority INTEGER, + tlspvcProfile DisplayString, + tlspvcRowStatus RowStatus + } + + tlspvcVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the pvc." + ::= { tlspvcEntry 1 } + + tlspvcVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the pvc." + ::= { tlspvcEntry 2 } + + tlspvcSvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "s-tag VLAN ID of the pvc." + ::= { tlspvcEntry 3 } + + tlspvcEncap OBJECT-TYPE + SYNTAX INTEGER { + llc(1), + vc(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Encapsulation of the tlspvc." + ::= { tlspvcEntry 4 } + + tlspvcSpriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "s-tag priority of the pvc." + ::= { tlspvcEntry 5 } + + tlspvcProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row in the ipqosProfileTable." + ::= { tlspvcEntry 6 } + + tlspvcRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { tlspvcEntry 7 } + +-------------------- +-- ipbpvc +-------------------- + +-- Domain Table + +-- ipbpvcDomainTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF IpbpvcDomainEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "This table includes ipbpvc domain configuration. +-- This table is supported by R3.00 and later versions." +-- ::= { ipbpvc 1 } +-- +-- ipbpvcDomainEntry OBJECT-TYPE +-- SYNTAX IpbpvcDomainEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry of ipbpvcDomainTable." +-- INDEX { ipbpvcDomainName } +-- ::= { ipbpvcDomainTable 1 } +-- +-- IpbpvcDomainEntry ::= +-- SEQUENCE { +-- ipbpvcDomainName OCTET STRING, +-- ipbpvcDomainRowStatus RowStatus +-- } +-- +-- ipbpvcDomainName OBJECT-TYPE +-- SYNTAX OCTET STRING +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Name of the domain." +-- ::= { ipbpvcDomainEntry 1 } +-- +-- ipbpvcDomainRowStatus OBJECT-TYPE +-- SYNTAX RowStatus +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "Row status of the table." +-- ::= { ipbpvcDomainEntry 2 } + +-- Domain VLAN Table + +-- ipbpvcDomainVlanTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF IpbpvcDomainVlanEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "This table includes ipbpvc domain VLAN configuration. +-- This table is supported by R3.00 and later versions." +-- ::= { ipbpvc 2 } +-- +-- ipbpvcDomainVlanEntry OBJECT-TYPE +-- SYNTAX IpbpvcDomainVlanEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry of ipbpvcDomainVlanTable." +-- INDEX { ipbpvcDomainName, ipbpvcDomainVlanId } +-- ::= { ipbpvcDomainVlanTable 1 } +-- +-- IpbpvcDomainVlanEntry ::= +-- SEQUENCE { +-- ipbpvcDomainVlanId VlanIndex, +-- ipbpvcDomainDhcpVlanEnable INTEGER, +-- ipbpvcDomainVlanRowStatus RowStatus +-- } +-- +-- ipbpvcDomainVlanId OBJECT-TYPE +-- SYNTAX VlanIndex +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Set VLAN to join or leave the specified domain." +-- ::= { ipbpvcDomainVlanEntry 1 } +-- +-- ipbpvcDomainDhcpVlanEnable OBJECT-TYPE +-- SYNTAX INTEGER { +-- enable(1), +-- disable(2) +-- } +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "Enable/disable DHCP VLAN in a domain." +-- ::= { ipbpvcDomainVlanEntry 2 } +-- +-- ipbpvcDomainVlanRowStatus OBJECT-TYPE +-- SYNTAX RowStatus +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "Row status of the table used to create/delete an entry." +-- ::= { ipbpvcDomainVlanEntry 3 } + +-- Edge Router Table + +-- ipbpvcEdgeRouterTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF IpbpvcEdgeRouterEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "This table includes ipbpvc edge router configuration. +-- This table is supported by R3.00 and later versions." +-- ::= { ipbpvc 3 } +-- +-- ipbpvcEdgeRouterEntry OBJECT-TYPE +-- SYNTAX IpbpvcEdgeRouterEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry of ipbpvcEdgeRouterTable." +-- INDEX { ipbpvcDomainName, ipbpvcEdgeRouterIp, ipbpvcEdgeRouterMask, ipbpvcEdgeRouterVid } +-- ::= { ipbpvcEdgeRouterTable 1 } +-- +-- IpbpvcEdgeRouterEntry ::= +-- SEQUENCE { +-- ipbpvcEdgeRouterIp IpAddress, +-- ipbpvcEdgeRouterMask INTEGER, +-- ipbpvcEdgeRouterVid VlanIndex, +-- ipbpvcEdgeRouterRowStatus RowStatus +-- } +-- +-- ipbpvcEdgeRouterIp OBJECT-TYPE +-- SYNTAX IpAddress +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "IP address of the edge router." +-- ::= { ipbpvcEdgeRouterEntry 1 } +-- +-- ipbpvcEdgeRouterVid OBJECT-TYPE +-- SYNTAX VlanIndex +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "VLAN ID of the edge router." +-- ::= { ipbpvcEdgeRouterEntry 2 } +-- +-- ipbpvcEdgeRouterMask OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Netmask of the edge router." +-- ::= { ipbpvcEdgeRouterEntry 3 } +-- +-- ipbpvcEdgeRouterRowStatus OBJECT-TYPE +-- SYNTAX RowStatus +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "Row status of the table used to create/delete an entry." +-- ::= { ipbpvcEdgeRouterEntry 4 } + +-- Interface Table + +-- ipbpvcInterfaceTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF IpbpvcInterfaceEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "This table includes ipbpvc interface configuration. +-- This table is supported by R3.00 and later versions." +-- ::= { ipbpvc 4 } +-- +-- ipbpvcInterfaceEntry OBJECT-TYPE +-- SYNTAX IpbpvcInterfaceEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry of ipbpvcInterfaceTable." +-- INDEX { ipbpvcDomainName, ipbpvcInterfaceIp, ipbpvcInterfaceMask, ipbpvcInterfaceVid } +-- ::= { ipbpvcInterfaceTable 1 } +-- +-- IpbpvcInterfaceEntry ::= +-- SEQUENCE { +-- ipbpvcInterfaceIp IpAddress, +-- ipbpvcInterfaceMask INTEGER, +-- ipbpvcInterfaceVid VlanIndex, +-- ipbpvcInterfaceIfIndex INTEGER, +-- ipbpvcInterfaceVpi INTEGER, +-- ipbpvcInterfaceVci INTEGER, +-- ipbpvcInterfaceRowStatus RowStatus +-- } +-- +-- ipbpvcInterfaceIp OBJECT-TYPE +-- SYNTAX IpAddress +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "IP address of the interface." +-- ::= { ipbpvcInterfaceEntry 1 } +-- +-- ipbpvcInterfaceMask OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Netmask of the interface." +-- ::= { ipbpvcInterfaceEntry 2 } +-- +-- ipbpvcInterfaceVid OBJECT-TYPE +-- SYNTAX VlanIndex +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "VLAN ID of the interface." +-- ::= { ipbpvcInterfaceEntry 3 } +-- +-- ipbpvcInterfaceIfIndex OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "IfIndex of the interface." +-- ::= { ipbpvcInterfaceEntry 4 } +-- +-- ipbpvcInterfaceVpi OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "VPI of the interface." +-- ::= { ipbpvcInterfaceEntry 5 } +-- +-- ipbpvcInterfaceVci OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "VCI of the interface." +-- ::= { ipbpvcInterfaceEntry 6 } +-- +-- ipbpvcInterfaceRowStatus OBJECT-TYPE +-- SYNTAX RowStatus +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "Row status of the table used to create/delete an entry." +-- ::= { ipbpvcInterfaceEntry 7 } + +-- Route Table + +-- ipbpvcRouteTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF IpbpvcRouteEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "This table includes ipbpvc route configuration. +-- This table is supported by R3.00 and later versions." +-- ::= { ipbpvc 5 } +-- +-- ipbpvcRouteEntry OBJECT-TYPE +-- SYNTAX IpbpvcRouteEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry of ipbpvcRouteTable." +-- INDEX { ipbpvcDomainName, ipbpvcRouteIp, ipbpvcRouteMask, ipbpvcRouteNextHop } +-- ::= { ipbpvcRouteTable 1 } +-- +-- IpbpvcRouteEntry ::= +-- SEQUENCE { +-- ipbpvcRouteIp IpAddress, +-- ipbpvcRouteMask INTEGER, +-- ipbpvcRouteNextHop IpAddress, +-- ipbpvcRouteMetric INTEGER, +-- ipbpvcRoutePriority INTEGER, +-- ipbpvcRouteRowStatus RowStatus +-- } +-- +-- ipbpvcRouteIp OBJECT-TYPE +-- SYNTAX IpAddress +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "IP address of the route." +-- ::= { ipbpvcRouteEntry 1 } +-- +-- ipbpvcRouteMask OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Netmask of the route." +-- ::= { ipbpvcRouteEntry 2 } +-- +-- ipbpvcRouteNextHop OBJECT-TYPE +-- SYNTAX IpAddress +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Next hop IP address of the route." +-- ::= { ipbpvcRouteEntry 3 } +-- +-- ipbpvcRouteMetric OBJECT-TYPE +-- SYNTAX INTEGER (1..15) +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "Metric of the route." +-- ::= { ipbpvcRouteEntry 4 } +-- +-- ipbpvcRoutePriority OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "Priority of the route. Note that the default value of this object is 8, which means +-- we keep the original priority of the packet(frame)." +-- ::= { ipbpvcRouteEntry 5 } +-- +-- ipbpvcRouteRowStatus OBJECT-TYPE +-- SYNTAX RowStatus +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "Row status of the table used to create/delete an entry." +-- ::= { ipbpvcRouteEntry 6 } + +-- PVC Table + +-- ipbpvcTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF IpbpvcEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "This table includes ipbpvc configuration. +-- This table is supported by R3.00 and later versions." +-- ::= { ipbpvc 6 } +-- +-- ipbpvcEntry OBJECT-TYPE +-- SYNTAX IpbpvcEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry of ipbpvcTable." +-- INDEX { ifIndex, ipbpvcVpi, ipbpvcVci, ipbpvcPvid } +-- ::= { ipbpvcTable 1 } +-- +-- IpbpvcEntry ::= +-- SEQUENCE { +-- ipbpvcVpi INTEGER, +-- ipbpvcVci INTEGER, +-- ipbpvcPvid INTEGER, +-- ipbpvcEncap INTEGER, +-- ipbpvcPriority INTEGER, +-- ipbpvcProfile OCTET STRING, +-- ipbpvcRowStatus RowStatus, +-- ipbpvcProfileUS OCTET STRING +-- } +-- +-- ipbpvcVpi OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "VPI of the PVC." +-- ::= { ipbpvcEntry 1 } +-- +-- ipbpvcVci OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "VCI of the PVC." +-- ::= { ipbpvcEntry 2 } +-- +-- ipbpvcPvid OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "PVID of the PVC." +-- ::= { ipbpvcEntry 3 } +-- +-- ipbpvcEncap OBJECT-TYPE +-- SYNTAX INTEGER { +-- ipoe(1), +-- reserved(2), +-- ipoa(3) +-- } +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "Type of the PVC." +-- ::= { ipbpvcEntry 4 } +-- +-- ipbpvcPriority OBJECT-TYPE +-- SYNTAX INTEGER (0..7) +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "Priority of the PVC." +-- ::= { ipbpvcEntry 5 } +-- +-- ipbpvcProfile OBJECT-TYPE +-- SYNTAX OCTET STRING +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "Profile of the PVC." +-- ::= { ipbpvcEntry 6 } +-- +-- ipbpvcRowStatus OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "Row status of the table used to create/delete an entry." +-- ::= { ipbpvcEntry 7 } +-- +-- ipbpvcProfileUS OBJECT-TYPE +-- SYNTAX OCTET STRING +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "US Profile of the PVC." +-- ::= { ipbpvcEntry 8 } + +-- ARP Proxy + +-- arpproxy OBJECT IDENTIFIER ::= { ipbpvc 8 } +-- +-- arpproxyAge OBJECT-TYPE +-- SYNTAX INTEGER (10..10000) +-- UNITS "second" +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Aging time of the ARP proxy. +-- This object is supported by R3.00 and later versions." +-- ::= { arpproxy 1 } +-- +-- arpproxyFlush OBJECT IDENTIFIER ::= { arpproxy 2 } +-- +-- arpproxyFlushTarget OBJECT-TYPE +-- SYNTAX INTEGER { +-- all(1), +-- edgerouter(2), +-- interface(3) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The target whose ARP table to be flushed. +-- This object is supported by R3.00 and later versions." +-- ::= { arpproxyFlush 1 } +-- +-- arpproxyFlushOps OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Set the object to 1 to start flushing. +-- This object is supported by R3.00 and later versions." +-- ::= { arpproxyFlush 2 } +-- +-- arpproxyFlushEdgeRouterIp OBJECT-TYPE +-- SYNTAX IpAddress +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Flush ARP table for the specified edge router. +-- This object is supported by R3.00 and later versions." +-- ::= { arpproxyFlush 3 } +-- +-- arpproxyFlushEdgeRouterVid OBJECT-TYPE +-- SYNTAX VlanIndex +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Flush ARP table for the specified edge router. +-- This object is supported by R3.00 and later versions." +-- ::= { arpproxyFlush 4 } +-- +-- arpproxyFlushInterfaceIp OBJECT-TYPE +-- SYNTAX IpAddress +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Flush ARP table for the specified interface. +-- This object is supported by R3.00 and later versions." +-- ::= { arpproxyFlush 5 } +-- +-- arpproxyFlushInterfaceMask OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Flush ARP table for the specified interface. +-- This object is supported by R3.00 and later versions." +-- ::= { arpproxyFlush 6 } +-- +-- arpproxyFlushInterfaceVid OBJECT-TYPE +-- SYNTAX VlanIndex +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Flush ARP table for the specified interface. +-- This object is supported by R3.00 and later versions." +-- ::= { arpproxyFlush 7 } +-- +-------------------- +-- dtpvc +-------------------- + +-- DT PVC Table + + dtpvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF DtpvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes Double Tagging (DT) PVC configuration." + ::= { dtpvc 1 } + + dtpvcEntry OBJECT-TYPE + SYNTAX DtpvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dtpvcTable." + INDEX { ifIndex, dtpvcVpi, dtpvcVci, dtpvcSvid } + ::= { dtpvcTable 1 } + + DtpvcEntry ::= + SEQUENCE { + -- Common -- + dtpvcVpi INTEGER, + dtpvcVci INTEGER, + dtpvcSvid VlanIndex, + dtpvcSpriority INTEGER, + dtpvcCvid VlanIndex, + dtpvcCpriority INTEGER, + dtpvcEncap INTEGER, + dtpvcProfile DisplayString, + dtpvcRowStatus RowStatus, + dtpvcAuto INTEGER, + -- Only for dtpvc -- + dtpvcSuperChannel INTEGER, + -- Only for paepvc -- + dtpvcAcName DisplayString, + dtpvcServiceName DisplayString, + dtpvcHelloTime INTEGER + } + + -- Common -- + dtpvcVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the pvc." + ::= { dtpvcEntry 1 } + + dtpvcVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the pvc." + ::= { dtpvcEntry 2 } + + dtpvcSvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "s-tag VLAN ID of the pvc." + ::= { dtpvcEntry 3 } + + dtpvcSpriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "s-tag priority of the pvc." + ::= { dtpvcEntry 4 } + + dtpvcCvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "c-tag VLAN ID of the pvc." + ::= { dtpvcEntry 5 } + + dtpvcCpriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "c-tag priority of the pvc." + ::= { dtpvcEntry 6 } + + + dtpvcEncap OBJECT-TYPE + SYNTAX INTEGER { + llc(1), + vc(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Encapsulation of the dtpvc." + ::= { dtpvcEntry 7 } + + dtpvcProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row in the ipqosProfileTable." + ::= { dtpvcEntry 8 } + + dtpvcRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { dtpvcEntry 9 } + + dtpvcAuto OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable/disable auto detection for PPPoE/PPPoA encapsulation." + ::= { dtpvcEntry 14 } + + -- Only for DTPVC -- + dtpvcSuperChannel OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specified the configured DTPVC is a super channel." + ::= { dtpvcEntry 10 } + + -- Only for PAEPVC -- + dtpvcAcName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Access concentrator name for paepvc." + ::= { dtpvcEntry 11 } + + dtpvcServiceName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Service name for paepvc." + ::= { dtpvcEntry 12 } + + dtpvcHelloTime OBJECT-TYPE + SYNTAX INTEGER + UNITS "second" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The system will close the PVC if there are not any LCP echo messages passed through during the LCP hello time." + ::= { dtpvcEntry 13 } + +-- DTPVC state -- + dtpvcStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF DtpvcStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table show current DTPVC status." + ::= { dtpvc 2 } + + dtpvcStateEntry OBJECT-TYPE + SYNTAX DtpvcStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in dtpvcStateTable." + INDEX { ifIndex, dtpvcStateVpi, dtpvcStateVci, dtpvcStateSvid } + ::= { dtpvcStateTable 1 } + + DtpvcStateEntry ::= + SEQUENCE { + dtpvcStateVpi INTEGER, + dtpvcStateVci INTEGER, + dtpvcStateSvid VlanIndex, + dtpvcStateSPriority INTEGER, + dtpvcStateCvid VlanIndex, + dtpvcStateCPriority INTEGER, + --dtpvcStateMode DisplayString, + dtpvcStateChannelType DisplayString, + dtpvcStateEncap DisplayString + } + + dtpvcStateVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the dtpvc." + ::= { dtpvcStateEntry 1 } + + dtpvcStateVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the dtpvc." + ::= { dtpvcStateEntry 2 } + + dtpvcStateSvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default S-VID of the dtpvc." + ::= { dtpvcStateEntry 3 } + + dtpvcStateSPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "S-priority of the dtpvc." + ::= { dtpvcStateEntry 4 } + + dtpvcStateCvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default C-VID of the dtpvc." + ::= { dtpvcStateEntry 5 } + + dtpvcStateCPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "C-priority of the dtpvc." + ::= { dtpvcStateEntry 6 } + + --dtpvcStateMode OBJECT-TYPE + --SYNTAX DisplayString (SIZE (1..31)) + --MAX-ACCESS read-only + --STATUS current + --DESCRIPTION + --"The value of this object identifies the link mode at runntime." + --::= { dtpvcStateEntry 7 } + + dtpvcStateChannelType OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the channel type at runtime." + ::= { dtpvcStateEntry 8 } + + dtpvcStateEncap OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the channel encapsulation at runtime." + ::= { dtpvcStateEntry 9 } + +-------------------- +-- snrMgn +-------------------- + +-- snrMgnTable + + snrMgnTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnrMarginEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing the per port SNR Margin configuration." + ::= { snrMgn 1 } + + snrMgnEntry OBJECT-TYPE + SYNTAX SnrMarginEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of snrMgnTable." + INDEX { ifIndex } + ::= { snrMgnTable 1 } + + SnrMarginEntry ::= + SEQUENCE { + snrMgnMode INTEGER, + snrMgnUcTarget INTEGER, + snrMgnUcMax INTEGER, + snrMgnUcMin INTEGER, + snrMgnUcDownshift INTEGER, + snrMgnUcUpshift INTEGER, + snrMgnUrTarget INTEGER, + snrMgnUrMax INTEGER, + snrMgnUrMin INTEGER, + snrMgnUrDownshift INTEGER, + snrMgnUrUpshift INTEGER + } + + snrMgnMode OBJECT-TYPE + SYNTAX INTEGER { + profile(0), + line(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure DSL SNR margin configuration mode of the specified ports. + Profile: the SNR margin configuration comes from DSL profile. + Line: the SNR margin configuration comes from line configuration." + ::= { snrMgnEntry 1 } + + snrMgnUcTarget OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Target Signal/Noise Margin. + This is the Noise Margin the modem must achieve + with a BER of 10-7 or better to successfully complete + initialization." + ::= { snrMgnEntry 2 } + + snrMgnUcMax OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Maximum acceptable Signal/Noise Margin. + If the Noise Margin is above this the modem should + attempt to reduce its power output to optimize its + operation." + ::= { snrMgnEntry 3 } + + snrMgnUcMin OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Minimum acceptable Signal/Noise Margin. + If the noise margin falls below this level, the modem + should attempt to increase its power output. If that + is not possible the modem will attempt to + re-initialize or shut down." + ::= { snrMgnEntry 4 } + + snrMgnUcDownshift OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Signal/Noise Margin for rate downshift. + If the noise margin falls below this level, the modem + should attempt to decrease its transmit rate. In + the case that RADSL mode is not present, + the value will be `0'." + ::= { snrMgnEntry 5 } + + snrMgnUcUpshift OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Signal/Noise Margin for rate upshift. + If the noise margin rises above this level, the modem + should attempt to increase its transmit rate. In + the case that RADSL is not present, the value will + be `0'." + ::= { snrMgnEntry 6 } + + snrMgnUrTarget OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Target Signal/Noise Margin. + This is the Noise Margin the modem must achieve + with a BER of 10-7 or better to successfully complete + initialization." + ::= { snrMgnEntry 7 } + + snrMgnUrMax OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Maximum acceptable Signal/Noise Margin. + If the Noise Margin is above this the modem should + attempt to reduce its power output to optimize its + operation." + ::= { snrMgnEntry 8 } + + snrMgnUrMin OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Minimum acceptable Signal/Noise Margin. + If the noise margin falls below this level, the modem + should attempt to increase its power output. If that + is not possible the modem will attempt to + re-initialize or shut down." + ::= { snrMgnEntry 9 } + + snrMgnUrDownshift OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Signal/Noise Margin for rate downshift. + If the noise margin falls below this level, the modem + should attempt to decrease its transmit rate. + In the case that RADSL mode is not present, + the value will be `0'." + ::= { snrMgnEntry 10 } + + snrMgnUrUpshift OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Signal/Noise Margin for rate upshift. + If the noise margin rises above this level, the modem + should attempt to increase its transmit rate. + In the case that RADSL is not present, + the value will be `0'." + ::= { snrMgnEntry 11 } + +-------------------- +-- dsl rate +-------------------- + +-- dslRateTable + + dslRateTable OBJECT-TYPE + SYNTAX SEQUENCE OF DslRateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing the per port DSL Rate configuration." + ::= { dslRate 1 } + + dslRateEntry OBJECT-TYPE + SYNTAX DslRateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dslRateTable." + INDEX { ifIndex } + ::= { dslRateTable 1 } + + DslRateEntry ::= + SEQUENCE { + dslRateMode INTEGER, + dslRateLatencyMode INTEGER, + dslRateXtucMaxInterleaveDelay INTEGER, + dslRateXtucMaxTxRate Unsigned32, + dslRateXtucMinTxRate Unsigned32, + dslRateXturMaxInterleaveDelay INTEGER, + dslRateXturMaxTxRate Unsigned32, + dslRateXturMinTxRate Unsigned32 + } + + dslRateMode OBJECT-TYPE + SYNTAX INTEGER { + profile(0), + line(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure DSL Rate configuration mode of the specified ports. + Profile: the DSL Rate configuration comes from DSL profile. + Line: the DSL Rate configuration comes from line configuration." + ::= { dslRateEntry 1 } + + dslRateLatencyMode OBJECT-TYPE + SYNTAX INTEGER { + interleave(1), + fast(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The latency mode is fast or interleave" + ::= { dslRateEntry 2 } + + dslRateXtucMaxInterleaveDelay OBJECT-TYPE + SYNTAX INTEGER (0..255) + UNITS "milli-seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured maximum Interleave Delay for this channel. + + Interleave delay applies only to the interleave channel + and defines the mapping (relative spacing) between + subsequent input bytes at the interleaver input and + their placement in the bit stream at the interleaver + output. Larger numbers provide greater separation + between consecutive input bytes in the output bit + stream allowing for improved impulse noise immunity + at the expense of payload latency." + ::= { dslRateEntry 3 } + + dslRateXtucMaxTxRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Maximum Transmit rate for `Fast' or `Interleave' channels, + in bps." + ::= { dslRateEntry 4 } + + dslRateXtucMinTxRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Minimum Transmit rate for `Fast' or `Interleave' channels, + in bps" + ::= { dslRateEntry 5 } + + dslRateXturMaxInterleaveDelay OBJECT-TYPE + SYNTAX INTEGER (0..255) + UNITS "milli-seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured maximum Interleave Delay for this channel. + + Interleave delay applies only to the interleave channel + and defines the mapping (relative spacing) between + subsequent input bytes at the interleaver input and + their placement in the bit stream at the interleaver + output. Larger numbers provide greater separation + between consecutive input bytes in the output bit + stream allowing for improved impulse noise immunity + at the expense of payload latency" + ::= { dslRateEntry 6 } + + dslRateXturMaxTxRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Target Signal/Noise Margin. + This is the Noise Margin the modem must achieve + with a BER of 10-7 or better to successfully complete + initialization." + ::= { dslRateEntry 7 } + + dslRateXturMinTxRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Maximum Transmit rate for `Fast' or `Interleave' channels, + in bps." + ::= { dslRateEntry 8 } + +-------------------- +-- gbond +-------------------- + +-- gbondTable + + gbondGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF GbondGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing the G.Bond configuration information for + each bonding group of the device." + ::= { gbond 1 } + + gbondGroupEntry OBJECT-TYPE + SYNTAX GbondGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of gbondTable." + INDEX { gbondGroupName } + ::= { gbondGroupTable 1 } + + GbondGroupEntry ::= + SEQUENCE { + gbondGroupName OCTET STRING, + gbondGroupPorts OCTET STRING, +-- gbondGroupSid INTEGER, + gbondGroupUpRate Unsigned32, + gbondGroupDownRate Unsigned32, + gbondGroupRowStatus RowStatus + } + + gbondGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An administratively assigned string, which may be used to identify bonding group." + ::= { gbondGroupEntry 1 } + + gbondGroupPorts OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The set of ports which are currently assigned to the + bonding group of specified group name. + Byte 1: Reserved(chassis) + Byte 2~3: Reserved(slot) + Byte 4: Reserved + Byte 5~11:each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc." + ::= { gbondGroupEntry 2 } + +-- gbondGroupSid OBJECT-TYPE +-- SYNTAX INTEGER { +-- sid8(1), +-- sid12(2) +-- } +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "This object indicates the sequence index mode of the bonding group." +-- ::= { gbondGroupEntry 3 } + + gbondGroupUpRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The UP stream rate." + ::= { gbondGroupEntry 4 } + + gbondGroupDownRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The DOWN stream rate." + ::= { gbondGroupEntry 5 } + + gbondGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { gbondGroupEntry 6 } + +---------------------------------------- +-- profile +---------------------------------------- + sraShiftMarginProfile OBJECT IDENTIFIER ::= { profile 1 } + ipqosProfile OBJECT IDENTIFIER ::= { profile 8 } + + -------------------- +-- sraShiftMarginProfile +-------------------- + +-- sraShiftMarginProfile + + sraShiftMarginProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF SraShiftMarginProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes sra shift margin related configuration." + ::= { sraShiftMarginProfile 1 } + + sraShiftMarginProfileEntry OBJECT-TYPE + SYNTAX SraShiftMarginProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in ipqosProfileTable." + INDEX { sraShiftMarginProfileName } + ::= { sraShiftMarginProfileTable 1 } + + SraShiftMarginProfileEntry ::= + SEQUENCE { + sraShiftMarginProfileName DisplayString, + xtucConfDownshiftSnrMgn INTEGER, + xtucConfUpshiftSnrMgn INTEGER, + xtucConfDownshiftTime INTEGER, + xtucConfUpshiftTime INTEGER, + xturConfDownshiftSnrMgn INTEGER, + xturConfUpshiftSnrMgn INTEGER, + xturConfDownshiftTime INTEGER, + xturConfUpshiftTime INTEGER, + sraShiftMarginProfileStatus RowStatus + } + + sraShiftMarginProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..40)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies a row in this table." + ::= { sraShiftMarginProfileEntry 1 } + + xtucConfDownshiftSnrMgn OBJECT-TYPE + SYNTAX INTEGER (0..31) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the downstream SRA Down Shift Margin in units of 0.25 dB, for a range of 0 to 31.75 dB. in unit of 1 db." + ::= { sraShiftMarginProfileEntry 2 } + + xtucConfUpshiftSnrMgn OBJECT-TYPE + SYNTAX INTEGER (0..31) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the downstream SRA UP Shift Margin in units of 0.25 dB, for a range of 0 to 31.75 dB. in unit of 1 db." + ::= { sraShiftMarginProfileEntry 3 } + + xtucConfDownshiftTime OBJECT-TYPE + SYNTAX INTEGER (0..31) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies the downstream SRA Down Shift time in units of 1 sec , for a range of 0 to 16383 sec. in unit of 1 sec." + ::= { sraShiftMarginProfileEntry 4 } + + xtucConfUpshiftTime OBJECT-TYPE + SYNTAX INTEGER (0..31) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies the downstream SRA UP Shift time in units of 1 sec , for a range of 0 to 16383 sec. in unit of 1 sec." + ::= { sraShiftMarginProfileEntry 5 } + + xturConfDownshiftSnrMgn OBJECT-TYPE + SYNTAX INTEGER (0..31) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the upstream SRA Down Shift Margin in units of 0.25 dB, for a range of 0 to 31.75 dB. in unit of 1 db." + ::= { sraShiftMarginProfileEntry 6 } + + xturConfUpshiftSnrMgn OBJECT-TYPE + SYNTAX INTEGER (0..31) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the upstream SRA UP Shift Margin in units of 0.25 dB, for a range of 0 to 31.75 dB. in unit of 1 db." + ::= { sraShiftMarginProfileEntry 7 } + + xturConfDownshiftTime OBJECT-TYPE + SYNTAX INTEGER (0..31) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies the upstream SRA Down Shift time in units of 1 sec , for a range of 0 to 16383 sec. in unit of 1 sec." + ::= { sraShiftMarginProfileEntry 8 } + + xturConfUpshiftTime OBJECT-TYPE + SYNTAX INTEGER (0..31) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies the upstream SRA UP Shift time in units of 1 sec , for a range of 0 to 16383 sec. in unit of 1 sec." + ::= { sraShiftMarginProfileEntry 9 } + + sraShiftMarginProfileStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or modify or delete an existing row in this table." + ::= { sraShiftMarginProfileEntry 10 } + + + + +-------------------- +-- ipqosProfile +-------------------- + +-- ipqosProfileTable + + maxNumOfIpqosProfiles OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of IPQOS profiles supported by the system." + ::= { ipqosProfile 1 } + + ipqosProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpqosProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes IPQOS related configuration." + ::= { ipqosProfile 2 } + + ipqosProfileEntry OBJECT-TYPE + SYNTAX IpqosProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in ipqosProfileTable." + INDEX { ipqosProfileName , ipqosProfileNumOfQueue } + ::= { ipqosProfileTable 1 } + + IpqosProfileEntry ::= + SEQUENCE { + ipqosProfileName DisplayString, + ipqosProfileNumOfQueue INTEGER, + ipqosProfileRowStatus RowStatus + } + + ipqosProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is used by the IPQOS profile table in order to identify a row of this table." + ::= { ipqosProfileEntry 1 } + + ipqosProfileNumOfQueue OBJECT-TYPE + SYNTAX INTEGER (1..8) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The number of IPQOS queues." + ::= { ipqosProfileEntry 2 } + + ipqosProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in the table." + ::= { ipqosProfileEntry 3 } + +-- ipqosProfileQueueTable + + ipqosProfileQueueTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpqosProfileQueueEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes IPQOS queue related configuration." + ::= { ipqosProfile 3 } + + ipqosProfileQueueEntry OBJECT-TYPE + SYNTAX IpqosProfileQueueEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in ipqosProfileQueueTable." + INDEX { ipqosProfileName , ipqosProfileQueueIndex } + ::= { ipqosProfileQueueTable 1 } + + IpqosProfileQueueEntry ::= + SEQUENCE { + ipqosProfileQueueIndex INTEGER, + ipqosProfileQueuePIR INTEGER, + ipqosProfileQueueCIR INTEGER, + ipqosProfileQueuePBS INTEGER, + ipqosProfileQueueCBS INTEGER, + ipqosProfileQueueLevel INTEGER, + ipqosProfileQueueWeight INTEGER + } + + ipqosProfileQueueIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IPQOS queue index." + ::= { ipqosProfileQueueEntry 1 } + + ipqosProfileQueuePIR OBJECT-TYPE + SYNTAX INTEGER (512..131072) + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Peak rate.(multiple of 256)" + ::= { ipqosProfileQueueEntry 2 } + + ipqosProfileQueueCIR OBJECT-TYPE + SYNTAX INTEGER (256..65536) + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Commited rate.(multiple of 256)" + ::= { ipqosProfileQueueEntry 3 } + + ipqosProfileQueuePBS OBJECT-TYPE + SYNTAX INTEGER (3072..65536) + UNITS "byte" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Peak burst size.(mutiple of 256)" + ::= { ipqosProfileQueueEntry 4 } + + ipqosProfileQueueCBS OBJECT-TYPE + SYNTAX INTEGER (3072..65536) + UNITS "byts" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Commited burst size.(mutiple of 256)" + ::= { ipqosProfileQueueEntry 5 } + + ipqosProfileQueueLevel OBJECT-TYPE + SYNTAX INTEGER (0..7) + UNITS "byts" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Queue level." + ::= { ipqosProfileQueueEntry 6 } + + ipqosProfileQueueWeight OBJECT-TYPE + SYNTAX INTEGER (1..127) + UNITS "byts" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Queue weight." + ::= { ipqosProfileQueueEntry 7 } + +---------------------------------------- +-- switch +---------------------------------------- + dot3ad OBJECT IDENTIFIER ::= { switch 6 } + dscp OBJECT IDENTIFIER ::= { switch 10 } + vlanIsolation OBJECT IDENTIFIER ::= { switch 12 } + enetMtu OBJECT IDENTIFIER ::= { switch 13 } + tpid OBJECT IDENTIFIER ::= { switch 14 } + cfm OBJECT IDENTIFIER ::= { switch 15 } + +-- Standalone IP DSLAM puts all ACL features in 'switch', from OID 51 + dhcp OBJECT IDENTIFIER ::= { switch 51 } + macfilter OBJECT IDENTIFIER ::= { switch 53 } + dhcpSnoop OBJECT IDENTIFIER ::= { switch 55 } + acl OBJECT IDENTIFIER ::= { switch 56 } + pppoeAgent OBJECT IDENTIFIER ::= { switch 57 } + n1mac OBJECT IDENTIFIER ::= { switch 58 } + macff OBJECT IDENTIFIER ::= { switch 60 } + +-------------------- +-- dot3ad +-------------------- + + dot3adTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dot3adEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table contains 802.3ad configuration." + ::= { dot3ad 1 } + + dot3adEntry OBJECT-TYPE + SYNTAX Dot3adEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { dot3adGroupId } + ::= { dot3adTable 1 } + + Dot3adEntry ::= + SEQUENCE { + dot3adGroupId INTEGER, + dot3adEnable INTEGER + } + + dot3adGroupId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Group ID 1 for the subtending group and 2 for the uplink group." + ::= { dot3adEntry 1 } + + dot3adEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + enableWithLacp(2), + disable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable 802.3ad function." + ::= { dot3adEntry 2 } + + lacpPriority OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "LACP system priority." + ::= { dot3ad 2 } + + lacpTimeout OBJECT-TYPE + SYNTAX INTEGER { + shorttimeout(1), + longtimeout(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The time interval to exchange LACP packets in order to check that the peer port + in the trunk group is still up." + ::= { dot3ad 3 } + + portTrunkingTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortTrunkingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table contains current status of port trunking." + ::= { dot3ad 4 } + + portTrunkingEntry OBJECT-TYPE + SYNTAX PortTrunkingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { portTrunkingGroupId } + ::= { portTrunkingTable 1 } + + PortTrunkingEntry ::= + SEQUENCE { + portTrunkingGroupId INTEGER, + portTrunkingStatus INTEGER, + portTrunkingPortList PortList + } + + portTrunkingGroupId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Group ID 1 for the subtending group and 2 for the uplink group." + ::= { portTrunkingEntry 1 } + + portTrunkingStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Port trunking status." + ::= { portTrunkingEntry 2 } + + portTrunkingPortList OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port list which actually joins the trunking group." + ::= { portTrunkingEntry 3 } + +-------------------- +-- dscp +-------------------- + + dscpMappingTable OBJECT-TYPE + SYNTAX SEQUENCE OF DscpMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table contains DSCP mapping configuration for the adsl ports." + ::= { dscp 1 } + + dscpMappingEntry OBJECT-TYPE + SYNTAX DscpMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dscpMappingTable." + INDEX { dscpSrcCodePoint } + ::= { dscpMappingTable 1 } + + DscpMappingEntry ::= + SEQUENCE { + dscpSrcCodePoint INTEGER, +-- dscpMapCodePoint INTEGER, + dscpMapPriority INTEGER + } + + dscpSrcCodePoint OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The DSCP source code point used for mapping." + ::= { dscpMappingEntry 1 } + +-- dscpMapCodePoint OBJECT-TYPE +-- SYNTAX INTEGER (0..63) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The mapping code point that will replace the source code point in the incoming packet." +-- ::= { dscpMappingEntry 2 } + + dscpMapPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The mapping p bits that will replace the source p bits in the incoming packet." + ::= { dscpMappingEntry 3 } + +--- pfchen + dscpPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF DscpPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table contains DSCP mapping configuration for the adsl ports." + ::= { dscp 2 } + + dscpPortEntry OBJECT-TYPE + SYNTAX DscpPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dscpPortTable." + INDEX { ifIndex } + ::= { dscpPortTable 1 } + + DscpPortEntry ::= + SEQUENCE { + dscpStatusEnable INTEGER + } + + dscpStatusEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The DSCP port status." + ::= { dscpPortEntry 1 } + +-------------------- +-- Vlan Isolation +-------------------- + + vlanIsolationTable OBJECT-TYPE + SYNTAX SEQUENCE OF VlanIsolationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table contains configuration of isolated VLAN." + ::= { vlanIsolation 1 } + + vlanIsolationEntry OBJECT-TYPE + SYNTAX VlanIsolationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of vlanIsolationTable." + INDEX { dot1qVlanIndex } + ::= { vlanIsolationTable 1 } + + VlanIsolationEntry ::= + SEQUENCE { + vlanIsolationRowStatus INTEGER + } + + vlanIsolationRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table used to create/delete an entry." + ::= { vlanIsolationEntry 1 } + +-------------------- +-- enet MTU +-------------------- + + enetMtuEntry OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Sets the MTU size for layer 2 frame, size from 1526 to 1532, default value is 1526." + ::= { enetMtu 1 } + +-------------------- +-- TPID (Tag Protocol Identifier) +-------------------- + + tpidEntry OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Sets TPID(Tag Protocol Identifier) of tagged frame, 0~FFFF." + ::= { tpid 1 } + +-------------------- +-- CFM +-------------------- + +-- cfmLoopbackPortTable + + cfmLoopbackPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF CfmLoopbackPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains CFM information." + ::= { cfm 1 } + + cfmLoopbackPortEntry OBJECT-TYPE + SYNTAX CfmLoopbackPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in cfmLoopbackPortTable." + INDEX { ifIndex } + ::= { cfmLoopbackPortTable 1 } + + CfmLoopbackPortEntry ::= SEQUENCE { + cfmLoopbackPortState INTEGER + } + + cfmLoopbackPortState OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "CFM loopback enable/disable on the port." + ::= { cfmLoopbackPortEntry 1 } + +-- cfmMIPTable + + cfmMIPTable OBJECT-TYPE + SYNTAX SEQUENCE OF CfmMIPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { cfm 2 } + + cfmMIPEntry OBJECT-TYPE + SYNTAX CfmMIPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in cfmMIPTable." + INDEX { dot1agCfmMdIndex, cfmPort } + ::= { cfmMIPTable 1 } + + CfmMIPEntry ::= + SEQUENCE { + cfmPort INTEGER, + cfmMIPRowStatus RowStatus, + cfmMIPMacAddr PhysAddress + } + +-- cfmLevel OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { cfmMIPEntry 1 } +-- +-- cfmVlanID OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { cfmMIPEntry 2 } + + cfmPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { cfmMIPEntry 3 } + + cfmMIPRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "" + ::= { cfmMIPEntry 4 } + + cfmMIPMacAddr OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "CFM MIP mac address" + ::= { cfmMIPEntry 5 } + + cfmActionEnableStatus OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "CFM Action enable status for the CO device" + ::= { cfm 3 } + + cfmMode OBJECT-TYPE + SYNTAX INTEGER { + mode802Dot1Ag(1), + modeYDot1731(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "CFM follow standard mode" + ::= { cfm 4 } + + cfmLbmTimeout OBJECT-TYPE + SYNTAX INTEGER (100..86400) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "CFM LBM timeout, 100-86400 ms" + ::= { cfm 5 } + + cfmLbmDataTlvLength OBJECT-TYPE + SYNTAX INTEGER (0..1400) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "CFM LBM data tlv length, 0-1400 bytes" + ::= { cfm 6 } + +-- cfmLbrTable + + cfmLbrTable OBJECT-TYPE + SYNTAX SEQUENCE OF CfmLbrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains CFM LBR results." + ::= { cfm 7 } + + cfmLbrEntry OBJECT-TYPE + SYNTAX CfmLbrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in cfmLbrTable." + INDEX { dot1agCfmMdIndex, dot1agCfmMaIndex, dot1agCfmMepIdentifier, cfmLbmIndex, cfmLbrIndex} + ::= { cfmLbrTable 1 } + + CfmLbrEntry ::= SEQUENCE { + cfmLbmIndex INTEGER, + cfmLbrIndex INTEGER, + cfmLbrSrcMac PhysAddress, + cfmLbrStatus INTEGER, + cfmLbrRtt INTEGER + } + + cfmLbmIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CFM lbm index." + ::= { cfmLbrEntry 1 } + + cfmLbrIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CFM lbr index." + ::= { cfmLbrEntry 2 } + + cfmLbrSrcMac OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CFM lbr source address." + ::= { cfmLbrEntry 3 } + + cfmLbrStatus OBJECT-TYPE + SYNTAX INTEGER { + ready(1), + notready(2), + xmit(3), + success(4), + timeout(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CFM lbr status." + ::= { cfmLbrEntry 4 } + + cfmLbrRtt OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CFM lbr rtt in ms." + ::= { cfmLbrEntry 5 } + +-------------------- +-- DHCP Relay +-------------------- + dhcpRelay82Table OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpRelay82Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains DHCP Relay configuration." + ::= { dhcp 2 } + + dhcpRelay82Entry OBJECT-TYPE + SYNTAX DhcpRelay82Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of DHCP Relay table." + INDEX { dot1qVlanIndex } + ::= { dhcpRelay82Table 1 } + + DhcpRelay82Entry ::= + SEQUENCE { + dhcpRelay82PrimaryServer IpAddress, + dhcpRelay82SecondaryServer IpAddress, + dhcpRelay82ActiveServer INTEGER, + dhcpRelay82Enable INTEGER, + dhcpRelay82Info DisplayString, + dhcpRelay82RelayMode INTEGER, + dhcpRelay82Suboption2Enable INTEGER, + dhcpRelay82Suboption2Info DisplayString, + dhcpRelay82EntryEnable INTEGER, + dhcpRelay82EntryOptionMode INTEGER, + dhcpRelay82VlanIp IpAddress, + dhcpRelay82VlanMask INTEGER, + dhcpRelay82VlanGateway IpAddress, + dhcpRelay82ThirdServer IpAddress, + dhcpRelay82FourthServer IpAddress, + dhcpRelay82FifthServer IpAddress, + dhcpRelay82ServerVid INTEGER + } + + dhcpRelay82PrimaryServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Relay primary server." + ::= { dhcpRelay82Entry 1 } + + dhcpRelay82SecondaryServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Relay secondary server." + ::= { dhcpRelay82Entry 2 } + + dhcpRelay82ActiveServer OBJECT-TYPE + SYNTAX INTEGER { + primary(1), + secondary(2), + third(3), + fourth(4), + fifth(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current active DHCP Relay server." + ::= { dhcpRelay82Entry 3 } + + dhcpRelay82Enable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable/disable DHCP relay and Option82 function." + ::= { dhcpRelay82Entry 4 } + + dhcpRelay82Info OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..23)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "User specific Option82 information." + ::= { dhcpRelay82Entry 5 } + + dhcpRelay82RelayMode OBJECT-TYPE + SYNTAX INTEGER { + auto(1), + all(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DHCP relay mode." + ::= { dhcpRelay82Entry 6 } + + + dhcpRelay82Suboption2Enable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable/disable Option 82 sub-option 2." + ::= { dhcpRelay82Entry 8 } + + dhcpRelay82Suboption2Info OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "User specified information for Option 82 sub-option 2." + ::= { dhcpRelay82Entry 9 } + + dhcpRelay82EntryEnable OBJECT-TYPE + SYNTAX INTEGER { + auto(1), + all(2), + disable(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable/disable DHCP Relay" + ::= { dhcpRelay82Entry 10 } + + dhcpRelay82EntryOptionMode OBJECT-TYPE + SYNTAX INTEGER { + private(1), + tr101(2), + customer-remote-id(3), + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Option82 format." + ::= { dhcpRelay82Entry 11 } + + dhcpRelay82VlanIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Relay interface for this VLAN." + ::= { dhcpRelay82Entry 12 } + + dhcpRelay82VlanMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The network mask of the DHCP Relay interface for this VLAN." + ::= { dhcpRelay82Entry 13 } + + dhcpRelay82VlanGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The gateway of the DHCP Relay interface for this VLAN." + ::= { dhcpRelay82Entry 14 } + + dhcpRelay82ThirdServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Relay third server." + ::= { dhcpRelay82Entry 15 } + + dhcpRelay82FourthServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Relay fourth server." + ::= { dhcpRelay82Entry 16 } + + + dhcpRelay82FifthServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Relay fifth server." + ::= { dhcpRelay82Entry 17 } + + dhcpRelay82ServerVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The VID of the DHCP Relay server for this VLAN." + ::= { dhcpRelay82Entry 18 } + +-- dhcpRelayTest + dhcpRelayTest OBJECT IDENTIFIER ::= { dhcp 8 } + + dhcpRelayTestVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting the VID of the test server." + ::= { dhcpRelayTest 1 } + + dhcpRelayTestIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting the IP of the test server." + ::= { dhcpRelayTest 2 } + + dhcpRelayTestOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the object to 1 to test DHCP server." + ::= { dhcpRelayTest 3 } + + dhcpRelayTestStatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display testing server status." + ::= { dhcpRelayTest 4 } + +-- dhcpRelayArp + dhcpRelayArp OBJECT IDENTIFIER ::= { dhcp 9 } + + dhcpRelayArpShowTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpRelayArpShowEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table displays DHCP ARP." + ::= { dhcpRelayArp 1 } + + dhcpRelayArpShowEntry OBJECT-TYPE + SYNTAX DhcpRelayArpShowEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dhcpRelayArpShowTable." + INDEX { dhcpRelayArpShowVid, dhcpRelayArpShowIp } + ::= { dhcpRelayArpShowTable 1 } + + DhcpRelayArpShowEntry ::= + SEQUENCE { + dhcpRelayArpShowVid INTEGER, + dhcpRelayArpShowIp IpAddress, + dhcpRelayArpShowMac PhysAddress + } + + dhcpRelayArpShowVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the VID of the DHCP ARP entry." + ::= { dhcpRelayArpShowEntry 1 } + + dhcpRelayArpShowIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the IP of the DHCP ARP entry." + ::= { dhcpRelayArpShowEntry 2 } + + dhcpRelayArpShowMac OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the MAC of the DHCP ARP entry." + ::= { dhcpRelayArpShowEntry 3 } + + dhcpRelayArpFlushOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the object to 1 to start flushing." + ::= { dhcpRelayArp 2 } + +-------------------- +-- MAC Filter +-------------------- + +-- MAC Filter Port Table + + macFilterPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the status of mac filtering for each port." + ::= { macfilter 1 } + + macFilterPortEntry OBJECT-TYPE + SYNTAX MacFilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in macFilterPortTable." + INDEX { ifIndex } + ::= { macFilterPortTable 1 } + + MacFilterPortEntry ::= + SEQUENCE { + macFilterPortEnable INTEGER, + macFilterPortMacCount INTEGER, + macFilterPortFilterMode INTEGER + } + + macFilterPortEnable OBJECT-TYPE + SYNTAX INTEGER { + enableMacFilter(1), + enableMacCount(2), +-- enableOuiFilter(3), + disable(4), + enableMacFilterAndMacCount(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable MAC filtering for the port." + ::= { macFilterPortEntry 1 } + + macFilterPortMacCount OBJECT-TYPE + SYNTAX INTEGER (1..128) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The total number of MAC addresses allowed for the port." + ::= { macFilterPortEntry 2 } + + macFilterPortFilterMode OBJECT-TYPE + SYNTAX INTEGER { + accept(1), + deny(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The mac filter mode (accept or deny) for the port." + ::= { macFilterPortEntry 3 } + + maxNumOfMacFiltersInSystem OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of mac filters supported in the system." + ::= { macfilter 2 } + + maxNumOfMacFiltersPerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of mac filters supported per port." + ::= { macfilter 3 } + + currNumOfMacFiltersInSystem OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of mac filters in the system." + ::= { macfilter 4 } + +-- MAC Table + + macFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains the mac filter addresses." + ::= { macfilter 5 } + + macFilterEntry OBJECT-TYPE + SYNTAX MacFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of macFilterTable." + INDEX { ifIndex, macFilterAddr } + ::= { macFilterTable 1 } + + MacFilterEntry ::= + SEQUENCE { + macFilterAddr PhysAddress, + macFilterRowStatus RowStatus + } + + macFilterAddr OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The mac address which can pass through or be rejected from the port." + ::= { macFilterEntry 1 } + + macFilterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the entry." + ::= { macFilterEntry 2 } + +-- Batch Set for MAC Filter + + macfilterBatchSet OBJECT IDENTIFIER ::= { macfilter 6 } + + macfilterTarget OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This managed object is used for identify the target on which + the port configuration should be performed. The target is encoded as: + Byte 1: 0, Reserved(chassis) + Byte 2~3: 0, Reserved(slot) + Byte 4: 0, reserved + Byte 5~11:each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc." + ::= { macfilterBatchSet 1 } + + macfilterOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The corresponding bit is set to 1 to start the operation. + The various bit positions are: + BIT 1: enable mac filter + BIT 2: enable mac count filter + BIT 3: disable mac filter + BIT 4: set mac count + BIT 5: disable mac count filter." + ::= { macfilterBatchSet 2 } + + macFilterMacCountForBatchSet OBJECT-TYPE + SYNTAX INTEGER (1..128) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The total number of MAC addresses allowed for a port." + ::= { macfilterBatchSet 3 } + + +-- OUI Filter Table + + ouiFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF OuiFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains the OUI filter addresses." + ::= { macfilter 7 } + + ouiFilterEntry OBJECT-TYPE + SYNTAX OuiFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of ouiFilterTable." + INDEX { ifIndex, ouiFilterAddr } + ::= { ouiFilterTable 1 } + + OuiFilterEntry ::= + SEQUENCE { + ouiFilterAddr OCTET STRING, + ouiFilterRowStatus RowStatus + } + + ouiFilterAddr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The first three bytes of the mac address which can pass through or be rejected from the port." + ::= { ouiFilterEntry 1 } + + ouiFilterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the entry." + ::= { ouiFilterEntry 2 } + + maxNumOfOuiFiltersPerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of OUI filters supported per port." + ::= { macfilter 8 } + + + ouiFilterPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF OuiFilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the status of oui filtering for each port." + ::= { macfilter 9 } + + ouiFilterPortEntry OBJECT-TYPE + SYNTAX OuiFilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in macFilterPortTable." + INDEX { ifIndex } + ::= { ouiFilterPortTable 1 } + + OuiFilterPortEntry ::= + SEQUENCE { + ouiFilterPortEnable INTEGER, + ouiFilterPortFilterMode INTEGER + } + + + ouiFilterPortEnable OBJECT-TYPE + SYNTAX INTEGER { + enableOuiFilter(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable oui filtering for the port." + ::= { ouiFilterPortEntry 1 } + + + + ouiFilterPortFilterMode OBJECT-TYPE + SYNTAX INTEGER { + accept(1), + deny(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The oui filter mode (accept or deny) for the port." + ::= { ouiFilterPortEntry 2 } + +-------------------- +-- DHCP Snoop +-------------------- + +-- dhcpSnoopPortTable + + dhcpSnoopPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpSnoopPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes DHCP snooping enable/disable for each port." + ::= { dhcpSnoop 1 } + + dhcpSnoopPortEntry OBJECT-TYPE + SYNTAX DhcpSnoopPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dhcpSnoopPortTable." + INDEX { ifIndex } + ::= { dhcpSnoopPortTable 1 } + + DhcpSnoopPortEntry ::= + SEQUENCE { + dhcpSnoopEnable INTEGER, + dhcpSnoopMaxcnt INTEGER, + dhcpSnoopSmacverifyEnable INTEGER + } + + dhcpSnoopEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable DHCP snooping for a port." + ::= { dhcpSnoopPortEntry 1 } + + dhcpSnoopMaxcnt OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the max entries of the DHCP ARP table." + ::= { dhcpSnoopPortEntry 2 } + + dhcpSnoopSmacverifyEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable DHCP source MAC verify for a port." + ::= { dhcpSnoopPortEntry 3 } + + +-- dhcpSnoopOperation + + dhcpSnoopTarget OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This managed object is used for identify the target on which + the operation should be performed. The target is encoded as: + Byte 1: the octet specifies a set of eight chassis, chassis 0 through 7 + Byte 2~3: each octet specifies a set of eight slots, with the + first octet specifying slots 1 through 8 and the second + octet specifying slots 9 through 16. + Byte 4: reserved + Byte 5~11:each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc." + ::= { dhcpSnoop 2 } + + dhcpSnoopOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The corresponding bit is set to 1 to start the operation. + The various bit positions are: + BIT 1: DHCP snooping table flush." + ::= { dhcpSnoop 3 } + +-- dhcpStaticTable + + dhcpStaticTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpStaticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table defines DHCP static IP addresses." + ::= { dhcpSnoop 4 } + + dhcpStaticEntry OBJECT-TYPE + SYNTAX DhcpStaticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dhcpStaticTable." + INDEX { ifIndex, dhcpStaticIpAddr } + ::= { dhcpStaticTable 1 } + + DhcpStaticEntry ::= + SEQUENCE { + dhcpStaticIpAddr IpAddress, + dhcpStaticRowStatus RowStatus + } + + dhcpStaticIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address which can pass through the port." + ::= { dhcpStaticEntry 1 } + + dhcpStaticRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table entry." + ::= { dhcpStaticEntry 2 } + + maxNumOfDhcpStaticIp OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of DHCP static IP addresses which can be created for a port." + ::= { dhcpSnoop 5 } + + dhcpSnoopMaxcntMode OBJECT-TYPE + SYNTAX INTEGER { + replace(1), + drop(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "When DHCP snooping table is full, new DHCP lease will replace first one in option 0 or will be dropped in option 1." + ::= { dhcpSnoop 6 } + +-------------------- +-- ACL Rule +-------------------- + +-- aclSetTable + + aclSetTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "aclsetTable." + ::= { acl 1 } + + aclSetEntry OBJECT-TYPE + SYNTAX AclSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of aclSetTable." + INDEX { ifIndex, aclSetVpi, aclSetVci, aclSetProfileName } + ::= { aclSetTable 1 } + + AclSetEntry ::= + SEQUENCE { + aclSetVpi INTEGER, + aclSetVci INTEGER, + aclSetProfileName DisplayString, + aclSetRowStatus RowStatus + } + + aclSetVpi OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI value" + ::= { aclSetEntry 1 } + + aclSetVci OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI value" + ::= { aclSetEntry 2 } + + aclSetProfileName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ACL Profile name" + ::= { aclSetEntry 3 } + + aclSetRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "RowStatus of aclSetEntry" + ::= { aclSetEntry 4 } + +-- aclProfileTable + + aclProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "aclProfileTable." + ::= { acl 2 } + + aclProfileEntry OBJECT-TYPE + SYNTAX AclProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of aclProfileTable." + INDEX { aclProfileRuleName } + ::= { aclProfileTable 1 } + + AclProfileEntry ::= + SEQUENCE { + aclProfileRuleName DisplayString, + aclProfileRuleNumber INTEGER, + aclProfileActionNumber INTEGER, + aclProfileRuleParamMask INTEGER, + aclProfileRuleEtype INTEGER, + aclProfileRuleVid INTEGER, + aclProfileRuleSmac PhysAddress, + aclProfileRuleDmac PhysAddress, + aclProfileRulePriority INTEGER, + aclProfileRuleProtocol INTEGER, +-- aclProfileRuleSrcIP IpAddress, +-- aclProfileRuleSrcIPMask INTEGER, +-- aclProfileRuleDestIP IpAddress, +-- aclProfileRuleDestIPMask INTEGER, +-- aclProfileRuleStartTos INTEGER, +-- aclProfileRuleEndTos INTEGER, +-- aclProfileRuleSrcStartPort INTEGER, +-- aclProfileRuleSrcEndPort INTEGER, +-- aclProfileRuleDestStartPort INTEGER, +-- aclProfileRuleDestEndPort INTEGER, + aclProfileActionRate INTEGER, + aclProfileActionrvlan INTEGER, + aclProfileActionrpri INTEGER, + aclProfileRowStatus RowStatus, + aclProfileRuleSip IpAddress, + aclProfileRuleDip IpAddress, + aclProfileRuleSport INTEGER, + aclProfileRuleDport INTEGER + + } + + aclProfileRuleName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Profile rule name" + ::= { aclProfileEntry 1 } + + aclProfileRuleNumber OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is for acl profile rule configuration. + etype vlan (1), + etype smac (2), + etype dmac (3), + vlan smac (4), + vlan dmac (5), + smac dmac (6), + vlan priority (7), + etype (8), + vlan (9), + smac (10), + dmac (11), + priority (12), + protocol (13), + vlan sip (14), + vlan dip (15), + vlan sport tcp|udp (16), + vlan dport tcp|udp (17) " + ::= { aclProfileEntry 2 } + + aclProfileActionNumber OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile action number. + Bit 1: rate + Bit 2: rvlan + Bit 3: rpri + Bit 4: deny + Bit 1, Bit 2 & Bit 3 can multiple selection." + ::= { aclProfileEntry 3 } + + aclProfileRuleParamMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule parameter mask. + BIT 1: srcip / + BIT 2: dstip / + BIT 3: tos + BIT 4: srcport + BIT 5: dstport " + ::= { aclProfileEntry 4 } + + aclProfileRuleEtype OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule etype" + ::= { aclProfileEntry 5 } + + aclProfileRuleVid OBJECT-TYPE + SYNTAX INTEGER (1..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule vid" + ::= { aclProfileEntry 6 } + + aclProfileRuleSmac OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule source MAC" + ::= { aclProfileEntry 7 } + + aclProfileRuleDmac OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule destination MAC" + ::= { aclProfileEntry 8 } + + aclProfileRulePriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule priority" + ::= { aclProfileEntry 9 } + + aclProfileRuleProtocol OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule protocol. + icmp(1),igmp(2),ip(4),tcp(6), + udp(17),gre(47),ospf(89), + other ptype" + ::= { aclProfileEntry 10 } + +-- aclProfileRuleSrcIP OBJECT-TYPE +-- SYNTAX IpAddress +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Profile rule source IP" +-- ::= { aclProfileEntry 11 } +-- +-- aclProfileRuleSrcIPMask OBJECT-TYPE +-- SYNTAX INTEGER (0..32) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The subnet mask of source IP mask" +-- ::= { aclProfileEntry 12 } +-- +-- aclProfileRuleDestIP OBJECT-TYPE +-- SYNTAX IpAddress +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Profile rule source IP" +-- ::= { aclProfileEntry 13 } +-- +-- aclProfileRuleDestIPMask OBJECT-TYPE +-- SYNTAX INTEGER (0..32) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The subnet mask of dest IP mask" +-- ::= { aclProfileEntry 14 } +-- +-- aclProfileRuleStartTos OBJECT-TYPE +-- SYNTAX INTEGER (0..255) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Profile rule start type of service" +-- ::= { aclProfileEntry 15 } +-- +-- aclProfileRuleEndTos OBJECT-TYPE +-- SYNTAX INTEGER (0..255) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Profile rule end type of service" +-- ::= { aclProfileEntry 16 } +-- +-- aclProfileRuleSrcStartPort OBJECT-TYPE +-- SYNTAX INTEGER (0..65535) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Profile rule source start port" +-- ::= { aclProfileEntry 17 } +-- +-- aclProfileRuleSrcEndPort OBJECT-TYPE +-- SYNTAX INTEGER (0..65535) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Profile rule source end port" +-- ::= { aclProfileEntry 18 } +-- +-- aclProfileRuleDestStartPort OBJECT-TYPE +-- SYNTAX INTEGER (0..65535) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Profile rule destination start port" +-- ::= { aclProfileEntry 19 } +-- +-- aclProfileRuleDestEndPort OBJECT-TYPE +-- SYNTAX INTEGER (0..65535) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Profile rule destination end port" +-- ::= { aclProfileEntry 20 } + + aclProfileActionRate OBJECT-TYPE + SYNTAX INTEGER (32..65472) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile action to replace to this rate" + ::= { aclProfileEntry 21 } + + aclProfileActionrvlan OBJECT-TYPE + SYNTAX INTEGER (1..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile action to replace to this vlan" + ::= { aclProfileEntry 22 } + + aclProfileActionrpri OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile action to replace to this priority" + ::= { aclProfileEntry 23 } + + aclProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The row status of the entry." + ::= { aclProfileEntry 24 } + + aclProfileRuleSip OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source IP." + ::= { aclProfileEntry 25 } + + aclProfileRuleDip OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination IP." + ::= { aclProfileEntry 26 } + + aclProfileRuleSport OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source port." + ::= { aclProfileEntry 27 } + + aclProfileRuleDport OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination port." + ::= { aclProfileEntry 28 } + + +-------------------- +-- PPPoE Agent +-------------------- + +-- pppoeAgentTable + + pppoeAgentTable OBJECT-TYPE + SYNTAX SEQUENCE OF PppoeAgentEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains PPPoE intermediate agent configuration." + ::= { pppoeAgent 1 } + + pppoeAgentEntry OBJECT-TYPE + SYNTAX PppoeAgentEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of pppoeAgentTable." + INDEX { dot1qVlanIndex } + ::= { pppoeAgentTable 1 } + + PppoeAgentEntry ::= + SEQUENCE { + pppoeAgentEnable INTEGER, + pppoeAgentInfo DisplayString, + pppoeAgentRowStatus RowStatus, + pppoeAgentOptionMode INTEGER + } + + pppoeAgentEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable/disable PppoE intermediate agent function." + ::= { pppoeAgentEntry 1 } + + pppoeAgentInfo OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..23)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "User specific Option82 information." + ::= { pppoeAgentEntry 2 } + + pppoeAgentRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table entry." + ::= { pppoeAgentEntry 3 } + + pppoeAgentOptionMode OBJECT-TYPE + SYNTAX INTEGER { + private(1), + tr101(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Option82 format." + ::= { pppoeAgentEntry 4 } + + maxNumOfPppoeAgentConf OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of rows that can be created in pppoeAgentTable." + ::= { pppoeAgent 2 } + + +-------------------- +-- n1mac +-------------------- + n1macReplaceMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This MAC address will be used to replace client's MAC address." + ::= { n1mac 1 } + + n1macPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF N1macPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table contains N to 1 MAC configuration for DSL ports." + ::= { n1mac 2 } + + n1macPortEntry OBJECT-TYPE + SYNTAX N1macPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of n1macPortTable." + INDEX { ifIndex } + ::= { n1macPortTable 1 } + + N1macPortEntry ::= + SEQUENCE { + n1macStatusEnable INTEGER + } + + n1macStatusEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port status of n1mac function." + ::= { n1macPortEntry 1 } + +---------------------------------------- +-- macff +---------------------------------------- + macFfTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains MAC Force Forwarding configuration." + ::= { macff 1 } + + macFfEntry OBJECT-TYPE + SYNTAX MacFfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfTable." + INDEX { macFfIndex } + ::= { macFfTable 1 } + + MacFfEntry ::= + SEQUENCE { + macFfIndex INTEGER, + macFfVid INTEGER, + macFfArIP IpAddress, +-- macFfArMask INTEGER, + macFfSrcIP IpAddress, + macFfSrcMask INTEGER, + macFfRowStatus RowStatus + } + + macFfIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of the MACFF." + ::= { macFfEntry 1 } + + macFfVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The VLAN-ID refering to this AR/AS." + ::= { macFfEntry 2 } + + + macFfArIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IP of this AR/AS" + ::= { macFfEntry 3 } + + macFfSrcIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source IP address of the MACFF." + ::= { macFfEntry 4 } + + macFfSrcMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The subnet mask of source IP mask." + ::= { macFfEntry 5 } + + + macFfRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the MacFfEntry entry." + ::= { macFfEntry 6 } + + + macFfArpFlush OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the object to 1 to flush mac table." + ::= { macff 3 } + + maxNumOfMacFfVlanInSystem OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of macff Vlans supported in the system." + ::= { macff 4 } + + macFfVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains MAC Force Forwarding Vlan configuration." + ::= { macff 5 } + + macFfVlanEntry OBJECT-TYPE + SYNTAX MacFfVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfVlanTable." + INDEX { dot1qVlanIndex } + ::= { macFfVlanTable 1 } + + MacFfVlanEntry ::= + SEQUENCE { + macFfVlanRowstatus INTEGER +-- macFfVlanUnknownUnicast INTEGER removed since R3.1 + } + + macFfVlanRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table used to create/delete an entry." + ::= { macFfVlanEntry 1 } +-- removed since R3.1 +-- macFfVlanUnknownUnicast OBJECT-TYPE +-- SYNTAX INTEGER { +-- flood(1), +-- drop(2) +-- } +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "Setting downstream unknown uni-cast packet on macff vlan to flooding or dropping." +-- ::= { macFfVlanEntry 2 } + + macFfStaticIPTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfStaticIPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + ::= { macff 6 } + + macFfStaticIPEntry OBJECT-TYPE + SYNTAX MacFfStaticIPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfTable." + INDEX { macFfStaticIPPort, macFfStaticIPVid, macFfstaticIP , macFfStaticIPMask} + ::= { macFfStaticIPTable 1 } + + MacFfStaticIPEntry ::= + SEQUENCE { + macFfStaticIPPort INTEGER, + macFfStaticIPVid INTEGER, + macFfstaticIP IpAddress, + macFfStaticIPMask INTEGER, + macFfStaticIPRowStatus RowStatus + } + + macFfStaticIPPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The port number, 1 ~ 48." + ::= { macFfStaticIPEntry 1 } + + macFfStaticIPVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + + STATUS current + DESCRIPTION + "VLAN ID of the IP range, 1 ~ 4094, the vid should be enable the MACFF function first." + ::= { macFfStaticIPEntry 2 } + + + macFfstaticIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + + STATUS current + DESCRIPTION + "The specified IP range." + ::= { macFfStaticIPEntry 3 } + + macFfStaticIPMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + + STATUS current + DESCRIPTION + "Mask_bits is 24 .. 32." + ::= { macFfStaticIPEntry 4 } + + + macFfStaticIPRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status used to configure the table entry." + ::= { macFfStaticIPEntry 5 } + +-- Server Mac -- + + macFfServerMacTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfServerMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + ::= { macff 7 } + + macFfServerMacEntry OBJECT-TYPE + SYNTAX MacFfServerMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfTable." + INDEX { macFfServerMacVid, macFfServerMacAddr} + ::= { macFfServerMacTable 1 } + + MacFfServerMacEntry ::= + SEQUENCE { + macFfServerMacVid INTEGER, + macFfServerMacAddr PhysAddress, + macFfServerMacRowStatus RowStatus + } + + macFfServerMacVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + + STATUS current + DESCRIPTION + "VLAN ID of the IP range, 1 ~ 4094, the vid should be enable the MACFF function first." + ::= { macFfServerMacEntry 1 } + + macFfServerMacAddr OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + + STATUS current + DESCRIPTION + "The mac address." + ::= { macFfServerMacEntry 2 } + + macFfServerMacRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status used to configure the table entry." + ::= { macFfServerMacEntry 3 } + +---------------------------------------- +-- sys +---------------------------------------- + timeSetup OBJECT IDENTIFIER ::= { sys 4 } + accessCtrl OBJECT IDENTIFIER ::= { sys 5 } + extAlarm OBJECT IDENTIFIER ::= { sys 8 } + user OBJECT IDENTIFIER ::= { sys 9 } + usbCastCtrl OBJECT IDENTIFIER ::= { sys 10} + dsQos OBJECT IDENTIFIER ::= { sys 11} + fwUpgrade OBJECT IDENTIFIER ::= { sys 14} + delayedReboot OBJECT IDENTIFIER ::= {sys 15} + + stdioTimeout OBJECT-TYPE + SYNTAX INTEGER (0..300) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the stdio timeout, 0~300 minutes." + ::= { sys 12 } + + isConfigChanged OBJECT-TYPE + SYNTAX INTEGER { + yes(1), + no(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If system configuration has been changed." + ::= { sys 13 } + +-------------------- +-- Time Setup +-------------------- +-- dayLightSaving + + dayLightSaving OBJECT IDENTIFIER ::= { timeSetup 7 } + + dayLightSavingAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { dayLightSaving 1 } + + dayLightSavingStartTime OBJECT IDENTIFIER ::= { dayLightSaving 2 } + + dayLightSavingStartMonth OBJECT-TYPE + SYNTAX INTEGER { + Jan(1), + Feb(2), + Mar(3), + Apr(4), + May(5), + Jun(6), + Jul(7), + Aug(8), + Sep(9), + Oct(10), + Nov(11), + Dec(12) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { dayLightSavingStartTime 1 } + + dayLightSavingStartWeek OBJECT-TYPE + SYNTAX INTEGER { + First(1), + Second(2), + Third(3), + Fourth(4), + Last(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { dayLightSavingStartTime 2 } + + dayLightSavingStartWday OBJECT-TYPE + SYNTAX INTEGER { + Sun(1), + Mon(2), + Tus(3), + Wed(4), + Thu(5), + Fri(6), + Sat(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { dayLightSavingStartTime 3 } + + dayLightSavingStartHour OBJECT-TYPE + SYNTAX INTEGER { + "0:00"(0), + "1:00"(1), + "2:00"(2), + "3:00"(3), + "4:00"(4), + "5:00"(5), + "6:00"(6), + "7:00"(7), + "8:00"(8), + "9:00"(9), + "10:00"(10), + "11:00"(11), + "12:00"(12), + "13:00"(13), + "14:00"(14), + "15:00"(15), + "16:00"(16), + "17:00"(17), + "18:00"(18), + "19:00"(19), + "20:00"(20), + "21:00"(21), + "22:00"(22), + "23:00"(23), + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "1: 01:00, + 2: 02:00 + 3: 03:00 + 4: 04:00 + 5: 05:00 + 6: 06:00 + 7: 07:00 + 8: 08:00 + 9: 09:00 + 10: 10:00 + 11: 11:00 + 12: 12:00 + 13: 13:00 + 14: 14:00 + 15: 15:00 + 16: 16:00 + 17: 17:00 + 18: 18:00 + 19: 19:00 + 20: 20:00 + 21: 21:00 + 22: 22:00 + 23: 23:00" + ::= { dayLightSavingStartTime 4 } + + + dayLightSavingEndTime OBJECT IDENTIFIER ::= { dayLightSaving 3 } + + dayLightSavingEndMonth OBJECT-TYPE + SYNTAX INTEGER { + Jan(1), + Feb(2), + Mar(3), + Apr(4), + May(5), + Jun(6), + Jul(7), + Aug(8), + Sep(9), + Oct(10), + Nov(11), + Dec(12) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { dayLightSavingEndTime 1 } + + dayLightSavingEndWeek OBJECT-TYPE + SYNTAX INTEGER { + First(1), + Second(2), + Third(3), + Fourth(4), + Last(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { dayLightSavingEndTime 2 } + + dayLightSavingEndWday OBJECT-TYPE + SYNTAX INTEGER { + Sun(1), + Mon(2), + Tus(3), + Wed(4), + Thu(5), + Fri(6), + Sat(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { dayLightSavingEndTime 3 } + + dayLightSavingEndHour OBJECT-TYPE + SYNTAX INTEGER { + "0:00"(0), + "1:00"(1), + "2:00"(2), + "3:00"(3), + "4:00"(4), + "5:00"(5), + "6:00"(6), + "7:00"(7), + "8:00"(8), + "9:00"(9), + "10:00"(10), + "11:00"(11), + "12:00"(12), + "13:00"(13), + "14:00"(14), + "15:00"(15), + "16:00"(16), + "17:00"(17), + "18:00"(18), + "19:00"(19), + "20:00"(20), + "21:00"(21), + "22:00"(22), + "23:00"(23), + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "1: 01:00, + 2: 02:00 + 3: 03:00 + 4: 04:00 + 5: 05:00 + 6: 06:00 + 7: 07:00 + 8: 08:00 + 9: 09:00 + 10: 10:00 + 11: 11:00 + 12: 12:00 + 13: 13:00 + 14: 14:00 + 15: 15:00 + 16: 16:00 + 17: 17:00 + 18: 18:00 + 19: 19:00 + 20: 20:00 + 21: 21:00 + 22: 22:00 + 23: 23:00" + ::= { dayLightSavingEndTime 4 } + +-------------------- +-- Access Control +-------------------- +-- Secured Client Table + + securedClientTable OBJECT-TYPE + SYNTAX SEQUENCE OF SecuredClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about secured clients." + ::= { accessCtrl 2 } + + securedClientEntry OBJECT-TYPE + SYNTAX SecuredClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of secured client entry." + INDEX { securedClientIndex } + ::= { securedClientTable 1 } + + SecuredClientEntry ::= + SEQUENCE { + securedClientIndex INTEGER, + securedClientStartIp IpAddress, + securedClientEndIp IpAddress, + securedClientService INTEGER, + securedClientEnable INTEGER + } + + securedClientIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of the entry." + ::= { securedClientEntry 1 } + + securedClientStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The starting IP address of the secured client set." + ::= { securedClientEntry 2 } + + securedClientEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ending IP address of the secured client set." + ::= { securedClientEntry 3 } + + securedClientService OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Each bit corresponds to a service. The bit is set to 1 if the + service is enabled, and set to 0 if the service is disabled. + The various bit positions are: + BIT 1: telnet + BIT 2: ftp + BIT 3: web + BIT 4: icmp + BIT 5: not support + BIT 6: snmp." + ::= { securedClientEntry 4 } + + securedClientEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable the entry." + ::= { securedClientEntry 5 } + + +-------------------- +-- extAlarm +-------------------- + + extAlarmTable OBJECT-TYPE + SYNTAX SEQUENCE OF ExtAlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains external alarm information." + ::= { extAlarm 1 } + + extAlarmEntry OBJECT-TYPE + SYNTAX ExtAlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of external alarm table." + INDEX { extAlarmIndex } + ::= { extAlarmTable 1 } + + ExtAlarmEntry ::= + SEQUENCE { + extAlarmIndex INTEGER, + extAlarmName OCTET STRING, + extAlarmStatus OCTET STRING, + extAlarmTriggeredMode INTEGER + } + + extAlarmIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of the entry." + ::= { extAlarmEntry 1 } + + extAlarmName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The external alarm name." + ::= { extAlarmEntry 2 } + + extAlarmStatus OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Dispaly 'Normal' or 'Alarm' string" + ::= { extAlarmEntry 3 } + + extAlarmTriggeredMode OBJECT-TYPE + SYNTAX INTEGER { + closeAlarm(1), + openAlarm(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The external alarm triggered mode." + ::= { extAlarmEntry 4 } + +-------------------- +-- User Management +-------------------- + + userAuthMode OBJECT-TYPE + SYNTAX INTEGER { + local(1), + radius(2), + localThenRadius(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "User authentication procsssing mode." + ::= { user 1 } + + userAuthServerIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the authentication server." + ::= { user 2 } + + userAuthServerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port of the authentication server." + ::= { user 3 } + + userAuthServerSecret OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The secret between the authentication server and the NE for authentication process." + ::= { user 4 } + +-- userTable + + userTable OBJECT-TYPE + SYNTAX SEQUENCE OF UserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains user information." + ::= { user 5 } + + userEntry OBJECT-TYPE + SYNTAX UserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of userTable." + INDEX { userName } + ::= { userTable 1 } + + UserEntry ::= + SEQUENCE { + userName DisplayString, + userPassword DisplayString, + userPriviledge INTEGER, + userRowStatus RowStatus + } + + userName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The user name." + ::= { userEntry 1 } + + userPassword OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The user password." + ::= { userEntry 2 } + + userPriviledge OBJECT-TYPE + SYNTAX INTEGER { + high(1), + middle(2), + low(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The user priviledge to decide what operation the user can and cannot do." + ::= { userEntry 3 } + + userRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status used to create or delete a user." + ::= { userEntry 4 } + + userAuthDefaultPriviledge OBJECT-TYPE + SYNTAX INTEGER { + high(1), + middle(2), + low(3), + deny(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The user default priviledge to be assigned when radius authentication succeds + but no user priviledge information(radius service-type) is provided." + ::= { user 6 } + +-------------------- +-- Upstream Broadcast +-------------------- + + usBcastCtrlEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable upstream broadcast control." + ::= { usbCastCtrl 1 } + + usBcastCtrlRate OBJECT-TYPE + SYNTAX INTEGER + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { usbCastCtrl 2 } + +-------------------- +-- Downstream QoS +-------------------- + dsQosEnableMode OBJECT-TYPE + SYNTAX INTEGER { + disable(1), + vlan(2), + dscp(3), + ippre(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable internal overriding mode to VLAN, DSCP or IP Precedence, or disable the overriding mode." + ::= { dsQos 1 } + + dsQosDefaultPri OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the internal default p.bit after overiding. All values not configured in the + overriding table are assigned to the default p.bit" + ::= { dsQos 2 } + + dsQoSOverridingTable OBJECT-TYPE + SYNTAX SEQUENCE OF DsQoSOverridingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes downstream QoS overriding information." + ::= { dsQos 3 } + + dsQoSOverridingEntry OBJECT-TYPE + SYNTAX DsQoSOverridingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in dsQoSOverridingTable." + INDEX { dsQosPriority } + ::= { dsQoSOverridingTable 1 } + + DsQoSOverridingEntry ::= + SEQUENCE { + dsQosPriority INTEGER, + dsQosValueList DisplayString + } + + dsQosPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Internal P.bit after overriding." + ::= { dsQoSOverridingEntry 1 } + + dsQosValueList OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VLAN ID, DSCP, or IP Precedence based on the internal overriding mode configured. + VLAN ID 1 ~ 4094, DSCP 0 ~ 63, IP Precedence 0 ~ 7. value_list example: <1>, <1,3>, <1,5,6~10>." + ::= { dsQoSOverridingEntry 2 } + +-------------------- +-- fwUpgrade +-------------------- + + fwUpgradeVersion OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure the target firmware version that will be upgraded." + ::= { fwUpgrade 1 } + + fwUpgradeCheck OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable firmware upgrade version checking feature." + ::= { fwUpgrade 2 } + + fwUpgradeStatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display current firmware upgrade status." + ::= { fwUpgrade 3 } + +-------------------- +-- delayedReboot +-------------------- + delayedRebootTimer OBJECT-TYPE + SYNTAX INTEGER + UNITS "sec" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "5~1800 secs, 0: reboot immediately." + ::= { delayedReboot 1 } + + delayedRebootRemainingTime OBJECT-TYPE + SYNTAX INTEGER + UNITS "sec" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the remaining time of scheduled reboot." + ::= { delayedReboot 2 } + + delayedRebootCancel OBJECT-TYPE + SYNTAX INTEGER { + cancel(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "cancel the scheduled reboot." + ::= { delayedReboot 3 } + +---------------------------------------- +-- statistics +---------------------------------------- + + dhcpStats OBJECT IDENTIFIER ::= { statistics 11 } + paepvcStats OBJECT IDENTIFIER ::= { statistics 12 } + macStats OBJECT IDENTIFIER ::= { statistics 13 } +-- ipbpvcStats OBJECT IDENTIFIER ::= { statistics 14 } + n1macStats OBJECT IDENTIFIER ::= { statistics 15 } + enetStats OBJECT IDENTIFIER ::= { statistics 16 } + vdslStats OBJECT IDENTIFIER ::= { statistics 17 } +macffStats OBJECT IDENTIFIER ::= { statistics 19 } + adslStats OBJECT IDENTIFIER ::= { statistics 20 } + +-------------------- +-- IGMP +-------------------- + + igmpQueryCntTotal OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP query messages received." + ::= { statistics 1 } + + igmpReportCntTotal OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP report messages received." + ::= { statistics 2 } + + igmpLeaveCntTotal OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP leave messages received." + ::= { statistics 3 } + + igmpNumOfActiveGroups OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP learned groups." + ::= { statistics 4 } + +-- igmpGroupTable + + igmpGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes igmp group information." + ::= { statistics 5 } + + igmpGroupEntry OBJECT-TYPE + SYNTAX IgmpGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in igmpGroupTable." + INDEX { igmpGroupIp } + ::= { igmpGroupTable 1 } + + IgmpGroupEntry ::= + SEQUENCE { + igmpGroupIp IpAddress, + igmpGroupvid INTEGER, + igmpGroupnumberOfMembers INTEGER, + igmpGroupMemberPorts PortList + + } + + igmpGroupIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "igmp group IP" + ::= { igmpGroupEntry 1 } + + igmpGroupvid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "vlan id" + ::= { igmpGroupEntry 2 } + + igmpGroupnumberOfMembers OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "number Of Members" + + ::= { igmpGroupEntry 3 } + + igmpGroupMemberPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Group Member Ports" + + ::= { igmpGroupEntry 4 } + +-- igmpGroupPortTable + + igmpGroupPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpGroupPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes igmp Group port information." + ::= { statistics 6 } + + igmpGroupPortEntry OBJECT-TYPE + SYNTAX IgmpGroupPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in igmpGroupPortTable." + INDEX { ifIndex , igmpGroupPortIp , igmpGroupPortvid} + ::= { igmpGroupPortTable 1 } + + IgmpGroupPortEntry ::= + SEQUENCE { + igmpGroupPortIp IpAddress, + igmpGroupPortvid INTEGER + } + + igmpGroupPortIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Igmp Group IP" + ::= { igmpGroupPortEntry 1 } + + igmpGroupPortvid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Igmp Group vid" + ::= { igmpGroupPortEntry 2 } + +-- igmpGroupV2Table + + igmpGroupV2Table OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpGroupV2Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that displays IGMP learned group member information." + ::= { statistics 7 } + + igmpGroupV2Entry OBJECT-TYPE + SYNTAX IgmpGroupV2Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of igmpGroupV2Table." + INDEX { igmpGroupV2Vid, igmpGroupV2Ip } + ::= { igmpGroupV2Table 1 } + + IgmpGroupV2Entry ::= + SEQUENCE { + igmpGroupV2Vid VlanIndex, + igmpGroupV2Ip IpAddress, + igmpGroupV2NumOfMembers INTEGER, + igmpGroupV2MemberPorts PortList + } + + igmpGroupV2Vid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IGMP group VLAN ID." + ::= { igmpGroupV2Entry 1 } + + igmpGroupV2Ip OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The multicast IP address." + ::= { igmpGroupV2Entry 2 } + + igmpGroupV2NumOfMembers OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of member ports in the group." + ::= { igmpGroupV2Entry 3 } + + igmpGroupV2MemberPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The member port list of the group." + ::= { igmpGroupV2Entry 4 } + +-- igmpGroupPortV2Table + + igmpGroupPortV2Table OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpGroupPortV2Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that displays IGMP joined groups in this port." + ::= { statistics 8 } + + igmpGroupPortV2Entry OBJECT-TYPE + SYNTAX IgmpGroupPortV2Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of igmpGroupPortV2Table." + INDEX { ifIndex, igmpGroupPortV2Vid, igmpGroupPortV2Ip, igmpGroupPortV2SourceIp } + ::= { igmpGroupPortV2Table 1 } + + IgmpGroupPortV2Entry ::= + SEQUENCE { + igmpGroupPortV2Vid VlanIndex, + igmpGroupPortV2Ip IpAddress, + igmpGroupPortV2SourceIp IpAddress + } + + igmpGroupPortV2Vid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IGMP group VLAN ID." + ::= { igmpGroupPortV2Entry 1 } + + igmpGroupPortV2Ip OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The multicast IP address." + ::= { igmpGroupPortV2Entry 2 } + + igmpGroupPortV2SourceIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The source IP address that joins the IGMP group." + ::= { igmpGroupPortV2Entry 3 } + +-- igmpPortCtrlPduTable + + igmpPortCtrlPduTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpPortCtrlPduEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that displays IGMP related counter values in this port." + ::= { statistics 9 } + + igmpPortCtrlPduEntry OBJECT-TYPE + SYNTAX IgmpPortCtrlPduEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of igmpPortCtrlPduTable." + INDEX { ifIndex } + ::= { igmpPortCtrlPduTable 1 } + + IgmpPortCtrlPduEntry ::= + SEQUENCE { + igmpPortCtrlPduQueryCnt Counter32, + igmpPortCtrlPduReportCnt Counter32, + igmpPortCtrlPduLeaveCnt Counter32, + igmpPortNumOfActiveGroups INTEGER, + igmpPortCtrlAuditLeaveCnt Counter32 + } + + igmpPortCtrlPduQueryCnt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP query messages received in this port." + ::= { igmpPortCtrlPduEntry 1 } + + igmpPortCtrlPduReportCnt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP report messages received in this port." + ::= { igmpPortCtrlPduEntry 2 } + + igmpPortCtrlPduLeaveCnt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP leave messages received in this port." + ::= { igmpPortCtrlPduEntry 3 } + + igmpPortNumOfActiveGroups OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of active IGMP groups in this port." + ::= { igmpPortCtrlPduEntry 4 } + + igmpPortCtrlAuditLeaveCnt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of groups left by audit query." + ::= { igmpPortCtrlPduEntry 5 } + +-------------------- +-- vdslStats +-------------------- +-- vdslLineStatsTable + + vdslLineStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslLineStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table displays VDSL line statistics." + ::= { vdslStats 2 } + + vdslLineStatsEntry OBJECT-TYPE + SYNTAX VdslLineStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of vdslLineStatsTable." + INDEX { ifIndex } + ::= { vdslLineStatsTable 1 } + + VdslLineStatsEntry ::= + SEQUENCE { + vdslLineStatsVtucBits1 OCTET STRING, + vdslLineStatsVtucBits2 OCTET STRING, + vdslLineStatsVtucBits3 OCTET STRING, + vdslLineStatsVtucBits4 OCTET STRING, + vdslLineStatsVturBits1 OCTET STRING, + vdslLineStatsVturBits2 OCTET STRING, + vdslLineStatsVturBits3 OCTET STRING, + vdslLineStatsVturBits4 OCTET STRING, + vdslLineStatsVtucGain1 OCTET STRING, + vdslLineStatsVtucGain2 OCTET STRING, + vdslLineStatsVtucGain3 OCTET STRING, + vdslLineStatsVtucGain4 OCTET STRING, + vdslLineStatsVtucGain5 OCTET STRING, + vdslLineStatsVtucGain6 OCTET STRING, + vdslLineStatsVtucGain7 OCTET STRING, + vdslLineStatsVtucGain8 OCTET STRING, + vdslLineStatsVturGain1 OCTET STRING, + vdslLineStatsVturGain2 OCTET STRING, + vdslLineStatsVturGain3 OCTET STRING, + vdslLineStatsVturGain4 OCTET STRING, + vdslLineStatsVturGain5 OCTET STRING, + vdslLineStatsVturGain6 OCTET STRING, + vdslLineStatsVturGain7 OCTET STRING, + vdslLineStatsVturGain8 OCTET STRING, + vdslLineStatsVtucHlog OCTET STRING, + vdslLineStatsVturHlog OCTET STRING, + vdslLineStatsVtucQln OCTET STRING, + vdslLineStatsVturQln OCTET STRING, + vdslLineStatsVtucSnr OCTET STRING, + vdslLineStatsVturSnr OCTET STRING, + vdslLineStatsVtucTssi OCTET STRING, + vdslLineStatsVturTssi OCTET STRING, + vdslLineStatsProtocol INTEGER + } + + vdslLineStatsVtucBits1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Bits for the VTU-C 1024 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 15." + ::= { vdslLineStatsEntry 1 } + + vdslLineStatsVtucBits2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Bits for the VTU-C 1024 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 15." + ::= { vdslLineStatsEntry 2 } + + vdslLineStatsVtucBits3 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Bits for the VTU-C 1024 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 15." + ::= { vdslLineStatsEntry 3 } + + vdslLineStatsVtucBits4 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Bits for the VTU-C 1024 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 15." + ::= { vdslLineStatsEntry 4 } + + vdslLineStatsVturBits1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Bits for the VTU-R 1024 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 15." + ::= { vdslLineStatsEntry 5 } + + vdslLineStatsVturBits2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Bits for the VTU-R 1024 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 15." + ::= { vdslLineStatsEntry 6 } + + vdslLineStatsVturBits3 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Bits for the VTU-R 1024 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 15." + ::= { vdslLineStatsEntry 7 } + + vdslLineStatsVturBits4 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Bits for the VTU-R 1024 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 15." + ::= { vdslLineStatsEntry 8 } + + vdslLineStatsVtucGain1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-C 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 9 } + + vdslLineStatsVtucGain2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-C 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 10 } + + vdslLineStatsVtucGain3 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-C 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 11 } + + vdslLineStatsVtucGain4 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-C 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 12 } + + vdslLineStatsVtucGain5 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-C 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 13 } + + vdslLineStatsVtucGain6 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-C 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 14 } + + vdslLineStatsVtucGain7 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-C 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 15 } + + vdslLineStatsVtucGain8 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-C 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 16 } + + vdslLineStatsVturGain1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-R 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 17 } + + vdslLineStatsVturGain2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-R 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 18 } + + vdslLineStatsVturGain3 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-R 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 19 } + + vdslLineStatsVturGain4 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-R 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 20 } + + vdslLineStatsVturGain5 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-R 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 21 } + + vdslLineStatsVturGain6 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-R 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 22 } + + vdslLineStatsVturGain7 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-R 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 23 } + + vdslLineStatsVturGain8 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-R 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 24 } + + vdslLineStatsVtucHlog OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Hlog for the VTU-C 512 subcarriers. + Each subcarrier takes two octets to store the value. + The real Hlog(f) value is represented as (6-m(i)/10), with m(i) in the range 0 to 1022. + A special value m=1023 indicates that no measurement could be done for the + sub-carrier group becauseit is out of the passband or that the attenuation + is out of range to be represented. Each value in this array is 16 bits wide." + ::= { vdslLineStatsEntry 25 } + + vdslLineStatsVturHlog OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Hlog for the VTU-R 512 subcarriers. + Each subcarrier takes two octets to store the value. + The real Hlog(f) value is represented as (6-m(i)/10), with m(i) in the range 0 to 1022. + A special value m=1023 indicates that no measurement could be done for the + sub-carrier group because it is out of the passband or that the attenuation + is out ofrange to be represented. Each value in this array is 16 bits wide." + ::= { vdslLineStatsEntry 26 } + + vdslLineStatsVtucQln OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Qln for the VTU-C 512 subcarriers. + Each subcarrier takes two octets to store the value. + The QLN(f) is represented as ( -23-n(i)/2), with n(i) in the range 0 to 254. + A special value n(i)=255 indicates that no measurement could be done for the + sub-carrier group. Each value in this array is 8 bits wide." + ::= { vdslLineStatsEntry 27 } + + vdslLineStatsVturQln OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Qln for the VTU-R 512 subcarriers. + Each subcarrier takes two octets to store the value. + The QLN(f) is represented as ( -23-n(i)/2), with n(i) in the range 0 to 254. + A special value n(i)=255 indicates that no measurement could be done for the + sub-carrier group. Each value in this array is 8 bits wide." + ::= { vdslLineStatsEntry 28 } + + vdslLineStatsVtucSnr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Snr for the VTU-C 512 subcarriers. + Each subcarrier takes two octets to store the value. + Octet i is set to a value in the range 0 to 254 (-32 + vdslLineStatsVtucSnr (i)/2) in dB + (i.e., -32 to 95dB). Each value in this array is 8 bits wide." + ::= { vdslLineStatsEntry 29 } + + vdslLineStatsVturSnr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Snr for the VTU-R 512 subcarriers. + Each subcarrier takes two octets to store the value. + Octet i is set to a value in the range 0 to 254 (-32 + vdslLineStatsVturSnr (i)/2) in dB + (i.e., -32 to 95dB). Each value in this array is 8 bits wide." + ::= { vdslLineStatsEntry 30 } + + vdslLineStatsVtucTssi OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Tssi for the VTU-C 512 subcarriers. + Each subcarrier takes two octets to store the value. + Each value in this array is 16 bits wide. + The tssi value is represented as a multiple of 1/32768 on linear scale." + ::= { vdslLineStatsEntry 31 } + + vdslLineStatsVturTssi OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Tssi for the VTU-R 512 subcarriers. + Each subcarrier takes two octets to store the value. + Each value in this array is 16 bits wide. + The tssi value is represented as a multiple of 1/32768 on linear scale." + ::= { vdslLineStatsEntry 32 } + + vdslLineStatsProtocol OBJECT-TYPE + SYNTAX INTEGER { + none(1), + vdsl8a(2), + vdsl8b(3), + vdsl8c(4), + vdsl8d(5), + vdsl12a(6), + vdsl12b(7), + vdsl17a(8), + gdmt(9), + glite(10), + adsl2(11), + adsl2plus(12), + t1413(13) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The actual line protocol." + ::= { vdslLineStatsEntry 33 } + +-------------------- +-- DHCP +-------------------- + +-- dhcpSnoopIpTable + + dhcpSnoopIpTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpSnoopIpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table shows the IP addresses and netmasks offered by the DHCP server." + ::= { dhcpStats 1 } + + dhcpSnoopIpEntry OBJECT-TYPE + SYNTAX DhcpSnoopIpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dhcpSnoopIpTable." + INDEX { ifIndex, dhcpSnoopIp } + ::= { dhcpSnoopIpTable 1 } + + DhcpSnoopIpEntry ::= + SEQUENCE { + dhcpSnoopIp IpAddress, + dhcpSnoopMac PhysAddress, + dhcpSnoopVid VlanIndex, + dhcpSnoopMask INTEGER, + dhcpSnoopGateway IpAddress, + dhcpSnoopRouteMap OCTET STRING + } + + dhcpSnoopIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The snooped IP address." + ::= { dhcpSnoopIpEntry 1 } + + dhcpSnoopMac OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The snooped MAC address." + ::= { dhcpSnoopIpEntry 2 } + + dhcpSnoopVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The snooped VLAN ID." + ::= { dhcpSnoopIpEntry 3 } + + dhcpSnoopMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The snooped IP mask" + ::= { dhcpSnoopIpEntry 4 } + + dhcpSnoopGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The snooped Gateway." + ::= { dhcpSnoopIpEntry 5 } + + dhcpSnoopRouteMap OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The refrence bit map of the dhcp route" + ::= { dhcpSnoopIpEntry 6 } + +-- dhcpSnoopCounterTable + + dhcpSnoopCounterTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpSnoopCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table shows the DHCP statistics." + ::= { dhcpStats 2 } + + dhcpSnoopCounterEntry OBJECT-TYPE + SYNTAX DhcpSnoopCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dhcpSnoopCounterTable." + INDEX { ifIndex } + ::= { dhcpSnoopCounterTable 1 } + + DhcpSnoopCounterEntry ::= + SEQUENCE { + dhcpDiscovery Counter64, + dhcpOffer Counter64, + dhcpRequest Counter64, + dhcpAck Counter64, + dhcpAckBySnoopFull Counter64 + } + + dhcpDiscovery OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received DHCP server discovery packets." + ::= { dhcpSnoopCounterEntry 1 } + + dhcpOffer OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received DHCP server offer packets." + ::= { dhcpSnoopCounterEntry 2 } + + dhcpRequest OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received DHCP IP request packets." + ::= { dhcpSnoopCounterEntry 3 } + + dhcpAck OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received DHCP IP acknowledge packets." + ::= { dhcpSnoopCounterEntry 4 } + + dhcpAckBySnoopFull OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received DHCP IP acknowledge packets that replace the oldest snooping + entry in snooping table due to table full." + ::= { dhcpSnoopCounterEntry 5 } + + dhcpRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains dhcp route information." + ::= { dhcpStats 3 } + + dhcpRouteEntry OBJECT-TYPE + SYNTAX DhcpRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dhcpRouteTable." + INDEX { dhcpRouteIndex } + ::= { dhcpRouteTable 1 } + + DhcpRouteEntry ::= + SEQUENCE { + dhcpRouteIndex INTEGER, + dhcpRouteVid VlanIndex, + dhcpRouteIP IpAddress, + dhcpRouteMask INTEGER, + dhcpRouteGwIP IpAddress + } + + dhcpRouteIndex OBJECT-TYPE + SYNTAX INTEGER (1..24) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { dhcpRouteEntry 1 } + + dhcpRouteVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The VLAN-ID refering to this dhcp route." + ::= { dhcpRouteEntry 2 } + + + dhcpRouteIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP of this dhcp route" + ::= { dhcpRouteEntry 3 } + + dhcpRouteMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The subnet mask of source IP mask." + ::= { dhcpRouteEntry 4 } + + dhcpRouteGwIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The gateway IP address." + ::= { dhcpRouteEntry 5 } + +-------------------- +-- PAE PVC +-------------------- + +-- paepvcSessionTable + + paepvcSessionTable OBJECT-TYPE + SYNTAX SEQUENCE OF PaepvcSessionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table shows the paepvc session statistics." + ::= { paepvcStats 1 } + + paepvcSessionEntry OBJECT-TYPE + SYNTAX PaepvcSessionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of paepvcSessionTable." + INDEX { ifIndex , paepvcSessionVpi, paepvcSessionVci } + ::= { paepvcSessionTable 1 } + + PaepvcSessionEntry ::= + SEQUENCE { + paepvcSessionVpi INTEGER, + paepvcSessionVci INTEGER, + paepvcSessionState INTEGER, + paepvcSessionId INTEGER, + paepvcSessionUptime Unsigned32, + paepvcSessionacname DisplayString, + paepvcSessionsrvcname DisplayString + } + + paepvcSessionVpi OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC VPI." + ::= { paepvcSessionEntry 1 } + + paepvcSessionVci OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC VCI." + ::= { paepvcSessionEntry 2 } + + paepvcSessionState OBJECT-TYPE + SYNTAX INTEGER { + down(1), + pppoe(2), + ppp(3), + up(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC status." + ::= { paepvcSessionEntry 3 } + + paepvcSessionId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC session ID." + ::= { paepvcSessionEntry 4 } + + paepvcSessionUptime OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "second" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC session uptime." + ::= { paepvcSessionEntry 5 } + + paepvcSessionacname OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Access concentrator name." + ::= { paepvcSessionEntry 6 } + + paepvcSessionsrvcname OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Service name." + ::= { paepvcSessionEntry 7 } + +-- paepvcCountTable + + paepvcCountTable OBJECT-TYPE + SYNTAX SEQUENCE OF PaepvcCountEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table shows the paepvc counters." + ::= { paepvcStats 2 } + + paepvcCountEntry OBJECT-TYPE + SYNTAX PaepvcCountEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of paepvcCountTable." + INDEX { ifIndex , paepvcCountVpi, paepvcCountVci } + ::= { paepvcCountTable 1 } + + PaepvcCountEntry ::= + SEQUENCE { + paepvcCountVpi INTEGER, + paepvcCountVci INTEGER, + paepvcCountPppLcpCfgReqRx Unsigned32, + paepvcCountPppLcpEchoReqRx Unsigned32, + paepvcCountPppLcpEchoReplyRx Unsigned32, + paepvcCountPadiTx Unsigned32, + paepvcCountPadoRx Unsigned32, + paepvcCountPadrTx Unsigned32, + paepvcCountPadsRx Unsigned32, + paepvcCountPadtTx Unsigned32, + paepvcCountPadtRx Unsigned32, + paepvcCountSrvcnameErrRx Unsigned32, + paepvcCountAcSystemErrRx Unsigned32, + paepvcCountGenericErrTx Unsigned32, + paepvcCountGenericErrRx Unsigned32 + } + + + paepvcCountVpi OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC VPI." + ::= { paepvcCountEntry 1 } + + paepvcCountVci OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC VCI." + ::= { paepvcCountEntry 2 } + + paepvcCountPppLcpCfgReqRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ppp lcp config-request received." + ::= { paepvcCountEntry 3 } + + paepvcCountPppLcpEchoReqRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ppp lcp echo-request received." + ::= { paepvcCountEntry 4 } + + paepvcCountPppLcpEchoReplyRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ppp lcp echo-reply received." + ::= { paepvcCountEntry 5 } + + paepvcCountPadiTx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe padi transfered" + ::= { paepvcCountEntry 6 } + + paepvcCountPadoRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe pado received" + ::= { paepvcCountEntry 7 } + + paepvcCountPadrTx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe padr transfered" + ::= { paepvcCountEntry 8 } + + paepvcCountPadsRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe pads received" + ::= { paepvcCountEntry 9 } + + paepvcCountPadtTx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe padt transfered" + ::= { paepvcCountEntry 10 } + + paepvcCountPadtRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe padt received" + ::= { paepvcCountEntry 11 } + + paepvcCountSrvcnameErrRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe service name error received" + ::= { paepvcCountEntry 12 } + + paepvcCountAcSystemErrRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe access concentrator name error received" + ::= { paepvcCountEntry 13 } + + paepvcCountGenericErrTx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe generic error transfered" + ::= { paepvcCountEntry 14 } + + paepvcCountGenericErrRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe generic error received" + ::= { paepvcCountEntry 15 } + +-------------------- +-- MAC +-------------------- + + macDisplayTarget OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This managed object is a filter used for identify the target from which + the MAC addresses are learned in macTable. The target could be: + 99: all ports in the system + 98: all subscriber ports + 97: all Ethernet ports + + IfIndex is used for identifying subscriber ports and Ethernet Ports(e.g. 1 ~ 50)." + ::= { macStats 1 } + +-- macTable + + macTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacEntry + MAX-ACCESS not-accessible + STATUS current + 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." + ::= { macStats 2 } + + macEntry OBJECT-TYPE + SYNTAX MacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macTable." + INDEX { dot1qVlanIndex, macAddress } + ::= { macTable 1 } + + MacEntry ::= + SEQUENCE { + macAddress MacAddress, + macPort INTEGER, + macStatus INTEGER, + macVid VlanIndex + } + + macAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unicast MAC address for which the bridge has + forwarding and/or filtering information." + ::= { macEntry 1 } + + macPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port from which the mac address has been learned." + ::= { macEntry 2 } + + macStatus 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." + ::= { macEntry 3 } + + macVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vlan id of this entry." + ::= { macEntry 4 } +-------------------- +-- ipbpvc +-------------------- + +-- arpproxyTable + +-- arpproxyTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF ArpproxyEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "Display ARP table. This table is supported by R3.00 and later versions." +-- ::= { ipbpvcStats 1 } +-- +-- arpproxyEntry OBJECT-TYPE +-- SYNTAX ArpproxyEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry of arpproxyTable." +-- INDEX { ipbpvcDomainName, arpproxyIp } +-- ::= { arpproxyTable 1 } +-- +-- ArpproxyEntry ::= +-- SEQUENCE { +-- arpproxyIp IpAddress, +-- arpproxyMac MacAddress, +-- arpproxyIfIndex INTEGER, +-- arpproxyVpi INTEGER, +-- arpproxyVci INTEGER, +-- arpproxyInterfaceIp IpAddress, +-- arpproxyInterfaceMask INTEGER, +-- arpproxyInterfaceVid VlanIndex, +-- arpproxyDhcpIp INTEGER, +-- arpproxyType INTEGER +-- } +-- +-- arpproxyIp OBJECT-TYPE +-- SYNTAX IpAddress +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { arpproxyEntry 1 } +-- +-- arpproxyMac OBJECT-TYPE +-- SYNTAX MacAddress +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { arpproxyEntry 2 } +-- +-- arpproxyIfIndex OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { arpproxyEntry 3 } +-- +-- arpproxyVpi OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { arpproxyEntry 4 } +-- +-- arpproxyVci OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { arpproxyEntry 5 } +-- +-- arpproxyInterfaceIp OBJECT-TYPE +-- SYNTAX IpAddress +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { arpproxyEntry 6 } +-- +-- arpproxyInterfaceMask OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { arpproxyEntry 7 } +-- +-- arpproxyInterfaceVid OBJECT-TYPE +-- SYNTAX VlanIndex +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { arpproxyEntry 8 } +-- +-- arpproxyDhcpIp OBJECT-TYPE +-- SYNTAX INTEGER { +-- true(1), +-- false(2) +-- } +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { arpproxyEntry 9 } +-- +-- arpproxyType OBJECT-TYPE +-- SYNTAX INTEGER { +-- upstream(1), +-- downstream(2) +-- } +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { arpproxyEntry 10 } +-- +-- ipbpvcIfDynamicTable +-- +-- ipbpvcIfDynamicTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF IpbpvcIfDynamicEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "Display runtime interfaces. This table is supported by R3.00 and later versions." +-- ::= { ipbpvcStats 2 } +-- +-- ipbpvcIfDynamicEntry OBJECT-TYPE +-- SYNTAX IpbpvcIfDynamicEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry of ipbpvcIfDynamicTable." +-- INDEX { ipbpvcDomainName, ipbpvcIfDynamicIp, ipbpvcIfDynamicMask, ipbpvcDomainVlanId } +-- ::= { ipbpvcIfDynamicTable 1 } +-- +-- IpbpvcIfDynamicEntry ::= +-- SEQUENCE { +-- ipbpvcIfDynamicIp IpAddress, +-- ipbpvcIfDynamicMask INTEGER, +-- ipbpvcIfDynamicIfIndex INTEGER, +-- ipbpvcIfDynamicVpi INTEGER, +-- ipbpvcIfDynamicVci INTEGER +-- } +-- +-- ipbpvcIfDynamicIp OBJECT-TYPE +-- SYNTAX IpAddress +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { ipbpvcIfDynamicEntry 1 } +-- +-- ipbpvcIfDynamicMask OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { ipbpvcIfDynamicEntry 2 } +-- +-- ipbpvcIfDynamicIfIndex OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { ipbpvcIfDynamicEntry 3 } +-- +-- ipbpvcIfDynamicVpi OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { ipbpvcIfDynamicEntry 4 } +-- +-- ipbpvcIfDynamicVci OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { ipbpvcIfDynamicEntry 5 } +-- +-- ipbpvcRouteDynamicTable +-- +-- ipbpvcRouteDynamicTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF IpbpvcRouteDynamicEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "Display runtime routing table. This table is supported by R3.00 and later versions." +-- ::= { ipbpvcStats 3 } +-- +-- ipbpvcRouteDynamicEntry OBJECT-TYPE +-- SYNTAX IpbpvcRouteDynamicEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry of ipbpvcRouteDynamicTable." +-- INDEX { ipbpvcDomainName, ipbpvcRouteDynamicType, ipbpvcRouteDynamicIp, ipbpvcRouteDynamicMask } +-- ::= { ipbpvcRouteDynamicTable 1 } +-- +-- IpbpvcRouteDynamicEntry ::= +-- SEQUENCE { +-- ipbpvcRouteDynamicType INTEGER, +-- ipbpvcRouteDynamicIp IpAddress, +-- ipbpvcRouteDynamicMask INTEGER, +-- ipbpvcRouteDynamicNextHop IpAddress, +-- ipbpvcRouteDynamicMetric INTEGER, +-- ipbpvcRouteDynamicPriority INTEGER +-- } +-- +-- ipbpvcRouteDynamicType OBJECT-TYPE +-- SYNTAX INTEGER { +-- upstream(1), +-- downstream(2) +-- } +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { ipbpvcRouteDynamicEntry 1 } +-- +-- ipbpvcRouteDynamicIp OBJECT-TYPE +-- SYNTAX IpAddress +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { ipbpvcRouteDynamicEntry 2 } +-- +-- ipbpvcRouteDynamicMask OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { ipbpvcRouteDynamicEntry 3 } +-- +-- ipbpvcRouteDynamicNextHop OBJECT-TYPE +-- SYNTAX IpAddress +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { ipbpvcRouteDynamicEntry 4 } +-- +-- ipbpvcRouteDynamicMetric OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { ipbpvcRouteDynamicEntry 5 } +-- +-- ipbpvcRouteDynamicPriority OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { ipbpvcRouteDynamicEntry 6 } + + +------------------------------ +-- n1macStats +------------------------------ + + n1macTable OBJECT-TYPE + SYNTAX SEQUENCE OF N1macEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about N to 1 + MAC translation, including connection type, + session id/IP and MAC address." + ::= { n1macStats 1 } + + n1macEntry OBJECT-TYPE + SYNTAX N1macEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of n1macTable." + INDEX { ifIndex, n1macProtoVal} + ::= { n1macTable 1 } + + N1macEntry ::= + SEQUENCE { + n1macProtoVal Unsigned32, + n1macProtoType INTEGER, + n1macMacAddr MacAddress + } + + n1macProtoVal OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The protocol value of specified connection. If the connection + is pppoe/pppoaoe, the value stands for session id; if the + connection is ipoe/ipoaoe, the value means IP address." + ::= { n1macEntry 1 } + + n1macProtoType OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + ipoe(2), + ipoaoe(3), + pppoe(4), + pppoaoe(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Protocol type of the connection which the MAC is translated." + ::= { n1macEntry 2 } + + n1macMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The translated MAC address." + ::= { n1macEntry 3 } + +------------------------------ +-- enetStats +------------------------------ + enetPrimaryPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " IfIndex is used for identifying the Primary Ethernet Port when dot3ad is disabled." + ::= { enetStats 1 } + + enetSfpInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnetSfpInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes sfp info of enet port." + ::= { enetStats 2 } + + enetSfpInfoEntry OBJECT-TYPE + SYNTAX EnetSfpInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in enetSfpInfoTable." + INDEX {ifIndex} + ::= { enetSfpInfoTable 1 } + + EnetSfpInfoEntry ::= + SEQUENCE { + enetSfpInfoTxpower INTEGER, + enetSfpInfoRxpower INTEGER, + enetSfpInfoTemperature INTEGER, + enetSfpInfoTxBias INTEGER, + enetSfpInfoVoltage INTEGER + } + + enetSfpInfoTxpower OBJECT-TYPE + SYNTAX INTEGER (1..65535) + UNITS "10^-4 mW" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured Tx Output Power." + ::= { enetSfpInfoEntry 1 } + + enetSfpInfoRxpower OBJECT-TYPE + SYNTAX INTEGER (1..65535) + UNITS "10^-4 C" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured Rx Output Power." + ::= { enetSfpInfoEntry 2 } + + enetSfpInfoTemperature OBJECT-TYPE + SYNTAX INTEGER (-1280000..1280000) + UNITS "10^-4 C" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured temperature." + ::= { enetSfpInfoEntry 3 } + + enetSfpInfoTxBias OBJECT-TYPE + SYNTAX INTEGER (0..131000) + UNITS "10^-3 mA" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured tx bias." + ::= { enetSfpInfoEntry 4 } + + enetSfpInfoVoltage OBJECT-TYPE + SYNTAX INTEGER (0..65000) + UNITS "0.1mV" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured voltage." + ::= { enetSfpInfoEntry 5 } + +---------------------------------------- +-- macFfStats +---------------------------------------- + macFfStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains MAC Force Forwarding static configuration and dynamic information." + ::= { macffStats 1 } + + macFfStatsEntry OBJECT-TYPE + SYNTAX MacFfStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfStatsTable." + INDEX { macFfStatsIndex } + ::= { macFfStatsTable 1 } + + MacFfStatsEntry ::= + SEQUENCE { + macFfStatsIndex INTEGER, + macFfStatsVid VlanIndex, + macFfStatsArIP IpAddress, + macFfStatsSrcIP IpAddress, + macFfStatsSrcMask INTEGER + } + + macFfStatsIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of the MACFF." + ::= { macFfStatsEntry 1 } + + macFfStatsVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The VLAN-ID refering to this AR/AS." + ::= { macFfStatsEntry 2 } + + + macFfStatsArIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP of this AR/AS" + ::= { macFfStatsEntry 3 } + + macFfStatsSrcIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The source IP address of the MACFF." + ::= { macFfStatsEntry 4 } + + macFfStatsSrcMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The subnet mask of source IP mask." + ::= { macFfStatsEntry 5 } + + macFfArpTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfArpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains MAC Force Forwarding ARP information." + ::= { macffStats 2 } + + macFfArpEntry OBJECT-TYPE + SYNTAX MacFfArpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfArpTable." + INDEX { macFfArpVid, macFfArpIP} + ::= { macFfArpTable 1 } + + MacFfArpEntry ::= + SEQUENCE { + macFfArpVid VlanIndex, + macFfArpIP IpAddress, + macFfArpPort INTEGER, + macFfArpMac PhysAddress + } + + macFfArpVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The VLAN-ID refering to this AR/AS." + ::= { macFfArpEntry 1 } + + macFfArpIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP of this AR/AS." + ::= { macFfArpEntry 2 } + + + macFfArpPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Port of this AR/AS." + ::= { macFfArpEntry 3 } + + macFfArpMac OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MAC address of the AR or AS." + ::= { macFfArpEntry 4 } + + macFfArpCounterTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfArpCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains MAC Force Forwarding ARP counter information." + ::= { macffStats 3 } + + macFfArpCounterEntry OBJECT-TYPE + SYNTAX MacFfArpCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfArpCounterTable." + INDEX { ifIndex } + ::= { macFfArpCounterTable 1 } + + MacFfArpCounterEntry ::= + SEQUENCE { + macFfArpCounterRequestTX Counter32, + macFfArpCounterRequestRX Counter32, + macFfArpCounterRequestRXDrop Counter32, + macFfArpCounterReplyTX Counter32, + macFfArpCounterReplyRX Counter32, + macFfArpCounterReplyRXDrop Counter32 + } + + macFfArpCounterRequestTX OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ARP Request TX counter." + ::= { macFfArpCounterEntry 1 } + + macFfArpCounterRequestRX OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ARP Request RX counter." + ::= { macFfArpCounterEntry 2 } + + macFfArpCounterRequestRXDrop OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ARP Request RX drop counter." + ::= { macFfArpCounterEntry 3 } + + macFfArpCounterReplyTX OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ARP Reply TX counter." + ::= { macFfArpCounterEntry 4 } + + macFfArpCounterReplyRX OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ARP Reply RX counter." + ::= { macFfArpCounterEntry 5 } + + macFfArpCounterReplyRXDrop OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ARP Reply RX drop counter." + ::= { macFfArpCounterEntry 6 } + +------------------------------ +-- adslStats +------------------------------ + + adslPortUtilTable OBJECT-TYPE + SYNTAX SEQUENCE OF AdslPortUtilEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes adsl port utilization." + ::= { adslStats 1 } + + adslPortUtilEntry OBJECT-TYPE + SYNTAX AdslPortUtilEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in adslPortUtilEntry." + INDEX {ifIndex} + ::= { adslPortUtilTable 1 } + + AdslPortUtilEntry ::= + SEQUENCE { + adslPortUtilTx INTEGER, + adslPortUtilRx INTEGER, + adslStatsXturInp DisplayString, + adslStatsXtucInp DisplayString + } + + adslPortUtilTx OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measure adsl port's tx utilization." + ::= { adslPortUtilEntry 1 } + + adslPortUtilRx OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measure adsl port's rx utilization." + ::= { adslPortUtilEntry 2 } + + adslStatsXturInp OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "XTUR minimum INP value." + ::= { adslPortUtilEntry 3 } + + adslStatsXtucInp OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "XTUC minimum INP valu." + ::= { adslPortUtilEntry 4 } + + +---------------------------------------- +-- clear +---------------------------------------- + + counterClearTarget OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This managed object is used for identify the target on which + the counter would be cleared. The target is encoded as: + Byte 1: reserved + Byte 2~3: reserved + Byte 4: reserved + Byte 5~11:each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc." + ::= { clear 1 } + + counterClearOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The corresponding bit is set to 1 to start the operation. + The various bit positions are: + BIT 1: clear interface counters + BIT 2: clear pvc packet counters + BIT 3: not support + BIT 4: not support + BIT 5: clear DHCP counters + BIT 6: clear IGMP counters + BIT 7: clear IGMP port counters" + ::= { clear 2 } + + counterClearVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VPI of the pvc whose counters would be cleared." + ::= { clear 3 } + + counterClearVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VCI of the pvc whose counters would be cleared." + ::= { clear 4 } + +END diff --git a/mibs/calix/E5-120-TRAPS-MIB b/mibs/calix/E5-120-TRAPS-MIB new file mode 100644 index 0000000000..e5df76056c --- /dev/null +++ b/mibs/calix/E5-120-TRAPS-MIB @@ -0,0 +1,515 @@ +-- $Log: E5-120-TRAPS-MIB.mib $ +-- Revision 1.8 2010/11/12 02:58:58 cylien +-- Revision 1.7 2010/10/14 08:58:33 cylien +-- Revision 1.6 2010/09/23 07:59:17 cylien +-- Revision 1.5 2010/07/19 05:35:31 John +-- Revision 1.4 2010/06/30 08:42:50 John +-- Revision 1.4 2010/06/28 17:05:04 John +-- Revision 1.3 2010/06/08 03:52:34 cylien +-- Revision 1.2 2010/04/23 10:46:31 maverick +-- Revision 1.1 2009/06/25 02:47:17 niceguy +-- Initial revision + + +E5-120-TRAPS-MIB DEFINITIONS ::= BEGIN + + IMPORTS + + OBJECT-TYPE + FROM SNMPv2-SMI + DisplayString, ifIndex + FROM RFC1213-MIB + iesChassisId,iesSlotId + FROM E5-120-IESCOMMON-MIB + e5x120 + FROM E5-120-MIB + dot1agCfmMdMdLevel, dot1agCfmVlanPrimaryVid, dot1agCfmMepIdentifier + FROM IEEE8021-CFMD8-MIB; + + trap OBJECT IDENTIFIER ::= { e5x120 12 } + +---------------------------------------- +-- trap +---------------------------------------- + + object OBJECT IDENTIFIER ::= { trap 1 } + equipment OBJECT IDENTIFIER ::= { trap 3 } + systrap OBJECT IDENTIFIER ::= { trap 4 } + interface OBJECT IDENTIFIER ::= { trap 8 } + e5Alarm OBJECT IDENTIFIER ::= { trap 9 } + +-------------------- +-- object +-------------------- + + eqptAlarmInputIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of alarm input." + ::= { object 2 } + + eqptAlarmInputName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Name of alarm input." + ::= { object 8 } + + sysMacAntiSpoofOrig OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Original port of Mac-AntiSpoofing." + ::= { object 9 } + + sysMacAntiSpoofNew OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The New port of Mac-AntiSpoofing." + ::= { object 10 } + + sysMacAntiSpoofMAC OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MAC of Mac-AntiSpoofing." + ::= { object 11 } + + sysAlarmOrigSeverity OBJECT-TYPE + SYNTAX INTEGER { + critical(1), + major(2), + minor(3), + info(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The original severity of alarm." + ::= { object 12 } + + sysAlarmNewSeverity OBJECT-TYPE + SYNTAX INTEGER { + critical(1), + major(2), + minor(3), + info(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The new severity of alarm." + ::= { object 13 } + + sysAlarmConfId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The changed severity of alarm condition ID. + 5000:vdslLine_up + 5001:vdslLine_down + 5002:vdsl_tca_lol + 5003:vdsl_tca_lof + 5004:vdsl_tca_los + 5005:vdsl_tca_lop + 5006:vdsl_tca_es + 5007:vdsl_tca_ses + 5008:vdsl_tca_uas + 5009:xd_xtuc_loftrap + 5010:xd_xtuc_lostrap + 5011:xd_xtur_loftrap + 5012:xd_xtur_lostrap + 5013:xd_xtur_lprtrap + 5014:ad_dhcp_rt_full + 5015:ad_dhcp_dm_conflict + 5016:ad_dhcp_entry_full + 5017:ad_dhcp_ip_dup + 5018:ad_dhcp_mac_dup + 10000:eqptVol_err + 10001:eqptEqpttemp_err + 10002:eqptFan_err + 10003:eqptHw_rtc_fail + 10004:eqptHw_mon_fail + 10005:eqptCold_start + 10006:eqptWarm_start + 10007:eqptAlm_input + 10008:eqptAlm_input2 + 10009:eqptAlm_input3 + 15000:sysReboot + 15001:sysAco + 15002:sysAlm_clear + 15003:sysLogin_fail + 15004:sysAnti_spoofing + 15005:sysAlm_svrty_change + 15006:sysHost_terminate + 20000:enetUp + 20001:enetDown + 30000:cfmError + " + ::= { object 14 } + + intfCfmCcmErrorCause OBJECT-TYPE + SYNTAX INTEGER { + noDefect(1), + rdiReceived(2), + macDownReceivedFromDownMEP(3), + lostConnectionToRemoteMEP(4), + configurationError(5), + maintenanceDomainCrossConnect(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { object 55 } + +-------------------- +-- equipment +-------------------- + + eqptHWMonitorFailure NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Hardware monitor diagnosis is failed." + ::= { equipment 1 } + +-------------------- +-- systrap +-------------------- + + sysMacAntiSpoofing NOTIFICATION-TYPE + OBJECTS { + sysMacAntiSpoofOrig, + sysMacAntiSpoofNew, + sysMacAntiSpoofMAC + } + STATUS current + DESCRIPTION + "MAC Anti-spoofing." + ::= { systrap 1 } + + sysAlarmCutoffEnable NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Alarm cutoff is activated." + ::= { systrap 2 } + + sysAlarmClearEnable NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Alarm clear is activated." + ::= { systrap 3 } + + sysLoginFailure NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "User login is failed." + ::= { systrap 4 } + + sysAlarmSvrtyChange NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Alarm severity is changed." + ::= { systrap 5 } + +-------------------- +-- interface +-------------------- + + cfmCcmError NOTIFICATION-TYPE + OBJECTS { + dot1agCfmMdMdLevel, + dot1agCfmVlanPrimaryVid, + dot1agCfmMepIdentifier, + intfCfmCcmErrorCause + } + STATUS current + DESCRIPTION + "" + ::= { interface 1 } + + +-------------------- +-- e5Alarm +-------------------- + +e5AlarmTable OBJECT-TYPE + SYNTAX SEQUENCE OF E5AlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table holds all the active alarms" + ::= { e5Alarm 1 } + + +e5AlarmNotify NOTIFICATION-TYPE + OBJECTS { + e5AlarmObjectClass, + e5AlarmObjectInstance1, + e5AlarmObjectInstance2, + e5AlarmObjectInstance3, + e5AlarmObjectInstance4, + e5AlarmType, + e5AlarmSeverity, + e5AlarmTimeStamp, + e5AlarmServiceAffecting, + e5AlarmText, + e5AlarmTime + } + STATUS current + DESCRIPTION + "E5 device alarm notification." + ::= { e5Alarm 2 } + + +e5AlarmEntry OBJECT-TYPE + SYNTAX E5AlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "List of attributes regarding alarm table" + INDEX { e5AlarmObjectClass, e5AlarmObjectInstance1, e5AlarmObjectInstance2, + e5AlarmObjectInstance3, e5AlarmObjectInstance4, + e5AlarmObjectInstance5, e5AlarmObjectInstance6, + e5AlarmObjectInstance7, e5AlarmObjectInstance8, e5AlarmType } + ::= { e5AlarmTable 1 } + +E5AlarmEntry ::= SEQUENCE { + e5AlarmObjectClass INTEGER, + e5AlarmObjectInstance1 INTEGER, + e5AlarmObjectInstance2 INTEGER, + e5AlarmObjectInstance3 INTEGER, + e5AlarmObjectInstance4 INTEGER, + e5AlarmObjectInstance5 INTEGER, + e5AlarmObjectInstance6 INTEGER, + e5AlarmObjectInstance7 INTEGER, + e5AlarmObjectInstance8 INTEGER, + e5AlarmType INTEGER, + e5AlarmSeverity INTEGER, + e5AlarmTimeStamp OCTET STRING, + e5AlarmServiceAffecting INTEGER, + e5AlarmLocationInfo INTEGER, + e5AlarmText OCTET STRING, + e5AlarmTime INTEGER, + e5AlarmCliObject OCTET STRING, + e5AlarmSecObjectClass INTEGER, + e5AlarmSecObjectInstance1 INTEGER, + e5AlarmSecObjectInstance2 INTEGER, + e5AlarmSecObjectInstance3 INTEGER, + e5AlarmSecObjectInstance4 INTEGER, + e5AlarmSecObjectInstance5 INTEGER, + e5AlarmSecObjectInstance6 INTEGER, + e5AlarmSecObjectInstance7 INTEGER, + e5AlarmSecObjectInstance8 INTEGER + } + +e5AlarmObjectClass OBJECT-TYPE + SYNTAX INTEGER { + dsl(1), + eqpt(2), + sys(3), + enet(4), + vop(5), + intf(6), + unknown(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object Class for an alarm" + ::= { e5AlarmEntry 1 } + +e5AlarmObjectInstance1 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 1" + ::= { e5AlarmEntry 2 } + +e5AlarmObjectInstance2 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 2" + ::= { e5AlarmEntry 3 } + +e5AlarmObjectInstance3 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 3" + ::= { e5AlarmEntry 4 } + +e5AlarmObjectInstance4 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 4" + ::= { e5AlarmEntry 5 } + +e5AlarmObjectInstance5 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 5" + ::= { e5AlarmEntry 6 } + +e5AlarmObjectInstance6 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 6" + ::= { e5AlarmEntry 7 } + +e5AlarmObjectInstance7 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 7" + ::= { e5AlarmEntry 8 } + +e5AlarmObjectInstance8 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 8" + ::= { e5AlarmEntry 9 } + +e5AlarmType OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Unique type for an alarm" + ::= { e5AlarmEntry 10 } + +e5AlarmSeverity OBJECT-TYPE + SYNTAX INTEGER { + clear(0), + critical(1), + major(2), + minor(3), + warning(4), + unknown(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Severity of the alarm" + ::= { e5AlarmEntry 11 } + +e5AlarmTimeStamp OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..50)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Timestamp indicating the set/clear time of the alarm" + ::= { e5AlarmEntry 12 } + +e5AlarmServiceAffecting OBJECT-TYPE + SYNTAX INTEGER { + yes(1), + no(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicated the nature of the alarm i.e. service + affecting or not" + ::= { e5AlarmEntry 13 } + +e5AlarmLocationInfo OBJECT-TYPE + SYNTAX INTEGER { + nearEnd(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "" + ::= { e5AlarmEntry 14 } + +e5AlarmText OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Alarm description" + ::= { e5AlarmEntry 15 } + +e5AlarmTime OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "UTC time" + ::= { e5AlarmEntry 16 } + +e5AlarmCliObject OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The short CLI name for the object class and instance" + ::= { e5AlarmEntry 17 } + +e5AlarmSecObjectClass OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary Object Class for an alarm" + ::= { e5AlarmEntry 18 } + +e5AlarmSecObjectInstance1 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 1" + ::= { e5AlarmEntry 19 } + +e5AlarmSecObjectInstance2 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 2" + ::= { e5AlarmEntry 20 } + +e5AlarmSecObjectInstance3 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 3" + ::= { e5AlarmEntry 21 } + +e5AlarmSecObjectInstance4 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 4" + ::= { e5AlarmEntry 22 } + +e5AlarmSecObjectInstance5 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 5" + ::= { e5AlarmEntry 23 } + +e5AlarmSecObjectInstance6 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 6" + ::= { e5AlarmEntry 24 } + +e5AlarmSecObjectInstance7 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 7" + ::= { e5AlarmEntry 25 } + +e5AlarmSecObjectInstance8 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 8" + ::= { e5AlarmEntry 26 } + +END \ No newline at end of file diff --git a/mibs/calix/E5-121-AS-ATM-MIB b/mibs/calix/E5-121-AS-ATM-MIB new file mode 100644 index 0000000000..c8ef75e479 --- /dev/null +++ b/mibs/calix/E5-121-AS-ATM-MIB @@ -0,0 +1,316 @@ +-- $Log: E5-121-AS-ATM-MIB.mib $ +-- Revision 1.2 2010/04/23 10:46:32 maverick +-- Revision 1.1 2008/09/18 01:50:29 niceguy +-- Initial revision +-- Revision 1.2 2008/08/04 12:47:33 maverick +-- Revision 1.1 2008/07/11 09:36:17 maverick +-- Initial revision +-- Revision 1.4 2008/06/30 07:41:03 maverick +-- Revision 1.3 2008/05/04 12:35:35 maverick +-- Revision 1.2 2008/05/04 05:55:25 kenny +-- Revision 1.1 2008/05/04 05:13:58 maverick +-- Initial revision +-- Revision 1.1 2007/12/03 01:45:27 niceguy +-- Initial revision +-- Initial revision + +E5-121-AS-ATM-MIB DEFINITIONS ::= BEGIN + + IMPORTS + + Counter FROM RFC1155-SMI + OBJECT-TYPE FROM RFC-1212 + ifIndex, DisplayString FROM RFC1213-MIB + RowStatus FROM SNMPv2-TC + VlanIndex, PortList FROM Q-BRIDGE-MIB + pvcVpi, pvcVci FROM E5-121-MIB + accessSwitchCommonATM FROM E5-121-MIB; + + + -- Channel Table + +-- asMaxNumOfChannels OBJECT-TYPE +-- SYNTAX INTEGER +-- ACCESS read-only +-- STATUS mandatory +-- DESCRIPTION +-- "The maximum number of virtual channels which can be created on a port." +-- ::= { accessSwitchCommonATM 1 } +-- +-- asChannelTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF AsChannelEntry +-- ACCESS not-accessible +-- STATUS mandatory +-- DESCRIPTION +-- "This table includes the configuration of the virtual channel." +-- ::= { accessSwitchCommonATM 2 } +-- +-- asChannelEntry OBJECT-TYPE +-- SYNTAX AsChannelEntry +-- ACCESS not-accessible +-- STATUS mandatory +-- DESCRIPTION +-- "An entry in asChannelTable." +-- INDEX { ifIndex, asChannelVpi, asChannelVci } +-- ::= { asChannelTable 1 } +-- +-- AsChannelEntry ::= +-- SEQUENCE { +-- asChannelVpi INTEGER, +-- asChannelVci INTEGER, +-- asChannelPvid VlanIndex, +-- asChannelEgressVid VlanIndex, +-- asChannelPriority INTEGER, +-- asChannelProfile DisplayString, +-- asChannelRowStatus RowStatus +-- } +-- +-- asChannelVpi OBJECT-TYPE +-- SYNTAX INTEGER (0..255) +-- ACCESS not-accessible +-- STATUS mandatory +-- DESCRIPTION +-- "VPI of the channel." +-- ::= { asChannelEntry 1 } +-- +-- asChannelVci OBJECT-TYPE +-- SYNTAX INTEGER (1..65535) +-- ACCESS not-accessible +-- STATUS mandatory +-- DESCRIPTION +-- "VCI of the channel." +-- ::= { asChannelEntry 2 } +-- +-- asChannelPvid OBJECT-TYPE +-- SYNTAX VlanIndex +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "The default VID of the channel." +-- ::= { asChannelEntry 3 } +-- +-- asChannelEgressVid OBJECT-TYPE +-- SYNTAX VlanIndex +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "The egress VID of the channel." +-- ::= { asChannelEntry 4 } +-- +-- asChannelPriority OBJECT-TYPE +-- SYNTAX INTEGER (0..7) +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "The 802.1p default priority of the channel." +-- ::= { asChannelEntry 5 } +-- +-- asChannelProfile OBJECT-TYPE +-- SYNTAX DisplayString (SIZE (1..31)) +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "The value of this object identifies the row in the +-- asChannelProfileTable, which applies for this channel." +-- ::= { asChannelEntry 6 } +-- +-- asChannelRowStatus OBJECT-TYPE +-- SYNTAX RowStatus +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "This object is used to create a new row or +-- delete an existing row in this table." +-- ::= { asChannelEntry 7 } +-- +-- +-- Channel Profile Table +-- +-- asMaxNumOfChannelProfiles OBJECT-TYPE +-- SYNTAX INTEGER +-- ACCESS read-only +-- STATUS mandatory +-- DESCRIPTION +-- "The maximum number of channel profiles which the system supports." +-- ::= { accessSwitchCommonATM 3 } +-- +-- asChannelProfileTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF AsChannelProfileEntry +-- ACCESS not-accessible +-- STATUS mandatory +-- DESCRIPTION +-- "This table contains information on the virtual channel +-- configuration. One entry in this table reflects a +-- profile which can be used to configure the virtual channel." +-- ::= { accessSwitchCommonATM 6 } +-- +-- asChannelProfileEntry OBJECT-TYPE +-- SYNTAX AsChannelProfileEntry +-- ACCESS not-accessible +-- STATUS mandatory +-- DESCRIPTION +-- "An entry in asChannelProfileTable." +-- INDEX { IMPLIED asChannelProfileName } +-- ::= { asChannelProfileTable 1 } +-- +-- AsChannelProfileEntry ::= +-- SEQUENCE { +-- asChannelProfileName DisplayString, +-- asChannelProfileEncap INTEGER, +-- asChannelProfileAAL INTEGER, +-- asChannelProfileClass INTEGER, +-- asChannelProfilePcr Unsigned32, +-- asChannelProfileCdvt INTEGER, +-- asChannelProfileScrMcr Unsigned32, +-- asChannelProfileBt INTEGER, +-- asChannelProfileRowStatus RowStatus +-- } +-- +-- asChannelProfileName OBJECT-TYPE +-- SYNTAX DisplayString (SIZE (1..31)) +-- ACCESS not-accessible +-- STATUS mandatory +-- DESCRIPTION +-- "This object is used by the channel profile table +-- in order to identify a row of this table." +-- ::= { asChannelProfileEntry 1 } +-- +-- asChannelProfileEncap OBJECT-TYPE +-- SYNTAX INTEGER { +-- llc(1), +-- vc(2) +-- } +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "RFC1483 encapsulation." +-- ::= { asChannelProfileEntry 2 } +-- +-- asChannelProfileAAL OBJECT-TYPE +-- SYNTAX INTEGER (0..5) +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "ATM Adaptation Layer policy." +-- ::= { asChannelProfileEntry 3 } +-- +-- asChannelProfileClass OBJECT-TYPE +-- SYNTAX INTEGER { +-- cbr(1), +-- rt-vbr(2), +-- nrt-vbr(3), +-- ubr(4), +-- abr(5) +-- } +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "ATM traffic class, including constant bit rate, +-- real-time variable bit rate, non real-time variable bit rate, +-- unspecified bit rate, and available bit rate." +-- ::= { asChannelProfileEntry 4 } +-- +-- asChannelProfilePcr OBJECT-TYPE +-- SYNTAX Unsigned32 +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "Peak cell rate (cells/sec)." +-- ::= { asChannelProfileEntry 5 } +-- +-- asChannelProfileCdvt OBJECT-TYPE +-- SYNTAX INTEGER (0..255) +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "Cell delay variation tolerance." +-- ::= { asChannelProfileEntry 6 } +-- +-- asChannelProfileScrMcr OBJECT-TYPE +-- SYNTAX Unsigned32 +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "Sustain cell rate for vbr traffic class, or +-- minimum cell rate for abr traffic class. +-- The unit is the number of cells per second." +-- ::= { asChannelProfileEntry 7 } +-- +-- asChannelProfileBt OBJECT-TYPE +-- SYNTAX INTEGER (0..255) +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "Burst tolerance for vbr traffic class." +-- ::= { asChannelProfileEntry 8 } +-- +-- asChannelProfileRowStatus OBJECT-TYPE +-- SYNTAX RowStatus +-- ACCESS read-create +-- STATUS mandatory +-- DESCRIPTION +-- "This object is used to create a new row or +-- delete an existing row in this table." +-- ::= { asChannelProfileEntry 9 } +-- + +-- Channel Status Table + + asChannelStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsChannelStatusEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table includes the status of the virtual channel." + ::= { accessSwitchCommonATM 7 } + + asChannelStatusEntry OBJECT-TYPE + SYNTAX AsChannelStatusEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in asChannelStatusTable." + INDEX { ifIndex, pvcVpi, pvcVci } + ::= { asChannelStatusTable 1 } + + AsChannelStatusEntry ::= + SEQUENCE { + asChannelTxPackets Counter, + asChannelRxPackets Counter, + asChannelTxCells Counter, + asChannelRxCells Counter + } + + asChannelTxPackets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of channel Tx packets." + ::= { asChannelStatusEntry 1 } + + asChannelRxPackets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of channel Rx packets." + ::= { asChannelStatusEntry 2 } + + asChannelTxCells OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of channel Tx cells." + ::= { asChannelStatusEntry 3 } + + asChannelRxCells OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of channel Rx cells." + ::= { asChannelStatusEntry 4 } + +END diff --git a/mibs/calix/E5-121-IESCOMMON-MIB b/mibs/calix/E5-121-IESCOMMON-MIB new file mode 100644 index 0000000000..135dc6cc6b --- /dev/null +++ b/mibs/calix/E5-121-IESCOMMON-MIB @@ -0,0 +1,2431 @@ +-- $Log: E5-121-IESCOMMON-MIB.mib $ +-- Revision 1.8 2011/01/07 07:35:20 cylien +-- modified by Swee +-- Revision 1.7 2010/06/15 14:23:57 maverick +-- Revision 1.6 2010/04/23 10:46:33 maverick +-- Revision 1.5 2009/11/26 13:06:57 maverick +-- add comment to obsoleted mib entries, mibble checked +-- Revision 1.4 2009/07/10 10:39:41 maverick +-- Revision 1.3 2009/05/21 02:26:23 John +-- Revision 1.2 2009/05/15 09:49:05 niceguy +-- Revision 1.1 2008/09/18 01:50:30 niceguy +-- Initial revision +-- Revision 1.1 2008/07/11 09:36:14 maverick +-- Initial revision +-- Revision 1.3 2008/05/20 02:55:58 maverick +-- Revision 1.2 2008/05/04 05:55:25 kenny +-- Revision 1.1 2008/05/04 05:13:59 maverick +-- Initial revision +-- Revision 1.3 2008/01/11 01:21:27 niceguy +-- Revision 1.2 2007/12/12 09:39:50 niceguy +-- Revision 1.1 2007/12/03 01:45:28 niceguy +-- Initial revision +-- Initial revision + +E5-121-IESCOMMON-MIB DEFINITIONS ::= BEGIN + + IMPORTS + + enterprises + FROM RFC1155-SMI + OBJECT-TYPE, IpAddress, NOTIFICATION-TYPE + FROM SNMPv2-SMI +-- FROM RFC-1212 + DisplayString, ifIndex, PhysAddress + FROM RFC1213-MIB + RowStatus + FROM SNMPv2-TC + PortList + FROM Q-BRIDGE-MIB + iesSeriesCommon,e5x121 + FROM E5-121-MIB; + + iesChassis OBJECT IDENTIFIER ::= { iesSeriesCommon 1 } + iesHWMonitor OBJECT IDENTIFIER ::= { iesSeriesCommon 2 } + iesSysMgnt OBJECT IDENTIFIER ::= { iesSeriesCommon 3 } + + iesSysState OBJECT IDENTIFIER ::= { iesSysMgnt 1 } + iesSysMaintenance OBJECT IDENTIFIER ::= { iesSysMgnt 2 } + iesSysTimeSetup OBJECT IDENTIFIER ::= { iesSysMgnt 3 } + iesSysAccessControl OBJECT IDENTIFIER ::= { iesSysMgnt 4 } + iesSysStaticRoute OBJECT IDENTIFIER ::= { iesSysMgnt 5 } + iesSyslogSetup OBJECT IDENTIFIER ::= { iesSysMgnt 6 } + iesSysDhcpSetup OBJECT IDENTIFIER ::= { iesSysMgnt 7 } + iesSysSNMPSetup OBJECT IDENTIFIER ::= { iesSysMgnt 8 } + iesSysDot1xSetup OBJECT IDENTIFIER ::= { iesSysMgnt 9 } + iesSysMacFilter OBJECT IDENTIFIER ::= { iesSysMgnt 10 } + iesSysPacketFilter OBJECT IDENTIFIER ::= { iesSysMgnt 11 } + iesSysMacCountFilter OBJECT IDENTIFIER ::= { iesSysMgnt 12 } + iesSysMulticastGroup OBJECT IDENTIFIER ::= { iesSysMgnt 13 } + iesSysIgmpFilter OBJECT IDENTIFIER ::= { iesSysMgnt 14 } -- Obsoleted since Revision 3.0.0 at 2009/11/26 by maverick + + iesL2SW OBJECT IDENTIFIER ::= { iesSeriesCommon 4 } + +-- Chassis, slot information + + iesNumOfChassis OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of chassis in the IES-2000/3000 system" + ::= { iesChassis 1 } + + iesChassisTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesChassisEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table which contains the chassis information in IES-2000/3000 + system" + ::= { iesChassis 2 } + + iesChassisEntry OBJECT-TYPE + SYNTAX IesChassisEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { iesChassisId } + ::= { iesChassisTable 1 } + + IesChassisEntry ::= + SEQUENCE { + iesChassisId INTEGER, + iesChassisFrameNumber INTEGER, + iesChassisSerialNumber DisplayString, + iesChassisNumber INTEGER, + iesChassisStatus INTEGER, + iesChassisProductPartNumber DisplayString, + iesChassisHwRevisionNumber DisplayString, + iesChassisCleiCode DisplayString, + iesChassisHwVersion DisplayString, + iesChassisMacAddress DisplayString, + iesChassisVoipDspVersion DisplayString, + iesChassisCodecVersion DisplayString + } + + iesChassisId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Chassis ID" + ::= { iesChassisEntry 1 } + + iesChassisFrameNumber OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Frame ID" + ::= { iesChassisEntry 2 } + + + iesChassisSerialNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Chassis Serial Number" + ::= { iesChassisEntry 3 } + + iesChassisNumber OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Chassis Number which is defined by the system administrator + for management purpose" + ::= { iesChassisEntry 4 } + + iesChassisStatus OBJECT-TYPE + SYNTAX INTEGER { + empty(1), + up(2), + down(3), + testing(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current status of the chassis." + ::= { iesChassisEntry 5 } + + iesChassisProductPartNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Product part number" + ::= { iesChassisEntry 6 } + + iesChassisHwRevisionNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "HW revision Number" + ::= { iesChassisEntry 7 } + + iesChassisCleiCode OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CLEI code" + ::= { iesChassisEntry 8 } + + iesChassisHwVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Hardware version" + ::= { iesChassisEntry 9 } + + iesChassisMacAddress OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MAC address" + ::= { iesChassisEntry 10 } + + iesChassisVoipDspVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Voip dsp version" + ::= { iesChassisEntry 11 } + + iesChassisCodecVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Codec F/W version" + ::= { iesChassisEntry 12 } + + iesSlotTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesSlotEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table which contains the slot information in a chassis of + IES-2000/3000 system" + ::= { iesChassis 3 } + + iesSlotEntry OBJECT-TYPE + SYNTAX IesSlotEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { iesChassisId, iesSlotId } + ::= { iesSlotTable 1 } + + IesSlotEntry ::= + SEQUENCE { + iesSlotId INTEGER, + iesSlotModuleType INTEGER, + iesSlotModuleDescr DisplayString, + iesSlotModuleFWVersion DisplayString, + iesSlotModuleDriverVersion DisplayString, + iesSlotModuleModemCodeVersion DisplayString, + iesSlotModuleStatus INTEGER, + iesSlotModuleAlarmStatus INTEGER + } + + iesSlotId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Identity of the slot" + ::= { iesSlotEntry 1 } + + iesSlotModuleType OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + msc1000-L2(2), + msc1000-ML(3), + alc1024-61(4), + vlc1012(5), + slc1024(6), + alc1024-63(7), + msc1000A(8), + vlc1124(9), + alc1224-71(10), + alc1224-73(11), + slc1224-22(12), + alc1224-51(13), + alc1224-53(14) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Card type of the plug-in card in IES-2000/3000." + ::= { iesSlotEntry 2 } + + iesSlotModuleDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The descriptions of the plug-in card in IES-2000/3000." + ::= { iesSlotEntry 3 } + + + iesSlotModuleFWVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The firmware version of the plug-in card in IES-2000/3000." + ::= { iesSlotEntry 4 } + + iesSlotModuleDriverVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The DSL driver of the plug-in card in IES-2000/3000." + ::= { iesSlotEntry 5 } + + iesSlotModuleModemCodeVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The DSL modem code version of the plug-in card in IES-2000/3000" + ::= { iesSlotEntry 6 } + + + iesSlotModuleStatus OBJECT-TYPE + SYNTAX INTEGER { + empty(1), + up(2), + down(3), + testing(4), + standby(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The module state of the plug-in card in IES-2000/3000" + ::= { iesSlotEntry 7 } + + iesSlotModuleAlarmStatus OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This variable indicates the alarm status of the module. + It is a bit map represented as a sum, therefore, it can represent + multiple defects simultaneously. The moduleNoDefect should be set + if and only if no other flag is set. + + The various bit positions are: + 1 moduleNoDefect + 2 moduleOverHeat + 3 moduleFanRpmLow + 4 moduleVoltageLow + 5 moduleThermalSensorFailure + 6 modulePullOut + 7 powerDC48VAFailure + 8 powerDC48VBFailure + 9 extAlarmInputTrigger + 10 moduleDown + 11 mscSwitchOverOK + 12 networkTopologyChange" + ::= { iesSlotEntry 8 } + + + + iesMscPortConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesMscPortConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table contains port configuration information in MSC1000." + ::= { iesChassis 4 } + + iesMscPortConfEntry OBJECT-TYPE + SYNTAX IesMscPortConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { iesChassisId,iesSlotId,iesMscPortId } + ::= { iesMscPortConfTable 1} + + IesMscPortConfEntry ::= + SEQUENCE { + iesMscPortId INTEGER, + iesMscPortType INTEGER, + iesMscPortIfIndex INTEGER, + iesMscPortSpeed INTEGER, + iesMscPortDuplex INTEGER, + iesMscPortFlowControl INTEGER, + iesMscPortDefaultVLANTagging INTEGER, + iesMscPortTrunkGroupId INTEGER, + iesMscPortMode INTEGER, + iesMscPortVLANTrunking INTEGER + } + + iesMscPortId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Identity of the extension slot in MSC1000." + ::= { iesMscPortConfEntry 1 } + + iesMscPortType OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + e1000BaseT(2), + e1000BaseLX(3), + e1000BaseSX(4), + e100BaseFX(5), + e100BaseTX(6), + e1000BaseGBIC(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Port type of the extension slot in MSC1000." + ::= { iesMscPortConfEntry 2 } + + iesMscPortIfIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { iesMscPortConfEntry 3 } + + iesMscPortSpeed OBJECT-TYPE + SYNTAX INTEGER { + auto(1), + e1000M(2), + e100M(3), + e10M(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { iesMscPortConfEntry 4 } + + iesMscPortDuplex OBJECT-TYPE + SYNTAX INTEGER { + full(1), + half(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { iesMscPortConfEntry 5 } + + iesMscPortFlowControl OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { iesMscPortConfEntry 6 } + + iesMscPortDefaultVLANTagging OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { iesMscPortConfEntry 7 } + + iesMscPortTrunkGroupId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { iesMscPortConfEntry 8 } + + iesMscPortMode OBJECT-TYPE + SYNTAX INTEGER { + uplink(1), + subtending(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " The operational mode for uplink and subtending ports in MSC. Only + the operational mode of subtending ports can be modified." + ::= { iesMscPortConfEntry 9 } + + iesMscPortVLANTrunking OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " The VLAN trunking setting for uplink and subtending ports in MSC." + ::= { iesMscPortConfEntry 10 } + + + +-- System Hardware Monitoring + +-- Fan rpm table + + iesFanRpmTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesFanRpmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains rpm information about the fans." + ::= { iesHWMonitor 1 } + + iesFanRpmEntry OBJECT-TYPE + SYNTAX IesFanRpmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of rpm information for each fan." + INDEX { iesChassisId,iesFanRpmIndex } + ::= { iesFanRpmTable 1 } + + IesFanRpmEntry ::= + SEQUENCE { + iesFanRpmIndex INTEGER, + iesFanRpmCurValue INTEGER, + iesFanRpmMaxValue INTEGER, + iesFanRpmMinValue INTEGER, + iesFanRpmLowThresh INTEGER, + iesFanRpmDescr DisplayString + } + + iesFanRpmIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identity of the fan." + ::= { iesFanRpmEntry 1 } + + iesFanRpmCurValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current rpm of the fan." + ::= { iesFanRpmEntry 2 } + + iesFanRpmMaxValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum rpm ever performed by the fan." + ::= { iesFanRpmEntry 3 } + + iesFanRpmMinValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum rpm ever performed by the fan." + ::= { iesFanRpmEntry 4 } + + iesFanRpmLowThresh OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The low threshold of the rpm of the fan. If the current rpm is less than + the threshold, the device will initiate the fanRpmLow trap." + ::= { iesFanRpmEntry 5 } + + iesFanRpmDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The description of the fan (e.g. location, function, etc.)." + ::= { iesFanRpmEntry 6 } + + + +-- Voltage table + + iesVoltageTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesVoltageEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains voltage information about the system." + ::= { iesHWMonitor 2 } + + iesVoltageEntry OBJECT-TYPE + SYNTAX IesVoltageEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of voltage information for each sensor." + INDEX { iesChassisId,iesSlotId,iesVoltageIndex } + ::= { iesVoltageTable 1 } + + IesVoltageEntry ::= + SEQUENCE { + iesVoltageIndex INTEGER, + iesVoltageCurValue INTEGER, + iesVoltageMaxValue INTEGER, + iesVoltageMinValue INTEGER, + iesVoltageNominalValue INTEGER, + iesVoltageLowThresh INTEGER, + iesVoltageDescr DisplayString + } + + iesVoltageIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identity of the sensor." + ::= { iesVoltageEntry 1 } + + iesVoltageCurValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current voltage detected by the sensor (in milli-voltage)." + ::= { iesVoltageEntry 2 } + + iesVoltageMaxValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum voltage ever detected by the sensor (in milli-voltage)." + ::= { iesVoltageEntry 3 } + + iesVoltageMinValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum voltage ever detected by the sensor (in milli-voltage)." + ::= { iesVoltageEntry 4 } + + iesVoltageNominalValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The nominal voltage which the power should supply (in milli-voltage)." + ::= { iesVoltageEntry 5 } + + iesVoltageLowThresh OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The low threshold of the voltage (in milli-voltage). If the current voltage + is less than the threshold, the device will initiate the voltageLow trap." + ::= { iesVoltageEntry 6 } + + iesVoltageDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The description of the voltage (e.g. location, nominal value, etc.)." + ::= { iesVoltageEntry 7 } + + + +-- System temperature table + + iesSysTempTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesSysTempEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information about system." + ::= { iesHWMonitor 3 } + + iesSysTempEntry OBJECT-TYPE + SYNTAX IesSysTempEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information for each sensor." + INDEX { iesChassisId,iesSlotId,iesSysTempIndex } + ::= { iesSysTempTable 1 } + + IesSysTempEntry ::= + SEQUENCE { + iesSysTempIndex INTEGER, + iesSysTempCurValue INTEGER, + iesSysTempMaxValue INTEGER, + iesSysTempMinValue INTEGER, + iesSysTempHighThresh INTEGER, + iesSysTempDescr DisplayString + } + + iesSysTempIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identity of the sensor." + ::= { iesSysTempEntry 1 } + + iesSysTempCurValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current temperature detected in Celsius by the sensor." + ::= { iesSysTempEntry 2 } + + iesSysTempMaxValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum temperature ever detected in Celsius by the sensor." + ::= { iesSysTempEntry 3 } + + iesSysTempMinValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum temperature ever detected in Celsius by the sensor." + ::= { iesSysTempEntry 4 } + + iesSysTempHighThresh OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The high threshold of the temperature in Celsius. If the current temperature + is higher than the threshold, the device will initiate the overheat trap." + ::= { iesSysTempEntry 5 } + + iesSysTempDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The description of the temperature sensor (e.g. location, function, etc.)." + ::= { iesSysTempEntry 6 } + + + +-- System Management + + -- System Status + + iesSystemCurrentStatus OBJECT-TYPE + SYNTAX INTEGER(0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This variable indicates the status of the system. + The sysCurrentStatus is a bit map represented + as a sum, therefore, it can represent multiple defects + simultaneously. The sysNoDefect should be set if and only if + no other flag is set. + + The various bit positions are: + 1 sysNoDefect + 2 sysOverHeat + 3 sysFanRpmLow + 4 sysVoltageLow + 5 sysThermalSensorFailure + 6 modulePullOut + 7 powerDC48VAFailure + 8 powerDC48VBFailure + 9 extAlarmInputTrigger + 10 moduleDown + 11 mscSwitchOverOK + 12 networkTopologyChange" + + ::= {iesSysState 1 } + + iesProblemCause OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "It describes the problem occurred in the system, e.g. maintenance + operation failures, system reboot, error log, ...etc." + ::= { iesSysState 2 } + + + +-- System Maintenance + + iesMaintenanceOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is for system maintenance. When the EMS + wants to trigger the system maitenance operation, the EMS + shall send SNMP-SET message to set the corresponding bit value + to be 1. The various bit positions are: + BIT 1: config save + BIT 2: reset + BIT 3: local loopback test + BIT 4: remote loopback test + BIT 5: clear system alarms + BIT 6: F4 loopback test + BIT 7: F5 loopback test + BIT 8: DSL Line Diagnostic" + ::= { iesSysMaintenance 1 } + + iesMaintenanceTarget OBJECT-TYPE + SYNTAX INTEGER (1..48) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is used for identify the target on which + the maintenance operation should be performed." + ::= { iesSysMaintenance 2 } + + +-- variables for provisioning DSL line in batch mode + + iesMaintenanceDSLConfOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is for xDSL line configuration. When the EMS + wants to issue the desired operation, the EMS + shall send SNMP-SET message to set the corresponding bit value + to be 1. The various bit positions are: + BIT 1: enable port + BIT 2: disable port + BIT 3: set DSL mode + BIT 4: set profile + BIT 5: enable mac filter + BIT 6: disable mac filter + BIT 7: set packet filter + BIT 8: enable dot1x + BIT 9: disable dot1x + BIT 10: set dot1x control + BIT 11: enable dot1x re-authentication + BIT 12: disable dot1x re-authentication + BIT 13: set dot1x re-authentication period + BIT 14: enable mac count filter + BIT 15: disable mac count filter + BIT 16: set mac count filter + BIT 17: set alarm profile + BIT 18: set Annex L (Only in AnnexA) + BIT 19: set power management + BIT 20: set rate adaptation mode + BIT 21: set IGMP filter (Not support after E5-121 v3.1) + BIT 22: enable Annex M + BIT 23: disable Annex M" + ::= { iesSysMaintenance 3 } + + iesMaintenanceDSLConfTarget OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is used for identify the target on which + the line configuration should be performed. The target is encoded + as: + Byte 1: the octet specifies a set of eight Chassis, Chassis 0 through 7 + Byte 2~3: each octet specifies a set of eight slots, with the + first octet specifying slots 1 through 8 and the second + octet specifying slots 9 through 16. + Byte 4: reserved + Byte 5~11: each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc." + ::= { iesSysMaintenance 4 } + + iesMaintenanceDSLConfProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The DSL profile name" + ::= { iesSysMaintenance 5 } + + iesMaintenanceDSLConfMode OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The DSL mode. The semantic for each bit is: + Bit 1: ADSL, G.lite + Bit 2: ADSL, G.dmt + Bit 3: ADSL, T1.413 + Bit 4: ADSL, Auto + Bit 5: ADSL, ETSI + Bit 6: ADSL2, + Bit 7: ADSL2+" + ::= { iesSysMaintenance 6 } + + iesMaintenanceDSLConfPktFilter OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The packet filter. The semantic for each bit is: + Bit 1: accept all + Bit 2: accept PPPoE only + Bit 3: reject ARP + Bit 4: reject DHCP + Bit 5: reject EAPOL + Bit 6: reject PPPoE + Bit 7: reject NetBIOS + Bit 8: reject IGMP + Bit 9: reject IP" + ::= { iesSysMaintenance 7 } + + iesMaintenanceDSLConfDot1xControl OBJECT-TYPE + SYNTAX INTEGER { + auto(1), + forceAuth(2), + forceUnAuth(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configuration defines the 802.1x control type." + ::= { iesSysMaintenance 8 } + + iesMaintenanceDSLConfDot1xReauthPeriod OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configuration defines the 802.1x re-authentication period (seconds)." + ::= { iesSysMaintenance 9 } + + iesMaintenanceDSLConfMacCount OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configuration defines the number of mac addresses which can pass through the port." + ::= { iesSysMaintenance 10 } + + iesMaintenanceVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VPI of the channel" + ::= { iesSysMaintenance 11 } + + iesMaintenanceVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VCI of the channel" + ::= { iesSysMaintenance 12 } + + iesMaintenanceDSLConfAlarmProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The DSL alarm profile name" + ::= { iesSysMaintenance 13 } + + iesMaintenanceDSLConfAnnexL OBJECT-TYPE + SYNTAX INTEGER { + enableNarrowMode(1), + enableWideMode(2), + disable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The annex L setting of the ADSL line (Only in AnnexA)." + ::= { iesSysMaintenance 14 } + + iesMaintenanceDSLConfPmMode OBJECT-TYPE + SYNTAX INTEGER { + enableL2Mode(1), + enableL3Mode(2), + disable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The power management mode of the ADSL line." + ::= { iesSysMaintenance 15 } + + iesMaintenanceDSLConfRateMode OBJECT-TYPE + SYNTAX INTEGER { + fixed(1), -- no rate adaptation + adaptAtStartup(2), -- perform rate adaptation + -- only at initialization + adaptAtRuntime(3) -- perform rate adaptation at + -- any time + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Defines what form of transmit rate adaptation is + configured on this modem. See ADSL Forum TR-005 [3] + for more information." + ::= { iesSysMaintenance 16 } + + iesMaintenanceDSLConfIgmpFilter OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IGMP filter name." + ::= { iesSysMaintenance 17 } + + + -- System Time Setup + + iesTimeServerMode OBJECT-TYPE + SYNTAX INTEGER { + none(1), + daytime(2), + time(3), + ntp(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The mechanism of Time Server when the system boots up." + ::= { iesSysTimeSetup 1 } + + iesTimeServerIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP Address of Time Server" + ::= { iesSysTimeSetup 2 } + + iesSystemTime OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The system time" + ::= { iesSysTimeSetup 3 } + + iesSystemDate OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The system date" + ::= { iesSysTimeSetup 4 } + + iesSystemTimeZone OBJECT-TYPE + SYNTAX INTEGER { + none(0), + utc-1200(1), + utc-1100(2), + utc-1000(3), + utc-0900(4), + utc-0800(5), + utc-0700(6), + utc-0600(7), + utc-0500(8), + utc-0400(9), + utc-0300(10), + utc-0200(11), + utc-0100(12), + utc(13), + utc0100(14), + utc0200(15), + utc0300(16), + utc0400(17), + utc0500(18), + utc0600(19), + utc0700(20), + utc0800(21), + utc0900(22), + utc1000(23), + utc1100(24), + utc1200(25) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The system time zone" + ::= { iesSysTimeSetup 5 } + + + +-- System Access Control + + iesAccessCtrlTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesAccessCtrlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about service access control." + ::= { iesSysAccessControl 1 } + + iesAccessCtrlEntry OBJECT-TYPE + SYNTAX IesAccessCtrlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of access control entry." + INDEX { iesAccessCtrlService } + ::= { iesAccessCtrlTable 1 } + + IesAccessCtrlEntry ::= + SEQUENCE { + iesAccessCtrlService INTEGER, + iesAccessCtrlEnable INTEGER, + iesAccessCtrlPort INTEGER + } + + iesAccessCtrlService OBJECT-TYPE + SYNTAX INTEGER { + telnet(1), + ftp(2), + web(3), + icmp(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The service type of the access control entry." + ::= { iesAccessCtrlEntry 1 } + + iesAccessCtrlEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable the service." + ::= { iesAccessCtrlEntry 2 } + + iesAccessCtrlPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port number which the service uses." + ::= { iesAccessCtrlEntry 3 } + + -- secured client table + iesMaxNumOfSecuredClients OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of sets of secured clients." + ::= { iesSysAccessControl 2} + + iesSecuredClientTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesSecuredClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about secured clients." + ::= { iesSysAccessControl 3 } + + iesSecuredClientEntry OBJECT-TYPE + SYNTAX IesSecuredClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of secured client entry." + INDEX { iesSecuredClientStartIp, iesSecuredClientEndIp } + ::= { iesSecuredClientTable 1 } + + IesSecuredClientEntry ::= + SEQUENCE { + iesSecuredClientStartIp IpAddress, + iesSecuredClientEndIp IpAddress, + iesSecuredClientService INTEGER, + iesSecuredClientRowStatus RowStatus + } + + iesSecuredClientStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The starting IP address of a set of secured clients." + ::= { iesSecuredClientEntry 1 } + + iesSecuredClientEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ending IP address of a set of secured clients." + ::= { iesSecuredClientEntry 2 } + + iesSecuredClientService OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Each bit corresponds to a service. The bit is set to 1 if the + service is enabled, and set to 0 if the service is disabled. + The various bit positions are: + BIT 1: telnet + BIT 2: FTP + BIT 3: web + BIT 4: ICMP" + ::= { iesSecuredClientEntry 3 } + + iesSecuredClientRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or modify or delete an existing row + in this table. A row is activated by setting this object to `active', and is + deactivated by setting it to 'notInService'." + ::= { iesSecuredClientEntry 4 } + + + +-- Static Route + + iesMaxNumOfStaticRoutes OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of static routes." + ::= { iesSysStaticRoute 1 } + + iesStaticRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesStaticRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about static routes." + ::= { iesSysStaticRoute 2 } + + iesStaticRouteEntry OBJECT-TYPE + SYNTAX IesStaticRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of static route entry." + INDEX { iesStaticRouteName } + ::= { iesStaticRouteTable 1 } + + IesStaticRouteEntry ::= + SEQUENCE { + iesStaticRouteName DisplayString, + iesStaticRouteDest IpAddress, + iesStaticRouteMask IpAddress, + iesStaticRouteGateway IpAddress, + iesStaticRouteMetric INTEGER, + iesStaticRouteRowStatus RowStatus + } + + iesStaticRouteName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the static route." + ::= { iesStaticRouteEntry 1 } + + iesStaticRouteDest OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The destination IP address of the static route." + ::= { iesStaticRouteEntry 2 } + + iesStaticRouteMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The subnet mask of the static route." + ::= { iesStaticRouteEntry 3 } + + iesStaticRouteGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The gateway IP address of the static route." + ::= { iesStaticRouteEntry 4 } + + iesStaticRouteMetric OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The routing metric of the static route." + ::= { iesStaticRouteEntry 5 } + + iesStaticRouteRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or modify or delete an existing row + in this table. A row is activated by setting this object to `active', and is + deactivated by setting it to 'notInService'." + ::= { iesStaticRouteEntry 6 } + + + +-- syslog + + iesSysLogEnable OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable syslog function." + ::= { iesSyslogSetup 1 } + + iesSysLogServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IP address of the syslog server." + ::= { iesSyslogSetup 2 } + + iesSysLogFacility OBJECT-TYPE + SYNTAX INTEGER { + local1(1), + local2(2), + local3(3), + local4(4), + local5(5), + local6(6), + local7(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Log facility used by the syslog function." + ::= { iesSyslogSetup 3 } + + + +-- DHCP Setup + + iesDhcpRelayEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable DHCP relay function." + ::= { iesSysDhcpSetup 1 } + + iesDhcpRelayOption82Enable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable DHCP relay Option82 function." + ::= { iesSysDhcpSetup 2 } + + iesDhcpRelayOption82Info OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "User specific Option82 information." + ::= { iesSysDhcpSetup 3 } + + iesMaxNumOfDhcpServers OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of DHCP servers." + ::= { iesSysDhcpSetup 4 } + + iesDhcpServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesDhcpServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains DHCP server information." + ::= { iesSysDhcpSetup 5 } + + iesDhcpServerEntry OBJECT-TYPE + SYNTAX IesDhcpServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of DHCP server table." + INDEX { iesDhcpServerIp } + ::= { iesDhcpServerTable 1 } + + IesDhcpServerEntry ::= + SEQUENCE { + iesDhcpServerIp IpAddress, + iesDhcpServerRowStatus RowStatus + } + + iesDhcpServerIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of the DHCP server." + ::= { iesDhcpServerEntry 1 } + + iesDhcpServerRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the DHCP server entry." + ::= { iesDhcpServerEntry 2 } + +-- SNMP setup, Trap Destination + + iesMaxNumberOfTrapDestinations OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of the trap destinations." + ::= { iesSysSNMPSetup 1 } + + iesSNMPTrapDestTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesSNMPTrapDestEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains SNMP trap destination information." + ::= { iesSysSNMPSetup 2 } + + iesSNMPTrapDestEntry OBJECT-TYPE + SYNTAX IesSNMPTrapDestEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of SNMP trap destination table." + INDEX { iesTrapDestIp, iesTrapDestPort } + ::= { iesSNMPTrapDestTable 1 } + + IesSNMPTrapDestEntry ::= + SEQUENCE { + iesTrapDestIp IpAddress, + iesTrapDestPort INTEGER, + iesTrapDestRowStatus RowStatus + } + + iesTrapDestIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of the trap destination." + ::= { iesSNMPTrapDestEntry 1 } + + iesTrapDestPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The UDP port of the trap destination." + ::= { iesSNMPTrapDestEntry 2 } + + iesTrapDestRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the trap destination entry." + ::= { iesSNMPTrapDestEntry 3} + + iesSnmpGetCommunity OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The SNMP get community." + ::= { iesSysSNMPSetup 3 } + + iesSnmpSetCommunity OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The SNMP set community." + ::= { iesSysSNMPSetup 4 } + + iesSnmpTrapCommunity OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The SNMP trap community." + ::= { iesSysSNMPSetup 5 } + + +-- RADIUS Server setup + + iesMaxNumberOfRadiusServers OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of the RADIUS Servers." + ::= { iesSysDot1xSetup 1 } + + iesRadiusServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesRadiusServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains Radius Server information." + ::= { iesSysDot1xSetup 2 } + + iesRadiusServerEntry OBJECT-TYPE + SYNTAX IesRadiusServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of Radius Server table." + INDEX { iesRadiusServerIndex } + ::= { iesRadiusServerTable 1 } + + IesRadiusServerEntry ::= + SEQUENCE { + iesRadiusServerIndex INTEGER, + iesRadiusServerIp IpAddress, + iesRadiusServerPort INTEGER, + iesRadiusSharedSecret DisplayString, + iesRadiusServerRowStatus RowStatus + } + + iesRadiusServerIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identity of the RADIUS server." + ::= { iesRadiusServerEntry 1 } + + iesRadiusServerIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The IP address of the Radius Server." + ::= { iesRadiusServerEntry 2 } + + iesRadiusServerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The UDP port of the Radius Server." + ::= { iesRadiusServerEntry 3 } + + iesRadiusSharedSecret OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The shared secret of the Radius Server." + ::= { iesRadiusServerEntry 4 } + + iesRadiusServerRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the Radius Server entry." + ::= { iesRadiusServerEntry 5 } + + +-- 802.1x option + + iesDot1xEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable the 802.1x function." + ::= { iesSysDot1xSetup 3 } + + + +-- 802.1x Table + + iesDot1xPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesDot1xPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the configuration of 802.1x." + ::= { iesSysDot1xSetup 4 } + + iesDot1xPortEntry OBJECT-TYPE + SYNTAX IesDot1xPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in iesDot1xPortTable." + INDEX { ifIndex } + ::= { iesDot1xPortTable 1 } + + IesDot1xPortEntry ::= + SEQUENCE { + iesDot1xPortEnable INTEGER, + iesDot1xPortControl INTEGER, + iesDot1xPortReAuthEnable INTEGER, + iesDot1xPortReAuthPeriod INTEGER + } + + iesDot1xPortEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The option defines if the port enables 802.1x + settings." + ::= { iesDot1xPortEntry 1 } + + iesDot1xPortControl OBJECT-TYPE + SYNTAX INTEGER { + auto(1), + forceAuth(2), + forceUnAuth(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configuration defines the 802.1x port control + type." + ::= { iesDot1xPortEntry 2 } + + iesDot1xPortReAuthEnable OBJECT-TYPE + SYNTAX INTEGER { + on(1), + off(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The option defines if the port enables 802.1x + re-authentication." + ::= { iesDot1xPortEntry 3 } + + iesDot1xPortReAuthPeriod OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configuration defines the 802.1x + re-authentication period (seconds) for each port." + ::= { iesDot1xPortEntry 4 } + + + +-- Mac Filter + + iesMacFilterStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesMacFilterStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the status of mac filtering for each port." + ::= { iesSysMacFilter 1 } + + iesMacFilterStatusEntry OBJECT-TYPE + SYNTAX IesMacFilterStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in iesMacFilterStatusTable." + INDEX { ifIndex } + ::= { iesMacFilterStatusTable 1 } + + IesMacFilterStatusEntry ::= + SEQUENCE { + iesMacFilterStatusEnable INTEGER + } + + iesMacFilterStatusEnable OBJECT-TYPE + SYNTAX INTEGER { + enableAccept(1), + disable(2), + enableDeny(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The option defines if the port enables mac filtering." + ::= { iesMacFilterStatusEntry 1 } + + iesMaxNumberOfMacFilters OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of the mac filters in the system." + ::= { iesSysMacFilter 2 } + + iesMaxNumberOfMacFiltersPerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of the mac filters for each port." + ::= { iesSysMacFilter 3 } + + iesCurrNumberOfMacFilters OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of the mac filters in the system." + ::= { iesSysMacFilter 4 } + + iesMacFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesMacFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains the mac filtering information." + ::= { iesSysMacFilter 5 } + + iesMacFilterEntry OBJECT-TYPE + SYNTAX IesMacFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of iesMacFilterTable." + INDEX { ifIndex, iesMacFilterMacAddr } + ::= { iesMacFilterTable 1 } + + IesMacFilterEntry ::= + SEQUENCE { + iesMacFilterMacAddr PhysAddress, + iesMacFilterRowStatus RowStatus + } + + iesMacFilterMacAddr OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The mac address which can pass through the port." + ::= { iesMacFilterEntry 1 } + + iesMacFilterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the entry." + ::= { iesMacFilterEntry 2 } + + + +-- Packet Filter + + iesPacketFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesPacketFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes packet filtering for each port." + ::= { iesSysPacketFilter 1 } + + iesPacketFilterEntry OBJECT-TYPE + SYNTAX IesPacketFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in iesPacketFilterTable." + INDEX { ifIndex } + ::= { iesPacketFilterTable 1 } + + IesPacketFilterEntry ::= + SEQUENCE { + iesPacketFilter INTEGER + } + + iesPacketFilter OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The packet filter. The semantic for each bit is: + Bit 1: accept all + Bit 2: accept PPPoE only + Bit 3: reject ARP + Bit 4: reject DHCP + Bit 5: reject EAPOL + Bit 6: reject PPPoE + Bit 7: reject NetBIOS + Bit 8: reject IGMP + Bit 9: reject IP" + ::= { iesPacketFilterEntry 1 } + + + +-- Mac Count Filter + + iesMacCountFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesMacCountFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes mac count filtering for each port." + ::= { iesSysMacCountFilter 1 } + + iesMacCountFilterEntry OBJECT-TYPE + SYNTAX IesMacCountFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in iesMacCountFilterTable." + INDEX { ifIndex } + ::= { iesMacCountFilterTable 1 } + + IesMacCountFilterEntry ::= + SEQUENCE { + iesMacCountFilterStatus INTEGER, + iesMacCountFilterCount INTEGER + } + + iesMacCountFilterStatus OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The option defines if the port enables mac count filtering." + ::= { iesMacCountFilterEntry 1 } + + iesMacCountFilterCount OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The number of mac addresses which can pass through the port." + ::= { iesMacCountFilterEntry 2 } + + + +-- Static Multicast Group + + iesMaxNumberOfMulticastGroups OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of static multicast groups in the system." + ::= { iesSysMulticastGroup 1 } + + iesMulticastGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesMulticastGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains static multicast group information." + ::= { iesSysMulticastGroup 2 } + + iesMulticastGroupEntry OBJECT-TYPE + SYNTAX IesMulticastGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of multicast group table." + INDEX { iesMulticastGroupVid, iesMulticastGroupMacAddr } + ::= { iesMulticastGroupTable 1 } + + IesMulticastGroupEntry ::= + SEQUENCE { + iesMulticastGroupVid INTEGER, + iesMulticastGroupMacAddr PhysAddress, + iesMulticastGroupPorts PortList, + iesMulticastGroupRowStatus RowStatus + } + + iesMulticastGroupVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The multicast VLAN of the group." + ::= { iesMulticastGroupEntry 1 } + + + iesMulticastGroupMacAddr OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The multicast MAC address of the group." + ::= { iesMulticastGroupEntry 2 } + + iesMulticastGroupPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The port list which specifies the ports joining the multicast group." + ::= { iesMulticastGroupEntry 3 } + + iesMulticastGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the multicast group entry." + ::= { iesMulticastGroupEntry 4 } + + +-- IGMP Filter +-- Obsoleted since Revision 3.0.0 at 2009/11/26 by maverick +-- Not used for R3.x and above. + + iesMaxNumberOfIgmpFilters OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of IGMP filters in the system." + ::= { iesSysIgmpFilter 1 } + + iesIgmpFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesIgmpFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains IGMP filters." + ::= { iesSysIgmpFilter 2 } + + iesIgmpFilterEntry OBJECT-TYPE + SYNTAX IesIgmpFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of IGMP filter table." + INDEX { iesIgmpFilterName, iesIgmpFilterIndex } + ::= { iesIgmpFilterTable 1 } + + IesIgmpFilterEntry ::= + SEQUENCE { + iesIgmpFilterName OCTET STRING, + iesIgmpFilterIndex INTEGER, + iesIgmpFilterStartIp IpAddress, + iesIgmpFilterEndIp IpAddress, + iesIgmpFilterRowStatus RowStatus + } + + iesIgmpFilterName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IGMP filter name." + ::= { iesIgmpFilterEntry 1 } + + iesIgmpFilterIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index which specifies the filter rule." + ::= { iesIgmpFilterEntry 2 } + + iesIgmpFilterStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The start IP of the filter rule." + ::= { iesIgmpFilterEntry 3 } + + iesIgmpFilterEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The end IP of the filter rule." + ::= { iesIgmpFilterEntry 4 } + + iesIgmpFilterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the IGMP filter entry." + ::= { iesIgmpFilterEntry 5 } + + iesIgmpFilterPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesIgmpFilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table specifies the IGMP filter of the port." + ::= { iesSysIgmpFilter 3 } + + iesIgmpFilterPortEntry OBJECT-TYPE + SYNTAX IesIgmpFilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An entry in iesIgmpFilterPortTable." + INDEX { ifIndex } + ::= { iesIgmpFilterPortTable 1 } + + IesIgmpFilterPortEntry ::= + SEQUENCE { + iesIgmpFilterPortFilter OCTET STRING + } + + iesIgmpFilterPortFilter OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IGMP filter of the port." + ::= { iesIgmpFilterPortEntry 1 } + + +-- L2 Switch Configuration + + iesIGMPSnoopingEnabled OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A flag indicating whether IGMP snooping function is enabled or not." + ::= { iesL2SW 1 } + + iesManagementVLANId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The VLAN ID for management." + ::= { iesL2SW 2 } + + iesMaxNumOfStaticVlans OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of static VLANs supported by the system." + ::= { iesL2SW 3 } + + iesPortIsolationEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A flag indicating whether VLAN port isolation function is enabled or not." + ::= { iesL2SW 6 } + + iesRSTPEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/Disable RSTP." + ::= { iesL2SW 7 } + + iesSwitchMode OBJECT-TYPE + SYNTAX INTEGER { + daisyChain(1), + standalone(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Switch DSLAM's operatrion Mode." + ::= { iesL2SW 8 } + + + -- Trunk Group + + iesMaxNumOfTrunkGroups OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of trunk groups." + ::= { iesL2SW 4} + + iesTrunkGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF IesTrunkGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains trunk group configuration." + ::= { iesL2SW 5 } + + iesTrunkGroupEntry OBJECT-TYPE + SYNTAX IesTrunkGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of trunk group table" + INDEX { iesTrunkGroupId } + ::= { iesTrunkGroupTable 1 } + + IesTrunkGroupEntry ::= + SEQUENCE { + iesTrunkGroupId INTEGER, + iesTrunkGroupName DisplayString, + iesTrunkGroupPorts PortList, + iesTrunkGroupRowStatus RowStatus + } + + iesTrunkGroupId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ID of the trunk group" + ::= { iesTrunkGroupEntry 1 } + + iesTrunkGroupName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The name of the trunk group" + ::= { iesTrunkGroupEntry 2 } + + iesTrunkGroupPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The port list of the trunk group" + ::= { iesTrunkGroupEntry 3 } + + iesTrunkGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the trunk group entry" + ::= { iesTrunkGroupEntry 4 } + + +-- Enterprise specific traps + + reboot NOTIFICATION-TYPE + OBJECTS { iesProblemCause } + STATUS current + DESCRIPTION "Send a message to the manager that the system is going to shutdown. + The variable is the reason that causes the system to shutdown." + ::= { e5x121 0 1 } + + systemShutdown NOTIFICATION-TYPE + OBJECTS { iesProblemCause } + STATUS current + DESCRIPTION "Send a message to the manager that the system is going to shutdown. + The variable is the reason that causes the system to shutdown." + ::= { e5x121 0 2 } + + overheat NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesSlotId, + iesSysTempIndex, + iesSysTempCurValue } + STATUS current + DESCRIPTION "Send a message to the manager that the system is overheated. + The variable in the binding list is the current temperature in Celsius + of the system." + ::= { e5x121 0 3 } + + overheatOver NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesSlotId, + iesSysTempIndex, + iesSysTempCurValue } + STATUS current + DESCRIPTION "Send a message to the manager that the overheated condition is over. + The variable in the binding list is the current temperature in Celsius + of the system." + ::= { e5x121 0 4 } + + errLog NOTIFICATION-TYPE + OBJECTS { iesProblemCause } + STATUS current + DESCRIPTION "Send a message to the manager that an error log is created in system. + The variable in the binding list is the content of the error log." + ::= { e5x121 0 5 } + + fanRpmLow NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesFanRpmIndex, + iesFanRpmCurValue } + STATUS current + DESCRIPTION "Send a message to the manager that the rpm of the fan is too low. + The variable in the binding list is the current rpm of the fan." + ::= { e5x121 0 6 } + + fanRpmNormal NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesFanRpmIndex, + iesFanRpmCurValue } + STATUS current + DESCRIPTION "Send a message to the manager that the low-rpm condition of the fan is over. + The variable in the binding list is the current rpm of the fan." + ::= { e5x121 0 7 } + + voltageOutOfRange NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesSlotId, + iesVoltageIndex, + iesVoltageCurValue } + STATUS current + DESCRIPTION "Send a message to the manager that the voltage of the system is out of range. + The variable in the binding list is the current voltage in volt + of the system." + ::= { e5x121 0 8 } + + voltageNormal NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesSlotId, + iesVoltageIndex, + iesVoltageCurValue } + STATUS current + DESCRIPTION "Send a message to the manager that the low-voltage condition is over. + The variable in the binding list is the current voltage in volt + of the system." + ::= { e5x121 0 9 } + + systemMaintenanceFailure NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesSlotId, + iesProblemCause } + STATUS current + DESCRIPTION "Send a message to the manager that the system maintence operation + fail. The variable in the variable binding indicates the problem." + ::= { e5x121 0 10 } + + configChange NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesSlotId, + iesProblemCause } + STATUS current + DESCRIPTION "This notification indicates that the configuration data of one module is changed." + ::= { e5x121 0 11 } + + moduleUp NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesSlotId } + STATUS current + DESCRIPTION "A moduleUp trap signifies that the sending + protocol entity recognizes that one of the + modules represented in the agent's + configuration has come up." + ::= { e5x121 0 12 } + + moduleDown NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesSlotId } + STATUS current + DESCRIPTION "A moduleDown trap signifies that the sending + protocol entity recognizes a failure in one of + the modules represented in the agent's + configuration." + ::= { e5x121 0 13 } + + modulePlugIn NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesSlotId } + STATUS current + DESCRIPTION "A modulePlugIn trap signifies that the sending + protocol entity recognizes that one module is + plugged into the device." + ::= { e5x121 0 14 } + + modulePullOut NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesSlotId } + STATUS current + DESCRIPTION "A modulePullOut trap signifies that the sending + protocol entity recognizes one module is pulled out + from the device." + ::= { e5x121 0 15 } + + powerDC48VAFailure NOTIFICATION-TYPE +-- OBJECTS { } + STATUS current + DESCRIPTION "The trap signifies that the power supply of DC 48V at the + right side of main Chassis (front view) failed." + ::= { e5x121 0 16 } + + powerDC48VANormal NOTIFICATION-TYPE +-- OBJECTS { } + STATUS current + DESCRIPTION "The trap signifies that the power supply of DC 48V at the + right side of main Chassis (front view) is in normal state." + ::= { e5x121 0 17 } + + powerDC48VBFailure NOTIFICATION-TYPE +-- OBJECTS { } + STATUS current + DESCRIPTION "The trap signifies that the power supply of DC 48V at the + left side of main Chassis (front view) failed." + ::= { e5x121 0 18 } + + powerDC48VBNormal NOTIFICATION-TYPE +-- OBJECTS { } + STATUS current + DESCRIPTION "The trap signifies that the power supply of DC 48V at the + left side of main Chassis (front view) is in normal state." + ::= { e5x121 0 19 } + + extAlarmInputTrigger NOTIFICATION-TYPE +-- OBJECTS { } + STATUS current + DESCRIPTION "The trap signifies that the external alarm input of MSC card + is triggered." + ::= { e5x121 0 20 } + + extAlarmInputRelease NOTIFICATION-TYPE +-- OBJECTS { } + STATUS current + DESCRIPTION "The trap signifies that the external alarm input of MSC card + is released." + ::= { e5x121 0 21 } + + thermalSensorFailure NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesSlotId } + STATUS current + DESCRIPTION "The trap signifies that the thermal sensor failed." + ::= { e5x121 0 22 } + + mscSwitchOverOK NOTIFICATION-TYPE + OBJECTS { iesChassisId, + iesSlotId } + STATUS current + DESCRIPTION "The trap signifies that MSC card is switched over successfully. The value of + iesSlotId is the slot ID of the current working MSC." + ::= { e5x121 0 23 } + + networkTopologyChange NOTIFICATION-TYPE +-- OBJECTS { } + STATUS current + DESCRIPTION "The trap signifies the network topology is changed." + ::= { e5x121 0 24 } + + adslAtucLof NOTIFICATION-TYPE + OBJECTS { ifIndex } + STATUS current + DESCRIPTION "The trap signifies ATU-C Loss of Framing." + ::= { e5x121 0 25 } + + adslAturLof NOTIFICATION-TYPE + OBJECTS { ifIndex } + STATUS current + DESCRIPTION "The trap signifies ATU-R Loss of Framing." + ::= { e5x121 0 26 } + + adslAtucLos NOTIFICATION-TYPE + OBJECTS { ifIndex } + STATUS current + DESCRIPTION "The trap signifies ATU-C Loss of Signal." + ::= { e5x121 0 27 } + + adslAturLos NOTIFICATION-TYPE + OBJECTS { ifIndex } + STATUS current + DESCRIPTION "The trap signifies ATU-R Loss of Signal." + ::= { e5x121 0 28 } + + adslAturLpr NOTIFICATION-TYPE + OBJECTS { ifIndex } + STATUS current + DESCRIPTION "The trap signifies ATU-R Loss of Power." + ::= { e5x121 0 29 } + + adslAtucLofClear NOTIFICATION-TYPE + OBJECTS { ifIndex } + STATUS current + DESCRIPTION "The trap signifies ATU-C Loss of Framing is cleared." + ::= { e5x121 0 30 } + + adslAturLofClear NOTIFICATION-TYPE + OBJECTS { ifIndex } + STATUS current + DESCRIPTION "The trap signifies ATU-R Loss of Framing is cleared." + ::= { e5x121 0 31 } + + adslAtucLosClear NOTIFICATION-TYPE + OBJECTS { ifIndex } + STATUS current + DESCRIPTION "The trap signifies ATU-C Loss of Signal is cleared." + ::= { e5x121 0 32 } + + adslAturLosClear NOTIFICATION-TYPE + OBJECTS { ifIndex } + STATUS current + DESCRIPTION "The trap signifies ATU-R Loss of Signal is cleared." + ::= { e5x121 0 33 } + + adslAturLprClear NOTIFICATION-TYPE + OBJECTS { ifIndex } + STATUS current + DESCRIPTION "The trap signifies ATU-R Loss of Power is cleared." + ::= { e5x121 0 34 } + +END diff --git a/mibs/calix/E5-121-MIB b/mibs/calix/E5-121-MIB new file mode 100644 index 0000000000..914a4ceba2 --- /dev/null +++ b/mibs/calix/E5-121-MIB @@ -0,0 +1,11342 @@ +-- $Log: E5-121-MIB.mib $ +-- Revision 1.80 2011/04/28 03:38:15 Alex.Shih +-- Revision 1.79 2011/03/10 09:37:49 swee +-- Remove supported in R5.x or later version info +-- Revision 1.78 2011/02/09 00:25:01 Alex.Shih +-- Revision 1.78 2011/02/09 00:09:51 Alex.Shih +-- Revision 1.77 2011/01/27 09:24:12 Alex.Shih +-- Revision 1.76 2011/01/26 12:10:03 ChunTing +-- Revision 1.75 2011/01/24 06:03:10 Alex.Shih +-- Revision 1.74 2011/01/07 07:32:04 cylien +-- fix compile error of mibble +-- Revision 1.73 2010/11/15 11:01:02 Alex.Shih +-- Revision 1.72 2010/11/12 02:58:58 cylien +-- Revision 1.71 2010/11/03 11:01:11 john +-- Revision 1.70 2010/11/03 02:23:04 cylien +-- Revision 1.69 2010/10/26 01:35:50 DavidGong +-- Revision 1.68 2010/10/25 10:08:15 Alex.Shih +-- Revision 1.67 2010/10/14 08:58:33 cylien +-- Revision 1.66 2010/09/30 08:17:58 Alex.Shih +-- Revision 1.65 2010/09/30 03:46:25 cylien +-- Revision 1.64 2010/09/29 02:29:28 cylien +-- Revision 1.63 2010/09/28 01:01:46 DavidGong +-- Revision 1.62 2010/09/23 07:59:18 cylien +-- Revision 1.61 2010/09/16 10:34:50 DavidGong +-- Revision 1.60 2010/09/08 07:02:21 Alex.Shih +-- Revision 1.59 2010/09/08 03:48:05 Alex.Shih +-- Revision 1.58 2010/08/27 09:03:48 John +-- Revision 1.57 2010/08/27 05:42:43 Alex.Shih +-- Revision 1.56 2010/08/13 11:48:09 cylien +-- Revision 1.55 2010/08/10 07:48:11 Alex.Shih +-- Revision 1.54 2010/07/19 05:36:01 John +-- Revision 1.53 2010/07/17 05:54:19 Alex.Shih +-- Revision 1.51 2010/07/09 11:03:19 John +-- Revision 1.50 2010/07/01 11:38:22 davidgong +-- Revision 1.49 2010/07/01 11:12:03 davidgong +-- Revision 1.48 2010/06/30 06:56:34 Alex.Shih +-- Revision 1.47 2010/06/29 07:58:06 Ives +-- Revision 1.46 2010/06/29 06:46:04 Alex.Shih +-- Revision 1.45 2010/06/29 06:00:49 Alex.Shih +-- Revision 1.44 2010/06/29 01:01:55 Alex.Shih +-- Revision 1.43 2010/06/28 17:05:05 John +-- Revision 1.41 2010/06/24 08:02:47 maverick +-- Revision 1.40 2010/06/24 07:47:34 davidgong +-- Revision 1.39 2010/06/24 05:28:16 davidgong +-- Revision 1.38 2010/06/15 14:28:37 maverick +-- Revision 1.37 2010/06/10 08:04:27 cylien +-- Revision 1.36 2010/06/10 02:49:55 cylien +-- Revision 1.35 2010/06/08 03:55:22 cylien +-- Revision 1.34 2010/06/07 00:55:31 davidgong +-- Revision 1.33 2010/06/04 11:56:58 Alex_Chang +-- Revision 1.32 2010/06/03 12:07:29 JeFF +-- Revision 1.31 2010/06/02 01:21:38 Alex.Shih +-- Revision 1.30 2010/05/21 03:57:38 maverick +-- Revision 1.29 2010/04/23 10:46:34 maverick +-- Revision 1.28 2009/11/26 13:06:58 maverick +-- add comment to obsoleted mib entries, mibble checked +-- Revision 1.27 2009/09/15 05:51:32 maverick +-- Revision 1.26 2009/09/15 02:48:22 maverick +-- Revision 1.25 2009/09/01 01:32:36 maverick +-- Revision 1.24 2009/07/27 08:16:56 niceguy +-- Revision 1.23 2009/07/21 10:52:52 maverick +-- Revision 1.21 2009/07/10 10:39:44 maverick +-- Revision 1.20 2009/06/26 11:01:57 John +-- Revision 1.19 2009/06/25 08:18:54 maverick +-- Revision 1.18 2009/06/25 02:47:26 niceguy +-- Revision 1.17 2009/06/10 02:26:39 John +-- Revision 1.16 2009/06/09 06:59:07 maverick +-- Revision 1.15 2009/05/27 09:19:31 niceguy +-- Revision 1.14 2009/05/25 08:53:38 maverick +-- Revision 1.13 2009/05/21 12:28:28 maverick +-- Revision 1.12 2009/05/21 08:14:42 lbr +-- Revision 1.11 2009/05/21 04:05:21 John +-- Revision 1.10 2009/05/20 13:04:21 maverick +-- Revision 1.9 2009/05/20 00:59:19 maverick +-- Revision 1.8 2009/04/30 10:10:31 niceguy +-- Revision 1.7 2009/04/29 05:51:22 niceguy +-- Revision 1.6 2009/04/21 02:58:22 niceguy +-- Revision 1.5 2009/03/06 12:32:03 maverick +-- Revision 1.4 2008/11/14 12:17:47 niceguy +-- Revision 1.3 2008/11/12 08:19:35 kenny +-- Revision 1.2 2008/09/26 10:45:37 niceguy +-- Revision 1.1 2008/09/18 01:50:27 niceguy +-- Initial revision +-- Revision 1.5 2008/08/21 10:55:19 kenny +-- Revision 1.4 2008/08/15 10:29:16 maverick +-- Revision 1.3 2008/08/05 06:35:53 maverick +-- Revision 1.2 2008/08/04 12:47:34 maverick +-- Revision 1.1 2008/07/11 09:36:15 maverick +-- Initial revision +-- Revision 1.7 2008/06/27 16:08:09 maverick +-- Revision 1.6 2008/06/23 08:54:10 kenny +-- Revision 1.5 2008/06/10 13:53:03 maverick +-- Revision 1.4 2008/05/30 14:12:22 maverick +-- Revision 1.3 2008/05/20 02:55:59 maverick +-- Revision 1.2 2008/05/13 02:03:13 maverick +-- Revision 1.6 2008/03/07 07:56:43 kenny +-- Revision 1.5 2007/12/14 10:00:11 niceguy +-- Revision 1.4 2007/12/14 02:42:41 niceguy +-- Revision 1.3 2007/12/06 02:03:04 kenny +-- Revision 1.2 2007/12/03 01:54:35 niceguy +-- Revision 1.1 2007/12/03 01:45:30 niceguy +-- Initial revision +-- Initial revision + + + E5-121-MIB DEFINITIONS ::= BEGIN + + IMPORTS + + enterprises + FROM RFC1155-SMI + OBJECT-TYPE, Counter32, Gauge32, Unsigned32, Counter64, IpAddress, TimeTicks, NOTIFICATION-TYPE + FROM SNMPv2-SMI + DisplayString, PhysAddress, ifIndex + FROM RFC1213-MIB + RowStatus, TEXTUAL-CONVENTION + FROM SNMPv2-TC + VlanIndex, PortList, dot1qVlanIndex + FROM Q-BRIDGE-MIB + dot1dTrafficClass + FROM P-BRIDGE-MIB + MacAddress, Timeout, BridgeId, dot1dBasePort + FROM BRIDGE-MIB + dot1agCfmMdIndex, dot1agCfmMaIndex, dot1agCfmMepIdentifier + FROM IEEE8021-CFMD8-MIB; + + + calixNetworks OBJECT IDENTIFIER ::= { enterprises 6321 } + calixRegistrations OBJECT IDENTIFIER ::= { calixNetworks 1 } + calixProducts OBJECT IDENTIFIER ::= { calixRegistrations 2 } + e5x100 OBJECT IDENTIFIER ::= { calixProducts 3 } + e5x121 OBJECT IDENTIFIER ::= { e5x100 4 } + + + alarmconf OBJECT IDENTIFIER ::= { e5x121 2 } + diagnostic OBJECT IDENTIFIER ::= { e5x121 4 } + multicast OBJECT IDENTIFIER ::= { e5x121 7 } + port OBJECT IDENTIFIER ::= { e5x121 8 } + profile OBJECT IDENTIFIER ::= { e5x121 9 } + switch OBJECT IDENTIFIER ::= { e5x121 10 } + sys OBJECT IDENTIFIER ::= { e5x121 11 } + trap OBJECT IDENTIFIER ::= { e5x121 12 } + statistics OBJECT IDENTIFIER ::= { e5x121 13 } + clear OBJECT IDENTIFIER ::= { e5x121 14 } +-- 15 reserved for cluster + voip OBJECT IDENTIFIER ::= { e5x121 16 } + aesSeriesCommon OBJECT IDENTIFIER ::= { e5x121 97 } -- obsoleted since R2.0 by maverick + iesSeriesCommon OBJECT IDENTIFIER ::= { e5x121 98 } + accessSwitchCommonATM OBJECT IDENTIFIER ::= { e5x121 99 } + + + +---------------------------------------- +-- alarmconf +---------------------------------------- + + alarmOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The manager sets the corresponding bit value to 1 to start the operation + and the agent clears the object to zero when the operation is successfully completed. + The various bit positions are: + BIT 1: clear + BIT 2: cutoff" + ::= { alarmconf 1 } + +-- Alarm Conf Table + + alarmConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF AlarmConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes alarm configuration." + ::= { alarmconf 2 } + + alarmConfEntry OBJECT-TYPE + SYNTAX AlarmConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in alarmConfTable." + INDEX { alarmConfId } + ::= { alarmConfTable 1 } + + AlarmConfEntry ::= + SEQUENCE { + alarmConfId INTEGER, + alarmConfFacility INTEGER, + alarmConfTarget INTEGER, + alarmConfSeverity INTEGER, + alarmConfClearable INTEGER + } + + alarmConfId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + 5000:vdslLine_up + 5001:vdslLine_down + 5002:vdsl_tca_lol + 5003:vdsl_tca_lof + 5004:vdsl_tca_los + 5005:vdsl_tca_lop + 5006:vdsl_tca_es + 5007:vdsl_tca_ses + 5008:vdsl_tca_uas + 5009:xd_xtuc_loftrap + 5010:xd_xtuc_lostrap + 5011:xd_xtur_loftrap + 5012:xd_xtur_lostrap + 5013:xd_xtur_lprtrap + 5014:ad_dhcp_rt_full + 5015:ad_dhcp_dm_conflict + 5016:ad_dhcp_entry_full + 5017:ad_dhcp_ip_dup + 5018:ad_dhcp_mac_dup + 10000:eqptVol_err + 10001:eqptEqpttemp_err + 10002:eqptFan_err + 10003:eqptHw_rtc_fail + 10004:eqptHw_mon_fail + 10005:eqptCold_start + 10006:eqptWarm_start + 10007:eqptAlm_input + 10008:voip_battery_fail + 10009:voip_clock_fail + 10010:voip_ringer_fault + 10011:eqptAlm_input2 + 10012:eqptAlm_input3 + 15000:sysReboot + 15001:sysAco + 15002:sysAlm_clear + 15003:sysLogin_fail + 15004:sysAnti_spoofing + 15005:sysAlm_svrty_change + 15006:sysHost_terminate + 20000:enetUp + 20001:enetDown + 25000:voip_temp_error + 25001:voip_dc_power_fail + 25002:voip_ac_power_fail + 25003:voip_ring_timer_fail + 25004:voip_ring_rsrce_fail + 25006:voip_dhcp_clt_fail + 25007:voip_call_setup_failed + 25008:voip_call_threshold_violate + 30000:cfmError + " + ::= { alarmConfEntry 1 } + + alarmConfFacility OBJECT-TYPE + SYNTAX INTEGER { + local1(1), + local2(2), + local3(3), + local4(4), + local5(5), + local6(6), + local7(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Alarm facility." + ::= { alarmConfEntry 2 } + + alarmConfTarget OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination which alarms are reported to. Set the bit to 1 to enable the target. + BIT 1: snmp trap + BIT 2: syslog" + ::= { alarmConfEntry 3 } + + alarmConfSeverity OBJECT-TYPE + SYNTAX INTEGER { + critical(1), + major(2), + minor(3), + info(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Alarm severity" + ::= { alarmConfEntry 4 } + + alarmConfClearable OBJECT-TYPE + SYNTAX INTEGER { + clearable(1), + unclearable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting the object to one indicates that the alarm is to be cleared when user submits alarm clear." + ::= { alarmConfEntry 5 } + +-- Alarm Current Table + + alarmCurrTable OBJECT-TYPE + SYNTAX SEQUENCE OF AlarmCurrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes current alarm information." + ::= { alarmconf 3 } + + alarmCurrEntry OBJECT-TYPE + SYNTAX AlarmCurrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in alarmCurrTable." + INDEX { alarmCurrIndex } + ::= { alarmCurrTable 1 } + + AlarmCurrEntry ::= + SEQUENCE { + alarmCurrIndex INTEGER, + alarmCurrOccurTime TimeTicks, + alarmCurrTrapOid OBJECT IDENTIFIER, + alarmCurrParam1 INTEGER, + alarmCurrParam2 INTEGER, + alarmCurrParam3 INTEGER, + alarmCurrParam4 INTEGER, + alarmCurrParam5 INTEGER, + alarmCurrParam6 INTEGER, + alarmCurrParam7 INTEGER, + alarmCurrParam8 INTEGER, + alarmCurrTimeDescr DisplayString, + alarmCurrSeverity INTEGER, + alarmCurrDescr DisplayString + } + + alarmCurrIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of the alarm." + ::= { alarmCurrEntry 1 } + + alarmCurrOccurTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Alarm occurence time (in hundredths of a second) since the system was last re-initialized." + ::= { alarmCurrEntry 2 } + + alarmCurrTrapOid OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Trap OID of the alarm." + ::= { alarmCurrEntry 3 } + + alarmCurrParam1 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 1st parameter of the alarm." + ::= { alarmCurrEntry 4 } + + alarmCurrParam2 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 2nd parameter of the alarm." + ::= { alarmCurrEntry 5 } + + alarmCurrParam3 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 3rd parameter of the alarm." + ::= { alarmCurrEntry 6 } + + alarmCurrParam4 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 4th parameter of the alarm." + ::= { alarmCurrEntry 7 } + + alarmCurrParam5 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 5th parameter of the alarm." + ::= { alarmCurrEntry 8 } + + alarmCurrParam6 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 6th parameter of the alarm." + ::= { alarmCurrEntry 9 } + + alarmCurrParam7 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 7th parameter of the alarm." + ::= { alarmCurrEntry 10 } + + alarmCurrParam8 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 8th parameter of the alarm." + ::= { alarmCurrEntry 11 } + + alarmCurrTimeDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The string representation of occurence time (YYYY/MM/DD HH:MM:SS)." + ::= { alarmCurrEntry 12 } + + alarmCurrSeverity OBJECT-TYPE + SYNTAX INTEGER { + critical(1), + major(2), + minor(3), + info(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The severity of the alarm." + ::= { alarmCurrEntry 13 } + + alarmCurrDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The description of the alarm." + ::= { alarmCurrEntry 14 } + +-- Alarm Severity Port Table + + alarmSeverityPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF AlarmSeverityPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the configuration of alarm reporting severity threshold for each port." + ::= { alarmconf 4 } + + alarmSeverityPortEntry OBJECT-TYPE + SYNTAX AlarmSeverityPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in alarmSeverityPortTable." + INDEX { ifIndex } + ::= { alarmSeverityPortTable 1 } + + AlarmSeverityPortEntry ::= + SEQUENCE { + severityThresh INTEGER + } + + severityThresh OBJECT-TYPE + SYNTAX INTEGER { + critical(1), + major(2), + minor(3), + info(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The minimum alarm severity that is reported." + ::= { alarmSeverityPortEntry 1 } + +---------------------------------------- +-- diagnostic +---------------------------------------- + + selt OBJECT IDENTIFIER ::= { diagnostic 3 } + ldm OBJECT IDENTIFIER ::= { diagnostic 4 } + mlt OBJECT IDENTIFIER ::= { diagnostic 5 } + + +-------------------- +-- selt +-------------------- + + seltTarget OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IfIndex of the port which would be performed single end loopback test." + ::= { selt 1 } + + seltOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The manager sets the object to 1 to start the selt + and the agent clears the object to zero when selt is successfully completed." + ::= { selt 2 } + + seltStatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Status description of the selt result." + ::= { selt 3 } + + seltCableType OBJECT-TYPE + SYNTAX INTEGER { + awg24(1), + awg26(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The cable type that selt result indicates." + ::= { selt 4 } + + seltLoopEstimateLengthFt OBJECT-TYPE + SYNTAX INTEGER + UNITS "feet" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The estimated loop length that selt result indicates." + ::= { selt 5 } + + seltLoopEstimateLengthMeter OBJECT-TYPE + SYNTAX INTEGER + UNITS "meter" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The estimated loop length that selt result indicates." + ::= { selt 6 } + +-------------------- +-- ldm +-------------------- + + ldmTarget OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IfIndex of the port which would be performed ldm test." + ::= { ldm 1 } + + ldmOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The manager sets the object to 1 to start the ldm test + and the agent clears the object to zero when ldm test is successfully completed." + ::= { ldm 2 } + + ldmStatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Status description of ldm test result." + ::= { ldm 3 } + + ldmXtucLoopAttenuation OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Loop Attenuation." + ::= { ldm 4 } + + ldmXtucSignalAttenuation OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Signal Attenuation." + ::= { ldm 5 } + + ldmXtucSignalMargin OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Signal Margin." + ::= { ldm 6 } + + ldmXtucAggregateTxPower OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Actual Aggregate Transmit Power." + ::= { ldm 7 } + + ldmXtucAttainableBitRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "bits per second" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Attainable Bit Rate." + ::= { ldm 8 } + + ldmXturLoopAttenuation OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Loop Attenuation." + ::= { ldm 9 } + + ldmXturSignalAttenuation OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Signal Attenuation." + ::= { ldm 10 } + + ldmXturSignalMargin OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Signal Margin." + ::= { ldm 11 } + + ldmXturAggregateTxPower OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Actual Aggregate Transmit Power." + ::= { ldm 12 } + + ldmXturAttainableBitRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "bits per second" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Attainable Bit Rate." + ::= { ldm 13 } + + ldmXtucNumOfSubcarriersPerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of subcarriers per port for ATU-C." + ::= { ldm 14 } + + ldmXturNumOfSubcarriersPerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of subcarriers per port for ATU-R." + ::= { ldm 15 } + + ldmXtucHlinScale OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Scale of Hlin." + ::= { ldm 16 } + + ldmXtucHlinReal1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides real part of Hlin for the first 256 subcarriers. + Each subcarrier takes two octets to store the value." + ::= { ldm 17 } + + ldmXtucHlinReal2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides real part of Hlin for the last 256 subcarriers. + Each subcarrier takes two octets to store the value." + ::= { ldm 18 } + + ldmXtucHlinImage1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides image part of Hlin for the first 256 subcarriers. + Each subcarrier takes two octets to store the value." + ::= { ldm 19 } + + ldmXtucHlinImage2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides image part of Hlin for the last 256 subcarriers. + Each subcarrier takes two octets to store the value." + ::= { ldm 20 } + + ldmXtucHlog1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Hlog for the first 256 subcarriers. + Each subcarrier takes two octets to store the value." + ::= { ldm 21 } + + ldmXtucHlog2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Hlog for the last 256 subcarriers. + Each subcarrier takes two octets to store the value." + ::= { ldm 22 } + + ldmXtucQln1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides QLN for the first 256 subcarriers. + Each subcarrier takes two octets to store the value." + ::= { ldm 23 } + + ldmXtucQln2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides QLN for the last 256 subcarriers. + Each subcarrier takes two octets to store the value." + ::= { ldm 24 } + + ldmXtucSnr1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides SNR for the first 256 subcarriers. + Each subcarrier takes two octets to store the value." + ::= { ldm 25 } + + ldmXtucSnr2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides SNR for the last 256 subcarriers. + Each subcarrier takes two octets to store the value." + ::= { ldm 26 } + + ldmXturHlinScale OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Scale of Hlin." + ::= { ldm 27 } + + ldmXturHlinReal OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Real part of Hlin. Each subcarrier takes two octets to store the value." + ::= { ldm 28 } + + ldmXturHlinImage OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Image part of Hlin. Each subcarrier takes two octets to store the value." + ::= { ldm 29 } + + ldmXturHlog OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Hlog of subcarrier. Each subcarrier takes two octets to store the value." + ::= { ldm 30 } + + ldmXturQln OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "QLN of subcarrier. Each subcarrier takes two octets to store the value." + ::= { ldm 31 } + + ldmXturSnr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "SNR of subcarrier. Each subcarrier takes two octets to store the value." + ::= { ldm 32 } + + ldmXtucHlogGroupFactor OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Hlog group factor of ATU-C." + ::= { ldm 33 } + + ldmXtucQlnGroupFactor OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Qln group factor of ATU-C." + ::= { ldm 34 } + + ldmXtucSnrGroupFactor OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Snr group factor of ATU-C." + ::= { ldm 35 } + + ldmXturHlogGroupFactor OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Hlog group factor of ATU-R." + ::= { ldm 36 } + + ldmXturQlnGroupFactor OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Qln group factor of ATU-R." + ::= { ldm 37 } + + ldmXturSnrGroupFactor OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Snr group factor of ATU-R." + ::= { ldm 38 } + +-------------------- +-- mlt +-------------------- + + mltTarget OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IfIndex of the port which would be performed Metallic Link Test." + ::= { mlt 1 } + + mltOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The manager sets the object to 1 to start the mlt + and the agent clears the object to zero when mlt is successfully completed." + ::= { mlt 2 } + + mltOption OBJECT-TYPE + SYNTAX INTEGER { + all(1), + vac(2), + vdc(3), + rload(4), + riso(5), + cap(6), + ren(7), + ring(8), + metering(9) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "all : test all items + vac: test AC voltage + vdc: test DC voltage + rload: test load resistance + riso: test isolation resistance + cap: test capacitor + ren: test REN value + ring: test ring voltage + metering: test metering voltage" + ::= { mlt 3 } + + mltForce OBJECT-TYPE + SYNTAX INTEGER { + force(1), + notForce(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Force test even the port is in use." + ::= { mlt 4 } + + mltResult OBJECT IDENTIFIER ::= { mlt 5 } + + mltVacTip OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 rms" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 1 } + + mltVacRing OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 rms" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 2 } + + mltVacDiff OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 rms" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 3 } + + mltVdcTip OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 volt" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 4 } + + mltVdcRing OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 volt" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 5 } + + mltVdcDiff OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 volt" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 6 } + + mltRLoop OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 ohm" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 7 } + + mltRtg OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 ohm" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 8 } + + mltRrg OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 ohm" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 9 } + + mltRtr OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 ohm" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 10 } + + mltCtg OBJECT-TYPE + SYNTAX INTEGER + UNITS "10^-9 F" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 11 } + + mltCrg OBJECT-TYPE + SYNTAX INTEGER + UNITS "10^-9 F" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 12 } + + mltCtr OBJECT-TYPE + SYNTAX INTEGER + UNITS "10^-9 F" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 13 } + + mltRen OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 ren" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 14 } + + mltVRing OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 rms" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 15 } + + mltVMetering OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.1 vpeak" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 16 } + + mltDialToneDetected OBJECT-TYPE + SYNTAX INTEGER { + yes(1), + no(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 17 } + + mltDetectedDtmfCount OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 18 } + + mltDialToneDelay OBJECT-TYPE + SYNTAX INTEGER + UNITS "0.001 sec" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { mltResult 19 } + +-- mlt relay table + + mltRelayTable OBJECT-TYPE + SYNTAX SEQUENCE OF MltRelayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Perform specified MLT relay function, or turn off + MLT relay function in specified subscriber." + ::= { mlt 6 } + + mltRelayEntry OBJECT-TYPE + SYNTAX MltRelayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of mltRelayTable." + INDEX { ifIndex } + ::= { mltRelayTable 1 } + + MltRelayEntry ::= + SEQUENCE { + mltRelaySet INTEGER + } + + mltRelaySet OBJECT-TYPE + SYNTAX INTEGER { + in(1), + out(2), + both(3), + off(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "By default, relay function is turned off." + ::= { mltRelayEntry 1 } + + +---------------------------------------- +-- multicast +---------------------------------------- +-- Obsoleted in calix MRD20 since Revision 1.20 at 2009/06/25 by niceguy +-- Object mcastBandwidth, igmpCount below is kept for R1.x below. Not used for R2.x and above. + + mcastBandwidth OBJECT IDENTIFIER ::= { multicast 4 } + igmpCount OBJECT IDENTIFIER ::= { multicast 5 } + mvlan OBJECT IDENTIFIER ::= { multicast 6 } + queryVid OBJECT IDENTIFIER ::= { multicast 7 } + igmpTimer OBJECT IDENTIFIER ::= { multicast 11 } + auditQuery OBJECT IDENTIFIER ::= { multicast 12 } + igmpProfile OBJECT IDENTIFIER ::= { multicast 13 } + + igmpEnable OBJECT-TYPE + SYNTAX INTEGER { + enableProxy(1), + enableSnooping(2), + disable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable IGMP protocol." + ::= { multicast 1 } + + igmpVersion OBJECT-TYPE + SYNTAX INTEGER { + v2(1), + v3(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting IGMP version." + ::= { multicast 9 } + + igmpLeaveMode OBJECT-TYPE + SYNTAX INTEGER { + immediateLeave(1), + lastMemberQuery(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure IGMP leave message handling mode." + ::= { multicast 10 } + +-------------------- +-- bandwidth +-------------------- +-- removed in calix MRD20 +-- To support multiple version of E5-1xx (Currently R1.x and R2.x), we keep all those useful entries in the MIB + mcastDefaultBandwidth OBJECT-TYPE + SYNTAX INTEGER (1..100000) + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Default bandwidth requirement for a multicast channel." + ::= { mcastBandwidth 1 } + + maxNumOfMcastBw OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of row entries that user can create in mcastBwTable." + ::= { mcastBandwidth 2 } + +-- mcastBwTable + mcastBwTable OBJECT-TYPE + SYNTAX SEQUENCE OF McastBwEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table defines bandwidth budget for a range of multicast IP channels." + ::= { mcastBandwidth 3 } + + mcastBwEntry OBJECT-TYPE + SYNTAX McastBwEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of mcastBwTable." + INDEX { mcastBwIndex, mcastBwStartIp, mcastBwEndIp } + ::= { mcastBwTable 1 } + + McastBwEntry ::= + SEQUENCE { + mcastBwIndex INTEGER, + mcastBwStartIp IpAddress, + mcastBwEndIp IpAddress, + mcastBwBandwidth INTEGER, + mcastBwRowStatus RowStatus + } + + mcastBwIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index which specify the entry." + ::= { mcastBwEntry 1 } + + mcastBwStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The start multicast IP of the bandwidth control range." + ::= { mcastBwEntry 2 } + + mcastBwEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The end multicast IP of the bandwidth control range." + ::= { mcastBwEntry 3 } + + mcastBwBandwidth OBJECT-TYPE + SYNTAX INTEGER + UNITS "Kbps" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The bandwidth budget for the multicast IP channels." + ::= { mcastBwEntry 4 } + + mcastBwRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the entry." + ::= { mcastBwEntry 5 } + +-- mcastBwPortTable + + mcastBwPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF McastBwPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table specify the multicast bandwidth control of the port." + ::= { mcastBandwidth 4 } + + mcastBwPortEntry OBJECT-TYPE + SYNTAX McastBwPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of mcastBwPortTable." + INDEX { ifIndex } + ::= { mcastBwPortTable 1 } + + McastBwPortEntry ::= + SEQUENCE { + mcastBwPortEnable INTEGER, + mcastBwPortBandwidth INTEGER + } + + mcastBwPortEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable multicast bandwidth control for a port." + ::= { mcastBwPortEntry 1 } + + mcastBwPortBandwidth OBJECT-TYPE + SYNTAX INTEGER + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set bandwidth threshold for a port." + ::= { mcastBwPortEntry 2 } + +-------------------- +-- igmpCount +-------------------- +-- removed in calix MRD20 +-- To support multiple version of E5-1xx (Currently R1.x and R2.x), we keep all those useful entries in the MIB + igmpCountPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpCountPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table specify the IGMP count limiting of the port." + ::= { igmpCount 1 } + + igmpCountPortEntry OBJECT-TYPE + SYNTAX IgmpCountPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of igmpCountPortTable." + INDEX { ifIndex } + ::= { igmpCountPortTable 1 } + + IgmpCountPortEntry ::= + SEQUENCE { + igmpCountPortEnable INTEGER, + igmpCountPortLimit INTEGER + } + + igmpCountPortEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable IGMP count limiting for a port." + ::= { igmpCountPortEntry 1 } + + igmpCountPortLimit OBJECT-TYPE + SYNTAX INTEGER (0..16) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum allowed IGMP report count for a port." + ::= { igmpCountPortEntry 2 } + +-------------------- +-- mvlan +-------------------- + + maxNumOfMvlan OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of row entries that user can create in mvlanTable." + ::= { mvlan 1 } + +-- mvlanTable + + mvlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF MvlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing static configuration information for + each multicast VLAN configured into the device." + ::= { mvlan 2 } + + mvlanEntry OBJECT-TYPE + SYNTAX MvlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of mvlanTable." + INDEX { mvlanIndex } + ::= { mvlanTable 1 } + + MvlanEntry ::= + SEQUENCE { + mvlanIndex VlanIndex, + mvlanName DisplayString, + mvlanEgressPorts PortList, + mvlanUntaggedPorts PortList, + mvlanRowStatus RowStatus + } + + mvlanIndex OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The VLAN-ID refering to this VLAN." + ::= { mvlanEntry 1 } + + mvlanName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "An administratively assigned string, which may be used to identify the VLAN." + ::= { mvlanEntry 2 } + + mvlanEgressPorts 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 multicast VLAN." + ::= { mvlanEntry 3 } + + mvlanUntaggedPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The set of ports which should transmit egress packets + for this multicast VLAN as untagged." + ::= { mvlanEntry 4 } + + mvlanRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { mvlanEntry 5 } + +-- mvlanTranslateTable + + mvlanTranslateTable OBJECT-TYPE + SYNTAX SEQUENCE OF MvlanTranslateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains multicast to VLAN translation." + ::= { mvlan 3 } + + mvlanTranslateEntry OBJECT-TYPE + SYNTAX MvlanTranslateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of mvlanTranslateTable." + INDEX { dot1qVlanIndex, mvlanTranslateIndex } + ::= { mvlanTranslateTable 1 } + + MvlanTranslateEntry ::= + SEQUENCE { + mvlanTranslateIndex INTEGER, + mvlanTranslateStartIp IpAddress, + mvlanTranslateEndIp IpAddress + } + + mvlanTranslateIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index which specif the entry." + ::= { mvlanTranslateEntry 1 } + + mvlanTranslateStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The start IP of the multicast VLAN translation." + ::= { mvlanTranslateEntry 2 } + + mvlanTranslateEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The end IP of the multicast VLAN translation." + ::= { mvlanTranslateEntry 3 } + +-------------------- +-- queryVid +-------------------- + + maxNumOfQryVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of row entries that user can create in qryVidConfTable." + ::= { queryVid 1 } + +-- qryVidConfTable + + qryVidConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF QryVidConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table defines statically set VLANs used for response IGMP report." + ::= { queryVid 2 } + + qryVidConfEntry OBJECT-TYPE + SYNTAX QryVidConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in qryVidConfTable." + INDEX { qryVid } + ::= { qryVidConfTable 1 } + + QryVidConfEntry ::= + SEQUENCE { + qryVid INTEGER, + qryVidRowStatus RowStatus + } + + qryVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VLAN ID." + ::= { qryVidConfEntry 1 } + + qryVidRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { qryVidConfEntry 2 } + +-- qryVidStatusTable + + qryVidStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF QryVidStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table shows statically set or dynamically learned VLANs used for response IGMP report." + ::= { queryVid 3 } + + qryVidStatusEntry OBJECT-TYPE + SYNTAX QryVidStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in qryVidStatusTable." + INDEX { qryVid } + ::= { qryVidStatusTable 1 } + + QryVidStatusEntry ::= + SEQUENCE { + qryVidType INTEGER + } + + qryVidType OBJECT-TYPE + SYNTAX INTEGER { + static(1), + dynamic(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VLAN type." + ::= { qryVidStatusEntry 1 } + +-------------------- +-- igmpTimer +-------------------- + + igmpQryInterval OBJECT-TYPE + SYNTAX INTEGER (10..1000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IGMP query interval, 10~1000 in seconds." + ::= { igmpTimer 1 } + + igmpRobust OBJECT-TYPE + SYNTAX INTEGER (1..5) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IGMP query Robustness, 1~5." + ::= { igmpTimer 2 } + + igmpQryRespInterval OBJECT-TYPE + SYNTAX INTEGER (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IGMP query response interval, 1~100 in 100 milliseconds." + ::= { igmpTimer 3 } + + igmpLastMemQryInterval OBJECT-TYPE + SYNTAX INTEGER (1..5) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IGMP Last Member Query interval, 1~5 in 100 milliseconds." + ::= { igmpTimer 4 } + + igmpLastMemQryRobust OBJECT-TYPE + SYNTAX INTEGER (1..5) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set Last Member Query Robustness, 1~5." + ::= { igmpTimer 5 } + +-------------------- +-- auditQuery +-------------------- + + auditQryEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable IGMP audit query." + ::= { auditQuery 1 } + + auditQryInterval OBJECT-TYPE + SYNTAX INTEGER (1..4) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IGMP Audit Query Interval, 1~4 in 100 milliseconds." + ::= { auditQuery 2 } + + auditQryRobust OBJECT-TYPE + SYNTAX INTEGER (1..5) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IGMP Audit Query Robustness, 1~5." + ::= { auditQuery 3 } + +-------------------- +-- igmpProfile +-------------------- + + maxNumberOfIgmpProfiles OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of IGMP profiles in the system." + ::= { igmpProfile 1 } + + igmpProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains IGMP Profiles." + ::= { igmpProfile 2 } + + igmpProfileEntry OBJECT-TYPE + SYNTAX IgmpProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of IGMP Profile table." + INDEX {IMPLIED igmpProfileName } + ::= { igmpProfileTable 1 } + + IgmpProfileEntry ::= + SEQUENCE { + igmpProfileName DisplayString, + igmpProfileEnable INTEGER, + igmpProfileMaxGroup INTEGER, + igmpProfileRowStatus RowStatus + } + + igmpProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IGMP Profile name." + ::= { igmpProfileEntry 1 } + + igmpProfileEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable IGMP Profile." + ::= { igmpProfileEntry 2 } + + igmpProfileMaxGroup OBJECT-TYPE + SYNTAX INTEGER (1..64) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set maximum allowed multicast group, 1~64." + ::= { igmpProfileEntry 3 } + + igmpProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the IGMP Profile entry." + ::= { igmpProfileEntry 4 } + + igmpFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains IGMP Filters." + ::= { igmpProfile 3 } + + igmpFilterEntry OBJECT-TYPE + SYNTAX IgmpFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of IGMP Filter table." + INDEX { igmpProfileName, igmpFilterIndex } + ::= { igmpFilterTable 1 } + + IgmpFilterEntry ::= + SEQUENCE { + igmpFilterIndex INTEGER, + igmpFilterStartIp IpAddress, + igmpFilterEndIp IpAddress + } + + igmpFilterIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index which specifies the filter rule." + ::= { igmpFilterEntry 1 } + + igmpFilterStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The start IP of the filter rule." + ::= { igmpFilterEntry 2 } + + igmpFilterEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The end IP of the filter rule." + ::= { igmpFilterEntry 3 } + + igmpProfilePortTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpProfilePortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table specifies the IGMP Profile of the port." + ::= { igmpProfile 4 } + + igmpProfilePortEntry OBJECT-TYPE + SYNTAX IgmpProfilePortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in igmpProfilePortTable." + INDEX { ifIndex } + ::= { igmpProfilePortTable 1 } + + IgmpProfilePortEntry ::= + SEQUENCE { + igmpProfilePortProfile OCTET STRING + } + + igmpProfilePortProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IGMP Profile of the port." + ::= { igmpProfilePortEntry 1 } + + + +---------------------------------------- +-- port +---------------------------------------- +-- Since we define it latter, mark the definition here +-- subrPortTable OBJECT IDENTIFIER ::= { port 1 } +-- adslPort OBJECT IDENTIFIER ::= { port 2 } + vdslPort OBJECT IDENTIFIER ::= { port 3 } + pvc OBJECT IDENTIFIER ::= { port 4 } +-- ppvc OBJECT IDENTIFIER ::= { port 5 } + rpvc OBJECT IDENTIFIER ::= { port 8 } +-- Since we define it latter, mark the definition here +-- dsBcastDisableTable OBJECT IDENTIFIER ::= { port 9 } + paepvc OBJECT IDENTIFIER ::= { port 10 } + tlspvc OBJECT IDENTIFIER ::= { port 11 } +-- ipbpvc OBJECT IDENTIFIER ::= { port 12 } + dtpvc OBJECT IDENTIFIER ::= { port 13 } + voipPort OBJECT IDENTIFIER ::= { port 14 } + snrMgn OBJECT IDENTIFIER ::= { port 15 } + dslRate OBJECT IDENTIFIER ::= { port 16 } +-- G.bond start from 51 + gbond OBJECT IDENTIFIER ::= { port 51 } +-- Subscriber Port Table + + subrPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF SubrPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes subscriber attributes for the port." + ::= { port 1 } + + subrPortEntry OBJECT-TYPE + SYNTAX SubrPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in subrPortTable." + INDEX { ifIndex } + ::= { subrPortTable 1 } + + SubrPortEntry ::= + SEQUENCE { + subrPortName DisplayString, + subrPortTel DisplayString + } + + subrPortName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Name of the subscriber." + ::= { subrPortEntry 1 } + + subrPortTel OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..15)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Telephone number of the subscriber." + ::= { subrPortEntry 2 } + +-------------------- +-- vdslPort +-------------------- + +-- VDSL Line Table + + vdslLineConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslLineConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes common attributes describing the VDSL line. + This table is supported by R2.00 and later versions." + ::= { vdslPort 1 } + + vdslLineConfEntry OBJECT-TYPE + SYNTAX VdslLineConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in vdslLineConfTable." + INDEX { ifIndex } + ::= { vdslLineConfTable 1 } + + VdslLineConfEntry ::= + SEQUENCE { + vdslLineConfUpbo INTEGER, + vdslLineConfVdslProfile INTEGER, +-- vdslLineConfFrequencyPlan INTEGER, + vdslLineConfRfiBand INTEGER, + vdslLineConfIpqosProfile DisplayString, + vdslLineConfVturInp INTEGER, + vdslLineConfVtucInp INTEGER, + vdslLineConfOptionMask INTEGER, + vdslLineConfUpboForceLength INTEGER, + vdslLineConfPsdShape INTEGER, + vdslLineConfDpbo INTEGER, + vdslLineConfDpboParamEsel INTEGER, + vdslLineConfDpboParamEscma INTEGER, + vdslLineConfDpboParamEscmb INTEGER, + vdslLineConfDpboParamEscmc INTEGER, + vdslLineConfDpboParamMus INTEGER, + vdslLineConfDpboParamFmin INTEGER, + vdslLineConfDpboParamFmax INTEGER, + vdslLineConfDpboParamPsdId INTEGER +-- vdslLineConfPMask INTEGER + } + + vdslLineConfUpbo OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable upstream power backoff control." + ::= { vdslLineConfEntry 1 } + + vdslLineConfVdslProfile OBJECT-TYPE + SYNTAX INTEGER { + vdsl8a(1), + vdsl8b(2), + vdsl8c(3), + vdsl8d(4), + vdsl12a(5), + vdsl12b(6), + vdsl17a(7), + auto(8), + adsl2plus(9), + vdsl2(10), + gdmt(11), + glite(12), + adsl2(13), + t1413(14), + vdsl2adsl2(15), + vdsl2gdmt(16), + vdsl2glite(17), + vdsl2t1413(18) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set VDSL profile." + ::= { vdslLineConfEntry 2 } + +-- vdslLineConfFrequencyPlan OBJECT-TYPE +-- SYNTAX INTEGER { +-- plan997(1), +-- plan998(2) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Set VDSL frequency plan." +-- ::= { vdslLineConfEntry 3 } + + vdslLineConfRfiBand OBJECT-TYPE + SYNTAX INTEGER { + disable(1), + ansi(2), + etsi(3), + custom(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set VDSL customized RFI configuration. + disable: not apply RFI notch to port + ansi: use pre-defined ANSI RFI notch + etsi: use pre-defined ETSI notch + custom: user needs to define customized RFI notch band through vdslRfiCustomTable" + ::= { vdslLineConfEntry 4 } + + vdslLineConfIpqosProfile OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { vdslLineConfEntry 5 } + + vdslLineConfVturInp OBJECT-TYPE + SYNTAX INTEGER (0..160) + UNITS "0.1 DTM symbol" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VTUR minimum INP value" + ::= { vdslLineConfEntry 6 } + + vdslLineConfVtucInp OBJECT-TYPE + SYNTAX INTEGER (0..160) + UNITS "0.1 DTM symbol" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VTUC mimimum INT value" + ::= { vdslLineConfEntry 7 } + + vdslLineConfOptionMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + Bit1: disable Trellis coding in ADSL mode + Bit2: disable Reed-Solomon coding for ADSL + Bit3: disable upstream bitswaps + Bit4: disable downstream bitwaps + Bit5: disable upstream 1-bit constellation support + Bit6: disable the transmit windowing in ADSL2+ mode + Bit7: disable S=0.5 support in G.dmt + Bit8: reserved + Bit9: enable nitro + Bit10: enable ADSL2 Annex L + Bit11: enable ADSL2+ Annex M + Bit12: enable US PTM optimization + Bit13: enable DS PTM optimization + Bit14: enable US PHYR + Bit15: enable DS PHYR" + ::= { vdslLineConfEntry 8 } + + vdslLineConfUpboForceLength OBJECT-TYPE + SYNTAX INTEGER (-5..1270) + UNITS "0.1dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-1 means max(kl0_CO,kl0_CPE). + -2 means min(kl0_CO,kl0_CPE). + -3 means kl0_CO. + -4 means kl0_CPE. + -5 means kl0_CPE + delta as calculated from. + " + ::= { vdslLineConfEntry 9 } + + vdslLineConfPsdShape OBJECT-TYPE + SYNTAX INTEGER { + vdsl2aNus0(1), + vdsl2aEu32(2), + vdsl2aEu36(3), + vdsl2aEu40(4), + vdsl2aEu44(5), + vdsl2aEu48(6), + vdsl2aEu52(7), + vdsl2aEu56(8), + vdsl2aEu60(9), + vdsl2aEu64(10), + vdsl2aEu128(11), + vdsl1fttexAnsiM1(12), + vdsl1fttexAnsiM2(13), + vdsl1fttcabAnsiM1(14), + vdsl1fttcabAnsiM2(15), + vdsl1fttexAnsiM1E(16), + vdsl1fttexAnsiM2E(17), + vdslFttcabAnsiM1E(18), + vdslFttcabAnsiM2E(19), + vdsl2aCt(20), + vdsl2b8x1(21), + vdsl2b8x2(22), + vdsl2b8x3(23), + vdsl2b8x4(24), + vdsl2b8x5(25), + vdsl2b8x6(26), + vdsl2b8x7(27), + vdsl2b8x8(28), + vdsl2b8x9(29), + vdsl2b8x10(30), + vdsl2b8x11(31), + vdsl2b8x12(32), + vdsl2b8x13(33), + vdsl2b8x14(34), + vdsl2b8x15(35), + vdsl2b8x16(36), + vdsl2b7x1(37), + vdsl2b7x2(38), + vdsl2b7x3(39), + vdsl2b7x4(40), + vdsl2b7x5(41), + vdsl2b7x6(42), + vdsl2b7x7(43), + vdsl2b7x8(44), + vdsl2b7x9(45), + vdsl2b7x10(46), + vdsl2btAnfp(47), + vdsl2c138b(48), + vdsl2c276b(49), + vdsl2c138co(50), + vdsl2c276co(51), + vdsl2cTcmisdn(52), + vdsl1QAMCompatible(53) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "PSD mask type" + ::= { vdslLineConfEntry 10 } + + vdslLineConfDpbo OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/Disable DPBO" + ::= { vdslLineConfEntry 11 } + + vdslLineConfDpboParamEsel OBJECT-TYPE + SYNTAX INTEGER (0..511) + UNITS "0.5dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DPBO ESEL parameter" + ::= { vdslLineConfEntry 12 } + + vdslLineConfDpboParamEscma OBJECT-TYPE + SYNTAX INTEGER (0..640) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DPBO ESCMA parameter -1~1.5 in step of 1/256." + ::= { vdslLineConfEntry 13 } + + vdslLineConfDpboParamEscmb OBJECT-TYPE + SYNTAX INTEGER (0..640) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DPBO ESCMB parameter -1~1.5 in step of 1/256." + ::= { vdslLineConfEntry 14 } + + vdslLineConfDpboParamEscmc OBJECT-TYPE + SYNTAX INTEGER (0..640) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DPBO ESCMC parameter -1~1.5 in step of 1/256." + ::= { vdslLineConfEntry 15 } + + vdslLineConfDpboParamMus OBJECT-TYPE + SYNTAX INTEGER (0..255) + UNITS "-0.5 dBm/Hz" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DPBO MUS parameter." + ::= { vdslLineConfEntry 16 } + + vdslLineConfDpboParamFmin OBJECT-TYPE + SYNTAX INTEGER (0..2048) + UNITS "4.3125kHz" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DPBO FMIN parameter" + ::= { vdslLineConfEntry 17 } + + vdslLineConfDpboParamFmax OBJECT-TYPE + SYNTAX INTEGER (32..6956) + UNITS "4.3125kHz" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DPBO FMAX parameter" + ::= { vdslLineConfEntry 18 } + + vdslLineConfDpboParamPsdId OBJECT-TYPE + SYNTAX INTEGER { + unknown(0), + psdCo(1), + psdFlat(2), + psdCabAnsi(3), + psdCabEtsi(4), + psdExchEtsi(5), + psdExchAnsi(6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Valid range for setting is 1~6." + ::= { vdslLineConfEntry 19 } + +-- vdslLineConfPMask OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- " +-- Bit1: G.DMT (G.992.1) +-- Bit2: G.LITE (G.992.2) +-- Bit3: ADSL2 (G.992.3) +-- Bit5: ADSL2+ (G.992.5) +-- Bit6: ANSI T1.413 +-- Bit8: G.993.2 VDSL profile 8a +-- Bit9: G.993.2 VDSL profile 8b +-- Bit10: G.993.2 VDSL profile 8c +-- Bit11: G.993.2 VDSL profile 8d +-- Bit12: G.993.2 VDSL profile 12a +-- Bit13: G.993.2 VDSL profile 12b +-- Bit14: G.993.2 VDSL profile 17a" +-- ::= { vdslLineConfEntry 20 } + + vdslVlan OBJECT IDENTIFIER ::= { vdslPort 2 } + +-- vdslPortConfTable + + vdslPortConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslPortConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes common attributes describing the VDSL port. + This table is supported by R2.00 and later versions." + ::= { vdslVlan 1 } + + vdslPortConfEntry OBJECT-TYPE + SYNTAX VdslPortConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in vdslPortConfTable." + INDEX { ifIndex } + ::= { vdslPortConfTable 1 } + + VdslPortConfEntry ::= + SEQUENCE { +-- vdslPortConfPvid VlanIndex, +-- vdslPortConfPriority INTEGER, +-- vdslPortConfAcceptableFrameType INTEGER, + vdslPortConfTlsEnable INTEGER, + vdslPortConfTlsVid VlanIndex, + vdslPortConfTlsPriority INTEGER, + vdslPortConfDtEnable INTEGER, + vdslPortConfDtSVid VlanIndex, + vdslPortConfDtSPriority INTEGER, + vdslPortConfDtCVid VlanIndex, + vdslPortConfDtCPriority INTEGER + } + +-- vdslPortConfPvid OBJECT-TYPE +-- SYNTAX VlanIndex +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The PVID, the VLAN ID assigned to untagged frames or +-- Priority-Tagged frames received on this port." +-- ::= { vdslPortConfEntry 1 } +-- +-- vdslPortConfPriority OBJECT-TYPE +-- SYNTAX INTEGER (0..7) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The default ingress User Priority for this port." +-- ::= { vdslPortConfEntry 2 } +-- +-- vdslPortConfAcceptableFrameType OBJECT-TYPE +-- SYNTAX INTEGER { +-- admitAll(1), +-- admitOnlyVlanTagged(2) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "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 Priority-Tagged frames received on this port +-- will be accepted and assigned to the PVID for this port" +-- ::= { vdslPortConfEntry 3 } + + vdslPortConfTlsEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable the transparent LAN service." + ::= { vdslPortConfEntry 4 } + + vdslPortConfTlsVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The transparent LAN service s-tag VID." + ::= { vdslPortConfEntry 5 } + + vdslPortConfTlsPriority OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The transparent LAN service s-tag priority." + ::= { vdslPortConfEntry 6 } + + vdslPortConfDtEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable the Double Tagging service." + ::= { vdslPortConfEntry 7 } + + vdslPortConfDtSVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Double Tagging service s-tag VID." + ::= { vdslPortConfEntry 8 } + + vdslPortConfDtSPriority OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Double Tagging service s-tag priority." + ::= { vdslPortConfEntry 9 } + + vdslPortConfDtCVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Double Tagging service c-tag VID." + ::= { vdslPortConfEntry 10 } + + vdslPortConfDtCPriority OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Double Tagging service c-tag priority." + ::= { vdslPortConfEntry 11 } + +-- vdslPortVlanTranslateTable + vdslPortVlanTranslateTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslPortVlanTranslateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains VLAN translation." + ::= { vdslVlan 2 } + + vdslPortVlanTranslateEntry OBJECT-TYPE + SYNTAX VdslPortVlanTranslateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in vdslPortVlanTranslateTable." + INDEX { ifIndex , vdslPortVlanTranslateVpi , vdslPortVlanTranslateVci , vdslPortVlanTranslateCvid } + ::= { vdslPortVlanTranslateTable 1 } + + VdslPortVlanTranslateEntry ::= + SEQUENCE { + vdslPortVlanTranslateVpi INTEGER, + vdslPortVlanTranslateVci INTEGER, + vdslPortVlanTranslateCxvid VlanIndex, + vdslPortVlanTranslateCvid VlanIndex, + vdslPortVlanTranslateSvid VlanIndex, + vdslPortVlanTranslateDsonly INTEGER, + vdslPortVlanTranslateRowStatus RowStatus + } + + vdslPortVlanTranslateVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the vtt." + ::= { vdslPortVlanTranslateEntry 1 } + + vdslPortVlanTranslateVci OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the vtt." + ::= { vdslPortVlanTranslateEntry 2 } + + vdslPortVlanTranslateCxvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CXVID of the vtt." + ::= { vdslPortVlanTranslateEntry 3 } + + vdslPortVlanTranslateCvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CVID of the vtt." + ::= { vdslPortVlanTranslateEntry 4 } + + vdslPortVlanTranslateSvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "SVID of the vtt." + ::= { vdslPortVlanTranslateEntry 5 } + + vdslPortVlanTranslateDsonly OBJECT-TYPE + SYNTAX INTEGER (1..2) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Donwstream direction only of the vtt." + ::= { vdslPortVlanTranslateEntry 6 } + + vdslPortVlanTranslateRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { vdslPortVlanTranslateEntry 7 } + +-- vdslPortVlanTable + +-- vdslPortVlanTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF VdslPortVlanEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "This table includes common attributes describing the VDSL port. +-- This table is supported by R2.00 and later versions." +-- ::= { vdslVlan 2 } +-- +-- vdslPortVlanEntry OBJECT-TYPE +-- SYNTAX VdslPortVlanEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry in vdslPortVlanTable." +-- INDEX { ifIndex, dot1qVlanIndex } +-- ::= { vdslPortVlanTable 1 } +-- +-- VdslPortVlanEntry ::= +-- SEQUENCE { +-- vdslPortVlanReg INTEGER, +-- vdslPortVlanTag INTEGER, +-- vdslPortVlanRowStatus RowStatus +-- } +-- +-- vdslPortVlanReg OBJECT-TYPE +-- SYNTAX INTEGER { +-- egress(1), +-- forbidden(2) +-- } +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "The port is egress or forbidden for this VLAN." +-- ::= { vdslPortVlanEntry 1 } +-- +-- vdslPortVlanTag OBJECT-TYPE +-- SYNTAX INTEGER { +-- tag(1), +-- untag(2) +-- } +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "The port should transmit egress packets for this VLAN as tagged or untagged." +-- ::= { vdslPortVlanEntry 2 } +-- +-- vdslPortVlanRowStatus OBJECT-TYPE +-- SYNTAX RowStatus +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "This object is used to create a new row or delete an existing row in this table." +-- ::= { vdslPortVlanEntry 3 } + +-- vdslVlanStaticTable + +-- vdslVlanStaticTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF VdslVlanStaticEntry +-- 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. +-- This table is supported by R2.00 and later versions." +-- ::= { vdslVlan 3 } +-- +-- vdslVlanStaticEntry OBJECT-TYPE +-- SYNTAX VdslVlanStaticEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry in vdslVlanStaticTable." +-- INDEX { dot1qVlanIndex } +-- ::= { vdslVlanStaticTable 1 } +-- +-- VdslVlanStaticEntry ::= +-- SEQUENCE { +-- vdslVlanStaticEgressPorts PortList, +-- vdslVlanStaticUntaggedPorts PortList, +-- vdslVlanStaticRowStatus RowStatus +-- } +-- +-- vdslVlanStaticEgressPorts 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." +-- ::= { vdslVlanStaticEntry 1 } +-- +-- vdslVlanStaticUntaggedPorts 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." +-- ::= { vdslVlanStaticEntry 2 } +-- +-- vdslVlanStaticRowStatus OBJECT-TYPE +-- SYNTAX RowStatus +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "This object indicates the status of this entry." +-- ::= { vdslVlanStaticEntry 3 } + +-- vdslPortPvlanTable + + vdslPortPvlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslPortPvlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Protocol VLAN configuration table." + ::= { vdslVlan 4 } + + vdslPortPvlanEntry OBJECT-TYPE + SYNTAX VdslPortPvlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in vdslPortPvlanTable." + INDEX { ifIndex, vdslPortPvlanEtype } + ::= { vdslPortPvlanTable 1 } + + VdslPortPvlanEntry ::= + SEQUENCE { + vdslPortPvlanEtype Unsigned32, + vdslPortPvlanVid VlanIndex, + vdslPortPvlanPriority INTEGER, + vdslPortPvlanRowStatus RowStatus + } + + vdslPortPvlanEtype OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0~0xffff." + ::= { vdslPortPvlanEntry 1 } + + vdslPortPvlanVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "" + ::= { vdslPortPvlanEntry 2 } + + vdslPortPvlanPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "" + ::= { vdslPortPvlanEntry 3 } + + vdslPortPvlanRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "" + ::= { vdslPortPvlanEntry 4 } + +-- VDSL RFI Custom Table + + vdslRfiCustomTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslRfiCustomEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes VDSL customized RFI configuration. + This table is supported by R2.00 and later versions." + ::= { vdslPort 3 } + + vdslRfiCustomEntry OBJECT-TYPE + SYNTAX VdslRfiCustomEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in vdslRfiCustomTable." + INDEX { vdslRfiCustomIndex } + ::= { vdslRfiCustomTable 1 } + + VdslRfiCustomEntry ::= + SEQUENCE { + vdslRfiCustomIndex INTEGER, + vdslRfiCustomStartFreq INTEGER, + vdslRfiCustomEndFreq INTEGER, + vdslRfiCustomEnable INTEGER + } + + vdslRfiCustomIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of the table." + ::= { vdslRfiCustomEntry 1 } + + vdslRfiCustomStartFreq OBJECT-TYPE + SYNTAX INTEGER + UNITS "KHz" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The start value of the customized frequency range." + ::= { vdslRfiCustomEntry 2 } + + vdslRfiCustomEndFreq OBJECT-TYPE + SYNTAX INTEGER + UNITS "KHz" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The end value of the customized frequency range." + ::= { vdslRfiCustomEntry 3 } + + vdslRfiCustomEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable the customized frequency range setting." + ::= { vdslRfiCustomEntry 4 } + +-- vdslLineConfUpboParamTable + + vdslLineConfUpboParamTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslLineConfUpboParamEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes VDSL UPBO configuration." + ::= { vdslPort 4 } + + vdslLineConfUpboParamEntry OBJECT-TYPE + SYNTAX VdslLineConfUpboParamEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in vdslLineConfUpboParamTable." + INDEX { ifIndex,vdslLineConfUpboParamBand } + ::= { vdslLineConfUpboParamTable 1 } + + VdslLineConfUpboParamEntry ::= + SEQUENCE { + vdslLineConfUpboParamBand INTEGER, + vdslLineConfUpboParamA INTEGER, + vdslLineConfUpboParamB INTEGER + } + + vdslLineConfUpboParamBand OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of the table." + ::= { vdslLineConfUpboParamEntry 1 } + + vdslLineConfUpboParamA OBJECT-TYPE + SYNTAX INTEGER (4000..8095) + UNITS "0.01 dBm/Hz" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { vdslLineConfUpboParamEntry 2 } + + vdslLineConfUpboParamB OBJECT-TYPE + SYNTAX INTEGER (0..4095) + UNITS "0.01 dBm/Hz" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { vdslLineConfUpboParamEntry 3 } + +-- vdslLineConfDpboTable + + vdslLineConfDpboTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslLineConfDpboEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes VDSL DPBO configuration." + ::= { vdslPort 5 } + + vdslLineConfDpboEntry OBJECT-TYPE + SYNTAX VdslLineConfDpboEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in vdslLineConfDpboTable." + INDEX { ifIndex, vdslLineConfDpboIndex } + ::= { vdslLineConfDpboTable 1 } + + VdslLineConfDpboEntry ::= + SEQUENCE { + vdslLineConfDpboIndex INTEGER, + vdslLineConfDpboTone INTEGER, + vdslLineConfDpboPsd INTEGER + } + + vdslLineConfDpboIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of the table." + ::= { vdslLineConfDpboEntry 1 } + + vdslLineConfDpboTone OBJECT-TYPE + SYNTAX INTEGER (1..512) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { vdslLineConfDpboEntry 2 } + + vdslLineConfDpboPsd OBJECT-TYPE + SYNTAX INTEGER (0..255) + UNITS "-0.5dBm/Hz" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { vdslLineConfDpboEntry 3 } + +-------------------- +-- pvc +-------------------- + + maxNumOfPvcs OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of PVCs which could be created on a port." + ::= { pvc 1 } + +-- PVC Table + + pvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF PvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes PVC configuration." + ::= { pvc 2 } + + pvcEntry OBJECT-TYPE + SYNTAX PvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in pvcTable." + INDEX { ifIndex, pvcVpi, pvcVci, pvcPvid } + ::= { pvcTable 1 } + + PvcEntry ::= + SEQUENCE { + -- Common -- + pvcVpi INTEGER, + pvcVci INTEGER, + pvcPvid VlanIndex, + pvcPriority INTEGER, + pvcProfile DisplayString, + pvcAuto INTEGER, + + -- Only for pvc -- + pvcEncap INTEGER, + + -- Only for paepvc -- + pvcAcName DisplayString, + pvcServiceName DisplayString, + pvcHelloTime INTEGER, + + -- Other -- + pvcRowStatus RowStatus + } + + -- Common -- + pvcVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the pvc." + ::= { pvcEntry 1 } + + pvcVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the pvc." + ::= { pvcEntry 2 } + + pvcPvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default VID of the pvc." + ::= { pvcEntry 3 } + + + pvcPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "802.1p default priority of the pvc." + ::= { pvcEntry 5 } + + pvcProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row in the ipqosProfileTable. + " + ::= { pvcEntry 6 } + + pvcAuto OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable/disable auto detection for PPPoE/PPPoA encapsulation." + ::= { pvcEntry 14 } + + -- Only for PVC -- + pvcEncap OBJECT-TYPE + SYNTAX INTEGER { + llc(1), + vc(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Encapsulation of the pvc." + ::= { pvcEntry 7 } + + -- Other -- + pvcRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { pvcEntry 8 } + + -- Only for PAEPVC -- + pvcAcName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Access concentrator name for paepvc." + ::= { pvcEntry 11 } + + pvcServiceName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Service name for paepvc." + ::= { pvcEntry 12 } + + pvcHelloTime OBJECT-TYPE + SYNTAX INTEGER + UNITS "second" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The system will close the PVC if there are not any LCP echo messages passed through during the LCP hello time." + ::= { pvcEntry 13 } + +-- PVC state -- + pvcStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF PvcStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table show current PVC status." + ::= { pvc 3 } + + pvcStateEntry OBJECT-TYPE + SYNTAX PvcStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in pvcStateTable." + INDEX { ifIndex, pvcStateVpi, pvcStateVci, pvcStatePvid } + ::= { pvcStateTable 1 } + + PvcStateEntry ::= + SEQUENCE { + pvcStateVpi INTEGER, + pvcStateVci INTEGER, + pvcStatePvid VlanIndex, + pvcStatePriority INTEGER, + --pvcStateCvid VlanIndex, + --pvcStateCPriority INTEGER, + --pvcStateMode DisplayString, + pvcStateChannelType DisplayString, + pvcStateEncap DisplayString + } + + pvcStateVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the pvc." + ::= { pvcStateEntry 1 } + + pvcStateVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the pvc." + ::= { pvcStateEntry 2 } + + pvcStatePvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default VID of the pvc." + ::= { pvcStateEntry 3 } + + pvcStatePriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "802.1p default priority of the pvc." + ::= { pvcStateEntry 4 } + + --pvcStateCvid OBJECT-TYPE + --SYNTAX VlanIndex + --MAX-ACCESS read-only + --STATUS current + --DESCRIPTION + --"Default C-VID for paepvc." + --::= { pvcStateEntry 5 } + + --pvcStateCPriority OBJECT-TYPE + --SYNTAX INTEGER (0..7) + --MAX-ACCESS read-only + --STATUS current + --DESCRIPTION + --"802.1p default C-priority for paepvc." + --::= { pvcStateEntry 6 } + + --pvcStateMode OBJECT-TYPE + --SYNTAX DisplayString (SIZE (1..31)) + --MAX-ACCESS read-only + --STATUS current + --DESCRIPTION + --"The value of this object identifies the link mode at runntime." + --::= { pvcStateEntry 7 } + + pvcStateChannelType OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the channel type at runtime." + ::= { pvcStateEntry 8 } + + pvcStateEncap OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the channel encapsulation at runtime." + ::= { pvcStateEntry 9 } +------------------------------- +-- 2684 routed mode pvc (rpvc) +------------------------------- + +-- Routed Gateway Table + + rpvcGatewayTable OBJECT-TYPE + SYNTAX SEQUENCE OF RpvcGatewayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes Routed Gateway configuration." + ::= { rpvc 1 } + + rpvcGatewayEntry OBJECT-TYPE + SYNTAX RpvcGatewayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in Routed Gateway table." + INDEX { rpvcGatewayIp } + ::= { rpvcGatewayTable 1 } + + RpvcGatewayEntry ::= + SEQUENCE { + rpvcGatewayIp IpAddress, + rpvcGatewayVlanId VlanIndex, + rpvcGatewayRowStatus RowStatus, + rpvcGatewayPriority INTEGER + } + + rpvcGatewayIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP of RPVC gateway." + ::= { rpvcGatewayEntry 1 } + + rpvcGatewayVlanId OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Vlan id send to this RPVC gateway." + ::= { rpvcGatewayEntry 2 } + + rpvcGatewayRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { rpvcGatewayEntry 3 } + + rpvcGatewayPriority OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "802.1p p bit send to this RPVC gateway." + ::= { rpvcGatewayEntry 4 } + +-- Routed PVC Table + + rpvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF RpvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes RPVC configuration." + ::= { rpvc 2 } + + rpvcEntry OBJECT-TYPE + SYNTAX RpvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in rpvcTable." + INDEX { ifIndex, rpvcVpi, rpvcVci, rpvcIp, rpvcNetmask } + ::= { rpvcTable 1 } + + RpvcEntry ::= + SEQUENCE { + rpvcVpi INTEGER, + rpvcVci INTEGER, + rpvcEncap INTEGER, + rpvcProfile DisplayString, + rpvcIp IpAddress, + rpvcNetmask IpAddress, + rpvcGatewayIpAddress IpAddress, + rpvcRowStatus RowStatus + } + + rpvcVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the rpvc." + ::= { rpvcEntry 1 } + + rpvcVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the rpvc." + ::= { rpvcEntry 2 } + + rpvcEncap OBJECT-TYPE + SYNTAX INTEGER { + llc(1), + vc(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Encapsulation of the rpvc." + ::= { rpvcEntry 3 } + + rpvcProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The ipqos profile of the rpvc." + ::= { rpvcEntry 4 } + + rpvcIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP of the rpvc." + ::= { rpvcEntry 5 } + + rpvcNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP mask of the rpvc IP." + ::= { rpvcEntry 6 } + + rpvcGatewayIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The gateway IP of rpvc." + ::= { rpvcEntry 7 } + + rpvcRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { rpvcEntry 8 } + +-- Routed PVC Routed Domain Table + + rpvcRouteDomainTable OBJECT-TYPE + SYNTAX SEQUENCE OF RpvcRouteDomainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes RPVC route domain configuration." + ::= { rpvc 3 } + + rpvcRouteDomainEntry OBJECT-TYPE + SYNTAX RpvcRouteDomainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in rpvcRouteDomainTable." + INDEX { ifIndex, rpvcRouteDomainVpi, rpvcRouteDomainVci, rpvcRouteDomainIp, rpvcRouteDomainNetmask } + ::= { rpvcRouteDomainTable 1 } + + RpvcRouteDomainEntry ::= + SEQUENCE { + rpvcRouteDomainVpi INTEGER, + rpvcRouteDomainVci INTEGER, + rpvcRouteDomainIp IpAddress, + rpvcRouteDomainNetmask IpAddress, + rpvcRouteDomainRowStatus RowStatus + } + + rpvcRouteDomainVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the rpvc." + ::= { rpvcRouteDomainEntry 1 } + + rpvcRouteDomainVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the rpvc." + ::= { rpvcRouteDomainEntry 2 } + + rpvcRouteDomainIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The route domain IP." + ::= { rpvcRouteDomainEntry 3 } + + rpvcRouteDomainNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP mask of the route domain IP." + ::= { rpvcRouteDomainEntry 4 } + + rpvcRouteDomainRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { rpvcRouteDomainEntry 5 } + + rpvcArpAgingTime OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set RPVC ARP proxy aging time 10..10000 seconds, + 0 to disable againg." + ::= { rpvc 4 } + + rpvcArpFlush OBJECT-TYPE + SYNTAX INTEGER { + enable(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flush the RPVC ARP proxy table." + ::= { rpvc 5 } + +-------------------- +-- dsBcastDisableTable +-------------------- + + dsBcastDisableTable OBJECT-TYPE + SYNTAX SEQUENCE OF DsBcastDisableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes Down Stream Bcast configuration." + ::= { port 9 } + + dsBcastDisableEntry OBJECT-TYPE + SYNTAX DsBcastDisableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in Down Stream Bcast table." + INDEX { ifIndex, dsBcastDisableVlanId } + ::= { dsBcastDisableTable 1 } + + DsBcastDisableEntry ::= + SEQUENCE { + dsBcastDisableVlanId INTEGER, + dsBcastDisableRowStatus RowStatus + } + + dsBcastDisableVlanId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "downstream broadcast disabled vid." + ::= { dsBcastDisableEntry 1 } + + dsBcastDisableRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { dsBcastDisableEntry 2 } + +-------------------- +-- paepvc +-------------------- + +-- PPPoAoE PVC Table + + paepvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF PaepvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes PPPoAoE PVC configuration." + ::= { paepvc 1 } + + paepvcEntry OBJECT-TYPE + SYNTAX PaepvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of paepvcTable." + INDEX { ifIndex, paepvcVpi, paepvcVci, paepvcPvid } + ::= { paepvcTable 1 } + + PaepvcEntry ::= + SEQUENCE { + paepvcVpi INTEGER, + paepvcVci INTEGER, + paepvcPvid VlanIndex, + paepvcEncap INTEGER, + paepvcPriority INTEGER, + paepvcProfile DisplayString, + paepvcAcName DisplayString, + paepvcServiceName DisplayString, + paepvcHelloTime INTEGER, + paepvcRowStatus RowStatus, + paepvcCvid VlanIndex, + paepvcCPriority INTEGER + } + + paepvcVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the pvc." + ::= { paepvcEntry 1 } + + paepvcVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the pvc." + ::= { paepvcEntry 2 } + + paepvcPvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default VID of the pvc." + ::= { paepvcEntry 3 } + + paepvcEncap OBJECT-TYPE + SYNTAX INTEGER { + llc(1), + vc(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Encapsulation of the paepvc." + ::= { paepvcEntry 4 } + + paepvcPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "802.1p default priority of the pvc." + ::= { paepvcEntry 5 } + + paepvcProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row in the ipqosProfileTable." + ::= { paepvcEntry 6 } + + paepvcAcName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Access concentrator name." + ::= { paepvcEntry 7 } + + paepvcServiceName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Service name." + ::= { paepvcEntry 8 } + + paepvcHelloTime OBJECT-TYPE + SYNTAX INTEGER + UNITS "second" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The system will close the PVC if there are not any LCP echo messages passed through + during the LCP hello time." + ::= { paepvcEntry 9 } + + paepvcRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { paepvcEntry 10 } + + paepvcCvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Default C-VID of the pvc." + ::= { paepvcEntry 12 } + + + paepvcCPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "802.1p default C-priority of the pvc." + ::= { paepvcEntry 13 } + +-------------------- +-- tlspvc +-------------------- + +-- TLS PVC Table + + tlspvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF TlspvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes Transparent LAN Service (TLS) PVC configuration." + ::= { tlspvc 1 } + + tlspvcEntry OBJECT-TYPE + SYNTAX TlspvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of tlspvcTable." + INDEX { ifIndex, tlspvcVpi, tlspvcVci, tlspvcSvid } + ::= { tlspvcTable 1 } + + TlspvcEntry ::= + SEQUENCE { + tlspvcVpi INTEGER, + tlspvcVci INTEGER, + tlspvcSvid VlanIndex, + tlspvcEncap INTEGER, + tlspvcSpriority INTEGER, + tlspvcProfile DisplayString, + tlspvcRowStatus RowStatus + } + + tlspvcVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the pvc." + ::= { tlspvcEntry 1 } + + tlspvcVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the pvc." + ::= { tlspvcEntry 2 } + + tlspvcSvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "s-tag VLAN ID of the pvc." + ::= { tlspvcEntry 3 } + + tlspvcEncap OBJECT-TYPE + SYNTAX INTEGER { + llc(1), + vc(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Encapsulation of the tlspvc." + ::= { tlspvcEntry 4 } + + tlspvcSpriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "s-tag priority of the pvc." + ::= { tlspvcEntry 5 } + + tlspvcProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row in the ipqosProfileTable." + ::= { tlspvcEntry 6 } + + tlspvcRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { tlspvcEntry 7 } + +-------------------- +-- dtpvc +-------------------- + +-- DT PVC Table + + dtpvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF DtpvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes Double Tagging (DT) PVC configuration." + ::= { dtpvc 1 } + + dtpvcEntry OBJECT-TYPE + SYNTAX DtpvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dtpvcTable." + INDEX { ifIndex, dtpvcVpi, dtpvcVci, dtpvcSvid } + ::= { dtpvcTable 1 } + + DtpvcEntry ::= + SEQUENCE { + -- Common -- + dtpvcVpi INTEGER, + dtpvcVci INTEGER, + dtpvcSvid VlanIndex, + dtpvcSpriority INTEGER, + dtpvcCvid VlanIndex, + dtpvcCpriority INTEGER, + dtpvcEncap INTEGER, + dtpvcProfile DisplayString, + dtpvcRowStatus RowStatus, + dtpvcAuto INTEGER, + -- Only for dtpvc -- + dtpvcSuperChannel INTEGER, + -- Only for paepvc -- + dtpvcAcName DisplayString, + dtpvcServiceName DisplayString, + dtpvcHelloTime INTEGER + } + + -- Common -- + dtpvcVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the pvc." + ::= { dtpvcEntry 1 } + + dtpvcVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the pvc." + ::= { dtpvcEntry 2 } + + dtpvcSvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "s-tag VLAN ID of the pvc." + ::= { dtpvcEntry 3 } + + dtpvcSpriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "s-tag priority of the pvc." + ::= { dtpvcEntry 4 } + + dtpvcCvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "c-tag VLAN ID of the pvc." + ::= { dtpvcEntry 5 } + + dtpvcCpriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "c-tag priority of the pvc." + ::= { dtpvcEntry 6 } + + + dtpvcEncap OBJECT-TYPE + SYNTAX INTEGER { + llc(1), + vc(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Encapsulation of the dtpvc." + ::= { dtpvcEntry 7 } + + dtpvcProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row in the ipqosProfileTable." + ::= { dtpvcEntry 8 } + + dtpvcRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in this table." + ::= { dtpvcEntry 9 } + + dtpvcAuto OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable/disable auto detection for PPPoE/PPPoA encapsulation." + ::= { dtpvcEntry 14 } + + -- Only for DTPVC -- + dtpvcSuperChannel OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specified the configured DTPVC is a super channel." + ::= { dtpvcEntry 10 } + + -- Only for PAEPVC -- + dtpvcAcName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Access concentrator name for paepvc." + ::= { dtpvcEntry 11 } + + dtpvcServiceName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Service name for paepvc." + ::= { dtpvcEntry 12 } + + dtpvcHelloTime OBJECT-TYPE + SYNTAX INTEGER + UNITS "second" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The system will close the PVC if there are not any LCP echo messages passed through during the LCP hello time." + ::= { dtpvcEntry 13 } + +-- DTPVC state -- + dtpvcStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF DtpvcStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table show current DTPVC status." + ::= { dtpvc 2 } + + dtpvcStateEntry OBJECT-TYPE + SYNTAX DtpvcStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in dtpvcStateTable." + INDEX { ifIndex, dtpvcStateVpi, dtpvcStateVci, dtpvcStateSvid } + ::= { dtpvcStateTable 1 } + + DtpvcStateEntry ::= + SEQUENCE { + dtpvcStateVpi INTEGER, + dtpvcStateVci INTEGER, + dtpvcStateSvid VlanIndex, + dtpvcStateSPriority INTEGER, + dtpvcStateCvid VlanIndex, + dtpvcStateCPriority INTEGER, + --dtpvcStateMode DisplayString, + dtpvcStateChannelType DisplayString, + dtpvcStateEncap DisplayString + } + + dtpvcStateVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI of the dtpvc." + ::= { dtpvcStateEntry 1 } + + dtpvcStateVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI of the dtpvc." + ::= { dtpvcStateEntry 2 } + + dtpvcStateSvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default S-VID of the dtpvc." + ::= { dtpvcStateEntry 3 } + + dtpvcStateSPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "S-priority of the dtpvc." + ::= { dtpvcStateEntry 4 } + + dtpvcStateCvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default C-VID of the dtpvc." + ::= { dtpvcStateEntry 5 } + + dtpvcStateCPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "C-priority of the dtpvc." + ::= { dtpvcStateEntry 6 } + + --dtpvcStateMode OBJECT-TYPE + --SYNTAX DisplayString (SIZE (1..31)) + --MAX-ACCESS read-only + --STATUS current + --DESCRIPTION + --"The value of this object identifies the link mode at runntime." + --::= { dtpvcStateEntry 7 } + + dtpvcStateChannelType OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the channel type at runtime." + ::= { dtpvcStateEntry 8 } + + dtpvcStateEncap OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the channel encapsulation at runtime." + ::= { dtpvcStateEntry 9 } + +-------------------- +-- voipPort +-------------------- + +-- voipSipLineConfTable + + voipSipLineConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipSipLineConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes common attributes describing the VoIP line." + ::= { voipPort 1 } + + voipSipLineConfEntry OBJECT-TYPE + SYNTAX VoipSipLineConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in voipSipLineConfTable." + INDEX { ifIndex } + ::= { voipSipLineConfTable 1 } + + VoipSipLineConfEntry ::= + SEQUENCE { + voipSipLineConfSipProfile OCTET STRING, + voipSipLineConfSipCallSvcProfile OCTET STRING, + voipSipLineConfDspProfile OCTET STRING + } + + voipSipLineConfSipProfile OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "SIP profile name." + ::= { voipSipLineConfEntry 1 } + + voipSipLineConfSipCallSvcProfile OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "SIP call service profile name." + ::= { voipSipLineConfEntry 2 } + + voipSipLineConfDspProfile OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DSP profile name." + ::= { voipSipLineConfEntry 3 } + +-------------------- +-- voipPortOperation +-------------------- + + portOperations OBJECT IDENTIFIER ::= { voipPort 2 } + + voipPortTarget OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is used for identify the target on which + the port configuration should be performed. The target is encoded as: + Byte 1: 0, Reserved(chaises) + Byte 2~3: 0,0 Reserved(slot) + Byte 4: 0, Reserved + Byte 5~11:Each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc." + ::= { portOperations 1 } + + voipPortOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is for VoIP configuration. When the EMS + wants to issue the desired operation, the EMS shall send SNMP-SET message to set + the corresponding bit value to be 1. The various bit positions are: + BIT 1: enable port + BIT 2: disable port" + ::= { portOperations 2 } + + +-------------------- +-- voipPortTelTable +-------------------- + + + voipPortTelTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipPortTelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes VoIP tel for the port." + ::= { voipPort 3 } + + voipPortTelEntry OBJECT-TYPE + SYNTAX VoipPortTelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in voipPortTelTable." + INDEX { ifIndex } + ::= { voipPortTelTable 1 } + + VoipPortTelEntry ::= + SEQUENCE { + voipPortTel DisplayString + } + + voipPortTel OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..15)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VoIP's telephone number of the specified port." + ::= { voipPortTelEntry 1 } + +-------------------- +-- voipH248PortOperation +-------------------- + +-- voipH248LineConfTable + + voipH248LineConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipH248LineConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes common attributes describing the VoIP line." + ::= { voipPort 4 } + + voipH248LineConfEntry OBJECT-TYPE + SYNTAX VoipH248LineConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in voipH248LineConfTable." + INDEX { ifIndex } + ::= { voipH248LineConfTable 1 } + + VoipH248LineConfEntry ::= + SEQUENCE { + voipH248LineConfMgName OCTET STRING, + voipH248LineConfDspProfile OCTET STRING, + voipH248LineConfVBDProfile OCTET STRING + } + + voipH248LineConfMgName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MG name." + ::= { voipH248LineConfEntry 1 } + + voipH248LineConfDspProfile OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DSP profile name." + ::= { voipH248LineConfEntry 2 } + + voipH248LineConfVBDProfile OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DSP profile name for Voice Band Data (FAX or Modem) mode." + ::= { voipH248LineConfEntry 3 } + + + +-------------------- +-- voipPortH248Termination +-------------------- + +-- voipPortH248TerminationTable + + voipPortH248TerminationTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipPortH248TerminationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes Termination name." + ::= { voipPort 5 } + + voipPortH248TerminationEntry OBJECT-TYPE + SYNTAX VoipPortH248TerminationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in voipPortH248TerminationTable." + INDEX { ifIndex } + ::= { voipPortH248TerminationTable 1 } + + VoipPortH248TerminationEntry ::= + SEQUENCE { + voipPortH248TermName OCTET STRING + } + + voipPortH248TermName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Termination name of MG." + ::= { voipPortH248TerminationEntry 1 } + +-------------------- +-- voipPortGain +-------------------- + +-- voipPortGainTable + + voipPortGainTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipPortGainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes Port Gain." + ::= { voipPort 6 } + + voipPortGainEntry OBJECT-TYPE + SYNTAX VoipPortGainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in voipPortGainTable." + INDEX { ifIndex } + ::= { voipPortGainTable 1 } + + VoipPortGainEntry ::= + SEQUENCE { + voipPortTXGain INTEGER, + voipPortRXGain INTEGER + } + + voipPortTXGain OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "TX Gain of the port, -200~200 in unit of 0.1dB." + ::= { voipPortGainEntry 1 } + + voipPortRXGain OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "RX Gain of the port, -200~200 in unit of 0.1dB." + ::= { voipPortGainEntry 2 } + +-------------------- +-- voipPortSeizureMode +-------------------- + +-- voipPortSeizureModeTable + + voipPortSeizureModeTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipPortSeizureModeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes Port Seizure Mode." + ::= { voipPort 7 } + + voipPortSeizureModeEntry OBJECT-TYPE + SYNTAX VoipPortSeizureModeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in voipPortSeizureModeTable." + INDEX { ifIndex } + ::= { voipPortSeizureModeTable 1 } + + VoipPortSeizureModeEntry ::= + SEQUENCE { + voipPortSeizureMode INTEGER + } + + voipPortSeizureMode OBJECT-TYPE + SYNTAX INTEGER { + loopstart(1), + groundstart(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Port Seizure Mode." + ::= { voipPortSeizureModeEntry 1 } + +-------------------- +-- voipPortSipAuth +-------------------- + +-- voipPortSipAuthTable + + voipPortSipAuthTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipPortSipAuthEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes VoIP port SIP authentication related configuration." + ::= { voipPort 8 } + + voipPortSipAuthEntry OBJECT-TYPE + SYNTAX VoipPortSipAuthEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in voipPortSipAuthTable." + INDEX { ifIndex } + ::= { voipPortSipAuthTable 1 } + + VoipPortSipAuthEntry ::= + SEQUENCE { + voipPortSipAuthMode INTEGER, + voipPortSipAuthUsername OCTET STRING, + voipPortSipAuthPasswdOn INTEGER, + voipPortSipAuthPasswd OCTET STRING + } + + voipPortSipAuthMode OBJECT-TYPE + SYNTAX INTEGER { + profile(1), + line(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Authentication mode for VoIP port SIP registration." + ::= { voipPortSipAuthEntry 1 } + + voipPortSipAuthUsername OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VoIP port SIP registration username." + ::= { voipPortSipAuthEntry 2 } + + voipPortSipAuthPasswdOn OBJECT-TYPE + SYNTAX INTEGER { + on(1), + off(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Password is necessary or not for VoIP port SIP registration." + ::= { voipPortSipAuthEntry 3 } + + voipPortSipAuthPasswd OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VoIP port SIP registration password." + ::= { voipPortSipAuthEntry 4 } + +-------------------- +-- voipPortSipCallsvc +-------------------- + +-- voipPortSipCallsvcTable + + voipPortSipCallsvcTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipPortSipCallsvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes VoIp port SIP call service related configuration." + ::= { voipPort 9 } + + voipPortSipCallsvcEntry OBJECT-TYPE + SYNTAX VoipPortSipCallsvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in voipPortSipCallsvcTable." + INDEX { ifIndex } + ::= { voipPortSipCallsvcTable 1 } + + VoipPortSipCallsvcEntry ::= + SEQUENCE { + voipPortSipCallsvcMode INTEGER, + voipPortSipCallsvcStateMask INTEGER, + voipPortSipCallsvcCPCOn INTEGER, + voipPortSipCallsvcCPCTimeout INTEGER + } + + voipPortSipCallsvcMode OBJECT-TYPE + SYNTAX INTEGER { + profile(1), + line(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VoIP port SIP call service mode." + ::= { voipPortSipCallsvcEntry 1 } + + voipPortSipCallsvcStateMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Bit 1 callforward : call forward(Not supported) + Bit 2 callhold : call hold + Bit 3 callwait : call waiting + Bit 4 callreturn : call return(Not supported) + Bit 5 calltransfer : call transfer + Bit 6 clip : caller line identification presentation (Caller ID) + Bit 7 clir : caller line identification restriction + Bit 8 dnd : do not disturb + Bit 9 conference : native 3-way conference" + ::= { voipPortSipCallsvcEntry 2 } + + voipPortSipCallsvcCPCOn OBJECT-TYPE + SYNTAX INTEGER { + on(1), + off(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Perform calling party control, or turn off." + ::= { voipPortSipCallsvcEntry 3 } + + voipPortSipCallsvcCPCTimeout OBJECT-TYPE + SYNTAX INTEGER (5..60) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VoIP port SIP delay hang up time of called party in seconds." + ::= { voipPortSipCallsvcEntry 4 } + +-------------------- +-- snrMgn +-------------------- + +-- snrMgnTable + + snrMgnTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnrMarginEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing the per port SNR Margin configuration." + ::= { snrMgn 1 } + + snrMgnEntry OBJECT-TYPE + SYNTAX SnrMarginEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of snrMgnTable." + INDEX { ifIndex } + ::= { snrMgnTable 1 } + + SnrMarginEntry ::= + SEQUENCE { + snrMgnMode INTEGER, + snrMgnUcTarget INTEGER, + snrMgnUcMax INTEGER, + snrMgnUcMin INTEGER, + snrMgnUcDownshift INTEGER, + snrMgnUcUpshift INTEGER, + snrMgnUrTarget INTEGER, + snrMgnUrMax INTEGER, + snrMgnUrMin INTEGER, + snrMgnUrDownshift INTEGER, + snrMgnUrUpshift INTEGER + } + + snrMgnMode OBJECT-TYPE + SYNTAX INTEGER { + profile(0), + line(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure DSL SNR margin configuration mode of the specified ports. + Profile: the SNR margin configuration comes from DSL profile. + Line: the SNR margin configuration comes from line configuration." + ::= { snrMgnEntry 1 } + + snrMgnUcTarget OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Target Signal/Noise Margin. + This is the Noise Margin the modem must achieve + with a BER of 10-7 or better to successfully complete + initialization." + ::= { snrMgnEntry 2 } + + snrMgnUcMax OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Maximum acceptable Signal/Noise Margin. + If the Noise Margin is above this the modem should + attempt to reduce its power output to optimize its + operation." + ::= { snrMgnEntry 3 } + + snrMgnUcMin OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Minimum acceptable Signal/Noise Margin. + If the noise margin falls below this level, the modem + should attempt to increase its power output. If that + is not possible the modem will attempt to + re-initialize or shut down." + ::= { snrMgnEntry 4 } + + snrMgnUcDownshift OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Signal/Noise Margin for rate downshift. + If the noise margin falls below this level, the modem + should attempt to decrease its transmit rate. In + the case that RADSL mode is not present, + the value will be `0'." + ::= { snrMgnEntry 5 } + + snrMgnUcUpshift OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Signal/Noise Margin for rate upshift. + If the noise margin rises above this level, the modem + should attempt to increase its transmit rate. In + the case that RADSL is not present, the value will + be `0'." + ::= { snrMgnEntry 6 } + + snrMgnUrTarget OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Target Signal/Noise Margin. + This is the Noise Margin the modem must achieve + with a BER of 10-7 or better to successfully complete + initialization." + ::= { snrMgnEntry 7 } + + snrMgnUrMax OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Maximum acceptable Signal/Noise Margin. + If the Noise Margin is above this the modem should + attempt to reduce its power output to optimize its + operation." + ::= { snrMgnEntry 8 } + + snrMgnUrMin OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Minimum acceptable Signal/Noise Margin. + If the noise margin falls below this level, the modem + should attempt to increase its power output. If that + is not possible the modem will attempt to + re-initialize or shut down." + ::= { snrMgnEntry 9 } + + snrMgnUrDownshift OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Signal/Noise Margin for rate downshift. + If the noise margin falls below this level, the modem + should attempt to decrease its transmit rate. + In the case that RADSL mode is not present, + the value will be `0'." + ::= { snrMgnEntry 10 } + + snrMgnUrUpshift OBJECT-TYPE + SYNTAX INTEGER (0..310) + UNITS "tenth dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Signal/Noise Margin for rate upshift. + If the noise margin rises above this level, the modem + should attempt to increase its transmit rate. + In the case that RADSL is not present, + the value will be `0'." + ::= { snrMgnEntry 11 } + +-------------------- +-- dsl rate +-------------------- + +-- dslRateTable + + dslRateTable OBJECT-TYPE + SYNTAX SEQUENCE OF DslRateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing the per port DSL Rate configuration." + ::= { dslRate 1 } + + dslRateEntry OBJECT-TYPE + SYNTAX DslRateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dslRateTable." + INDEX { ifIndex } + ::= { dslRateTable 1 } + + DslRateEntry ::= + SEQUENCE { + dslRateMode INTEGER, + dslRateLatencyMode INTEGER, + dslRateXtucMaxInterleaveDelay INTEGER, + dslRateXtucMaxTxRate Unsigned32, + dslRateXtucMinTxRate Unsigned32, + dslRateXturMaxInterleaveDelay INTEGER, + dslRateXturMaxTxRate Unsigned32, + dslRateXturMinTxRate Unsigned32 + } + + dslRateMode OBJECT-TYPE + SYNTAX INTEGER { + profile(0), + line(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure DSL Rate configuration mode of the specified ports. + Profile: the DSL Rate configuration comes from DSL profile. + Line: the DSL Rate configuration comes from line configuration." + ::= { dslRateEntry 1 } + + dslRateLatencyMode OBJECT-TYPE + SYNTAX INTEGER { + interleave(1), + fast(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The latency mode is fast or interleave" + ::= { dslRateEntry 2 } + + dslRateXtucMaxInterleaveDelay OBJECT-TYPE + SYNTAX INTEGER (0..255) + UNITS "milli-seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured maximum Interleave Delay for this channel. + + Interleave delay applies only to the interleave channel + and defines the mapping (relative spacing) between + subsequent input bytes at the interleaver input and + their placement in the bit stream at the interleaver + output. Larger numbers provide greater separation + between consecutive input bytes in the output bit + stream allowing for improved impulse noise immunity + at the expense of payload latency." + ::= { dslRateEntry 3 } + + dslRateXtucMaxTxRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Maximum Transmit rate for `Fast' or `Interleave' channels, + in bps." + ::= { dslRateEntry 4 } + + dslRateXtucMinTxRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Minimum Transmit rate for `Fast' or `Interleave' channels, + in bps" + ::= { dslRateEntry 5 } + + dslRateXturMaxInterleaveDelay OBJECT-TYPE + SYNTAX INTEGER (0..255) + UNITS "milli-seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured maximum Interleave Delay for this channel. + + Interleave delay applies only to the interleave channel + and defines the mapping (relative spacing) between + subsequent input bytes at the interleaver input and + their placement in the bit stream at the interleaver + output. Larger numbers provide greater separation + between consecutive input bytes in the output bit + stream allowing for improved impulse noise immunity + at the expense of payload latency" + ::= { dslRateEntry 6 } + + dslRateXturMaxTxRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Target Signal/Noise Margin. + This is the Noise Margin the modem must achieve + with a BER of 10-7 or better to successfully complete + initialization." + ::= { dslRateEntry 7 } + + dslRateXturMinTxRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured Maximum Transmit rate for `Fast' or `Interleave' channels, + in bps." + ::= { dslRateEntry 8 } + +-------------------- +-- gbond +-------------------- + +-- gbondTable + + gbondGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF GbondGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing the G.Bond configuration information for + each bonding group of the device." + ::= { gbond 1 } + + gbondGroupEntry OBJECT-TYPE + SYNTAX GbondGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of gbondTable." + INDEX { gbondGroupName } + ::= { gbondGroupTable 1 } + + GbondGroupEntry ::= + SEQUENCE { + gbondGroupName OCTET STRING, + gbondGroupPorts OCTET STRING, +-- gbondGroupSid INTEGER, + gbondGroupUpRate Unsigned32, + gbondGroupDownRate Unsigned32, + gbondGroupRowStatus RowStatus + } + + gbondGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An administratively assigned string, which may be used to identify bonding group." + ::= { gbondGroupEntry 1 } + + gbondGroupPorts OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The set of ports which are currently assigned to the + bonding group of specified group name. + Byte 1: Reserved(chassis) + Byte 2~3: Reserved(slot) + Byte 4: Reserved + Byte 5~11:each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc." + ::= { gbondGroupEntry 2 } + +-- gbondGroupSid OBJECT-TYPE +-- SYNTAX INTEGER { +-- sid8(1), +-- sid12(2) +-- } +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "This object indicates the sequence index mode of the bonding group." +-- ::= { gbondGroupEntry 3 } + + gbondGroupUpRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The UP stream rate." + ::= { gbondGroupEntry 4 } + + gbondGroupDownRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The DOWN stream rate." + ::= { gbondGroupEntry 5 } + + gbondGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { gbondGroupEntry 6 } + +---------------------------------------- +-- profile +---------------------------------------- + + sraShiftMarginProfile OBJECT IDENTIFIER ::= { profile 1 } + voipProfile OBJECT IDENTIFIER ::= { profile 7 } + ipqosProfile OBJECT IDENTIFIER ::= { profile 8 } + + -------------------- +-- sraShiftMarginProfile +-------------------- + +-- sraShiftMarginProfile + + sraShiftMarginProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF SraShiftMarginProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes sra shift margin related configuration." + ::= { sraShiftMarginProfile 1 } + + sraShiftMarginProfileEntry OBJECT-TYPE + SYNTAX SraShiftMarginProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in ipqosProfileTable." + INDEX { sraShiftMarginProfileName } + ::= { sraShiftMarginProfileTable 1 } + + SraShiftMarginProfileEntry ::= + SEQUENCE { + sraShiftMarginProfileName DisplayString, + xtucConfDownshiftSnrMgn INTEGER, + xtucConfUpshiftSnrMgn INTEGER, + xtucConfDownshiftTime INTEGER, + xtucConfUpshiftTime INTEGER, + xturConfDownshiftSnrMgn INTEGER, + xturConfUpshiftSnrMgn INTEGER, + xturConfDownshiftTime INTEGER, + xturConfUpshiftTime INTEGER, + sraShiftMarginProfileStatus RowStatus + } + + sraShiftMarginProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..40)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies a row in this table." + ::= { sraShiftMarginProfileEntry 1 } + + xtucConfDownshiftSnrMgn OBJECT-TYPE + SYNTAX INTEGER (0..31) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the downstream SRA Down Shift Margin in units of 0.25 dB, for a range of 0 to 31.75 dB. in unit of 1 db." + ::= { sraShiftMarginProfileEntry 2 } + + xtucConfUpshiftSnrMgn OBJECT-TYPE + SYNTAX INTEGER (0..31) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the downstream SRA UP Shift Margin in units of 0.25 dB, for a range of 0 to 31.75 dB. in unit of 1 db." + ::= { sraShiftMarginProfileEntry 3 } + + xtucConfDownshiftTime OBJECT-TYPE + SYNTAX INTEGER (0..31) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies the downstream SRA Down Shift time in units of 1 sec , for a range of 0 to 16383 sec. in unit of 1 sec." + ::= { sraShiftMarginProfileEntry 4 } + + xtucConfUpshiftTime OBJECT-TYPE + SYNTAX INTEGER (0..31) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies the downstream SRA UP Shift time in units of 1 sec , for a range of 0 to 16383 sec. in unit of 1 sec." + ::= { sraShiftMarginProfileEntry 5 } + + xturConfDownshiftSnrMgn OBJECT-TYPE + SYNTAX INTEGER (0..31) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the upstream SRA Down Shift Margin in units of 0.25 dB, for a range of 0 to 31.75 dB. in unit of 1 db." + ::= { sraShiftMarginProfileEntry 6 } + + xturConfUpshiftSnrMgn OBJECT-TYPE + SYNTAX INTEGER (0..31) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the upstream SRA UP Shift Margin in units of 0.25 dB, for a range of 0 to 31.75 dB. in unit of 1 db." + ::= { sraShiftMarginProfileEntry 7 } + + xturConfDownshiftTime OBJECT-TYPE + SYNTAX INTEGER (0..31) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies the upstream SRA Down Shift time in units of 1 sec , for a range of 0 to 16383 sec. in unit of 1 sec." + ::= { sraShiftMarginProfileEntry 8 } + + xturConfUpshiftTime OBJECT-TYPE + SYNTAX INTEGER (0..31) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies the upstream SRA UP Shift time in units of 1 sec , for a range of 0 to 16383 sec. in unit of 1 sec." + ::= { sraShiftMarginProfileEntry 9 } + + sraShiftMarginProfileStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or modify or delete an existing row in this table." + ::= { sraShiftMarginProfileEntry 10 } + +-------------------- +-- voipProfile +-------------------- + + sipProfile OBJECT IDENTIFIER ::= { voipProfile 1 } + +-- sip profile + + maxNumOfSipProfiles OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of SIP profiles supported by the system." + ::= { sipProfile 1 } + + sipProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF SipProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes SIP protocol related configuration." + ::= { sipProfile 2 } + + sipProfileEntry OBJECT-TYPE + SYNTAX SipProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in sipProfileTable." + INDEX { IMPLIED sipProfileName } + ::= { sipProfileTable 1 } + + SipProfileEntry ::= + SEQUENCE { + sipProfileName DisplayString, + sipProfileSipSvr OCTET STRING, + sipProfileRegSvr OCTET STRING, + sipProfileProxySvr OCTET STRING, + sipProfileSipPort INTEGER, + sipProfileRegSvrPort INTEGER, + sipProfileProxySvrPort INTEGER, + sipProfileUriType INTEGER, + sipProfilePbit INTEGER, + sipProfileDscp INTEGER, + sipProfileKeepAlive INTEGER, + sipProfileSe INTEGER, + sipProfilePrack INTEGER, + sipProfileRowStatus RowStatus, + sipProfileRegExpire INTEGER + } + + sipProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is used by the SIP profile table in order to identify a row of this table." + ::= { sipProfileEntry 1 } + + sipProfileSipSvr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "IP used for SIP registration or SIP domain name." + ::= { sipProfileEntry 2 } + + sipProfileRegSvr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Registration server IP or registration server domain name." + ::= { sipProfileEntry 3 } + + sipProfileProxySvr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Proxy server IP or proxy server doamin name." + ::= { sipProfileEntry 4 } + + sipProfileSipPort OBJECT-TYPE + SYNTAX INTEGER (1025..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "SIP UA port number." + ::= { sipProfileEntry 5 } + + sipProfileRegSvrPort OBJECT-TYPE + SYNTAX INTEGER (1025..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Registration server port number." + ::= { sipProfileEntry 6 } + + sipProfileProxySvrPort OBJECT-TYPE + SYNTAX INTEGER (1025..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Proxy server port number." + ::= { sipProfileEntry 7 } + + sipProfileUriType OBJECT-TYPE + SYNTAX INTEGER { + useSipUri(1), + useTelUri(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "" + ::= { sipProfileEntry 8 } + + sipProfilePbit OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "802.1p bit for SIP and RTP packet." + ::= { sipProfileEntry 9 } + + sipProfileDscp OBJECT-TYPE + SYNTAX INTEGER (0..63) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DSCP for SIP and RTP packet." + ::= { sipProfileEntry 10 } + + sipProfileKeepAlive OBJECT-TYPE + SYNTAX INTEGER { + on(1), + off(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "" + ::= { sipProfileEntry 11 } + + sipProfileSe OBJECT-TYPE + SYNTAX INTEGER (90..65535) + UNITS "second" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Session expiration time in seconds." + ::= { sipProfileEntry 12 } + + sipProfilePrack OBJECT-TYPE + SYNTAX INTEGER { + on(1), + off(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "" + ::= { sipProfileEntry 13 } + + sipProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in the table." + ::= { sipProfileEntry 14 } + + sipProfileRegExpire OBJECT-TYPE + SYNTAX INTEGER (120..2073600) + UNITS "second" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Registration expiration time in seconds." + ::= { sipProfileEntry 15 } + + +-- sip call service profile + + maxNumOfSipCallSvcProfiles OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of SIP call service profiles supported by the system." + ::= { sipProfile 3 } + + sipCallSvcProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF SipCallSvcProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes SIP call service related configuration." + ::= { sipProfile 4 } + + sipCallSvcProfileEntry OBJECT-TYPE + SYNTAX SipCallSvcProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in sipCallSvcProfileTable." + INDEX { IMPLIED sipCallSvcProfileName } + ::= { sipCallSvcProfileTable 1 } + + SipCallSvcProfileEntry ::= + SEQUENCE { + sipCallSvcProfileName DisplayString, + sipCallSvcProfilePasswdOn INTEGER, + sipCallSvcProfilePasswd OCTET STRING, + sipCallSvcProfileNumberPlanOn INTEGER, + sipCallSvcProfileNumberPlanCc OCTET STRING, + sipCallSvcProfileNumberPlanNdc OCTET STRING, + sipCallSvcProfileNumberPlanTable OCTET STRING, + sipCallSvcProfileStateMask INTEGER, + sipCallSvcProfileDtmf INTEGER, + sipCallSvcProfileFax INTEGER, + sipCallSvcProfileRowStatus RowStatus, + sipCallSvcProfileFlashType INTEGER, + sipCallSvcProfileFlashInfo OCTET STRING, + sipCallSvcProfileSoftSwitchType INTEGER, + sipCallSvcProfileCPCOn INTEGER, + sipCallSvcProfileCPCTimeout INTEGER + } + + sipCallSvcProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is used by the SIP call service profile table in order to identify a row of this table." + ::= { sipCallSvcProfileEntry 1 } + + sipCallSvcProfilePasswdOn OBJECT-TYPE + SYNTAX INTEGER { + on(1), + off(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Password is necessary or not for SIP registration." + ::= { sipCallSvcProfileEntry 2 } + + sipCallSvcProfilePasswd OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "SIP registration password." + ::= { sipCallSvcProfileEntry 3 } + + sipCallSvcProfileNumberPlanOn OBJECT-TYPE + SYNTAX INTEGER { + on(1), + off(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "" + ::= { sipCallSvcProfileEntry 4 } + + sipCallSvcProfileNumberPlanCc OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Country code, only digit 0..9 are allowed." + ::= { sipCallSvcProfileEntry 5 } + + sipCallSvcProfileNumberPlanNdc OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "National destination code, only digit 0..9 are allowed." + ::= { sipCallSvcProfileEntry 6 } + + sipCallSvcProfileNumberPlanTable OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Numbering plan table name." + ::= { sipCallSvcProfileEntry 7 } + + sipCallSvcProfileStateMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Bit 1 callforward : call forward(Not supported) + Bit 2 callhold : call hold + Bit 3 callwait : call waiting + Bit 4 callreturn : call return(Not supported) + Bit 5 calltransfer : call transfer + Bit 6 clip : caller line identification presentation (Caller ID) + Bit 7 clir : caller line identification restriction + Bit 8 dnd : do not disturb + Bit 9 conference : native 3-way conference" + ::= { sipCallSvcProfileEntry 8 } + + sipCallSvcProfileDtmf OBJECT-TYPE + SYNTAX INTEGER { + bypass(1), + rfc2833(2), + rfc2833like(3), + sipinfo(4) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "dtmf bypass : bypass DTMF tone + dtmf rfc2833 : DTMF tone relay according to RFC2833 + dtmf rfc2833like : DTMF tone relay by SIP INFO message, but RFC2833 payload + dtmf sipinfo : DTMF tone relay by SIP INFO message" + ::= { sipCallSvcProfileEntry 9 } + + sipCallSvcProfileFax OBJECT-TYPE + SYNTAX INTEGER { + g711(1), + t38(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "fax g711 : FAX service pass through by ITU-T G.711 + fax t38 : FAX service by ITU-T T.38" + ::= { sipCallSvcProfileEntry 10 } + + sipCallSvcProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in the table." + ::= { sipCallSvcProfileEntry 11 } + + sipCallSvcProfileFlashType OBJECT-TYPE + SYNTAX INTEGER { + invite(1), + rfc2833(2), + rfc2833like(3), + sipinfo1(4), + sipinfo2(5), + sipinfo3(6), + sipinfo4(7), + sipinfo5(8), + sipinfo6(9), + bypass(10) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "flash invite : will send SIP INVITE message while press flash button. + flash bypass : flash event will be handled by current switch type specified in sipCallSvcProfileSwitchType. + flash rfc2833 : flash event will send by RTP event (16) defined in RFC 2833. + flash rfc2833like : flash event will send by SIP INFO message but RTP payload. + flash sipinfo-1 : flash event will be sent by SIP INFO signal=16 message. + flash sipinfo-2 : flash event will be sent by SIP INFO signal=hf message. + flash sipinfo-3 : flash event will be sent by SIP INFO signal=hook-flash message. + flash sipinfo-4 : flash event will be sent by SIP INFO plain text 'FLASH' message. + flash sipinfo-5 : flash event will be sent by multiple SIP INFO signal messages and content of signal messages come from sipCallSvcProfileFlashInfo. + flash sipinfo-6 : flash event will be sent by SIP INFO and payload is specified in sipCallSvcProfileFlashInfo." + ::= { sipCallSvcProfileEntry 12 } + + sipCallSvcProfileFlashInfo OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Strings carried in SIP INFO when specified in sipCallSvcProfileFlashType is sipinfo-5 and sipinfo-6." + ::= { sipCallSvcProfileEntry 13 } + + sipCallSvcProfileSoftSwitchType OBJECT-TYPE + SYNTAX INTEGER { + metaswitch(1), + nortel(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Softswitch type is configured to specify softswitch-dependent behavior, + currently only flash event is softswitch-dependent and should follow the softswitch type setting. + When configured the flash event to 'bypass', E5 will follow the softswitch type setting to + report hook flash event." + ::= { sipCallSvcProfileEntry 14 } + + + sipCallSvcProfileCPCOn OBJECT-TYPE + SYNTAX INTEGER { + on(1), + off(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Perform calling party control, or turn off." + ::= { sipCallSvcProfileEntry 15 } + + + sipCallSvcProfileCPCTimeout OBJECT-TYPE + SYNTAX INTEGER (5..60) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Delay hang up time of called party in seconds." + ::= { sipCallSvcProfileEntry 16 } + +-- dsp profile + + maxNumOfDspProfiles OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of DSP profiles supported by the system." + ::= { voipProfile 2 } + + dspProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF DspProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes DSP related configuration." + ::= { voipProfile 3 } + + dspProfileEntry OBJECT-TYPE + SYNTAX DspProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in dspProfileTable." + INDEX { IMPLIED dspProfileName } + ::= { dspProfileTable 1 } + + DspProfileEntry ::= + SEQUENCE { + dspProfileName DisplayString, + dspProfileCodec OCTET STRING, + dspProfilePlayBufferMinDelay INTEGER, + dspProfilePlayBufferMaxDelay INTEGER, + dspProfileEchoTail INTEGER, + dspProfileRowStatus RowStatus, + dspProfileG711Vpi INTEGER, + dspProfileG723Vpi INTEGER, + dspProfileG726Vpi INTEGER, + dspProfileG729Vpi INTEGER + } + + dspProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is used by the DSP profile table in order to identify a row of this table." + ::= { dspProfileEntry 1 } + + dspProfileCodec OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "0x01: g711a + 0x02: g711mu + 0x03: g723 + 0x04: g726-16 + 0x05: g726-24 + 0x06: g726-32 + 0x07: g726-40 + 0x08: g729ab + the value of dspProfileCodec is OCTET STRING, there are 8 Octets, each octect is + specified as 0x01, 0x03, 0x02, 0x07,0x00, 0x00, 0x00, 0x00 (to specify different + CODE in priority) specify as: g711a, g723, g711mu, g726-40 + " + ::= { dspProfileEntry 2 } + + dspProfilePlayBufferMinDelay OBJECT-TYPE + SYNTAX INTEGER (10..500) + UNITS "millisecond" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Play buffer minimum delay in milliseconds. + It should be less than or equal to dspProfilePlayBufferMaxDelay." + ::= { dspProfileEntry 3 } + + dspProfilePlayBufferMaxDelay OBJECT-TYPE + SYNTAX INTEGER (10..500) + UNITS "millisecond" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Play buffer maximum delay in milliseconds. + It should be greater than or equal to dspProfilePlayBufferMinDelay." + ::= { dspProfileEntry 4 } + + dspProfileEchoTail OBJECT-TYPE + SYNTAX INTEGER { + echotail8(1), + echotail16(2), + echotail32(3), + echotail128(4) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Echo cancellation echo tail period in milliseconds." + ::= { dspProfileEntry 5 } + + dspProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in the table." + ::= { dspProfileEntry 6 } + + dspProfileG711Vpi OBJECT-TYPE + SYNTAX INTEGER { + g711x10ms(1), + g711x20ms(2), + g711x30ms(3), + g711x40ms(4) + } + UNITS "millisecond" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Voice Packetization Interval(VPI) of codec G.711 in milliseconds. + The values are 10, 20, 30, 40" + ::= { dspProfileEntry 7 } + + dspProfileG723Vpi OBJECT-TYPE + SYNTAX INTEGER { + g723x30ms(1), + g723x60ms(2) + } + UNITS "millisecond" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Voice Packetization Interval(VPI) of G.723 codec in milliseconds. + The values are 30,60" + ::= { dspProfileEntry 8 } + + dspProfileG726Vpi OBJECT-TYPE + SYNTAX INTEGER { + g726x10ms(1), + g726x20ms(2), + g726x30ms(3), + g726x40ms(4) + } + UNITS "millisecond" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Voice Packetization Interval(VPI) of G.726 codec in milliseconds. + The values are 10, 20, 30, 40" + ::= { dspProfileEntry 9 } + + dspProfileG729Vpi OBJECT-TYPE + SYNTAX INTEGER { + g729x10ms(1), + g729x20ms(2), + g729x30ms(3), + g729x40ms(4), + g729x50ms(5), + g729x60ms(6) + } + UNITS "millisecond" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Voice Packetization Interval(VPI) of G.729 codec in milliseconds. + The values are 10, 20, 30, 40, 50, 60" + ::= { dspProfileEntry 10 } + +--h248 profile + + h248Profile OBJECT IDENTIFIER ::= { voipProfile 4 } + + maxNumOfH248Profiles OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of H248 profiles supported by the system." + ::= { h248Profile 1 } + + h248ProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF H248ProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes H248 profile related configuration." + ::= { h248Profile 2 } + + h248ProfileEntry OBJECT-TYPE + SYNTAX H248ProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in h248ProfileTable." + INDEX { IMPLIED h248ProfileName } + ::= { h248ProfileTable 1 } + + H248ProfileEntry ::= + SEQUENCE { + h248ProfileName DisplayString, + h248ProfileMgcSvr OCTET STRING, + h248ProfileMgcPort INTEGER, + h248ProfileMgc2On INTEGER, + h248ProfileMgc2Svr OCTET STRING, + h248ProfileMgc2Port INTEGER, + h248ProfileTransport INTEGER, + h248ProfileEncode INTEGER, + h248ProfilePbit INTEGER, + h248ProfileDscp INTEGER, + h248ProfileRowStatus RowStatus, + h248ProfileVbd INTEGER, +-- h248ProfileIt INTEGER, + h248ProfileEphemeralPrefix OCTET STRING, + h248ProfileSoftswitch INTEGER, + h248ProfileForceVer INTEGER, + h248ProfileStartRTPPort INTEGER, + h248ProfileEndRTPPort INTEGER, + h248ProfileEphemeralStartNumber OCTET STRING, + h248ProfileEphemeralSuffixLength INTEGER, + h248ProfilePhysicalPrefix OCTET STRING, + h248ProfilePhysicalStartNumber OCTET STRING, + h248ProfilePhysicalSuffixLength INTEGER, + h248ProfileRfc2833Mode INTEGER, + h248ProfileRfc2833ModePayloadType INTEGER + } + + h248ProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is used by the H248 profile table in order to identify a row of this table." + ::= { h248ProfileEntry 1 } + + h248ProfileMgcSvr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "MGC IP or MGC doamin name." + ::= { h248ProfileEntry 2 } + + h248ProfileMgcPort OBJECT-TYPE + SYNTAX INTEGER (1025..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "MGC port number." + ::= { h248ProfileEntry 3 } + + h248ProfileMgc2On OBJECT-TYPE + SYNTAX INTEGER { + on(1), + off(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Secondary MGC on/off." + ::= { h248ProfileEntry 4 } + + h248ProfileMgc2Svr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Secondary MGC IP or MGC doamin name. h248ProfileMgc2On needs to turn on if user want to set Secondary MGC IP or domain name." + ::= { h248ProfileEntry 5 } + + h248ProfileMgc2Port OBJECT-TYPE + SYNTAX INTEGER (1025..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Secondary MGC port number. h248ProfileMgc2On needs to turn on if user want to set Secondary MGC port number." + ::= { h248ProfileEntry 6 } + + h248ProfileTransport OBJECT-TYPE + SYNTAX INTEGER { + udp(1), + tcp(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Transport procotol used by the H.248 protocol stack." + ::= { h248ProfileEntry 7 } + + h248ProfileEncode OBJECT-TYPE + SYNTAX INTEGER { + longtext(1), + shorttext(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Encoding type used by the H.248 protocol stack" + ::= { h248ProfileEntry 8 } + + h248ProfilePbit OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "802.1p bit for H.248 packet." + ::= { h248ProfileEntry 9 } + + h248ProfileDscp OBJECT-TYPE + SYNTAX INTEGER (0..63) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DSCP for H.248 packet." + ::= { h248ProfileEntry 10 } + + h248ProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in the table." + ::= { h248ProfileEntry 11 } + + h248ProfileVbd OBJECT-TYPE + SYNTAX INTEGER { + on(1), + off(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "VBD mode support on/off" + ::= { h248ProfileEntry 12 } + + +-- remove since 3.0.2, ives 2009/12/24 +-- h248ProfileIt OBJECT-TYPE +-- SYNTAX INTEGER (0..65535) +-- UNITS "10ms" +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "Inactivity timer" +-- ::= { h248ProfileEntry 13 } + + + h248ProfileEphemeralPrefix OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Ephemeral Termination Prefix" + ::= { h248ProfileEntry 14 } + + + h248ProfileSoftswitch OBJECT-TYPE + SYNTAX INTEGER { + metaswitch(1), + nortelCs1500(2), + nortelCs2000(3) + -- zxss10-ss(2) not support in calix + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Softswitch type" + ::= { h248ProfileEntry 15 } + + h248ProfileForceVer OBJECT-TYPE + SYNTAX INTEGER { + on(1), + off(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Force using H.248 version 1" + ::= { h248ProfileEntry 16 } + + h248ProfileStartRTPPort OBJECT-TYPE + SYNTAX INTEGER (4000..64000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Start of RTP port number." + ::= { h248ProfileEntry 17 } + + h248ProfileEndRTPPort OBJECT-TYPE + SYNTAX INTEGER (5000..65000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "End of RTP port number." + ::= { h248ProfileEntry 18 } + + h248ProfileEphemeralStartNumber OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Ephemeral termination suffix start number, up to 15 digits." + ::= { h248ProfileEntry 19 } + + h248ProfileEphemeralSuffixLength OBJECT-TYPE + SYNTAX INTEGER (0..15) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Ephemeral termination suffix number length , padding zero at the front if not long enough." + ::= { h248ProfileEntry 20 } + + h248ProfilePhysicalPrefix OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Physical Termination Prefix." + ::= { h248ProfileEntry 21 } + + h248ProfilePhysicalStartNumber OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Physical termination suffix start number, up to 15 digits." + ::= { h248ProfileEntry 22 } + + h248ProfilePhysicalSuffixLength OBJECT-TYPE + SYNTAX INTEGER (0..15) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Physical termination suffix number length , padding zero at the front if not long enough." + ::= { h248ProfileEntry 23 } + + h248ProfileRfc2833Mode OBJECT-TYPE + SYNTAX INTEGER { + On(1), + Off(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "RFC2833 mode support." + ::= { h248ProfileEntry 24 } + + h248ProfileRfc2833ModePayloadType OBJECT-TYPE + SYNTAX INTEGER (96..127) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Payload type of RFC2833 mode." + ::= { h248ProfileEntry 25 } + +-------------------- +-- ipqosProfile +-------------------- + +-- ipqosProfileTable + + maxNumOfIpqosProfiles OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of IPQOS profiles supported by the system." + ::= { ipqosProfile 1 } + + ipqosProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpqosProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes IPQOS related configuration." + ::= { ipqosProfile 2 } + + ipqosProfileEntry OBJECT-TYPE + SYNTAX IpqosProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in ipqosProfileTable." + INDEX { ipqosProfileName , ipqosProfileNumOfQueue } + ::= { ipqosProfileTable 1 } + + IpqosProfileEntry ::= + SEQUENCE { + ipqosProfileName DisplayString, + ipqosProfileNumOfQueue INTEGER, + ipqosProfileRowStatus RowStatus + } + + ipqosProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is used by the IPQOS profile table in order to identify a row of this table." + ::= { ipqosProfileEntry 1 } + + ipqosProfileNumOfQueue OBJECT-TYPE + SYNTAX INTEGER (1..8) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The number of IPQOS queues." + ::= { ipqosProfileEntry 2 } + + ipqosProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or delete an existing row in the table." + ::= { ipqosProfileEntry 3 } + +-- ipqosProfileQueueTable + + ipqosProfileQueueTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpqosProfileQueueEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes IPQOS queue related configuration." + ::= { ipqosProfile 3 } + + ipqosProfileQueueEntry OBJECT-TYPE + SYNTAX IpqosProfileQueueEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in ipqosProfileQueueTable." + INDEX { ipqosProfileName , ipqosProfileQueueIndex } + ::= { ipqosProfileQueueTable 1 } + + IpqosProfileQueueEntry ::= + SEQUENCE { + ipqosProfileQueueIndex INTEGER, + ipqosProfileQueuePIR INTEGER, + ipqosProfileQueueCIR INTEGER, + ipqosProfileQueuePBS INTEGER, + ipqosProfileQueueCBS INTEGER, + ipqosProfileQueueLevel INTEGER, + ipqosProfileQueueWeight INTEGER + } + + ipqosProfileQueueIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IPQOS queue index." + ::= { ipqosProfileQueueEntry 1 } + + ipqosProfileQueuePIR OBJECT-TYPE + SYNTAX INTEGER (512..131072) + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Peak rate.(multiple of 256)" + ::= { ipqosProfileQueueEntry 2 } + + ipqosProfileQueueCIR OBJECT-TYPE + SYNTAX INTEGER (256..65536) + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Commited rate.(multiple of 256)" + ::= { ipqosProfileQueueEntry 3 } + + ipqosProfileQueuePBS OBJECT-TYPE + SYNTAX INTEGER (3072..65536) + UNITS "byte" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Peak burst size.(mutiple of 256)" + ::= { ipqosProfileQueueEntry 4 } + + ipqosProfileQueueCBS OBJECT-TYPE + SYNTAX INTEGER (3072..65536) + UNITS "byts" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Commited burst size.(mutiple of 256)" + ::= { ipqosProfileQueueEntry 5 } + + ipqosProfileQueueLevel OBJECT-TYPE + SYNTAX INTEGER (0..7) + UNITS "byts" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Queue level." + ::= { ipqosProfileQueueEntry 6 } + + ipqosProfileQueueWeight OBJECT-TYPE + SYNTAX INTEGER (1..127) + UNITS "byts" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Queue weight." + ::= { ipqosProfileQueueEntry 7 } + +---------------------------------------- +-- switch +---------------------------------------- + dot3ad OBJECT IDENTIFIER ::= { switch 6 } + dscp OBJECT IDENTIFIER ::= { switch 10 } + vlanIsolation OBJECT IDENTIFIER ::= { switch 12 } + enetMtu OBJECT IDENTIFIER ::= { switch 13 } + tpid OBJECT IDENTIFIER ::= { switch 14 } + cfm OBJECT IDENTIFIER ::= { switch 15 } + +-- Standalone IP DSLAM puts all ACL features in 'switch', from OID 51 + dhcp OBJECT IDENTIFIER ::= { switch 51 } + macfilter OBJECT IDENTIFIER ::= { switch 53 } + dhcpSnoop OBJECT IDENTIFIER ::= { switch 55 } + acl OBJECT IDENTIFIER ::= { switch 56 } + pppoeAgent OBJECT IDENTIFIER ::= { switch 57 } + n1mac OBJECT IDENTIFIER ::= { switch 58 } + macff OBJECT IDENTIFIER ::= { switch 60 } + +-------------------- +-- dot3ad +-------------------- + + dot3adTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dot3adEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table contains 802.3ad configuration." + ::= { dot3ad 1 } + + dot3adEntry OBJECT-TYPE + SYNTAX Dot3adEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { dot3adGroupId } + ::= { dot3adTable 1 } + + Dot3adEntry ::= + SEQUENCE { + dot3adGroupId INTEGER, + dot3adEnable INTEGER + } + + dot3adGroupId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Group ID 1 for the subtending group and 2 for the uplink group." + ::= { dot3adEntry 1 } + + dot3adEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + enableWithLacp(2), + disable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable 802.3ad function." + ::= { dot3adEntry 2 } + + lacpPriority OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "LACP system priority." + ::= { dot3ad 2 } + + lacpTimeout OBJECT-TYPE + SYNTAX INTEGER { + shorttimeout(1), + longtimeout(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The time interval to exchange LACP packets in order to check that the peer port + in the trunk group is still up." + ::= { dot3ad 3 } + + portTrunkingTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortTrunkingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table contains current status of port trunking." + ::= { dot3ad 4 } + + portTrunkingEntry OBJECT-TYPE + SYNTAX PortTrunkingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { portTrunkingGroupId } + ::= { portTrunkingTable 1 } + + PortTrunkingEntry ::= + SEQUENCE { + portTrunkingGroupId INTEGER, + portTrunkingStatus INTEGER, + portTrunkingPortList PortList + } + + portTrunkingGroupId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Group ID 1 for the subtending group and 2 for the uplink group." + ::= { portTrunkingEntry 1 } + + portTrunkingStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Port trunking status." + ::= { portTrunkingEntry 2 } + + portTrunkingPortList OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port list which actually joins the trunking group." + ::= { portTrunkingEntry 3 } + +-------------------- +-- dscp +-------------------- + + dscpMappingTable OBJECT-TYPE + SYNTAX SEQUENCE OF DscpMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table contains DSCP mapping configuration for the adsl ports." + ::= { dscp 1 } + + dscpMappingEntry OBJECT-TYPE + SYNTAX DscpMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dscpMappingTable." + INDEX { dscpSrcCodePoint } + ::= { dscpMappingTable 1 } + + DscpMappingEntry ::= + SEQUENCE { + dscpSrcCodePoint INTEGER, +-- dscpMapCodePoint INTEGER, + dscpMapPriority INTEGER + } + + dscpSrcCodePoint OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The DSCP source code point used for mapping." + ::= { dscpMappingEntry 1 } + +-- dscpMapCodePoint OBJECT-TYPE +-- SYNTAX INTEGER (0..63) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The mapping code point that will replace the source code point in the incoming packet." +-- ::= { dscpMappingEntry 2 } + + dscpMapPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The mapping p bits that will replace the source p bits in the incoming packet." + ::= { dscpMappingEntry 3 } + +--- pfchen + dscpPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF DscpPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table contains DSCP mapping configuration for the adsl ports." + ::= { dscp 2 } + + dscpPortEntry OBJECT-TYPE + SYNTAX DscpPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dscpPortTable." + INDEX { ifIndex } + ::= { dscpPortTable 1 } + + DscpPortEntry ::= + SEQUENCE { + dscpStatusEnable INTEGER + } + + dscpStatusEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The DSCP port status." + ::= { dscpPortEntry 1 } + +-------------------- +-- Vlan Isolation +-------------------- + + vlanIsolationTable OBJECT-TYPE + SYNTAX SEQUENCE OF VlanIsolationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table contains configuration of isolated VLAN." + ::= { vlanIsolation 1 } + + vlanIsolationEntry OBJECT-TYPE + SYNTAX VlanIsolationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of vlanIsolationTable." + INDEX { dot1qVlanIndex } + ::= { vlanIsolationTable 1 } + + VlanIsolationEntry ::= + SEQUENCE { + vlanIsolationRowStatus INTEGER + } + + vlanIsolationRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table used to create/delete an entry." + ::= { vlanIsolationEntry 1 } + +-------------------- +-- enet MTU +-------------------- + + enetMtuEntry OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Sets the MTU size for layer 2 frame, size from 1526 to 1532, default value is 1526." + ::= { enetMtu 1 } + +-------------------- +-- TPID (Tag Protocol Identifier) +-------------------- + + tpidEntry OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Sets TPID(Tag Protocol Identifier) of tagged frame, 0~FFFF." + ::= { tpid 1 } + +-------------------- +-- CFM +-------------------- + +-- cfmLoopbackPortTable + + cfmLoopbackPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF CfmLoopbackPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains CFM information." + ::= { cfm 1 } + + cfmLoopbackPortEntry OBJECT-TYPE + SYNTAX CfmLoopbackPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in cfmLoopbackPortTable." + INDEX { ifIndex } + ::= { cfmLoopbackPortTable 1 } + + CfmLoopbackPortEntry ::= SEQUENCE { + cfmLoopbackPortState INTEGER + } + + cfmLoopbackPortState OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "CFM loopback enable/disable on the port." + ::= { cfmLoopbackPortEntry 1 } + +-- cfmMIPTable + + cfmMIPTable OBJECT-TYPE + SYNTAX SEQUENCE OF CfmMIPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { cfm 2 } + + cfmMIPEntry OBJECT-TYPE + SYNTAX CfmMIPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in cfmMIPTable." + INDEX { dot1agCfmMdIndex, cfmPort } + ::= { cfmMIPTable 1 } + + CfmMIPEntry ::= + SEQUENCE { + cfmPort INTEGER, + cfmMIPRowStatus RowStatus, + cfmMIPMacAddr PhysAddress + } + +-- cfmLevel OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { cfmMIPEntry 1 } +-- +-- cfmVlanID OBJECT-TYPE +-- SYNTAX INTEGER +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "" +-- ::= { cfmMIPEntry 2 } + + cfmPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { cfmMIPEntry 3 } + + cfmMIPRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "" + ::= { cfmMIPEntry 4 } + + cfmMIPMacAddr OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "CFM MIP mac address" + ::= { cfmMIPEntry 5 } + + cfmActionEnableStatus OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "CFM Action enable status for the CO device" + ::= { cfm 3 } + + cfmMode OBJECT-TYPE + SYNTAX INTEGER { + mode802Dot1Ag(1), + modeYDot1731(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "CFM follow standard mode" + ::= { cfm 4 } + + cfmLbmTimeout OBJECT-TYPE + SYNTAX INTEGER (100..86400) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "CFM LBM timeout, 100-86400 ms" + ::= { cfm 5 } + + cfmLbmDataTlvLength OBJECT-TYPE + SYNTAX INTEGER (0..1400) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "CFM LBM data tlv length, 0-1400 bytes" + ::= { cfm 6 } + +-- cfmLbrTable + + cfmLbrTable OBJECT-TYPE + SYNTAX SEQUENCE OF CfmLbrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains CFM LBR results." + ::= { cfm 7 } + + cfmLbrEntry OBJECT-TYPE + SYNTAX CfmLbrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in cfmLbrTable." + INDEX { dot1agCfmMdIndex, dot1agCfmMaIndex, dot1agCfmMepIdentifier, cfmLbmIndex, cfmLbrIndex} + ::= { cfmLbrTable 1 } + + CfmLbrEntry ::= SEQUENCE { + cfmLbmIndex INTEGER, + cfmLbrIndex INTEGER, + cfmLbrSrcMac PhysAddress, + cfmLbrStatus INTEGER, + cfmLbrRtt INTEGER + } + + cfmLbmIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CFM lbm index." + ::= { cfmLbrEntry 1 } + + cfmLbrIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CFM lbr index." + ::= { cfmLbrEntry 2 } + + cfmLbrSrcMac OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CFM lbr source address." + ::= { cfmLbrEntry 3 } + + cfmLbrStatus OBJECT-TYPE + SYNTAX INTEGER { + ready(1), + notready(2), + xmit(3), + success(4), + timeout(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CFM lbr status." + ::= { cfmLbrEntry 4 } + + cfmLbrRtt OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CFM lbr rtt in ms." + ::= { cfmLbrEntry 5 } + +-------------------- +-- DHCP Relay +-------------------- + dhcpRelay82Table OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpRelay82Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains DHCP Relay configuration." + ::= { dhcp 2 } + + dhcpRelay82Entry OBJECT-TYPE + SYNTAX DhcpRelay82Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of DHCP Relay table." + INDEX { dot1qVlanIndex } + ::= { dhcpRelay82Table 1 } + + DhcpRelay82Entry ::= + SEQUENCE { + dhcpRelay82PrimaryServer IpAddress, + dhcpRelay82SecondaryServer IpAddress, + dhcpRelay82ActiveServer INTEGER, + dhcpRelay82Enable INTEGER, + dhcpRelay82Info DisplayString, + dhcpRelay82RelayMode INTEGER, + dhcpRelay82Suboption2Enable INTEGER, + dhcpRelay82Suboption2Info DisplayString, + dhcpRelay82EntryEnable INTEGER, + dhcpRelay82EntryOptionMode INTEGER, + dhcpRelay82VlanIp IpAddress, + dhcpRelay82VlanMask INTEGER, + dhcpRelay82VlanGateway IpAddress, + dhcpRelay82ThirdServer IpAddress, + dhcpRelay82FourthServer IpAddress, + dhcpRelay82FifthServer IpAddress, + dhcpRelay82ServerVid INTEGER + } + + dhcpRelay82PrimaryServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Relay primary server." + ::= { dhcpRelay82Entry 1 } + + dhcpRelay82SecondaryServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Relay secondary server." + ::= { dhcpRelay82Entry 2 } + + dhcpRelay82ActiveServer OBJECT-TYPE + SYNTAX INTEGER { + primary(1), + secondary(2), + third(3), + fourth(4), + fifth(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current active DHCP Relay server." + ::= { dhcpRelay82Entry 3 } + + dhcpRelay82Enable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable/disable DHCP relay and Option82 function." + ::= { dhcpRelay82Entry 4 } + + dhcpRelay82Info OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..23)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "User specific Option82 information." + ::= { dhcpRelay82Entry 5 } + + dhcpRelay82RelayMode OBJECT-TYPE + SYNTAX INTEGER { + auto(1), + all(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DHCP relay mode." + ::= { dhcpRelay82Entry 6 } + + + dhcpRelay82Suboption2Enable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable/disable Option 82 sub-option 2." + ::= { dhcpRelay82Entry 8 } + + dhcpRelay82Suboption2Info OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "User specified information for Option 82 sub-option 2." + ::= { dhcpRelay82Entry 9 } + + dhcpRelay82EntryEnable OBJECT-TYPE + SYNTAX INTEGER { + auto(1), + all(2), + disable(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable/disable DHCP Relay" + ::= { dhcpRelay82Entry 10 } + + dhcpRelay82EntryOptionMode OBJECT-TYPE + SYNTAX INTEGER { + private(1), + tr101(2), + customer-remote-id(3), + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Option82 format." + ::= { dhcpRelay82Entry 11 } + + dhcpRelay82VlanIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Relay interface for this VLAN." + ::= { dhcpRelay82Entry 12 } + + dhcpRelay82VlanMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The network mask of the DHCP Relay interface for this VLAN." + ::= { dhcpRelay82Entry 13 } + + dhcpRelay82VlanGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The gateway of the DHCP Relay interface for this VLAN." + ::= { dhcpRelay82Entry 14 } + + dhcpRelay82ThirdServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Relay third server." + ::= { dhcpRelay82Entry 15 } + + dhcpRelay82FourthServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Relay fourth server." + ::= { dhcpRelay82Entry 16 } + + + dhcpRelay82FifthServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Relay fifth server." + ::= { dhcpRelay82Entry 17 } + + dhcpRelay82ServerVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The VID of the DHCP Relay server for this VLAN." + ::= { dhcpRelay82Entry 18 } + +-- dhcpRelayTest + dhcpRelayTest OBJECT IDENTIFIER ::= { dhcp 8 } + + dhcpRelayTestVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting the VID of the test server." + ::= { dhcpRelayTest 1 } + + dhcpRelayTestIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting the IP of the test server." + ::= { dhcpRelayTest 2 } + + dhcpRelayTestOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the object to 1 to test DHCP server." + ::= { dhcpRelayTest 3 } + + dhcpRelayTestStatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display testing server status." + ::= { dhcpRelayTest 4 } + +-- dhcpRelayArp + dhcpRelayArp OBJECT IDENTIFIER ::= { dhcp 9 } + + dhcpRelayArpShowTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpRelayArpShowEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table displays DHCP ARP." + ::= { dhcpRelayArp 1 } + + dhcpRelayArpShowEntry OBJECT-TYPE + SYNTAX DhcpRelayArpShowEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dhcpRelayArpShowTable." + INDEX { dhcpRelayArpShowVid, dhcpRelayArpShowIp } + ::= { dhcpRelayArpShowTable 1 } + + DhcpRelayArpShowEntry ::= + SEQUENCE { + dhcpRelayArpShowVid INTEGER, + dhcpRelayArpShowIp IpAddress, + dhcpRelayArpShowMac PhysAddress + } + + dhcpRelayArpShowVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the VID of the DHCP ARP entry." + ::= { dhcpRelayArpShowEntry 1 } + + dhcpRelayArpShowIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the IP of the DHCP ARP entry." + ::= { dhcpRelayArpShowEntry 2 } + + dhcpRelayArpShowMac OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the MAC of the DHCP ARP entry." + ::= { dhcpRelayArpShowEntry 3 } + + dhcpRelayArpFlushOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the object to 1 to start flushing." + ::= { dhcpRelayArp 2 } + +-------------------- +-- MAC Filter +-------------------- + +-- MAC Filter Port Table + + macFilterPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the status of mac filtering for each port." + ::= { macfilter 1 } + + macFilterPortEntry OBJECT-TYPE + SYNTAX MacFilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in macFilterPortTable." + INDEX { ifIndex } + ::= { macFilterPortTable 1 } + + MacFilterPortEntry ::= + SEQUENCE { + macFilterPortEnable INTEGER, + macFilterPortMacCount INTEGER, + macFilterPortFilterMode INTEGER + } + + macFilterPortEnable OBJECT-TYPE + SYNTAX INTEGER { + enableMacFilter(1), + enableMacCount(2), +-- enableOuiFilter(3), + disable(4), + enableMacFilterAndMacCount(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable MAC filtering for the port." + ::= { macFilterPortEntry 1 } + + macFilterPortMacCount OBJECT-TYPE + SYNTAX INTEGER (1..128) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The total number of MAC addresses allowed for the port." + ::= { macFilterPortEntry 2 } + + macFilterPortFilterMode OBJECT-TYPE + SYNTAX INTEGER { + accept(1), + deny(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The mac filter mode (accept or deny) for the port." + ::= { macFilterPortEntry 3 } + + maxNumOfMacFiltersInSystem OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of mac filters supported in the system." + ::= { macfilter 2 } + + maxNumOfMacFiltersPerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of mac filters supported per port." + ::= { macfilter 3 } + + currNumOfMacFiltersInSystem OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of mac filters in the system." + ::= { macfilter 4 } + +-- MAC Table + + macFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains the mac filter addresses." + ::= { macfilter 5 } + + macFilterEntry OBJECT-TYPE + SYNTAX MacFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of macFilterTable." + INDEX { ifIndex, macFilterAddr } + ::= { macFilterTable 1 } + + MacFilterEntry ::= + SEQUENCE { + macFilterAddr PhysAddress, + macFilterRowStatus RowStatus + } + + macFilterAddr OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The mac address which can pass through or be rejected from the port." + ::= { macFilterEntry 1 } + + macFilterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the entry." + ::= { macFilterEntry 2 } + +-- Batch Set for MAC Filter + + macfilterBatchSet OBJECT IDENTIFIER ::= { macfilter 6 } + + macfilterTarget OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This managed object is used for identify the target on which + the port configuration should be performed. The target is encoded as: + Byte 1: 0, Reserved(chassis) + Byte 2~3: 0, Reserved(slot) + Byte 4: 0, reserved + Byte 5~11:each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc." + ::= { macfilterBatchSet 1 } + + macfilterOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The corresponding bit is set to 1 to start the operation. + The various bit positions are: + BIT 1: enable mac filter + BIT 2: enable mac count filter + BIT 3: disable mac filter + BIT 4: set mac count + BIT 5: disable mac count filter." + ::= { macfilterBatchSet 2 } + + macFilterMacCountForBatchSet OBJECT-TYPE + SYNTAX INTEGER (1..128) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The total number of MAC addresses allowed for a port." + ::= { macfilterBatchSet 3 } + + +-- OUI Filter Table + + ouiFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF OuiFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains the OUI filter addresses." + ::= { macfilter 7 } + + ouiFilterEntry OBJECT-TYPE + SYNTAX OuiFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of ouiFilterTable." + INDEX { ifIndex, ouiFilterAddr } + ::= { ouiFilterTable 1 } + + OuiFilterEntry ::= + SEQUENCE { + ouiFilterAddr OCTET STRING, + ouiFilterRowStatus RowStatus + } + + ouiFilterAddr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The first three bytes of the mac address which can pass through or be rejected from the port." + ::= { ouiFilterEntry 1 } + + ouiFilterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the entry." + ::= { ouiFilterEntry 2 } + + maxNumOfOuiFiltersPerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of OUI filters supported per port." + ::= { macfilter 8 } + + + ouiFilterPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF OuiFilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes the status of oui filtering for each port." + ::= { macfilter 9 } + + ouiFilterPortEntry OBJECT-TYPE + SYNTAX OuiFilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in macFilterPortTable." + INDEX { ifIndex } + ::= { ouiFilterPortTable 1 } + + OuiFilterPortEntry ::= + SEQUENCE { + ouiFilterPortEnable INTEGER, + ouiFilterPortFilterMode INTEGER + } + + + ouiFilterPortEnable OBJECT-TYPE + SYNTAX INTEGER { + enableOuiFilter(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable oui filtering for the port." + ::= { ouiFilterPortEntry 1 } + + + + ouiFilterPortFilterMode OBJECT-TYPE + SYNTAX INTEGER { + accept(1), + deny(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The oui filter mode (accept or deny) for the port." + ::= { ouiFilterPortEntry 2 } + +-------------------- +-- DHCP Snoop +-------------------- + +-- dhcpSnoopPortTable + + dhcpSnoopPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpSnoopPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes DHCP snooping enable/disable for each port." + ::= { dhcpSnoop 1 } + + dhcpSnoopPortEntry OBJECT-TYPE + SYNTAX DhcpSnoopPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dhcpSnoopPortTable." + INDEX { ifIndex } + ::= { dhcpSnoopPortTable 1 } + + DhcpSnoopPortEntry ::= + SEQUENCE { + dhcpSnoopEnable INTEGER, + dhcpSnoopMaxcnt INTEGER, + dhcpSnoopSmacverifyEnable INTEGER + } + + dhcpSnoopEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable DHCP snooping for a port." + ::= { dhcpSnoopPortEntry 1 } + + dhcpSnoopMaxcnt OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the max entries of the DHCP ARP table." + ::= { dhcpSnoopPortEntry 2 } + + dhcpSnoopSmacverifyEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable DHCP source MAC verify for a port." + ::= { dhcpSnoopPortEntry 3 } + + +-- dhcpSnoopOperation + + dhcpSnoopTarget OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This managed object is used for identify the target on which + the operation should be performed. The target is encoded as: + Byte 1: the octet specifies a set of eight chassis, chassis 0 through 7 + Byte 2~3: each octet specifies a set of eight slots, with the + first octet specifying slots 1 through 8 and the second + octet specifying slots 9 through 16. + Byte 4: reserved + Byte 5~11:each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc." + ::= { dhcpSnoop 2 } + + dhcpSnoopOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The corresponding bit is set to 1 to start the operation. + The various bit positions are: + BIT 1: DHCP snooping table flush." + ::= { dhcpSnoop 3 } + +-- dhcpStaticTable + + dhcpStaticTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpStaticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table defines DHCP static IP addresses." + ::= { dhcpSnoop 4 } + + dhcpStaticEntry OBJECT-TYPE + SYNTAX DhcpStaticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dhcpStaticTable." + INDEX { ifIndex, dhcpStaticIpAddr } + ::= { dhcpStaticTable 1 } + + DhcpStaticEntry ::= + SEQUENCE { + dhcpStaticIpAddr IpAddress, + dhcpStaticRowStatus RowStatus + } + + dhcpStaticIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address which can pass through the port." + ::= { dhcpStaticEntry 1 } + + dhcpStaticRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table entry." + ::= { dhcpStaticEntry 2 } + + maxNumOfDhcpStaticIp OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of DHCP static IP addresses which can be created for a port." + ::= { dhcpSnoop 5 } + + dhcpSnoopMaxcntMode OBJECT-TYPE + SYNTAX INTEGER { + replace(1), + drop(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "When DHCP snooping table is full, new DHCP lease will replace first one in option 0 or will be dropped in option 1." + ::= { dhcpSnoop 6 } + +-------------------- +-- ACL Rule +-------------------- + +-- aclSetTable + + aclSetTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "aclsetTable." + ::= { acl 1 } + + aclSetEntry OBJECT-TYPE + SYNTAX AclSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of aclSetTable." + INDEX { ifIndex, aclSetVpi, aclSetVci, aclSetProfileName } + ::= { aclSetTable 1 } + + AclSetEntry ::= + SEQUENCE { + aclSetVpi INTEGER, + aclSetVci INTEGER, + aclSetProfileName DisplayString, + aclSetRowStatus RowStatus + } + + aclSetVpi OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPI value" + ::= { aclSetEntry 1 } + + aclSetVci OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VCI value" + ::= { aclSetEntry 2 } + + aclSetProfileName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ACL Profile name" + ::= { aclSetEntry 3 } + + aclSetRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "RowStatus of aclSetEntry" + ::= { aclSetEntry 4 } + +-- aclProfileTable + + aclProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "aclProfileTable." + ::= { acl 2 } + + aclProfileEntry OBJECT-TYPE + SYNTAX AclProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of aclProfileTable." + INDEX { aclProfileRuleName } + ::= { aclProfileTable 1 } + + AclProfileEntry ::= + SEQUENCE { + aclProfileRuleName DisplayString, + aclProfileRuleNumber INTEGER, + aclProfileActionNumber INTEGER, + aclProfileRuleParamMask INTEGER, + aclProfileRuleEtype INTEGER, + aclProfileRuleVid INTEGER, + aclProfileRuleSmac PhysAddress, + aclProfileRuleDmac PhysAddress, + aclProfileRulePriority INTEGER, + aclProfileRuleProtocol INTEGER, +-- aclProfileRuleSrcIP IpAddress, +-- aclProfileRuleSrcIPMask INTEGER, +-- aclProfileRuleDestIP IpAddress, +-- aclProfileRuleDestIPMask INTEGER, +-- aclProfileRuleStartTos INTEGER, +-- aclProfileRuleEndTos INTEGER, +-- aclProfileRuleSrcStartPort INTEGER, +-- aclProfileRuleSrcEndPort INTEGER, +-- aclProfileRuleDestStartPort INTEGER, +-- aclProfileRuleDestEndPort INTEGER, + aclProfileActionRate INTEGER, + aclProfileActionrvlan INTEGER, + aclProfileActionrpri INTEGER, + aclProfileRowStatus RowStatus, + aclProfileRuleSip IpAddress, + aclProfileRuleDip IpAddress, + aclProfileRuleSport INTEGER, + aclProfileRuleDport INTEGER + + } + + aclProfileRuleName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Profile rule name" + ::= { aclProfileEntry 1 } + + aclProfileRuleNumber OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The managed object is for acl profile rule configuration. + etype vlan (1), + etype smac (2), + etype dmac (3), + vlan smac (4), + vlan dmac (5), + smac dmac (6), + vlan priority (7), + etype (8), + vlan (9), + smac (10), + dmac (11), + priority (12), + protocol (13), + vlan sip (14), + vlan dip (15), + vlan sport tcp|udp (16), + vlan dport tcp|udp (17) " + ::= { aclProfileEntry 2 } + + aclProfileActionNumber OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile action number. + Bit 1: rate + Bit 2: rvlan + Bit 3: rpri + Bit 4: deny + Bit 1, Bit 2 & Bit 3 can multiple selection." + ::= { aclProfileEntry 3 } + + aclProfileRuleParamMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule parameter mask. + BIT 1: srcip / + BIT 2: dstip / + BIT 3: tos + BIT 4: srcport + BIT 5: dstport " + ::= { aclProfileEntry 4 } + + aclProfileRuleEtype OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule etype" + ::= { aclProfileEntry 5 } + + aclProfileRuleVid OBJECT-TYPE + SYNTAX INTEGER (1..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule vid" + ::= { aclProfileEntry 6 } + + aclProfileRuleSmac OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule source MAC" + ::= { aclProfileEntry 7 } + + aclProfileRuleDmac OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule destination MAC" + ::= { aclProfileEntry 8 } + + aclProfileRulePriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule priority" + ::= { aclProfileEntry 9 } + + aclProfileRuleProtocol OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile rule protocol. + icmp(1),igmp(2),ip(4),tcp(6), + udp(17),gre(47),ospf(89), + other ptype" + ::= { aclProfileEntry 10 } + +-- aclProfileRuleSrcIP OBJECT-TYPE +-- SYNTAX IpAddress +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Profile rule source IP" +-- ::= { aclProfileEntry 11 } +-- +-- aclProfileRuleSrcIPMask OBJECT-TYPE +-- SYNTAX INTEGER (0..32) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The subnet mask of source IP mask" +-- ::= { aclProfileEntry 12 } +-- +-- aclProfileRuleDestIP OBJECT-TYPE +-- SYNTAX IpAddress +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Profile rule source IP" +-- ::= { aclProfileEntry 13 } +-- +-- aclProfileRuleDestIPMask OBJECT-TYPE +-- SYNTAX INTEGER (0..32) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The subnet mask of dest IP mask" +-- ::= { aclProfileEntry 14 } +-- +-- aclProfileRuleStartTos OBJECT-TYPE +-- SYNTAX INTEGER (0..255) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Profile rule start type of service" +-- ::= { aclProfileEntry 15 } +-- +-- aclProfileRuleEndTos OBJECT-TYPE +-- SYNTAX INTEGER (0..255) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Profile rule end type of service" +-- ::= { aclProfileEntry 16 } +-- +-- aclProfileRuleSrcStartPort OBJECT-TYPE +-- SYNTAX INTEGER (0..65535) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Profile rule source start port" +-- ::= { aclProfileEntry 17 } +-- +-- aclProfileRuleSrcEndPort OBJECT-TYPE +-- SYNTAX INTEGER (0..65535) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Profile rule source end port" +-- ::= { aclProfileEntry 18 } +-- +-- aclProfileRuleDestStartPort OBJECT-TYPE +-- SYNTAX INTEGER (0..65535) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Profile rule destination start port" +-- ::= { aclProfileEntry 19 } +-- +-- aclProfileRuleDestEndPort OBJECT-TYPE +-- SYNTAX INTEGER (0..65535) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Profile rule destination end port" +-- ::= { aclProfileEntry 20 } + + aclProfileActionRate OBJECT-TYPE + SYNTAX INTEGER (32..65472) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile action to replace to this rate" + ::= { aclProfileEntry 21 } + + aclProfileActionrvlan OBJECT-TYPE + SYNTAX INTEGER (1..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile action to replace to this vlan" + ::= { aclProfileEntry 22 } + + aclProfileActionrpri OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Profile action to replace to this priority" + ::= { aclProfileEntry 23 } + + aclProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The row status of the entry." + ::= { aclProfileEntry 24 } + + aclProfileRuleSip OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source IP." + ::= { aclProfileEntry 25 } + + aclProfileRuleDip OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination IP." + ::= { aclProfileEntry 26 } + + aclProfileRuleSport OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source port." + ::= { aclProfileEntry 27 } + + aclProfileRuleDport OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination port." + ::= { aclProfileEntry 28 } + + +-------------------- +-- PPPoE Agent +-------------------- + +-- pppoeAgentTable + + pppoeAgentTable OBJECT-TYPE + SYNTAX SEQUENCE OF PppoeAgentEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains PPPoE intermediate agent configuration." + ::= { pppoeAgent 1 } + + pppoeAgentEntry OBJECT-TYPE + SYNTAX PppoeAgentEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of pppoeAgentTable." + INDEX { dot1qVlanIndex } + ::= { pppoeAgentTable 1 } + + PppoeAgentEntry ::= + SEQUENCE { + pppoeAgentEnable INTEGER, + pppoeAgentInfo DisplayString, + pppoeAgentRowStatus RowStatus, + pppoeAgentOptionMode INTEGER + } + + pppoeAgentEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable/disable PppoE intermediate agent function." + ::= { pppoeAgentEntry 1 } + + pppoeAgentInfo OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..23)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "User specific Option82 information." + ::= { pppoeAgentEntry 2 } + + pppoeAgentRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table entry." + ::= { pppoeAgentEntry 3 } + + pppoeAgentOptionMode OBJECT-TYPE + SYNTAX INTEGER { + private(1), + tr101(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Option82 format." + ::= { pppoeAgentEntry 4 } + + maxNumOfPppoeAgentConf OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of rows that can be created in pppoeAgentTable." + ::= { pppoeAgent 2 } + + +-------------------- +-- n1mac +-------------------- + n1macReplaceMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This MAC address will be used to replace client's MAC address." + ::= { n1mac 1 } + + n1macPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF N1macPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table contains N to 1 MAC configuration for DSL ports." + ::= { n1mac 2 } + + n1macPortEntry OBJECT-TYPE + SYNTAX N1macPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of n1macPortTable." + INDEX { ifIndex } + ::= { n1macPortTable 1 } + + N1macPortEntry ::= + SEQUENCE { + n1macStatusEnable INTEGER + } + + n1macStatusEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port status of n1mac function." + ::= { n1macPortEntry 1 } + +---------------------------------------- +-- macff +---------------------------------------- + macFfTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains MAC Force Forwarding configuration." + ::= { macff 1 } + + macFfEntry OBJECT-TYPE + SYNTAX MacFfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfTable." + INDEX { macFfIndex } + ::= { macFfTable 1 } + + MacFfEntry ::= + SEQUENCE { + macFfIndex INTEGER, + macFfVid INTEGER, + macFfArIP IpAddress, +-- macFfArMask INTEGER, + macFfSrcIP IpAddress, + macFfSrcMask INTEGER, + macFfRowStatus RowStatus + } + + macFfIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of the MACFF." + ::= { macFfEntry 1 } + + macFfVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The VLAN-ID refering to this AR/AS." + ::= { macFfEntry 2 } + + + macFfArIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IP of this AR/AS" + ::= { macFfEntry 3 } + + macFfSrcIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source IP address of the MACFF." + ::= { macFfEntry 4 } + + macFfSrcMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The subnet mask of source IP mask." + ::= { macFfEntry 5 } + + + macFfRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of the MacFfEntry entry." + ::= { macFfEntry 6 } + + + macFfArpFlush OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the object to 1 to flush mac table." + ::= { macff 3 } + + maxNumOfMacFfVlanInSystem OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The max number of macff Vlans supported in the system." + ::= { macff 4 } + + macFfVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains MAC Force Forwarding Vlan configuration." + ::= { macff 5 } + + macFfVlanEntry OBJECT-TYPE + SYNTAX MacFfVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfVlanTable." + INDEX { dot1qVlanIndex } + ::= { macFfVlanTable 1 } + + MacFfVlanEntry ::= + SEQUENCE { + macFfVlanRowstatus INTEGER +-- macFfVlanUnknownUnicast INTEGER removed since R3.1 + } + + macFfVlanRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status of the table used to create/delete an entry." + ::= { macFfVlanEntry 1 } +-- removed since R3.1 +-- macFfVlanUnknownUnicast OBJECT-TYPE +-- SYNTAX INTEGER { +-- flood(1), +-- drop(2) +-- } +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "Setting downstream unknown uni-cast packet on macff vlan to flooding or dropping." +-- ::= { macFfVlanEntry 2 } + + macFfStaticIPTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfStaticIPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + ::= { macff 6 } + + macFfStaticIPEntry OBJECT-TYPE + SYNTAX MacFfStaticIPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfTable." + INDEX { macFfStaticIPPort, macFfStaticIPVid, macFfstaticIP , macFfStaticIPMask} + ::= { macFfStaticIPTable 1 } + + MacFfStaticIPEntry ::= + SEQUENCE { + macFfStaticIPPort INTEGER, + macFfStaticIPVid INTEGER, + macFfstaticIP IpAddress, + macFfStaticIPMask INTEGER, + macFfStaticIPRowStatus RowStatus + } + + macFfStaticIPPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The port number, 1 ~ 48." + ::= { macFfStaticIPEntry 1 } + + macFfStaticIPVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + + STATUS current + DESCRIPTION + "VLAN ID of the IP range, 1 ~ 4094, the vid should be enable the MACFF function first." + ::= { macFfStaticIPEntry 2 } + + + macFfstaticIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + + STATUS current + DESCRIPTION + "The specified IP range." + ::= { macFfStaticIPEntry 3 } + + macFfStaticIPMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + + STATUS current + DESCRIPTION + "Mask_bits is 24 .. 32." + ::= { macFfStaticIPEntry 4 } + + + macFfStaticIPRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status used to configure the table entry." + ::= { macFfStaticIPEntry 5 } + +-- Server Mac -- + + macFfServerMacTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfServerMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + ::= { macff 7 } + + macFfServerMacEntry OBJECT-TYPE + SYNTAX MacFfServerMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfTable." + INDEX { macFfServerMacVid, macFfServerMacAddr} + ::= { macFfServerMacTable 1 } + + MacFfServerMacEntry ::= + SEQUENCE { + macFfServerMacVid INTEGER, + macFfServerMacAddr PhysAddress, + macFfServerMacRowStatus RowStatus + } + + macFfServerMacVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + + STATUS current + DESCRIPTION + "VLAN ID of the IP range, 1 ~ 4094, the vid should be enable the MACFF function first." + ::= { macFfServerMacEntry 1 } + + macFfServerMacAddr OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + + STATUS current + DESCRIPTION + "The mac address." + ::= { macFfServerMacEntry 2 } + + macFfServerMacRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status used to configure the table entry." + ::= { macFfServerMacEntry 3 } + +---------------------------------------- +-- sys +---------------------------------------- + timeSetup OBJECT IDENTIFIER ::= { sys 4 } + accessCtrl OBJECT IDENTIFIER ::= { sys 5 } + extAlarm OBJECT IDENTIFIER ::= { sys 8 } + user OBJECT IDENTIFIER ::= { sys 9 } + usbCastCtrl OBJECT IDENTIFIER ::= { sys 10} + dsQos OBJECT IDENTIFIER ::= { sys 11} + + stdioTimeout OBJECT-TYPE + SYNTAX INTEGER (0..300) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the CLI/TELNET/WEB Session timeout, 0, or 1~300 minutes, 0 => disable." + ::= { sys 12 } + + isConfigChanged OBJECT-TYPE + SYNTAX INTEGER { + yes(1), + no(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If system configuration has been changed." + ::= { sys 13 } + + fwUpgrade OBJECT IDENTIFIER ::= {sys 14} + delayedReboot OBJECT IDENTIFIER ::= {sys 15} +-------------------- +-- Time Setup +-------------------- +-- dayLightSaving + + dayLightSaving OBJECT IDENTIFIER ::= { timeSetup 7 } + + dayLightSavingAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { dayLightSaving 1 } + + dayLightSavingStartTime OBJECT IDENTIFIER ::= { dayLightSaving 2 } + + dayLightSavingStartMonth OBJECT-TYPE + SYNTAX INTEGER { + Jan(1), + Feb(2), + Mar(3), + Apr(4), + May(5), + Jun(6), + Jul(7), + Aug(8), + Sep(9), + Oct(10), + Nov(11), + Dec(12) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { dayLightSavingStartTime 1 } + + dayLightSavingStartWeek OBJECT-TYPE + SYNTAX INTEGER { + First(1), + Second(2), + Third(3), + Fourth(4), + Last(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { dayLightSavingStartTime 2 } + + dayLightSavingStartWday OBJECT-TYPE + SYNTAX INTEGER { + Sun(1), + Mon(2), + Tus(3), + Wed(4), + Thu(5), + Fri(6), + Sat(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { dayLightSavingStartTime 3 } + + dayLightSavingStartHour OBJECT-TYPE + SYNTAX INTEGER { + "0:00"(0), + "1:00"(1), + "2:00"(2), + "3:00"(3), + "4:00"(4), + "5:00"(5), + "6:00"(6), + "7:00"(7), + "8:00"(8), + "9:00"(9), + "10:00"(10), + "11:00"(11), + "12:00"(12), + "13:00"(13), + "14:00"(14), + "15:00"(15), + "16:00"(16), + "17:00"(17), + "18:00"(18), + "19:00"(19), + "20:00"(20), + "21:00"(21), + "22:00"(22), + "23:00"(23), + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "1: 01:00, + 2: 02:00 + 3: 03:00 + 4: 04:00 + 5: 05:00 + 6: 06:00 + 7: 07:00 + 8: 08:00 + 9: 09:00 + 10: 10:00 + 11: 11:00 + 12: 12:00 + 13: 13:00 + 14: 14:00 + 15: 15:00 + 16: 16:00 + 17: 17:00 + 18: 18:00 + 19: 19:00 + 20: 20:00 + 21: 21:00 + 22: 22:00 + 23: 23:00" + ::= { dayLightSavingStartTime 4 } + + + dayLightSavingEndTime OBJECT IDENTIFIER ::= { dayLightSaving 3 } + + dayLightSavingEndMonth OBJECT-TYPE + SYNTAX INTEGER { + Jan(1), + Feb(2), + Mar(3), + Apr(4), + May(5), + Jun(6), + Jul(7), + Aug(8), + Sep(9), + Oct(10), + Nov(11), + Dec(12) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { dayLightSavingEndTime 1 } + + dayLightSavingEndWeek OBJECT-TYPE + SYNTAX INTEGER { + First(1), + Second(2), + Third(3), + Fourth(4), + Last(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { dayLightSavingEndTime 2 } + + dayLightSavingEndWday OBJECT-TYPE + SYNTAX INTEGER { + Sun(1), + Mon(2), + Tus(3), + Wed(4), + Thu(5), + Fri(6), + Sat(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { dayLightSavingEndTime 3 } + + dayLightSavingEndHour OBJECT-TYPE + SYNTAX INTEGER { + "0:00"(0), + "1:00"(1), + "2:00"(2), + "3:00"(3), + "4:00"(4), + "5:00"(5), + "6:00"(6), + "7:00"(7), + "8:00"(8), + "9:00"(9), + "10:00"(10), + "11:00"(11), + "12:00"(12), + "13:00"(13), + "14:00"(14), + "15:00"(15), + "16:00"(16), + "17:00"(17), + "18:00"(18), + "19:00"(19), + "20:00"(20), + "21:00"(21), + "22:00"(22), + "23:00"(23), + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "1: 01:00, + 2: 02:00 + 3: 03:00 + 4: 04:00 + 5: 05:00 + 6: 06:00 + 7: 07:00 + 8: 08:00 + 9: 09:00 + 10: 10:00 + 11: 11:00 + 12: 12:00 + 13: 13:00 + 14: 14:00 + 15: 15:00 + 16: 16:00 + 17: 17:00 + 18: 18:00 + 19: 19:00 + 20: 20:00 + 21: 21:00 + 22: 22:00 + 23: 23:00" + ::= { dayLightSavingEndTime 4 } + +-------------------- +-- Access Control +-------------------- +-- Secured Client Table + + securedClientTable OBJECT-TYPE + SYNTAX SEQUENCE OF SecuredClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about secured clients." + ::= { accessCtrl 2 } + + securedClientEntry OBJECT-TYPE + SYNTAX SecuredClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of secured client entry." + INDEX { securedClientIndex } + ::= { securedClientTable 1 } + + SecuredClientEntry ::= + SEQUENCE { + securedClientIndex INTEGER, + securedClientStartIp IpAddress, + securedClientEndIp IpAddress, + securedClientService INTEGER, + securedClientEnable INTEGER + } + + securedClientIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of the entry." + ::= { securedClientEntry 1 } + + securedClientStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The starting IP address of the secured client set." + ::= { securedClientEntry 2 } + + securedClientEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ending IP address of the secured client set." + ::= { securedClientEntry 3 } + + securedClientService OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Each bit corresponds to a service. The bit is set to 1 if the + service is enabled, and set to 0 if the service is disabled. + The various bit positions are: + BIT 1: telnet + BIT 2: ftp + BIT 3: web + BIT 4: icmp + BIT 5: not support + BIT 6: snmp." + ::= { securedClientEntry 4 } + + securedClientEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable the entry." + ::= { securedClientEntry 5 } + + +-------------------- +-- extAlarm +-------------------- + + extAlarmTable OBJECT-TYPE + SYNTAX SEQUENCE OF ExtAlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains external alarm information." + ::= { extAlarm 1 } + + extAlarmEntry OBJECT-TYPE + SYNTAX ExtAlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of external alarm table." + INDEX { extAlarmIndex } + ::= { extAlarmTable 1 } + + ExtAlarmEntry ::= + SEQUENCE { + extAlarmIndex INTEGER, + extAlarmName OCTET STRING, + extAlarmStatus OCTET STRING, + extAlarmTriggeredMode INTEGER + } + + extAlarmIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of the entry." + ::= { extAlarmEntry 1 } + + extAlarmName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The external alarm name." + ::= { extAlarmEntry 2 } + + extAlarmStatus OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Dispaly 'Normal' or 'Alarm' string" + ::= { extAlarmEntry 3 } + + extAlarmTriggeredMode OBJECT-TYPE + SYNTAX INTEGER { + closeAlarm(1), + openAlarm(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The external alarm triggered mode." + ::= { extAlarmEntry 4 } + +-------------------- +-- User Management +-------------------- + + userAuthMode OBJECT-TYPE + SYNTAX INTEGER { + local(1), + radius(2), + localThenRadius(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "User authentication procsssing mode." + ::= { user 1 } + + userAuthServerIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the authentication server." + ::= { user 2 } + + userAuthServerPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port of the authentication server." + ::= { user 3 } + + userAuthServerSecret OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The secret between the authentication server and the NE for authentication process." + ::= { user 4 } + +-- userTable + + userTable OBJECT-TYPE + SYNTAX SEQUENCE OF UserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains user information." + ::= { user 5 } + + userEntry OBJECT-TYPE + SYNTAX UserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of userTable." + INDEX { userName } + ::= { userTable 1 } + + UserEntry ::= + SEQUENCE { + userName DisplayString, + userPassword DisplayString, + userPriviledge INTEGER, + userRowStatus RowStatus + } + + userName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The user name." + ::= { userEntry 1 } + + userPassword OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The user password." + ::= { userEntry 2 } + + userPriviledge OBJECT-TYPE + SYNTAX INTEGER { + high(1), + middle(2), + low(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The user priviledge to decide what operation the user can and cannot do." + ::= { userEntry 3 } + + userRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status used to create or delete a user." + ::= { userEntry 4 } + + userAuthDefaultPriviledge OBJECT-TYPE + SYNTAX INTEGER { + high(1), + middle(2), + low(3), + deny(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The user default priviledge to be assigned when radius authentication succeds + but no user priviledge information(radius service-type) is provided." + ::= { user 6 } + +-------------------- +-- Upstream Broadcast +-------------------- + + usBcastCtrlEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable upstream broadcast control." + ::= { usbCastCtrl 1 } + + usBcastCtrlRate OBJECT-TYPE + SYNTAX INTEGER + UNITS "Kbps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { usbCastCtrl 2 } + +-------------------- +-- Downstream QoS +-------------------- + dsQosEnableMode OBJECT-TYPE + SYNTAX INTEGER { + disable(1), + vlan(2), + dscp(3), + ippre(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable internal overriding mode to VLAN, DSCP or IP Precedence, or disable the overriding mode." + ::= { dsQos 1 } + + dsQosDefaultPri OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the internal default p.bit after overiding. All values not configured in the + overriding table are assigned to the default p.bit" + ::= { dsQos 2 } + + dsQoSOverridingTable OBJECT-TYPE + SYNTAX SEQUENCE OF DsQoSOverridingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes downstream QoS overriding information." + ::= { dsQos 3 } + + dsQoSOverridingEntry OBJECT-TYPE + SYNTAX DsQoSOverridingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in dsQoSOverridingTable." + INDEX { dsQosPriority } + ::= { dsQoSOverridingTable 1 } + + DsQoSOverridingEntry ::= + SEQUENCE { + dsQosPriority INTEGER, + dsQosValueList DisplayString + } + + dsQosPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Internal P.bit after overriding." + ::= { dsQoSOverridingEntry 1 } + + dsQosValueList OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VLAN ID, DSCP, or IP Precedence based on the internal overriding mode configured. + VLAN ID 1 ~ 4094, DSCP 0 ~ 63, IP Precedence 0 ~ 7. value_list example: <1>, <1,3>, <1,5,6~10>." + ::= { dsQoSOverridingEntry 2 } + +-------------------- +-- fwUpgrade +-------------------- + + fwUpgradeVersion OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure the target firmware version that will be upgraded." + ::= { fwUpgrade 1 } + + fwUpgradeCheck OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable firmware upgrade version checking feature." + ::= { fwUpgrade 2 } + + fwUpgradeStatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display current firmware upgrade status." + ::= { fwUpgrade 3 } + +-------------------- +-- delayedReboot +-------------------- + delayedRebootTimer OBJECT-TYPE + SYNTAX INTEGER + UNITS "sec" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "5~1800 secs, 0: reboot immediately." + ::= { delayedReboot 1 } + + delayedRebootRemainingTime OBJECT-TYPE + SYNTAX INTEGER + UNITS "sec" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the remaining time of scheduled reboot." + ::= { delayedReboot 2 } + + delayedRebootCancel OBJECT-TYPE + SYNTAX INTEGER { + cancel(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "cancel the scheduled reboot." + ::= { delayedReboot 3 } + +---------------------------------------- +-- statistics +---------------------------------------- + + dhcpStats OBJECT IDENTIFIER ::= { statistics 11 } + paepvcStats OBJECT IDENTIFIER ::= { statistics 12 } + macStats OBJECT IDENTIFIER ::= { statistics 13 } +-- ipbpvcStats OBJECT IDENTIFIER ::= { statistics 14 } + n1macStats OBJECT IDENTIFIER ::= { statistics 15 } + enetStats OBJECT IDENTIFIER ::= { statistics 16 } + vdslStats OBJECT IDENTIFIER ::= { statistics 17 } + voipStats OBJECT IDENTIFIER ::= { statistics 18 } +macffStats OBJECT IDENTIFIER ::= { statistics 19 } + adslStats OBJECT IDENTIFIER ::= { statistics 20 } + +-------------------- +-- IGMP +-------------------- + + igmpQueryCntTotal OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP query messages received." + ::= { statistics 1 } + + igmpReportCntTotal OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP report messages received." + ::= { statistics 2 } + + igmpLeaveCntTotal OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP leave messages received." + ::= { statistics 3 } + + igmpNumOfActiveGroups OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP learned groups." + ::= { statistics 4 } + +-- igmpGroupTable + + igmpGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes igmp group information." + ::= { statistics 5 } + + igmpGroupEntry OBJECT-TYPE + SYNTAX IgmpGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in igmpGroupTable." + INDEX { igmpGroupIp } + ::= { igmpGroupTable 1 } + + IgmpGroupEntry ::= + SEQUENCE { + igmpGroupIp IpAddress, + igmpGroupvid INTEGER, + igmpGroupnumberOfMembers INTEGER, + igmpGroupMemberPorts PortList + + } + + igmpGroupIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "igmp group IP" + ::= { igmpGroupEntry 1 } + + igmpGroupvid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "vlan id" + ::= { igmpGroupEntry 2 } + + igmpGroupnumberOfMembers OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "number Of Members" + + ::= { igmpGroupEntry 3 } + + igmpGroupMemberPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Group Member Ports" + + ::= { igmpGroupEntry 4 } + +-- igmpGroupPortTable + + igmpGroupPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpGroupPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes igmp Group port information." + ::= { statistics 6 } + + igmpGroupPortEntry OBJECT-TYPE + SYNTAX IgmpGroupPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in igmpGroupPortTable." + INDEX { ifIndex , igmpGroupPortIp , igmpGroupPortvid} + ::= { igmpGroupPortTable 1 } + + IgmpGroupPortEntry ::= + SEQUENCE { + igmpGroupPortIp IpAddress, + igmpGroupPortvid INTEGER + } + + igmpGroupPortIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Igmp Group IP" + ::= { igmpGroupPortEntry 1 } + + igmpGroupPortvid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Igmp Group vid" + ::= { igmpGroupPortEntry 2 } + +-- igmpGroupV2Table + + igmpGroupV2Table OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpGroupV2Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that displays IGMP learned group member information." + ::= { statistics 7 } + + igmpGroupV2Entry OBJECT-TYPE + SYNTAX IgmpGroupV2Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of igmpGroupV2Table." + INDEX { igmpGroupV2Vid, igmpGroupV2Ip } + ::= { igmpGroupV2Table 1 } + + IgmpGroupV2Entry ::= + SEQUENCE { + igmpGroupV2Vid VlanIndex, + igmpGroupV2Ip IpAddress, + igmpGroupV2NumOfMembers INTEGER, + igmpGroupV2MemberPorts PortList + } + + igmpGroupV2Vid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IGMP group VLAN ID." + ::= { igmpGroupV2Entry 1 } + + igmpGroupV2Ip OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The multicast IP address." + ::= { igmpGroupV2Entry 2 } + + igmpGroupV2NumOfMembers OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of member ports in the group." + ::= { igmpGroupV2Entry 3 } + + igmpGroupV2MemberPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The member port list of the group." + ::= { igmpGroupV2Entry 4 } + +-- igmpGroupPortV2Table + + igmpGroupPortV2Table OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpGroupPortV2Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that displays IGMP joined groups in this port." + ::= { statistics 8 } + + igmpGroupPortV2Entry OBJECT-TYPE + SYNTAX IgmpGroupPortV2Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of igmpGroupPortV2Table." + INDEX { ifIndex, igmpGroupPortV2Vid, igmpGroupPortV2Ip, igmpGroupPortV2SourceIp } + ::= { igmpGroupPortV2Table 1 } + + IgmpGroupPortV2Entry ::= + SEQUENCE { + igmpGroupPortV2Vid VlanIndex, + igmpGroupPortV2Ip IpAddress, + igmpGroupPortV2SourceIp IpAddress + } + + igmpGroupPortV2Vid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IGMP group VLAN ID." + ::= { igmpGroupPortV2Entry 1 } + + igmpGroupPortV2Ip OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The multicast IP address." + ::= { igmpGroupPortV2Entry 2 } + + igmpGroupPortV2SourceIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The source IP address that joins the IGMP group." + ::= { igmpGroupPortV2Entry 3 } + +-- igmpPortCtrlPduTable + + igmpPortCtrlPduTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpPortCtrlPduEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that displays IGMP related counter values in this port." + ::= { statistics 9 } + + igmpPortCtrlPduEntry OBJECT-TYPE + SYNTAX IgmpPortCtrlPduEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of igmpPortCtrlPduTable." + INDEX { ifIndex } + ::= { igmpPortCtrlPduTable 1 } + + IgmpPortCtrlPduEntry ::= + SEQUENCE { + igmpPortCtrlPduQueryCnt Counter32, + igmpPortCtrlPduReportCnt Counter32, + igmpPortCtrlPduLeaveCnt Counter32, + igmpPortNumOfActiveGroups INTEGER, + igmpPortCtrlAuditLeaveCnt Counter32 + } + + igmpPortCtrlPduQueryCnt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP query messages received in this port." + ::= { igmpPortCtrlPduEntry 1 } + + igmpPortCtrlPduReportCnt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP report messages received in this port." + ::= { igmpPortCtrlPduEntry 2 } + + igmpPortCtrlPduLeaveCnt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IGMP leave messages received in this port." + ::= { igmpPortCtrlPduEntry 3 } + + igmpPortNumOfActiveGroups OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of active IGMP groups in this port." + ::= { igmpPortCtrlPduEntry 4 } + + igmpPortCtrlAuditLeaveCnt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of groups left by audit query." + ::= { igmpPortCtrlPduEntry 5 } + +-------------------- +-- vdslStats +-------------------- +-- vdslLineStatsTable + + vdslLineStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslLineStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table displays VDSL line statistics." + ::= { vdslStats 2 } + + vdslLineStatsEntry OBJECT-TYPE + SYNTAX VdslLineStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of vdslLineStatsTable." + INDEX { ifIndex } + ::= { vdslLineStatsTable 1 } + + VdslLineStatsEntry ::= + SEQUENCE { + vdslLineStatsVtucBits1 OCTET STRING, + vdslLineStatsVtucBits2 OCTET STRING, + vdslLineStatsVtucBits3 OCTET STRING, + vdslLineStatsVtucBits4 OCTET STRING, + vdslLineStatsVturBits1 OCTET STRING, + vdslLineStatsVturBits2 OCTET STRING, + vdslLineStatsVturBits3 OCTET STRING, + vdslLineStatsVturBits4 OCTET STRING, + vdslLineStatsVtucGain1 OCTET STRING, + vdslLineStatsVtucGain2 OCTET STRING, + vdslLineStatsVtucGain3 OCTET STRING, + vdslLineStatsVtucGain4 OCTET STRING, + vdslLineStatsVtucGain5 OCTET STRING, + vdslLineStatsVtucGain6 OCTET STRING, + vdslLineStatsVtucGain7 OCTET STRING, + vdslLineStatsVtucGain8 OCTET STRING, + vdslLineStatsVturGain1 OCTET STRING, + vdslLineStatsVturGain2 OCTET STRING, + vdslLineStatsVturGain3 OCTET STRING, + vdslLineStatsVturGain4 OCTET STRING, + vdslLineStatsVturGain5 OCTET STRING, + vdslLineStatsVturGain6 OCTET STRING, + vdslLineStatsVturGain7 OCTET STRING, + vdslLineStatsVturGain8 OCTET STRING, + vdslLineStatsVtucHlog OCTET STRING, + vdslLineStatsVturHlog OCTET STRING, + vdslLineStatsVtucQln OCTET STRING, + vdslLineStatsVturQln OCTET STRING, + vdslLineStatsVtucSnr OCTET STRING, + vdslLineStatsVturSnr OCTET STRING, + vdslLineStatsVtucTssi OCTET STRING, + vdslLineStatsVturTssi OCTET STRING, + vdslLineStatsProtocol INTEGER + } + + vdslLineStatsVtucBits1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Bits for the VTU-C 1024 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 15." + ::= { vdslLineStatsEntry 1 } + + vdslLineStatsVtucBits2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Bits for the VTU-C 1024 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 15." + ::= { vdslLineStatsEntry 2 } + + vdslLineStatsVtucBits3 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Bits for the VTU-C 1024 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 15." + ::= { vdslLineStatsEntry 3 } + + vdslLineStatsVtucBits4 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Bits for the VTU-C 1024 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 15." + ::= { vdslLineStatsEntry 4 } + + vdslLineStatsVturBits1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Bits for the VTU-R 1024 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 15." + ::= { vdslLineStatsEntry 5 } + + vdslLineStatsVturBits2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Bits for the VTU-R 1024 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 15." + ::= { vdslLineStatsEntry 6 } + + vdslLineStatsVturBits3 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Bits for the VTU-R 1024 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 15." + ::= { vdslLineStatsEntry 7 } + + vdslLineStatsVturBits4 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Bits for the VTU-R 1024 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 15." + ::= { vdslLineStatsEntry 8 } + + vdslLineStatsVtucGain1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-C 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 9 } + + vdslLineStatsVtucGain2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-C 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 10 } + + vdslLineStatsVtucGain3 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-C 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 11 } + + vdslLineStatsVtucGain4 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-C 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 12 } + + vdslLineStatsVtucGain5 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-C 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 13 } + + vdslLineStatsVtucGain6 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-C 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 14 } + + vdslLineStatsVtucGain7 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-C 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 15 } + + vdslLineStatsVtucGain8 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-C 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 16 } + + vdslLineStatsVturGain1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-R 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 17 } + + vdslLineStatsVturGain2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-R 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 18 } + + vdslLineStatsVturGain3 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-R 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 19 } + + vdslLineStatsVturGain4 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-R 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 20 } + + vdslLineStatsVturGain5 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-R 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 21 } + + vdslLineStatsVturGain6 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-R 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 22 } + + vdslLineStatsVturGain7 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-R 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 23 } + + vdslLineStatsVturGain8 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Gain for the VTU-R 512 subcarriers. + Each subcarrier takes two octets to store the value. + The value is in the range 0 to 4093. Each value in this array is 16 bits wide. + The gain value is represented as a multiple of 1/512 on linear scale." + ::= { vdslLineStatsEntry 24 } + + vdslLineStatsVtucHlog OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Hlog for the VTU-C 512 subcarriers. + Each subcarrier takes two octets to store the value. + The real Hlog(f) value is represented as (6-m(i)/10), with m(i) in the range 0 to 1022. + A special value m=1023 indicates that no measurement could be done for the + sub-carrier group becauseit is out of the passband or that the attenuation + is out of range to be represented. Each value in this array is 16 bits wide." + ::= { vdslLineStatsEntry 25 } + + vdslLineStatsVturHlog OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Hlog for the VTU-R 512 subcarriers. + Each subcarrier takes two octets to store the value. + The real Hlog(f) value is represented as (6-m(i)/10), with m(i) in the range 0 to 1022. + A special value m=1023 indicates that no measurement could be done for the + sub-carrier group because it is out of the passband or that the attenuation + is out ofrange to be represented. Each value in this array is 16 bits wide." + ::= { vdslLineStatsEntry 26 } + + vdslLineStatsVtucQln OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Qln for the VTU-C 512 subcarriers. + Each subcarrier takes two octets to store the value. + The QLN(f) is represented as ( -23-n(i)/2), with n(i) in the range 0 to 254. + A special value n(i)=255 indicates that no measurement could be done for the + sub-carrier group. Each value in this array is 8 bits wide." + ::= { vdslLineStatsEntry 27 } + + vdslLineStatsVturQln OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Qln for the VTU-R 512 subcarriers. + Each subcarrier takes two octets to store the value. + The QLN(f) is represented as ( -23-n(i)/2), with n(i) in the range 0 to 254. + A special value n(i)=255 indicates that no measurement could be done for the + sub-carrier group. Each value in this array is 8 bits wide." + ::= { vdslLineStatsEntry 28 } + + vdslLineStatsVtucSnr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Snr for the VTU-C 512 subcarriers. + Each subcarrier takes two octets to store the value. + Octet i is set to a value in the range 0 to 254 (-32 + vdslLineStatsVtucSnr (i)/2) in dB + (i.e., -32 to 95dB). Each value in this array is 8 bits wide." + ::= { vdslLineStatsEntry 29 } + + vdslLineStatsVturSnr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Snr for the VTU-R 512 subcarriers. + Each subcarrier takes two octets to store the value. + Octet i is set to a value in the range 0 to 254 (-32 + vdslLineStatsVturSnr (i)/2) in dB + (i.e., -32 to 95dB). Each value in this array is 8 bits wide." + ::= { vdslLineStatsEntry 30 } + + vdslLineStatsVtucTssi OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Tssi for the VTU-C 512 subcarriers. + Each subcarrier takes two octets to store the value. + Each value in this array is 16 bits wide. + The tssi value is represented as a multiple of 1/32768 on linear scale." + ::= { vdslLineStatsEntry 31 } + + vdslLineStatsVturTssi OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object provides Tssi for the VTU-R 512 subcarriers. + Each subcarrier takes two octets to store the value. + Each value in this array is 16 bits wide. + The tssi value is represented as a multiple of 1/32768 on linear scale." + ::= { vdslLineStatsEntry 32 } + + vdslLineStatsProtocol OBJECT-TYPE + SYNTAX INTEGER { + none(1), + vdsl8a(2), + vdsl8b(3), + vdsl8c(4), + vdsl8d(5), + vdsl12a(6), + vdsl12b(7), + vdsl17a(8), + gdmt(9), + glite(10), + adsl2(11), + adsl2plus(12), + t1413(13) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The actual line protocol." + ::= { vdslLineStatsEntry 33 } + +-------------------- +-- DHCP +-------------------- + +-- dhcpSnoopIpTable + + dhcpSnoopIpTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpSnoopIpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table shows the IP addresses and netmasks offered by the DHCP server." + ::= { dhcpStats 1 } + + dhcpSnoopIpEntry OBJECT-TYPE + SYNTAX DhcpSnoopIpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dhcpSnoopIpTable." + INDEX { ifIndex, dhcpSnoopIp } + ::= { dhcpSnoopIpTable 1 } + + DhcpSnoopIpEntry ::= + SEQUENCE { + dhcpSnoopIp IpAddress, + dhcpSnoopMac PhysAddress, + dhcpSnoopVid VlanIndex, + dhcpSnoopMask INTEGER, + dhcpSnoopGateway IpAddress, + dhcpSnoopRouteMap OCTET STRING + } + + dhcpSnoopIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The snooped IP address." + ::= { dhcpSnoopIpEntry 1 } + + dhcpSnoopMac OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The snooped MAC address." + ::= { dhcpSnoopIpEntry 2 } + + dhcpSnoopVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The snooped VLAN ID." + ::= { dhcpSnoopIpEntry 3 } + + dhcpSnoopMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The snooped IP mask" + ::= { dhcpSnoopIpEntry 4 } + + dhcpSnoopGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The snooped Gateway." + ::= { dhcpSnoopIpEntry 5 } + + dhcpSnoopRouteMap OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The refrence bit map of the dhcp route" + ::= { dhcpSnoopIpEntry 6 } + +-- dhcpSnoopCounterTable + + dhcpSnoopCounterTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpSnoopCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table shows the DHCP statistics." + ::= { dhcpStats 2 } + + dhcpSnoopCounterEntry OBJECT-TYPE + SYNTAX DhcpSnoopCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dhcpSnoopCounterTable." + INDEX { ifIndex } + ::= { dhcpSnoopCounterTable 1 } + + DhcpSnoopCounterEntry ::= + SEQUENCE { + dhcpDiscovery Counter64, + dhcpOffer Counter64, + dhcpRequest Counter64, + dhcpAck Counter64, + dhcpAckBySnoopFull Counter64 + } + + dhcpDiscovery OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received DHCP server discovery packets." + ::= { dhcpSnoopCounterEntry 1 } + + dhcpOffer OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received DHCP server offer packets." + ::= { dhcpSnoopCounterEntry 2 } + + dhcpRequest OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received DHCP IP request packets." + ::= { dhcpSnoopCounterEntry 3 } + + dhcpAck OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received DHCP IP acknowledge packets." + ::= { dhcpSnoopCounterEntry 4 } + + dhcpAckBySnoopFull OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received DHCP IP acknowledge packets that replace the oldest snooping + entry in snooping table due to table full." + ::= { dhcpSnoopCounterEntry 5 } + + dhcpRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains dhcp route information." + ::= { dhcpStats 3 } + + dhcpRouteEntry OBJECT-TYPE + SYNTAX DhcpRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of dhcpRouteTable." + INDEX { dhcpRouteIndex } + ::= { dhcpRouteTable 1 } + + DhcpRouteEntry ::= + SEQUENCE { + dhcpRouteIndex INTEGER, + dhcpRouteVid VlanIndex, + dhcpRouteIP IpAddress, + dhcpRouteMask INTEGER, + dhcpRouteGwIP IpAddress + } + + dhcpRouteIndex OBJECT-TYPE + SYNTAX INTEGER (1..24) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { dhcpRouteEntry 1 } + + dhcpRouteVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The VLAN-ID refering to this dhcp route." + ::= { dhcpRouteEntry 2 } + + + dhcpRouteIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP of this dhcp route" + ::= { dhcpRouteEntry 3 } + + dhcpRouteMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The subnet mask of source IP mask." + ::= { dhcpRouteEntry 4 } + + dhcpRouteGwIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The gateway IP address." + ::= { dhcpRouteEntry 5 } + +-------------------- +-- PAE PVC +-------------------- + +-- paepvcSessionTable + + paepvcSessionTable OBJECT-TYPE + SYNTAX SEQUENCE OF PaepvcSessionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table shows the paepvc session statistics." + ::= { paepvcStats 1 } + + paepvcSessionEntry OBJECT-TYPE + SYNTAX PaepvcSessionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of paepvcSessionTable." + INDEX { ifIndex , paepvcSessionVpi, paepvcSessionVci } + ::= { paepvcSessionTable 1 } + + PaepvcSessionEntry ::= + SEQUENCE { + paepvcSessionVpi INTEGER, + paepvcSessionVci INTEGER, + paepvcSessionState INTEGER, + paepvcSessionId INTEGER, + paepvcSessionUptime Unsigned32, + paepvcSessionacname DisplayString, + paepvcSessionsrvcname DisplayString + } + + paepvcSessionVpi OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC VPI." + ::= { paepvcSessionEntry 1 } + + paepvcSessionVci OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC VCI." + ::= { paepvcSessionEntry 2 } + + paepvcSessionState OBJECT-TYPE + SYNTAX INTEGER { + down(1), + pppoe(2), + ppp(3), + up(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC status." + ::= { paepvcSessionEntry 3 } + + paepvcSessionId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC session ID." + ::= { paepvcSessionEntry 4 } + + paepvcSessionUptime OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "second" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC session uptime." + ::= { paepvcSessionEntry 5 } + + paepvcSessionacname OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Access concentrator name." + ::= { paepvcSessionEntry 6 } + + paepvcSessionsrvcname OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Service name." + ::= { paepvcSessionEntry 7 } + +-- paepvcCountTable + + paepvcCountTable OBJECT-TYPE + SYNTAX SEQUENCE OF PaepvcCountEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table shows the paepvc counters." + ::= { paepvcStats 2 } + + paepvcCountEntry OBJECT-TYPE + SYNTAX PaepvcCountEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of paepvcCountTable." + INDEX { ifIndex , paepvcCountVpi, paepvcCountVci } + ::= { paepvcCountTable 1 } + + PaepvcCountEntry ::= + SEQUENCE { + paepvcCountVpi INTEGER, + paepvcCountVci INTEGER, + paepvcCountPppLcpCfgReqRx Unsigned32, + paepvcCountPppLcpEchoReqRx Unsigned32, + paepvcCountPppLcpEchoReplyRx Unsigned32, + paepvcCountPadiTx Unsigned32, + paepvcCountPadoRx Unsigned32, + paepvcCountPadrTx Unsigned32, + paepvcCountPadsRx Unsigned32, + paepvcCountPadtTx Unsigned32, + paepvcCountPadtRx Unsigned32, + paepvcCountSrvcnameErrRx Unsigned32, + paepvcCountAcSystemErrRx Unsigned32, + paepvcCountGenericErrTx Unsigned32, + paepvcCountGenericErrRx Unsigned32 + } + + + paepvcCountVpi OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC VPI." + ::= { paepvcCountEntry 1 } + + paepvcCountVci OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PAEPVC VCI." + ::= { paepvcCountEntry 2 } + + paepvcCountPppLcpCfgReqRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ppp lcp config-request received." + ::= { paepvcCountEntry 3 } + + paepvcCountPppLcpEchoReqRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ppp lcp echo-request received." + ::= { paepvcCountEntry 4 } + + paepvcCountPppLcpEchoReplyRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ppp lcp echo-reply received." + ::= { paepvcCountEntry 5 } + + paepvcCountPadiTx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe padi transfered" + ::= { paepvcCountEntry 6 } + + paepvcCountPadoRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe pado received" + ::= { paepvcCountEntry 7 } + + paepvcCountPadrTx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe padr transfered" + ::= { paepvcCountEntry 8 } + + paepvcCountPadsRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe pads received" + ::= { paepvcCountEntry 9 } + + paepvcCountPadtTx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe padt transfered" + ::= { paepvcCountEntry 10 } + + paepvcCountPadtRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe padt received" + ::= { paepvcCountEntry 11 } + + paepvcCountSrvcnameErrRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe service name error received" + ::= { paepvcCountEntry 12 } + + paepvcCountAcSystemErrRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe access concentrator name error received" + ::= { paepvcCountEntry 13 } + + paepvcCountGenericErrTx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe generic error transfered" + ::= { paepvcCountEntry 14 } + + paepvcCountGenericErrRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pppoe generic error received" + ::= { paepvcCountEntry 15 } + +-------------------- +-- MAC +-------------------- + + macDisplayTarget OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This managed object is a filter used for identify the target from which + the MAC addresses are learned in macTable. The target could be: + 99: all ports in the system + 98: all subscriber ports + 97: all Ethernet ports + + IfIndex is used for identifying subscriber ports and Ethernet Ports(e.g. 1 ~ 50)." + ::= { macStats 1 } + +-- macTable + + macTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacEntry + MAX-ACCESS not-accessible + STATUS current + 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." + ::= { macStats 2 } + + macEntry OBJECT-TYPE + SYNTAX MacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macTable." + INDEX { dot1qVlanIndex, macAddress } + ::= { macTable 1 } + + MacEntry ::= + SEQUENCE { + macAddress MacAddress, + macPort INTEGER, + macStatus INTEGER, + macVid VlanIndex + } + + macAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unicast MAC address for which the bridge has + forwarding and/or filtering information." + ::= { macEntry 1 } + + macPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port from which the mac address has been learned." + ::= { macEntry 2 } + + macStatus 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." + ::= { macEntry 3 } + + macVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vlan id of this entry." + ::= { macEntry 4 } + +------------------------------ +-- n1macStats +------------------------------ + + n1macTable OBJECT-TYPE + SYNTAX SEQUENCE OF N1macEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about N to 1 + MAC translation, including connection type, + session id/IP and MAC address." + ::= { n1macStats 1 } + + n1macEntry OBJECT-TYPE + SYNTAX N1macEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of n1macTable." + INDEX { ifIndex, n1macProtoVal} + ::= { n1macTable 1 } + + N1macEntry ::= + SEQUENCE { + n1macProtoVal Unsigned32, + n1macProtoType INTEGER, + n1macMacAddr MacAddress + } + + n1macProtoVal OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The protocol value of specified connection. If the connection + is pppoe/pppoaoe, the value stands for session id; if the + connection is ipoe/ipoaoe, the value means IP address." + ::= { n1macEntry 1 } + + n1macProtoType OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + ipoe(2), + ipoaoe(3), + pppoe(4), + pppoaoe(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Protocol type of the connection which the MAC is translated." + ::= { n1macEntry 2 } + + n1macMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The translated MAC address." + ::= { n1macEntry 3 } + +------------------------------ +-- enetStats +------------------------------ + enetPrimaryPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " IfIndex is used for identifying the Primary Ethernet Port when dot3ad is disabled." + ::= { enetStats 1 } + + enetSfpInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnetSfpInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes sfp info of enet port." + ::= { enetStats 2 } + + enetSfpInfoEntry OBJECT-TYPE + SYNTAX EnetSfpInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in enetSfpInfoTable." + INDEX {ifIndex} + ::= { enetSfpInfoTable 1 } + + EnetSfpInfoEntry ::= + SEQUENCE { + enetSfpInfoTxpower INTEGER, + enetSfpInfoRxpower INTEGER, + enetSfpInfoTemperature INTEGER, + enetSfpInfoTxBias INTEGER, + enetSfpInfoVoltage INTEGER + } + + enetSfpInfoTxpower OBJECT-TYPE + SYNTAX INTEGER (1..65535) + UNITS "10^-4 mW" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured Tx Output Power." + ::= { enetSfpInfoEntry 1 } + + enetSfpInfoRxpower OBJECT-TYPE + SYNTAX INTEGER (1..65535) + UNITS "10^-4 C" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured Rx Output Power." + ::= { enetSfpInfoEntry 2 } + + enetSfpInfoTemperature OBJECT-TYPE + SYNTAX INTEGER (-1280000..1280000) + UNITS "10^-4 C" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured temperature." + ::= { enetSfpInfoEntry 3 } + + enetSfpInfoTxBias OBJECT-TYPE + SYNTAX INTEGER (0..131000) + UNITS "10^-3 mA" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured tx bias." + ::= { enetSfpInfoEntry 4 } + + enetSfpInfoVoltage OBJECT-TYPE + SYNTAX INTEGER (0..65000) + UNITS "0.1mV" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured voltage." + ::= { enetSfpInfoEntry 5 } + +---------------------------------------- +-- macFfStats +---------------------------------------- + macFfStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains MAC Force Forwarding static configuration and dynamic information." + ::= { macffStats 1 } + + macFfStatsEntry OBJECT-TYPE + SYNTAX MacFfStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfStatsTable." + INDEX { macFfStatsIndex } + ::= { macFfStatsTable 1 } + + MacFfStatsEntry ::= + SEQUENCE { + macFfStatsIndex INTEGER, + macFfStatsVid VlanIndex, + macFfStatsArIP IpAddress, + macFfStatsSrcIP IpAddress, + macFfStatsSrcMask INTEGER + } + + macFfStatsIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of the MACFF." + ::= { macFfStatsEntry 1 } + + macFfStatsVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The VLAN-ID refering to this AR/AS." + ::= { macFfStatsEntry 2 } + + + macFfStatsArIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP of this AR/AS" + ::= { macFfStatsEntry 3 } + + macFfStatsSrcIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The source IP address of the MACFF." + ::= { macFfStatsEntry 4 } + + macFfStatsSrcMask OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The subnet mask of source IP mask." + ::= { macFfStatsEntry 5 } + + macFfArpTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfArpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains MAC Force Forwarding ARP information." + ::= { macffStats 2 } + + macFfArpEntry OBJECT-TYPE + SYNTAX MacFfArpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfArpTable." + INDEX { macFfArpVid, macFfArpIP} + ::= { macFfArpTable 1 } + + MacFfArpEntry ::= + SEQUENCE { + macFfArpVid VlanIndex, + macFfArpIP IpAddress, + macFfArpPort INTEGER, + macFfArpMac PhysAddress + } + + macFfArpVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The VLAN-ID refering to this AR/AS." + ::= { macFfArpEntry 1 } + + macFfArpIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP of this AR/AS." + ::= { macFfArpEntry 2 } + + + macFfArpPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Port of this AR/AS." + ::= { macFfArpEntry 3 } + + macFfArpMac OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MAC address of the AR or AS." + ::= { macFfArpEntry 4 } + + macFfArpCounterTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacFfArpCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains MAC Force Forwarding ARP counter information." + ::= { macffStats 3 } + + macFfArpCounterEntry OBJECT-TYPE + SYNTAX MacFfArpCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of macFfArpCounterTable." + INDEX { ifIndex } + ::= { macFfArpCounterTable 1 } + + MacFfArpCounterEntry ::= + SEQUENCE { + macFfArpCounterRequestTX Counter32, + macFfArpCounterRequestRX Counter32, + macFfArpCounterRequestRXDrop Counter32, + macFfArpCounterReplyTX Counter32, + macFfArpCounterReplyRX Counter32, + macFfArpCounterReplyRXDrop Counter32 + } + + macFfArpCounterRequestTX OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ARP Request TX counter." + ::= { macFfArpCounterEntry 1 } + + macFfArpCounterRequestRX OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ARP Request RX counter." + ::= { macFfArpCounterEntry 2 } + + macFfArpCounterRequestRXDrop OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ARP Request RX drop counter." + ::= { macFfArpCounterEntry 3 } + + macFfArpCounterReplyTX OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ARP Reply TX counter." + ::= { macFfArpCounterEntry 4 } + + macFfArpCounterReplyRX OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ARP Reply RX counter." + ::= { macFfArpCounterEntry 5 } + + macFfArpCounterReplyRXDrop OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ARP Reply RX drop counter." + ::= { macFfArpCounterEntry 6 } + +------------------------------ +-- adslStats +------------------------------ + + adslPortUtilTable OBJECT-TYPE + SYNTAX SEQUENCE OF AdslPortUtilEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes adsl port utilization." + ::= { adslStats 1 } + + adslPortUtilEntry OBJECT-TYPE + SYNTAX AdslPortUtilEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in adslPortUtilEntry." + INDEX {ifIndex} + ::= { adslPortUtilTable 1 } + + AdslPortUtilEntry ::= + SEQUENCE { + adslPortUtilTx INTEGER, + adslPortUtilRx INTEGER, + adslStatsXturInp DisplayString, + adslStatsXtucInp DisplayString + } + + adslPortUtilTx OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measure adsl port's tx utilization." + ::= { adslPortUtilEntry 1 } + + adslPortUtilRx OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measure adsl port's rx utilization." + ::= { adslPortUtilEntry 2 } + + adslStatsXturInp OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "XTUR minimum INP value." + ::= { adslPortUtilEntry 3 } + + adslStatsXtucInp OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "XTUC minimum INP valu." + ::= { adslPortUtilEntry 4 } + + +---------------------------------------- +-- clear +---------------------------------------- + + counterClearTarget OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This managed object is used for identify the target on which + the counter would be cleared. The target is encoded as: + Byte 1: reserved + Byte 2~3: reserved + Byte 4: reserved + Byte 5~11:each octet specifies a set of eight ports, with the first + octet specifying ports 1 through 8, etc." + ::= { clear 1 } + + counterClearOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The corresponding bit is set to 1 to start the operation. + The various bit positions are: + BIT 1: clear interface counters + BIT 2: clear pvc packet counters + BIT 3: not support + BIT 4: not support + BIT 5: clear DHCP counters + BIT 6: clear IGMP counters + BIT 7: clear IGMP port counters + BIT 8: not support + BIT 9: clear current lineperf + BIT 10: clear current 15 minute lineperf + BIT 11: clear current 1 day lineperf" + ::= { clear 2 } + + counterClearVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VPI of the pvc whose counters would be cleared." + ::= { clear 3 } + + counterClearVci OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VCI of the pvc whose counters would be cleared." + ::= { clear 4 } + +-------------------- +-- VoIP +-------------------- + +-- voipLineStatusTable + + voipLineStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipLineStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table displays VoIP line status." + ::= { voipStats 1 } + + voipLineStatusEntry OBJECT-TYPE + SYNTAX VoipLineStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of voipLineStatusTable." + INDEX { ifIndex } + ::= { voipLineStatusTable 1 } + + VoipLineStatusEntry ::= + SEQUENCE { + voipLineStatusPhoneStatus INTEGER, + voipLineStatusServiceStatus INTEGER + } + + voipLineStatusPhoneStatus OBJECT-TYPE + SYNTAX INTEGER { + disabled(1), + onHook(2), + offHook(3), + ringing(4), + powerCutDown(5), + testing(6), + fault(7), + bad(8), + uninitialized(9) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Phone status of the line." + ::= { voipLineStatusEntry 1 } + + voipLineStatusServiceStatus OBJECT-TYPE + SYNTAX INTEGER { + disabled(1), + outOfService(2), + idle(3), + waitingForDialing(4), + dialingOut(5), + ringing(6), + conversationCaller(7), + conversationCallee(8), + faxModemCaller(9), + faxModemCallee(10), + waitingForOnHook(11), + dialingTimeout(12), + alertingOffHook(13), + powerCutDown(14) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Service status of the line." + ::= { voipLineStatusEntry 2 } + +-- voipLineInfoTable + + voipLineInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipLineInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table displays VoIP line information." + ::= { voipStats 2 } + + voipLineInfoEntry OBJECT-TYPE + SYNTAX VoipLineInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of voipLineInfoTable." + INDEX { ifIndex } + ::= { voipLineInfoTable 1 } + + VoipLineInfoEntry ::= + SEQUENCE { + voipLineInfoSipLocalUri OCTET STRING, + voipLineInfoSipRemoteUri OCTET STRING, + voipLineInfoRtpTxCodecType OCTET STRING, + voipLineInfoRtpRxCodecType OCTET STRING, + voipLineInfoRtpTxPt INTEGER, + voipLineInfoRtpRxPt INTEGER, + voipLineInfoRtpLocalIp IpAddress, + voipLineInfoRtpRemoteIp IpAddress, + voipLineInfoRtpLocalPort INTEGER, + voipLineInfoRtpRemotePort INTEGER, + voipLineInfoSipLocalUri2 OCTET STRING, + voipLineInfoSipRemoteUri2 OCTET STRING, + voipLineInfoRtpTxCodecType2 OCTET STRING, + voipLineInfoRtpRxCodecType2 OCTET STRING, + voipLineInfoRtpTxPt2 INTEGER, + voipLineInfoRtpRxPt2 INTEGER, + voipLineInfoRtpLocalIp2 IpAddress, + voipLineInfoRtpRemoteIp2 IpAddress, + voipLineInfoRtpLocalPort2 INTEGER, + voipLineInfoRtpRemotePort2 INTEGER + } + + voipLineInfoSipLocalUri OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 1 } + + voipLineInfoSipRemoteUri OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 2 } + + voipLineInfoRtpTxCodecType OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 3 } + + voipLineInfoRtpRxCodecType OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 4 } + + voipLineInfoRtpTxPt OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 5 } + + voipLineInfoRtpRxPt OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 6 } + + voipLineInfoRtpLocalIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 7 } + + voipLineInfoRtpRemoteIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 8 } + + voipLineInfoRtpLocalPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 9 } + + voipLineInfoRtpRemotePort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 10 } + + voipLineInfoSipLocalUri2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 11 } + + voipLineInfoSipRemoteUri2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 12 } + + voipLineInfoRtpTxCodecType2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 13 } + + voipLineInfoRtpRxCodecType2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 14 } + + voipLineInfoRtpTxPt2 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 15 } + + voipLineInfoRtpRxPt2 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 16 } + + voipLineInfoRtpLocalIp2 OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 17 } + + voipLineInfoRtpRemoteIp2 OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 18 } + + voipLineInfoRtpLocalPort2 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 19 } + + voipLineInfoRtpRemotePort2 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipLineInfoEntry 20 } + +-- voipH248Status + + voipH248Status OBJECT IDENTIFIER ::= { voipStats 3 } + + voipH248StatusMgName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MG name." + ::= { voipH248Status 1 } + + voipH248StatusMgStatus OBJECT-TYPE + SYNTAX INTEGER { + disabled(1), + registering(2), + registered(3), + unregistering(4), + unregistered(5), + disconnected(6), + disabledByMGC(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Mg connection status." + ::= { voipH248Status 2 } + +-- voipActiveCallStat + voipActiveCallStat OBJECT IDENTIFIER ::= { voipStats 4 } + + voipActiveCallStatCurrentActiveCalls OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of current active calls." + ::= { voipActiveCallStat 1 } + + voipActiveCallStatFailAttempts OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Failed attempts to setup active call." + ::= { voipActiveCallStat 2 } + + voipActiveCallStatClear OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The manager sets the corresponding bit value to 1 to start the operation + and the agent clears the object to zero when the operation is successfully completed. + The various bit positions is: + BIT 1: Clear failed attempts to setup active call." + ::= { voipActiveCallStat 3 } + +-- voipH248StatusTable + +--voipH248StatusTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF VoipH248StatusEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "The table displays MG status." +-- ::= { voipStats 3 } +-- +--voipH248StatusEntry OBJECT-TYPE +-- SYNTAX VoipH248StatusEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry of voipH248StatusTable." +-- INDEX { VoipH248StatusMgName } +-- ::= { voipH248StatusTable 1 } +-- +-- VoipH248StatusEntry ::= +-- SEQUENCE { +-- VoipH248StatusMgName OCTET STRING, +-- VoipH248StatusMgStatus INTEGER +-- } +-- +--VoipH248StatusMgName OBJECT-TYPE +-- SYNTAX OCTET STRING +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "MG name." +-- ::= { voipH248StatusEntry 1 } +-- +--VoipH248StatusMgStatus OBJECT-TYPE +-- SYNTAX INTEGER { +-- disabled(1), +-- registering(2), +-- registered(3), +-- unregistering(4), +-- unregistered(5), +-- disconnected(6), +-- disabled(7) +-- } +--MAX-ACCESS read-only +--STATUS current +--DESCRIPTION +-- "Mg connection status." +--::= { voipH248StatusEntry 2 } + +---------------------------------------- +-- voip +---------------------------------------- + + voipArp OBJECT IDENTIFIER ::= { voip 1 } + voipSip OBJECT IDENTIFIER ::= { voip 2 } + voipIp OBJECT IDENTIFIER ::= { voip 3 } + voipDns OBJECT IDENTIFIER ::= { voip 4 } + voipH248 OBJECT IDENTIFIER ::= { voip 10 } + voipRing OBJECT IDENTIFIER ::= { voip 11 } + voipActiveCall OBJECT IDENTIFIER ::= { voip 13 } +-- voipArpFlushOperation + + voipArpFlushOps OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the object to 1 to start flushing." + ::= { voipArp 1 } + +-- voipArpShowTable + + voipArpShowTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipArpShowEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display ARP entries learnt in specified slot." + ::= { voipArp 2 } + + voipArpShowEntry OBJECT-TYPE + SYNTAX VoipArpShowEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of voipArpShowTable." + INDEX { voipArpShowIp } + ::= { voipArpShowTable 1 } + + VoipArpShowEntry ::= + SEQUENCE { + voipArpShowIp IpAddress, + voipArpShowMac PhysAddress + } + + voipArpShowIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipArpShowEntry 1 } + + voipArpShowMac OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipArpShowEntry 2 } + +-- voipNumberPlanTable + + maxNumOfVoipNumberPlan OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of VoIP number plan supported by the system." + ::= { voipSip 1 } + + voipNumberPlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipNumberPlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure numbering plan entry of specified index in specified payphone charging table." + ::= { voipSip 2 } + + voipNumberPlanEntry OBJECT-TYPE + SYNTAX VoipNumberPlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of voipNumberPlanTable." + INDEX { voipNumberPlanName, voipNumberPlanIndex } + ::= { voipNumberPlanTable 1 } + + VoipNumberPlanEntry ::= + SEQUENCE { + voipNumberPlanName DisplayString, + voipNumberPlanIndex INTEGER, + voipNumberPlanPattern OCTET STRING, + voipNumberPlanRule OCTET STRING, + voipNumberPlanRowStatus RowStatus + } + + voipNumberPlanName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Numbering plan table name." + ::= { voipNumberPlanEntry 1 } + + voipNumberPlanIndex OBJECT-TYPE + SYNTAX INTEGER (1..32) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipNumberPlanEntry 2 } + + voipNumberPlanPattern OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Allowed characters are 0~9, *, T, S, P, x, ., | + and range format characters that include '~', ',' + and parenthesis '(', ')', brackets '[', ']', braces '{', '}' + and at most one parenthesis pair are allowed, + Examples: '002(*)', '0(*)', and '(*)'. + '*' represents one or more digit characters + 'x' represents any digit character + 'T' timeout send of dial string, can only appear at the end of pattern + 'S' star phone key (*) match character in dial plan + 'P' pound key (#) match character in dial plan + '.' represents zero or more repetitions of character or range + that precedes it, can't use the dot character '.' in brackets + '|' used to separate multiple number plan patterns + [n~m,k] match a range of digits n~m or a specified digit k, + '[' and ']' must pair and nest brackets is illegal + '~' and ',' are allowed showing in brackets only + '~' connected characters must be digit + {n} match n digits" + ::= { voipNumberPlanEntry 3 } + + voipNumberPlanRule OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Allowed characters are 0~9, and + '\c' stand for country code, + '\d' stand for national destination code, + '\1' stand for matched string enclosed by the parenthesis pair, + '\n' stand for no local disconnect + '\p' stand for partial pattern + '\t' stand for confirmation tone play + '\tr' stand for recall dial tone play + 'deny' stand for the pattern specified is not allowed. + Examples: '\1', '\c\1', and '\c\d\1'." + ::= { voipNumberPlanEntry 4 } + + voipNumberPlanRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new entry or delete an existing entry in this table." + ::= { voipNumberPlanEntry 5 } + + voipNumberPlanDftTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipNumberPlanDftEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure the action rule after inter-digit timeout in specified entry of numbering plan table." + ::= { voipSip 3 } + + voipNumberPlanDftEntry OBJECT-TYPE + SYNTAX VoipNumberPlanDftEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of voipNumberDftPlanTable." + INDEX { voipNumberPlanName } + ::= { voipNumberPlanDftTable 1 } + + VoipNumberPlanDftEntry ::= + SEQUENCE { + voipNumberPlanDftRule OCTET STRING + } + + voipNumberPlanDftRule OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Allowed characters are 0~9, and + '\c' stand for country code, + '\d' stand for national destination code, + '\1' stand for matched string enclosed by the parenthesis pair, + '\n' stand for no local disconnect + '\p' stand for partial pattern + '\t' stand for confirmation tone play + 'deny' stand for the pattern specified is not allowed. + Examples: '\1', '\c\1', and '\c\d\1'." + ::= { voipNumberPlanDftEntry 1 } + + digitSetup OBJECT IDENTIFIER ::= { voipSip 4 } + timeoutSetup OBJECT IDENTIFIER ::= {digitSetup 1} + + initialTimeout OBJECT-TYPE + SYNTAX INTEGER (1..20) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "First digit must be dialed before this timeout, 1 ~ 20 seconds." + ::= { timeoutSetup 1 } + + interDigitTimeout OBJECT-TYPE + SYNTAX INTEGER (1..20) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If no pattern string is fully matched, the inter-digit timeout will + trigger device to send out current dialed digits, 1 ~ 20 seconds." + ::= { timeoutSetup 2 } + + digitPauseTimeout OBJECT-TYPE + SYNTAX INTEGER (1..20) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If a pattern string is end with the T pattern, the pattern string + will not be matched until the timeout happens, 1 ~ 20 seconds." + ::= { timeoutSetup 3 } + + matchingTimeout OBJECT-TYPE + SYNTAX INTEGER (1..20) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If a pattern string is fully matched, and there are other pattern + strings partially matched, the pattern string will be sent out if + the timeout happens, 1 ~ 20 seconds." + ::= { timeoutSetup 4 } + +-- voipIp + + voipIpSetIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VoIP's IP address." + ::= { voipIp 1 } + + voipIpSetVid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VoIP's VLAN ID." + ::= { voipIp 2 } + + voipIpSetMask OBJECT-TYPE + SYNTAX INTEGER (0..32) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VoIP's network mask." + ::= { voipIp 3 } + + voipIpSetDhcpClientEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable VoIP's DHCP Client." + ::= { voipIp 4 } + + voipIpGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IP of default VoIP gateway." + ::= { voipIp 5 } + +-- voipDns + + + voipDnsIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IP address." + ::= { voipDns 1 } + +-- voipRouteTable + + maxNumOfVoipRoute OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of VoIP routing entries." + ::= { voip 7 } + + voipRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { voip 8 } + + voipRouteEntry OBJECT-TYPE + SYNTAX VoipRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of voipRouteTable." + INDEX { voipRouteIp, voipRouteGateway, voipRouteMask } + ::= { voipRouteTable 1 } + + VoipRouteEntry ::= + SEQUENCE { + voipRouteIp IpAddress, + voipRouteGateway IpAddress, + voipRouteMask INTEGER, + voipRouteMetric INTEGER, + voipRouteRowStatus RowStatus + } + + voipRouteIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP address." + ::= { voipRouteEntry 1 } + + voipRouteGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Gateway IP." + ::= { voipRouteEntry 2 } + + voipRouteMask OBJECT-TYPE + SYNTAX INTEGER (0..32) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Network mask." + ::= { voipRouteEntry 3 } + + voipRouteMetric OBJECT-TYPE + SYNTAX INTEGER (1..15) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Metric number of the route." + ::= { voipRouteEntry 4 } + + voipRouteRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new entry or delete an existing entry in this table." + ::= { voipRouteEntry 5 } + +-- voipCountryCode + + voipCountryCode OBJECT-TYPE + SYNTAX INTEGER { + usa(1) +-- taiwan(2), +-- austria(3), +-- belgium(4), +-- denmark(5), +-- finland(6), +-- netherland(7), +-- norway(8), +-- spain(9), +-- sweden(10), +-- switzerland(11), +-- uk(12), +-- germany(13), +-- australia(14), +-- ireland(15), +-- czech(16), +-- italy(17), +-- japan(18), +-- new_zealand(19), +-- russia(20), +-- china(21), +-- vietnam(22), +-- brazil(23) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure country (information) for VoIP services." + ::= { voip 9 } + +-- voipH248 + + maxNumOfVoipH248MgConf OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of virtual media gateway supported by the system." + ::= { voipH248 1 } + + voipH248MgConf OBJECT IDENTIFIER ::= { voipH248 2 } + + + voipH248MgName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "MG name." + ::= { voipH248MgConf 1 } + + voipH248MgEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable MG." + ::= { voipH248MgConf 2 } + + voipH248MgH248Profile OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "H248 profile name used by MG." + ::= { voipH248MgConf 3 } + + voipH248MgPort OBJECT-TYPE + SYNTAX INTEGER (1025..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Port number used by MG." + ::= { voipH248MgConf 4 } + + voipBootRegDelay OBJECT-TYPE + SYNTAX INTEGER (0..30) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Registration delay in seconds." + ::= { voip 12} + +-- voipRingTable + + voipRingTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoipRingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { voipRing 1 } + + voipRingEntry OBJECT-TYPE + SYNTAX VoipRingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of voipRouteTable." + INDEX { voipRingIndex } + ::= { voipRingTable 1 } + + VoipRingEntry ::= + SEQUENCE { + voipRingIndex INTEGER, + voipRingName DisplayString, + voipRingOn1 INTEGER, + voipRingOff1 INTEGER, + voipRingOn2 INTEGER, + voipRingOff2 INTEGER, + voipRingOn3 INTEGER, + voipRingOff3 INTEGER + } + + voipRingIndex OBJECT-TYPE + SYNTAX INTEGER(1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { voipRingEntry 1 } + + voipRingName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Ring identifier used in SIP Alert-Info header field" + ::= { voipRingEntry 2 } + + voipRingOn1 OBJECT-TYPE + SYNTAX INTEGER (100..10000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "first on time in milliseconds" + ::= { voipRingEntry 3 } + + voipRingOff1 OBJECT-TYPE + SYNTAX INTEGER (100..10000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "first off time in milliseconds" + ::= { voipRingEntry 4 } + + voipRingOn2 OBJECT-TYPE + SYNTAX INTEGER (100..10000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "second on time in milliseconds" + ::= { voipRingEntry 5 } + + voipRingOff2 OBJECT-TYPE + SYNTAX INTEGER (100..10000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "second off time in milliseconds" + ::= { voipRingEntry 6 } + + voipRingOn3 OBJECT-TYPE + SYNTAX INTEGER (100..10000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "third on time in milliseconds" + ::= { voipRingEntry 7 } + + voipRingOff3 OBJECT-TYPE + SYNTAX INTEGER (100..10000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "third off time in milliseconds" + ::= { voipRingEntry 8 } + + + voipRingSetDefault OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the index to default value." + ::= { voipRing 2 } + +-- voipActiveCall + voipActiveCallMaxActiveCalls OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure maximum number of concurrent active calls, 0~96." + ::= { voipActiveCall 1 } + + voipActiveCallThreshold OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The threshold to report or clear alarm, 50~100." + ::= { voipActiveCall 2 } + +-- voipMode + voipMode OBJECT-TYPE + SYNTAX INTEGER { + sip(1), + csip(2), + h248(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure the Mode for VoIP Service." + ::= { voip 100 } + +-- voipH248MgConfTable + +--voipH248MgConfTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF VoipH248MgConfEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "This table includes H248 MG related configuration." +-- ::= { voipH248 1 } +-- +--voipH248MgConfEntry OBJECT-TYPE +-- SYNTAX VoipH248MgConfEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "An entry of voipH248MgConfTable." +-- INDEX { voipH248MgName } +-- ::= { voipH248MgConfTable 1 } +-- +--VoipH248MgConfEntry ::= +-- SEQUENCE { +-- voipH248MgName DisplayString, +-- voipH248MgEnable INTEGER, +-- voipH248MgH248Profile DisplayString, +-- voipH248MgPort INTEGER, +-- voipH248MgRowStatus RowStatus +-- } +-- +--voipH248MgName OBJECT-TYPE +-- SYNTAX DisplayString +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "MG name." +-- ::= { voipH248MgConfEntry 1 } +-- +--voipH248MgEnable OBJECT-TYPE +-- SYNTAX INTEGER { +-- enable(1), +-- disable(2) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Enable/disable MG." +-- ::= { voipH248MgConfEntry 2 } +-- +--voipH248MgH248Profile OBJECT-TYPE +-- SYNTAX DisplayString +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "H248 profile name used by MG." +-- ::= { voipH248MgConfEntry 3 } +-- +--voipH248MgPort OBJECT-TYPE +-- SYNTAX INTEGER (1025..65535) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Port number used by MG." +-- ::= { voipH248MgConfEntry 4 } +-- +--voipH248MgRowStatus OBJECT-TYPE +-- SYNTAX RowStatus +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "This object is used to create a new entry or delete an existing entry in this table." +-- ::= { voipH248MgConfEntry 5 } +END diff --git a/mibs/calix/E5-121-TRAPS-MIB b/mibs/calix/E5-121-TRAPS-MIB new file mode 100644 index 0000000000..6473fdd3f0 --- /dev/null +++ b/mibs/calix/E5-121-TRAPS-MIB @@ -0,0 +1,718 @@ +-- $Log: E5-121-TRAPS-MIB.mib $ +-- Revision 1.8 2010/11/12 02:58:59 cylien +-- Revision 1.7 2010/10/14 08:58:34 cylien +-- Revision 1.6 2010/09/23 07:59:18 cylien +-- Revision 1.5 2010/07/19 05:36:18 John +-- Revision 1.4 2010/06/30 08:43:23 John +-- Revision 1.4 2010/06/28 17:05:07 John +-- Revision 1.3 2010/06/08 03:55:46 cylien +-- Revision 1.2 2010/04/23 10:46:35 maverick +-- Revision 1.1 2009/06/25 02:47:18 niceguy +-- Initial revision + + +E5-121-TRAPS-MIB DEFINITIONS ::= BEGIN + + IMPORTS + + OBJECT-TYPE + FROM SNMPv2-SMI + DisplayString, ifIndex + FROM RFC1213-MIB + iesChassisId,iesSlotId + FROM E5-121-IESCOMMON-MIB + e5x121 + FROM E5-121-MIB + dot1agCfmMdMdLevel, dot1agCfmVlanPrimaryVid, dot1agCfmMepIdentifier + FROM IEEE8021-CFMD8-MIB; + + trap OBJECT IDENTIFIER ::= { e5x121 12 } + +---------------------------------------- +-- trap +---------------------------------------- + + object OBJECT IDENTIFIER ::= { trap 1 } + equipment OBJECT IDENTIFIER ::= { trap 3 } + systrap OBJECT IDENTIFIER ::= { trap 4 } + voiptrap OBJECT IDENTIFIER ::= { trap 7 } + interface OBJECT IDENTIFIER ::= { trap 8 } + e5Alarm OBJECT IDENTIFIER ::= { trap 9 } + +-------------------- +-- object +-------------------- + + eqptAlarmInputIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of alarm input." + ::= { object 2 } + + eqptAlarmInputName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Name of alarm input." + ::= { object 8 } + + sysMacAntiSpoofOrig OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Original port of Mac-AntiSpoofing." + ::= { object 9 } + + sysMacAntiSpoofNew OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The New port of Mac-AntiSpoofing." + ::= { object 10 } + + sysMacAntiSpoofMAC OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MAC of Mac-AntiSpoofing." + ::= { object 11 } + + sysAlarmOrigSeverity OBJECT-TYPE + SYNTAX INTEGER { + critical(1), + major(2), + minor(3), + info(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The original severity of alarm." + ::= { object 12 } + + sysAlarmNewSeverity OBJECT-TYPE + SYNTAX INTEGER { + critical(1), + major(2), + minor(3), + info(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The new severity of alarm." + ::= { object 13 } + + sysAlarmConfId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The changed severity of alarm condition ID. + 5000:vdslLine_up + 5001:vdslLine_down + 5002:vdsl_tca_lol + 5003:vdsl_tca_lof + 5004:vdsl_tca_los + 5005:vdsl_tca_lop + 5006:vdsl_tca_es + 5007:vdsl_tca_ses + 5008:vdsl_tca_uas + 5009:xd_xtuc_loftrap + 5010:xd_xtuc_lostrap + 5011:xd_xtur_loftrap + 5012:xd_xtur_lostrap + 5013:xd_xtur_lprtrap + 5014:ad_dhcp_rt_full + 5015:ad_dhcp_dm_conflict + 5016:ad_dhcp_entry_full + 5017:ad_dhcp_ip_dup + 5018:ad_dhcp_mac_dup + 10000:eqptVol_err + 10001:eqptEqpttemp_err + 10002:eqptFan_err + 10003:eqptHw_rtc_fail + 10004:eqptHw_mon_fail + 10005:eqptCold_start + 10006:eqptWarm_start + 10007:eqptAlm_input + 10008:voip_battery_fail + 10009:voip_clock_fail + 10010:voip_ringer_fault + 10011:eqptAlm_input2 + 10012:eqptAlm_input3 + 15000:sysReboot + 15001:sysAco + 15002:sysAlm_clear + 15003:sysLogin_fail + 15004:sysAnti_spoofing + 15005:sysAlm_svrty_change + 15006:sysHost_terminate + 20000:enetUp + 20001:enetDown + 25000:voip_temp_error + 25001:voip_dc_power_fail + 25002:voip_ac_power_fail + 25003:voip_ring_timer_fail + 25004:voip_ring_rsrce_fail + 25006:voip_dhcp_clt_fail + 25007:voip_call_setup_failed + 25008:voip_call_threshold_violate + 30000:cfmError + " + ::= { object 14 } + + voipDevId OBJECT-TYPE + SYNTAX INTEGER{ + p1-p24(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The device ID of the DUT. 0 means port 1 to 24." + ::= { object 51 } + + + voipCount OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ringer fault" + ::= { object 52 } + + voipPhoneState OBJECT-TYPE + SYNTAX INTEGER { + disable(1), + onHook(2), + offHook(3), + ringing(4), + powerCutDown(5), + testing(6), + fault(7), + bad(8), + uninitialized(9) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Phone status of the line." + ::= { object 53 } + + voipBatType OBJECT-TYPE + SYNTAX INTEGER{ + batteryLow(0), + batteryHigh(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ringer fault" + ::= { object 54 } + + intfCfmCcmErrorCause OBJECT-TYPE + SYNTAX INTEGER { + noDefect(1), + rdiReceived(2), + macDownReceivedFromDownMEP(3), + lostConnectionToRemoteMEP(4), + configurationError(5), + maintenanceDomainCrossConnect(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { object 55 } + +-------------------- +-- equipment +-------------------- + + eqptHWMonitorFailure NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Hardware monitor diagnosis is failed." + ::= { equipment 1 } + +-------------------- +-- systrap +-------------------- + + sysMacAntiSpoofing NOTIFICATION-TYPE + OBJECTS { + sysMacAntiSpoofOrig, + sysMacAntiSpoofNew, + sysMacAntiSpoofMAC + } + STATUS current + DESCRIPTION + "MAC Anti-spoofing." + ::= { systrap 1 } + + sysAlarmCutoffEnable NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Alarm cutoff is activated." + ::= { systrap 2 } + + sysAlarmClearEnable NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Alarm clear is activated." + ::= { systrap 3 } + + sysLoginFailure NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "User login is failed." + ::= { systrap 4 } + + sysAlarmSvrtyChange NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Alarm severity is changed." + ::= { systrap 5 } + +-------------------- +-- voip +-------------------- + voipBatteryFail NOTIFICATION-TYPE + OBJECTS { + iesChassisId, + iesSlotId, + voipDevId, + voipBatType + } + STATUS current + DESCRIPTION + "Battery fault trigger." + ::= { voiptrap 1 } + + voipBatteryClear NOTIFICATION-TYPE + OBJECTS { + iesChassisId, + iesSlotId, + voipDevId, + voipBatType + } + STATUS current + DESCRIPTION + "Battery fault release." + ::= { voiptrap 2 } + + voipClockFail NOTIFICATION-TYPE + OBJECTS { + iesChassisId, + iesSlotId, + voipDevId + } + STATUS current + DESCRIPTION + "Clock fault trigger." + ::= { voiptrap 3 } + + voipClockClear NOTIFICATION-TYPE + OBJECTS { + iesChassisId, + iesSlotId, + voipDevId + } + STATUS current + DESCRIPTION + "Clock fault release." + ::= { voiptrap 4 } + + voipRingerFault NOTIFICATION-TYPE + OBJECTS { + iesChassisId, + iesSlotId, + voipCount + } + STATUS current + DESCRIPTION + "Ringer fault trigger." + ::= { voiptrap 5 } + + voipRingerClear NOTIFICATION-TYPE + OBJECTS { + iesChassisId, + iesSlotId, + voipCount + } + STATUS current + DESCRIPTION + "Ringer fault release." + ::= { voiptrap 6 } + + voipTempError NOTIFICATION-TYPE + OBJECTS { + iesChassisId, + iesSlotId, + ifIndex, + voipPhoneState + } + STATUS current + DESCRIPTION + "Temperature error trigger." + ::= { voiptrap 7 } + + voipTempClear NOTIFICATION-TYPE + OBJECTS { + iesChassisId, + iesSlotId, + ifIndex, + voipPhoneState + } + STATUS current + DESCRIPTION + "Temperature error release." + ::= { voiptrap 8 } + + voipDcPowerFail NOTIFICATION-TYPE + OBJECTS { + iesChassisId, + iesSlotId, + ifIndex, + voipPhoneState + } + STATUS current + DESCRIPTION + "DC power error trigger." + ::= { voiptrap 9 } + + voipDcPowerClear NOTIFICATION-TYPE + OBJECTS { + iesChassisId, + iesSlotId, + ifIndex, + voipPhoneState + } + STATUS current + DESCRIPTION + "DC power error release." + ::= { voiptrap 10 } + + voipAcPowerFail NOTIFICATION-TYPE + OBJECTS { + iesChassisId, + iesSlotId, + ifIndex, + voipPhoneState + } + STATUS current + DESCRIPTION + "DC power error trigger." + ::= { voiptrap 11 } + + voipAcPowerClear NOTIFICATION-TYPE + OBJECTS { + iesChassisId, + iesSlotId, + ifIndex, + voipPhoneState + } + STATUS current + DESCRIPTION + "DC power error release." + ::= { voiptrap 12 } + +-------------------- +-- interface +-------------------- + + cfmCcmError NOTIFICATION-TYPE + OBJECTS { + dot1agCfmMdMdLevel, + dot1agCfmVlanPrimaryVid, + dot1agCfmMepIdentifier, + intfCfmCcmErrorCause + } + STATUS current + DESCRIPTION + "" + ::= { interface 1 } + + +-------------------- +-- e5Alarm +-------------------- + +e5AlarmTable OBJECT-TYPE + SYNTAX SEQUENCE OF E5AlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table holds all the active alarms" + ::= { e5Alarm 1 } + + +e5AlarmNotify NOTIFICATION-TYPE + OBJECTS { + e5AlarmObjectClass, + e5AlarmObjectInstance1, + e5AlarmObjectInstance2, + e5AlarmObjectInstance3, + e5AlarmObjectInstance4, + e5AlarmType, + e5AlarmSeverity, + e5AlarmTimeStamp, + e5AlarmServiceAffecting, + e5AlarmText, + e5AlarmTime + } + STATUS current + DESCRIPTION + "E5 device alarm notification." + ::= { e5Alarm 2 } + + +e5AlarmEntry OBJECT-TYPE + SYNTAX E5AlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "List of attributes regarding alarm table" + INDEX { e5AlarmObjectClass, e5AlarmObjectInstance1, e5AlarmObjectInstance2, + e5AlarmObjectInstance3, e5AlarmObjectInstance4, + e5AlarmObjectInstance5, e5AlarmObjectInstance6, + e5AlarmObjectInstance7, e5AlarmObjectInstance8, e5AlarmType } + ::= { e5AlarmTable 1 } + +E5AlarmEntry ::= SEQUENCE { + e5AlarmObjectClass INTEGER, + e5AlarmObjectInstance1 INTEGER, + e5AlarmObjectInstance2 INTEGER, + e5AlarmObjectInstance3 INTEGER, + e5AlarmObjectInstance4 INTEGER, + e5AlarmObjectInstance5 INTEGER, + e5AlarmObjectInstance6 INTEGER, + e5AlarmObjectInstance7 INTEGER, + e5AlarmObjectInstance8 INTEGER, + e5AlarmType INTEGER, + e5AlarmSeverity INTEGER, + e5AlarmTimeStamp OCTET STRING, + e5AlarmServiceAffecting INTEGER, + e5AlarmLocationInfo INTEGER, + e5AlarmText OCTET STRING, + e5AlarmTime INTEGER, + e5AlarmCliObject OCTET STRING, + e5AlarmSecObjectClass INTEGER, + e5AlarmSecObjectInstance1 INTEGER, + e5AlarmSecObjectInstance2 INTEGER, + e5AlarmSecObjectInstance3 INTEGER, + e5AlarmSecObjectInstance4 INTEGER, + e5AlarmSecObjectInstance5 INTEGER, + e5AlarmSecObjectInstance6 INTEGER, + e5AlarmSecObjectInstance7 INTEGER, + e5AlarmSecObjectInstance8 INTEGER + } + +e5AlarmObjectClass OBJECT-TYPE + SYNTAX INTEGER { + dsl(1), + eqpt(2), + sys(3), + enet(4), + vop(5), + intf(6), + unknown(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object Class for an alarm" + ::= { e5AlarmEntry 1 } + +e5AlarmObjectInstance1 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 1" + ::= { e5AlarmEntry 2 } + +e5AlarmObjectInstance2 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 2" + ::= { e5AlarmEntry 3 } + +e5AlarmObjectInstance3 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 3" + ::= { e5AlarmEntry 4 } + +e5AlarmObjectInstance4 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 4" + ::= { e5AlarmEntry 5 } + +e5AlarmObjectInstance5 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 5" + ::= { e5AlarmEntry 6 } + +e5AlarmObjectInstance6 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 6" + ::= { e5AlarmEntry 7 } + +e5AlarmObjectInstance7 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 7" + ::= { e5AlarmEntry 8 } + +e5AlarmObjectInstance8 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object instance for an alarm, level 8" + ::= { e5AlarmEntry 9 } + +e5AlarmType OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Unique type for an alarm" + ::= { e5AlarmEntry 10 } + +e5AlarmSeverity OBJECT-TYPE + SYNTAX INTEGER { + clear(0), + critical(1), + major(2), + minor(3), + warning(4), + unknown(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Severity of the alarm" + ::= { e5AlarmEntry 11 } + +e5AlarmTimeStamp OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..50)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Timestamp indicating the set/clear time of the alarm" + ::= { e5AlarmEntry 12 } + +e5AlarmServiceAffecting OBJECT-TYPE + SYNTAX INTEGER { + yes(1), + no(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicated the nature of the alarm i.e. service + affecting or not" + ::= { e5AlarmEntry 13 } + +e5AlarmLocationInfo OBJECT-TYPE + SYNTAX INTEGER { + nearEnd(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "" + ::= { e5AlarmEntry 14 } + +e5AlarmText OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Alarm description" + ::= { e5AlarmEntry 15 } + +e5AlarmTime OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "UTC time" + ::= { e5AlarmEntry 16 } + +e5AlarmCliObject OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The short CLI name for the object class and instance" + ::= { e5AlarmEntry 17 } + +e5AlarmSecObjectClass OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary Object Class for an alarm" + ::= { e5AlarmEntry 18 } + +e5AlarmSecObjectInstance1 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 1" + ::= { e5AlarmEntry 19 } + +e5AlarmSecObjectInstance2 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 2" + ::= { e5AlarmEntry 20 } + +e5AlarmSecObjectInstance3 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 3" + ::= { e5AlarmEntry 21 } + +e5AlarmSecObjectInstance4 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 4" + ::= { e5AlarmEntry 22 } + +e5AlarmSecObjectInstance5 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 5" + ::= { e5AlarmEntry 23 } + +e5AlarmSecObjectInstance6 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 6" + ::= { e5AlarmEntry 24 } + +e5AlarmSecObjectInstance7 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 7" + ::= { e5AlarmEntry 25 } + +e5AlarmSecObjectInstance8 OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Secondary object instance for an alarm, level 8" + ::= { e5AlarmEntry 26 } + +END diff --git a/mibs/calix/HCNUM-TC[rfc2856] b/mibs/calix/HCNUM-TC[rfc2856] new file mode 100644 index 0000000000..66b57aa2ca --- /dev/null +++ b/mibs/calix/HCNUM-TC[rfc2856] @@ -0,0 +1,123 @@ + +-- WinAgents MIB Extraction Wizard +-- Extracted from rfc2856.txt 16.03.2005 20:21:52 + +HCNUM-TC DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, mib-2, Counter64 + FROM SNMPv2-SMI + TEXTUAL-CONVENTION + FROM SNMPv2-TC; + +hcnumTC MODULE-IDENTITY + LAST-UPDATED "200006080000Z" + + ORGANIZATION "IETF OPS Area" + CONTACT-INFO + " E-mail: mibs@ops.ietf.org + Subscribe: majordomo@psg.com + with msg body: subscribe mibs + + Andy Bierman + Cisco Systems Inc. + 170 West Tasman Drive + San Jose, CA 95134 USA + +1 408-527-3711 + abierman@cisco.com + + Keith McCloghrie + Cisco Systems Inc. + 170 West Tasman Drive + San Jose, CA 95134 USA + +1 408-526-5260 + kzm@cisco.com + + Randy Presuhn + BMC Software, Inc. + Office 1-3141 + 2141 North First Street + San Jose, California 95131 USA + +1 408 546-1006 + rpresuhn@bmc.com" + DESCRIPTION + "A MIB module containing textual conventions + for high capacity data types. This module + addresses an immediate need for data types not directly + supported in the SMIv2. This short-term solution + is meant to be deprecated as a long-term solution + is deployed." + REVISION "200006080000Z" + DESCRIPTION + "Initial Version of the High Capacity Numbers + MIB module, published as RFC 2856." + ::= { mib-2 78 } + +CounterBasedGauge64 ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The CounterBasedGauge64 type represents a non-negative + integer, which may increase or decrease, but shall never + exceed a maximum value, nor fall below a minimum value. The + maximum value can not be greater than 2^64-1 + (18446744073709551615 decimal), and the minimum value can + + not be smaller than 0. The value of a CounterBasedGauge64 + has its maximum value whenever the information being modeled + is greater than or equal to its maximum value, and has its + minimum value whenever the information being modeled is + smaller than or equal to its minimum value. If the + information being modeled subsequently decreases below + (increases above) the maximum (minimum) value, the + CounterBasedGauge64 also decreases (increases). + + Note that this TC is not strictly supported in SMIv2, + because the 'always increasing' and 'counter wrap' semantics + associated with the Counter64 base type are not preserved. + It is possible that management applications which rely + solely upon the (Counter64) ASN.1 tag to determine object + semantics will mistakenly operate upon objects of this type + as they would for Counter64 objects. + + This textual convention represents a limited and short-term + solution, and may be deprecated as a long term solution is + defined and deployed to replace it." + SYNTAX Counter64 + + +ZeroBasedCounter64 ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "This TC describes an object which counts events with the + following semantics: objects of this type will be set to + zero(0) on creation and will thereafter count appropriate + events, wrapping back to zero(0) when the value 2^64 is + reached. + + Provided that an application discovers the new object within + the minimum time to wrap it can use the initial value as a + delta since it last polled the table of which this object is + part. It is important for a management station to be aware + of this minimum time and the actual time between polls, and + to discard data if the actual time is too long or there is + no defined minimum time. + + Typically this TC is used in tables where the INDEX space is + constantly changing and/or the TimeFilter mechanism is in + use. + + Note that this textual convention does not retain all the + semantics of the Counter64 base type. Specifically, a + Counter64 has an arbitrary initial value, but objects + defined with this TC are required to start at the value + + zero. This behavior is not likely to have any adverse + effects on management applications which are expecting + Counter64 semantics. + + This textual convention represents a limited and short-term + solution, and may be deprecated as a long term solution is + defined and deployed to replace it." + SYNTAX Counter64 + +END diff --git a/mibs/calix/RFC-3728 b/mibs/calix/RFC-3728 new file mode 100644 index 0000000000..b8a088228d --- /dev/null +++ b/mibs/calix/RFC-3728 @@ -0,0 +1,2840 @@ + + VDSL-LINE-MIB DEFINITIONS ::= BEGIN + + IMPORTS + + MODULE-IDENTITY, + OBJECT-TYPE, + Gauge32, + Integer32, + Unsigned32, + NOTIFICATION-TYPE, + transmission FROM SNMPv2-SMI -- [RFC2578] + ZeroBasedCounter64 FROM HCNUM-TC -- [RFC2856] + TEXTUAL-CONVENTION, + RowStatus, + TruthValue FROM SNMPv2-TC -- [RFC2579] + HCPerfValidIntervals, + HCPerfInvalidIntervals, + HCPerfTimeElapsed, + HCPerfIntervalThreshold, + HCPerfCurrentCount, + HCPerfIntervalCount FROM HC-PerfHist-TC-MIB -- [RFC3705] + MODULE-COMPLIANCE, + OBJECT-GROUP, + NOTIFICATION-GROUP FROM SNMPv2-CONF -- [RFC2580] + ifIndex FROM IF-MIB -- [RFC2863] + SnmpAdminString FROM SNMP-FRAMEWORK-MIB; -- [RFC3411] + + vdslMIB MODULE-IDENTITY + LAST-UPDATED "200402190000Z" -- February 19, 2004 + ORGANIZATION "ADSLMIB Working Group" + CONTACT-INFO "WG-email: adslmib@ietf.org + Info: https://www1.ietf.org/mailman/listinfo/adslmib + + Chair: Mike Sneed + Sand Channel Systems + Postal: P.O. Box 37324 + Raleigh, NC 27627-7324 + USA + Email: sneedmike@hotmail.com + Phone: +1 206 600 7022 + + Co-editor: Bob Ray + PESA Switching Systems, Inc. + Postal: 330-A Wynn Drive + Huntsville, AL 35805 + USA + Email: rray@pesa.com + Phone: +1 256 726 9200 ext. 142 + + Co-editor: Rajesh Abbi + Alcatel USA + Postal: 2301 Sugar Bush Road + Raleigh, NC 27612-3339 + USA + Email: Rajesh.Abbi@alcatel.com + Phone: +1 919 850 6194 + " + DESCRIPTION + "The MIB module defining objects for the management of a pair + of VDSL transceivers at each end of the VDSL line. Each such + line has an entry in an ifTable which may include multiple + transceiver lines. An agent may reside at either end of the + VDSL line. However, the MIB is designed to require no + management communication between them beyond that inherent in + the low-level VDSL line protocol. The agent may monitor and + control this protocol for its needs. + VDSL lines may support optional Fast or Interleaved channels. + If these are supported, additional entries corresponding to the + supported channels must be created in the ifTable. Thus a VDSL + line that supports both channels will have three entries in the + ifTable, one for each physical, fast, and interleaved, whose + ifType values are equal to vdsl(97), fast(125), and + interleaved(124), respectively. The ifStackTable is used to + represent the relationship between the entries. + + Naming Conventions: + Vtuc -- (VTUC) transceiver at near (Central) end of line + Vtur -- (VTUR) transceiver at Remote end of line + Vtu -- One of either Vtuc or Vtur + Curr -- Current + Prev -- Previous + Atn -- Attenuation + ES -- Errored Second. + SES -- Severely Errored Second + UAS -- Unavailable Second + LCS -- Line Code Specific + Lof -- Loss of Frame + Lol -- Loss of Link + Los -- Loss of Signal + Lpr -- Loss of Power + xxxs -- Sum of Seconds in which xxx has occured + (e.g., xxx = Lof, Los, Lpr, Lol) + Max -- Maximum + Mgn -- Margin + Min -- Minimum + Psd -- Power Spectral Density + Snr -- Signal to Noise Ratio + Tx -- Transmit + Blks -- Blocks + + Copyright (C) The Internet Society (2004). This version + of this MIB module is part of RFC 3728: see the RFC + itself for full legal notices." + REVISION "200402190000Z" -- February 19, 2004 + DESCRIPTION "Initial version, published as RFC 3728." + ::= { transmission 97 } + + vdslLineMib OBJECT IDENTIFIER ::= { vdslMIB 1 } + vdslMibObjects OBJECT IDENTIFIER ::= { vdslLineMib 1 } + + -- + -- textual conventions used in this MIB + -- + + VdslLineCodingType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "This data type is used as the syntax for the VDSL Line + Code. Attributes with this syntax identify the line coding + used. Specified as an INTEGER, the three values are: + + other(1) -- none of the following + mcm(2) -- Multiple Carrier Modulation + scm(3) -- Single Carrier Modulation" + SYNTAX INTEGER + { + other(1), + mcm(2), + scm(3) + } + + VdslLineEntity ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Identifies a transceiver as being either Vtuc or Vtur. + A VDSL line consists of two transceivers, a Vtuc and a + Vtur. Attributes with this syntax reference the two sides + of a line. Specified as an INTEGER, the two values are: + + vtuc(1) -- central site transceiver + vtur(2) -- remote site transceiver" + SYNTAX INTEGER + { + vtuc(1), + vtur(2) + } + + -- + -- objects + -- + + vdslLineTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslLineEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes common attributes describing + both ends of the line. It is required for all VDSL + physical interfaces. VDSL physical interfaces are + those ifEntries where ifType is equal to vdsl(97)." + ::= { vdslMibObjects 1 } + + + vdslLineEntry OBJECT-TYPE + SYNTAX VdslLineEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An entry in the vdslLineTable." + INDEX { ifIndex } + ::= { vdslLineTable 1 } + + VdslLineEntry ::= + SEQUENCE + { + vdslLineCoding VdslLineCodingType, + vdslLineType INTEGER, + vdslLineConfProfile SnmpAdminString, + vdslLineAlarmConfProfile SnmpAdminString + } + + vdslLineCoding OBJECT-TYPE + SYNTAX VdslLineCodingType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies the VDSL coding type used on this line." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslLineEntry 1 } + + vdslLineType OBJECT-TYPE + SYNTAX INTEGER + { + noChannel(1), -- no channels exist + fastOnly(2), -- only fast channel exists + interleavedOnly(3), -- only interleaved channel exists + fastOrInterleaved(4), -- either fast or interleaved channel + -- exist, but only one at a time + fastAndInterleaved(5) -- both fast and interleaved channels + -- exist + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Defines the type of VDSL physical line entity that exists, + by defining whether and how the line is channelized. If + the line is channelized, the value will be other than + noChannel(1). This object defines which channel type(s) + are supported. Defined values are: + + noChannel(1) -- no channels exist + fastOnly(2) -- only fast channel exists + interleavedOnly(3) -- only interleaved channel exists + fastOrInterleaved(4) -- either fast or interleaved channel + -- exist, but only one at a time + fastAndInterleaved(5) -- both fast and interleaved channels + -- exist + + Note that 'slow' and 'interleaved' refer to the same + channel. In the case that the line is channelized, the + manager can use the ifStackTable to determine the ifIndex + for the associated channel(s)." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslLineEntry 2 } + + vdslLineConfProfile OBJECT-TYPE + SYNTAX SnmpAdminString (SIZE(1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of this object identifies the row in the VDSL + Line Configuration Profile Table, vdslLineConfProfileTable, + which applies for this VDSL line, and channels if + applicable. + + This object MUST be maintained in a persistent manner." + DEFVAL { "DEFVAL" } + ::= { vdslLineEntry 3 } + + vdslLineAlarmConfProfile OBJECT-TYPE + SYNTAX SnmpAdminString (SIZE(1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of this object identifies the row in the VDSL + Line Alarm Configuration Profile Table, + vdslLineAlarmConfProfileTable, which applies to this + VDSL line, and channels if applicable. + + This object MUST be maintained in a persistent manner." + DEFVAL { "DEFVAL" } + ::= { vdslLineEntry 4 } + + vdslPhysTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslPhysEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table provides one row for each Vtu. Each row + contains the Physical Layer Parameters table for that + Vtu. VDSL physical interfaces are those ifEntries where + ifType is equal to vdsl(97)." + ::= { vdslMibObjects 2 } + + vdslPhysEntry OBJECT-TYPE + SYNTAX VdslPhysEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An entry in the vdslPhysTable." + INDEX { ifIndex, + vdslPhysSide } + ::= { vdslPhysTable 1 } + + VdslPhysEntry ::= + SEQUENCE + { + vdslPhysSide VdslLineEntity, + vdslPhysInvSerialNumber SnmpAdminString, + vdslPhysInvVendorID SnmpAdminString, + vdslPhysInvVersionNumber SnmpAdminString, + vdslPhysCurrSnrMgn Integer32, + vdslPhysCurrAtn Gauge32, + vdslPhysCurrStatus BITS, + vdslPhysCurrOutputPwr Integer32, + vdslPhysCurrAttainableRate Gauge32, + vdslPhysCurrLineRate Gauge32 + } + + vdslPhysSide OBJECT-TYPE + SYNTAX VdslLineEntity + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifies whether the transceiver is the Vtuc or Vtur." + ::= { vdslPhysEntry 1 } + + vdslPhysInvSerialNumber OBJECT-TYPE + SYNTAX SnmpAdminString(SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor specific string that identifies the + vendor equipment." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPhysEntry 2 } + + vdslPhysInvVendorID OBJECT-TYPE + SYNTAX SnmpAdminString (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor ID code is a copy of the binary vendor + identification field expressed as readable characters + in hexadecimal notation." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPhysEntry 3 } + + vdslPhysInvVersionNumber OBJECT-TYPE + SYNTAX SnmpAdminString (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor specific version number sent by this Vtu + as part of the initialization messages. It is a copy + of the binary version number field expressed as + readable characters in hexadecimal notation." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPhysEntry 4 } + + vdslPhysCurrSnrMgn OBJECT-TYPE + SYNTAX Integer32 (-127..127) + UNITS "0.25dBm" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Noise Margin as seen by this Vtu with respect to its + received signal in 0.25dB. The effective range is + -31.75 to +31.75 dB." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPhysEntry 5 } + + vdslPhysCurrAtn OBJECT-TYPE + SYNTAX Gauge32 (0..255) + UNITS "0.25dBm" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured difference in the total power transmitted by + the peer Vtu and the total power received by this Vtu. + The effective range is 0 to +63.75 dB." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPhysEntry 6 } + + vdslPhysCurrStatus OBJECT-TYPE + SYNTAX BITS + { + noDefect(0), + lossOfFraming(1), + lossOfSignal(2), + lossOfPower(3), + lossOfSignalQuality(4), + lossOfLink(5), + dataInitFailure(6), + configInitFailure(7), + protocolInitFailure(8), + noPeerVtuPresent(9) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates current state of the Vtu line. This is a + bit-map of possible conditions. The various bit + positions are: + + 0 noDefect There are no defects on the line. + + 1 lossOfFraming Vtu failure due to not receiving + a valid frame. + + 2 lossOfSignal Vtu failure due to not receiving + signal. + + 3 lossOfPower Vtu failure due to loss of power. + + 4 lossOfSignalQuality Loss of Signal Quality is declared + when the Noise Margin falls below + the Minimum Noise Margin, or the + bit-error-rate exceeds 10^-7. + + 5 lossOfLink Vtu failure due to inability to + link with peer Vtu. Set whenever + the transceiver is in the 'Warm + Start' state. + + 6 dataInitFailure Vtu failure during initialization + due to bit errors corrupting + startup exchange data. + + 7 configInitFailure Vtu failure during initialization + due to peer Vtu not able to + support requested configuration. + + 8 protocolInitFailure Vtu failure during initialization + due to incompatible protocol used + by the peer Vtu. + + 9 noPeerVtuPresent Vtu failure during initialization + due to no activation sequence + detected from peer Vtu. + + This is intended to supplement ifOperStatus." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPhysEntry 7 } + + vdslPhysCurrOutputPwr OBJECT-TYPE + SYNTAX Integer32 (0..160) + UNITS "0.1dBm" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured total output power transmitted by this VTU. + This is the measurement that was reported during + the last activation sequence." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPhysEntry 8 } + + vdslPhysCurrAttainableRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "kbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the maximum currently attainable data rate + in steps of 1000 bits/second by the Vtu. This value + will be equal to or greater than vdslPhysCurrLineRate. + Note that for SCM, the minimum and maximum data rates + are equal. Note: 1 kbps = 1000 bps." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPhysEntry 9 } + + vdslPhysCurrLineRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "kbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current data rate in steps of 1000 + bits/second by the Vtu. This value will be less than + or equal to vdslPhysCurrAttainableRate. Note: 1 kbps = + 1000 bps." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPhysEntry 10 } + + vdslChanTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslChanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table provides one row for each Vtu channel. + VDSL channel interfaces are those ifEntries where + ifType is equal to interleave(124) or fast(125)." + ::= { vdslMibObjects 3 } + + vdslChanEntry OBJECT-TYPE + SYNTAX VdslChanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the vdslChanTable." + INDEX { ifIndex, + vdslPhysSide } + ::= { vdslChanTable 1 } + + VdslChanEntry ::= + SEQUENCE + { + vdslChanInterleaveDelay Gauge32, + vdslChanCrcBlockLength Gauge32, + vdslChanCurrTxRate Gauge32, + vdslChanCurrTxSlowBurstProtect Gauge32, + vdslChanCurrTxFastFec Gauge32 + } + + vdslChanInterleaveDelay OBJECT-TYPE + SYNTAX Gauge32 + UNITS "milliseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interleave Delay for this channel. + + Interleave delay applies only to the interleave + (slow) channel and defines the mapping (relative + spacing) between subsequent input bytes at the + interleaver input and their placement in the bit + stream at the interleaver output. Larger numbers + provide greater separation between consecutive + input bytes in the output bit stream allowing for + improved impulse noise immunity at the expense of + payload latency. + + In the case where the ifType is fast(125), return + a value of zero." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslChanEntry 1 } + + vdslChanCrcBlockLength OBJECT-TYPE + SYNTAX Gauge32 + UNITS "bytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the length of the channel data-block + on which the CRC operates." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslChanEntry 2 } + + vdslChanCurrTxRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "kbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Actual transmit data rate on this channel. Note: 1 + kbps = 1000 bps." + ::= { vdslChanEntry 3 } + + vdslChanCurrTxSlowBurstProtect OBJECT-TYPE + SYNTAX Gauge32 (0..1275) + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Actual level of impulse noise (burst) protection + for an interleaved (slow) channel. This parameter is + not applicable to fast channels. For fast channels, + a value of zero shall be returned." + REFERENCE "ITU-T G.997.1, section 7.3.2.3" + ::= { vdslChanEntry 4 } + + vdslChanCurrTxFastFec OBJECT-TYPE + SYNTAX Gauge32 (0..50) + UNITS "%" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Actual Forward Error Correction (FEC) redundancy + related overhead for a fast channel. This parameter + is not applicable to an interleaved (slow) channel. + For interleaved channels, a value of zero shall be + returned." + ::= { vdslChanEntry 5 } + + vdslPerfDataTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslPerfDataEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table provides one row for each VDSL physical + interface. VDSL physical interfaces are those ifEntries + where ifType is equal to vdsl(97)." + ::= { vdslMibObjects 4 } + + vdslPerfDataEntry OBJECT-TYPE + SYNTAX VdslPerfDataEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the vdslPerfDataTable." + INDEX { ifIndex, + vdslPhysSide } + ::= { vdslPerfDataTable 1 } + + VdslPerfDataEntry ::= + SEQUENCE + { + vdslPerfDataValidIntervals HCPerfValidIntervals, + vdslPerfDataInvalidIntervals HCPerfInvalidIntervals, + vdslPerfDataLofs Unsigned32, + vdslPerfDataLoss Unsigned32, + vdslPerfDataLprs Unsigned32, + vdslPerfDataLols Unsigned32, + vdslPerfDataESs Unsigned32, + vdslPerfDataSESs Unsigned32, + vdslPerfDataUASs Unsigned32, + vdslPerfDataInits Unsigned32, + vdslPerfDataCurr15MinTimeElapsed HCPerfTimeElapsed, + vdslPerfDataCurr15MinLofs HCPerfCurrentCount, + vdslPerfDataCurr15MinLoss HCPerfCurrentCount, + vdslPerfDataCurr15MinLprs HCPerfCurrentCount, + vdslPerfDataCurr15MinLols HCPerfCurrentCount, + vdslPerfDataCurr15MinESs HCPerfCurrentCount, + vdslPerfDataCurr15MinSESs HCPerfCurrentCount, + vdslPerfDataCurr15MinUASs HCPerfCurrentCount, + vdslPerfDataCurr15MinInits HCPerfCurrentCount, + vdslPerfData1DayValidIntervals HCPerfValidIntervals, + vdslPerfData1DayInvalidIntervals HCPerfInvalidIntervals, + vdslPerfDataCurr1DayTimeElapsed HCPerfTimeElapsed, + vdslPerfDataCurr1DayLofs Unsigned32, + vdslPerfDataCurr1DayLoss Unsigned32, + vdslPerfDataCurr1DayLprs Unsigned32, + vdslPerfDataCurr1DayLols Unsigned32, + vdslPerfDataCurr1DayESs Unsigned32, + vdslPerfDataCurr1DaySESs Unsigned32, + vdslPerfDataCurr1DayUASs Unsigned32, + vdslPerfDataCurr1DayInits Unsigned32 + } + + vdslPerfDataValidIntervals OBJECT-TYPE + SYNTAX HCPerfValidIntervals + UNITS "intervals" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Valid Intervals per definition found in + HC-PerfHist-TC-MIB." + ::= { vdslPerfDataEntry 1 } + + vdslPerfDataInvalidIntervals OBJECT-TYPE + SYNTAX HCPerfInvalidIntervals + UNITS "intervals" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Invalid Intervals per definition found in + HC-PerfHist-TC-MIB." + ::= { vdslPerfDataEntry 2 } + + vdslPerfDataLofs OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of seconds since the unit was last reset that there + was Loss of Framing." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPerfDataEntry 3 } + + vdslPerfDataLoss OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of seconds since the unit was last reset that there + was Loss of Signal." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPerfDataEntry 4 } + + vdslPerfDataLprs OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of seconds since the unit was last reset that there + was Loss of Power." + + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPerfDataEntry 5 } + + vdslPerfDataLols OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of seconds since the unit was last reset that there + was Loss of Link." + ::= { vdslPerfDataEntry 6 } + + vdslPerfDataESs OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of Errored Seconds since the unit was last reset. + An Errored Second is a one-second interval containing one + or more CRC anomalies, or one or more LOS or LOF defects." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPerfDataEntry 7 } + + vdslPerfDataSESs OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of Severely Errored Seconds since the unit was last + reset." + ::= { vdslPerfDataEntry 8 } + + vdslPerfDataUASs OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of Unavailable Seconds since the unit was last + reset." + ::= { vdslPerfDataEntry 9 } + + vdslPerfDataInits OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "occurrences" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of the line initialization attempts since the unit + was last reset. This count includes both successful and + failed attempts." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPerfDataEntry 10 } + + vdslPerfDataCurr15MinTimeElapsed OBJECT-TYPE + SYNTAX HCPerfTimeElapsed + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total elapsed seconds in this interval." + ::= { vdslPerfDataEntry 11 } + + vdslPerfDataCurr15MinLofs OBJECT-TYPE + SYNTAX HCPerfCurrentCount + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of seconds during this interval that there + was Loss of Framing." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPerfDataEntry 12 } + + vdslPerfDataCurr15MinLoss OBJECT-TYPE + SYNTAX HCPerfCurrentCount + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of seconds during this interval that there + was Loss of Signal." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPerfDataEntry 13 } + + vdslPerfDataCurr15MinLprs OBJECT-TYPE + SYNTAX HCPerfCurrentCount + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of seconds during this interval that there + was Loss of Power." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPerfDataEntry 14 } + + vdslPerfDataCurr15MinLols OBJECT-TYPE + SYNTAX HCPerfCurrentCount + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of seconds during this interval that there + was Loss of Link." + ::= { vdslPerfDataEntry 15 } + + vdslPerfDataCurr15MinESs OBJECT-TYPE + SYNTAX HCPerfCurrentCount + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of Errored Seconds during this interval. An Errored + Second is a one-second interval containing one or more CRC + anomalies, or one or more LOS or LOF defects." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPerfDataEntry 16 } + + vdslPerfDataCurr15MinSESs OBJECT-TYPE + SYNTAX HCPerfCurrentCount + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of Severely Errored Seconds during this interval." + ::= { vdslPerfDataEntry 17 } + + vdslPerfDataCurr15MinUASs OBJECT-TYPE + SYNTAX HCPerfCurrentCount + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of Unavailable Seconds during this interval." + ::= { vdslPerfDataEntry 18 } + + vdslPerfDataCurr15MinInits OBJECT-TYPE + SYNTAX HCPerfCurrentCount + UNITS "occurrences" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of the line initialization attempts during this + interval. This count includes both successful and + failed attempts." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPerfDataEntry 19 } + + vdslPerfData1DayValidIntervals OBJECT-TYPE + SYNTAX HCPerfValidIntervals + UNITS "intervals" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Valid Intervals per definition found in + HC-PerfHist-TC-MIB." + ::= { vdslPerfDataEntry 20 } + + vdslPerfData1DayInvalidIntervals OBJECT-TYPE + SYNTAX HCPerfInvalidIntervals + UNITS "intervals" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Invalid Intervals per definition found in + HC-PerfHist-TC-MIB." + ::= { vdslPerfDataEntry 21 } + + vdslPerfDataCurr1DayTimeElapsed OBJECT-TYPE + SYNTAX HCPerfTimeElapsed + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of seconds that have elapsed since the beginning + of the current 1-day interval." + ::= { vdslPerfDataEntry 22 } + + vdslPerfDataCurr1DayLofs OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of Loss of Framing (LOF) Seconds since the + beginning of the current 1-day interval." + ::= { vdslPerfDataEntry 23 } + + vdslPerfDataCurr1DayLoss OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of Loss of Signal (LOS) Seconds since the beginning + of the current 1-day interval." + ::= { vdslPerfDataEntry 24 } + + vdslPerfDataCurr1DayLprs OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of Loss of Power (LPR) Seconds since the beginning + of the current 1-day interval." + ::= { vdslPerfDataEntry 25 } + + vdslPerfDataCurr1DayLols OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of Loss of Link (LOL) Seconds since the beginning + of the current 1-day interval." + ::= { vdslPerfDataEntry 26 } + + vdslPerfDataCurr1DayESs OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of Errored Seconds (ES) since the beginning + of the current 1-day interval." + ::= { vdslPerfDataEntry 27 } + + vdslPerfDataCurr1DaySESs OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of Severely Errored Seconds (SES) since the + beginning of the current 1-day interval." + ::= { vdslPerfDataEntry 28 } + + vdslPerfDataCurr1DayUASs OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of Unavailable Seconds (UAS) since the beginning + of the current 1-day interval." + ::= { vdslPerfDataEntry 29 } + + vdslPerfDataCurr1DayInits OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of the line initialization attempts since the + beginning of the current 1-day interval. This count + includes both successful and failed attempts." + ::= { vdslPerfDataEntry 30 } + + vdslPerfIntervalTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslPerfIntervalEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table provides one row for each Vtu performance + data collection interval. VDSL physical interfaces are + those ifEntries where ifType is equal to vdsl(97)." + ::= { vdslMibObjects 5 } + + vdslPerfIntervalEntry OBJECT-TYPE + SYNTAX VdslPerfIntervalEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the vdslPerfIntervalTable." + INDEX { ifIndex, + vdslPhysSide, + vdslPerfIntervalNumber } + ::= { vdslPerfIntervalTable 1 } + + VdslPerfIntervalEntry ::= + SEQUENCE + { + vdslPerfIntervalNumber Unsigned32, + vdslPerfIntervalLofs HCPerfIntervalCount, + vdslPerfIntervalLoss HCPerfIntervalCount, + vdslPerfIntervalLprs HCPerfIntervalCount, + vdslPerfIntervalLols HCPerfIntervalCount, + vdslPerfIntervalESs HCPerfIntervalCount, + vdslPerfIntervalSESs HCPerfIntervalCount, + vdslPerfIntervalUASs HCPerfIntervalCount, + vdslPerfIntervalInits HCPerfIntervalCount + } + + vdslPerfIntervalNumber OBJECT-TYPE + SYNTAX Unsigned32 (1..96) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Performance Data Interval number 1 is the most recent + previous interval; interval 96 is 24 hours ago. + Intervals 2 to 96 are optional." + ::= { vdslPerfIntervalEntry 1 } + + vdslPerfIntervalLofs OBJECT-TYPE + SYNTAX HCPerfIntervalCount + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of seconds in the interval when there was Loss + of Framing." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPerfIntervalEntry 2 } + + vdslPerfIntervalLoss OBJECT-TYPE + SYNTAX HCPerfIntervalCount + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of seconds in the interval when there was Loss + of Signal." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPerfIntervalEntry 3 } + + vdslPerfIntervalLprs OBJECT-TYPE + SYNTAX HCPerfIntervalCount + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of seconds in the interval when there was Loss + of Power." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPerfIntervalEntry 4 } + + vdslPerfIntervalLols OBJECT-TYPE + SYNTAX HCPerfIntervalCount + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of seconds in the interval when there was Loss + of Link." + ::= { vdslPerfIntervalEntry 5 } + + vdslPerfIntervalESs OBJECT-TYPE + SYNTAX HCPerfIntervalCount + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of Errored Seconds (ES) in the interval. An Errored + Second is a one-second interval containing one or more CRC + anomalies, one or more LOS or LOF defects." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPerfIntervalEntry 6 } + + vdslPerfIntervalSESs OBJECT-TYPE + SYNTAX HCPerfIntervalCount + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of Severely Errored Seconds in the interval." + ::= { vdslPerfIntervalEntry 7 } + + vdslPerfIntervalUASs OBJECT-TYPE + SYNTAX HCPerfIntervalCount + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of Unavailable Seconds in the interval." + ::= { vdslPerfIntervalEntry 8 } + + vdslPerfIntervalInits OBJECT-TYPE + SYNTAX HCPerfIntervalCount + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of the line initialization attempts during this + interval. This count includes both successful and + failed attempts." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPerfIntervalEntry 9 } + + vdslPerf1DayIntervalTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslPerf1DayIntervalEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table provides one row for each VDSL performance + data collection interval. This table contains live data + from equipment. As such, it is NOT persistent." + ::= { vdslMibObjects 6 } + + vdslPerf1DayIntervalEntry OBJECT-TYPE + SYNTAX VdslPerf1DayIntervalEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the vdslPerf1DayIntervalTable." + INDEX { ifIndex, + vdslPhysSide, + vdslPerf1DayIntervalNumber } + ::= { vdslPerf1DayIntervalTable 1 } + + VdslPerf1DayIntervalEntry ::= + SEQUENCE + { + vdslPerf1DayIntervalNumber Unsigned32, + vdslPerf1DayIntervalMoniSecs HCPerfTimeElapsed, + vdslPerf1DayIntervalLofs Unsigned32, + vdslPerf1DayIntervalLoss Unsigned32, + vdslPerf1DayIntervalLprs Unsigned32, + vdslPerf1DayIntervalLols Unsigned32, + vdslPerf1DayIntervalESs Unsigned32, + vdslPerf1DayIntervalSESs Unsigned32, + vdslPerf1DayIntervalUASs Unsigned32, + vdslPerf1DayIntervalInits Unsigned32 + } + + vdslPerf1DayIntervalNumber OBJECT-TYPE + SYNTAX Unsigned32 (1..30) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "History Data Interval number. Interval 1 is the most + recent previous day; interval 30 is 30 days ago. Intervals + 2 to 30 are optional." + ::= { vdslPerf1DayIntervalEntry 1 } + + vdslPerf1DayIntervalMoniSecs OBJECT-TYPE + SYNTAX HCPerfTimeElapsed + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The amount of time in the 1-day interval over which the + performance monitoring information is actually counted. + This value will be the same as the interval duration except + in a situation where performance monitoring data could not + be collected for any reason." + ::= { vdslPerf1DayIntervalEntry 2 } + + vdslPerf1DayIntervalLofs OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of Loss of Frame (LOF) Seconds during the 1-day + interval as measured by vdslPerf1DayIntervalMoniSecs." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPerf1DayIntervalEntry 3 } + + vdslPerf1DayIntervalLoss OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of Loss of Signal (LOS) Seconds during the 1-day + interval as measured by vdslPerf1DayIntervalMoniSecs." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPerf1DayIntervalEntry 4 } + + vdslPerf1DayIntervalLprs OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of Loss of Power (LPR) Seconds during the 1-day + interval as measured by vdslPerf1DayIntervalMoniSecs." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPerf1DayIntervalEntry 5 } + + vdslPerf1DayIntervalLols OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of Loss of Link (LOL) Seconds during the 1-day + interval as measured by vdslPerf1DayIntervalMoniSecs." + ::= { vdslPerf1DayIntervalEntry 6 } + + vdslPerf1DayIntervalESs OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of Errored Seconds (ES) during the 1-day + interval as measured by vdslPerf1DayIntervalMoniSecs." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPerf1DayIntervalEntry 7 } + + vdslPerf1DayIntervalSESs OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of Severely Errored Seconds (SES) during the 1-day + interval as measured by vdslPerf1DayIntervalMoniSecs." + ::= { vdslPerf1DayIntervalEntry 8 } + + vdslPerf1DayIntervalUASs OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of Unavailable Seconds (UAS) during the 1-day + interval as measured by vdslPerf1DayIntervalMoniSecs." + ::= { vdslPerf1DayIntervalEntry 9 } + + vdslPerf1DayIntervalInits OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of the line initialization attempts during the + 1-day interval as measured by vdslPerf1DayIntervalMoniSecs. + This count includes both successful and failed attempts." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslPerf1DayIntervalEntry 10 } + + vdslChanPerfDataTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslChanPerfDataEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table provides one row for each Vtu channel. + VDSL channel interfaces are those ifEntries where + ifType is equal to interleave(124) or fast(125)." + ::= { vdslMibObjects 7 } + + vdslChanPerfDataEntry OBJECT-TYPE + SYNTAX VdslChanPerfDataEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the vdslChanPerfDataTable." + INDEX { ifIndex, + vdslPhysSide } + ::= { vdslChanPerfDataTable 1 } + + VdslChanPerfDataEntry ::= + SEQUENCE + { + vdslChanValidIntervals HCPerfValidIntervals, + vdslChanInvalidIntervals HCPerfInvalidIntervals, + vdslChanFixedOctets ZeroBasedCounter64, + vdslChanBadBlks ZeroBasedCounter64, + vdslChanCurr15MinTimeElapsed HCPerfTimeElapsed, + vdslChanCurr15MinFixedOctets HCPerfCurrentCount, + vdslChanCurr15MinBadBlks HCPerfCurrentCount, + vdslChan1DayValidIntervals HCPerfValidIntervals, + vdslChan1DayInvalidIntervals HCPerfInvalidIntervals, + vdslChanCurr1DayTimeElapsed HCPerfTimeElapsed, + vdslChanCurr1DayFixedOctets HCPerfCurrentCount, + vdslChanCurr1DayBadBlks HCPerfCurrentCount + } + + vdslChanValidIntervals OBJECT-TYPE + SYNTAX HCPerfValidIntervals + UNITS "intervals" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Valid Intervals per definition found in + HC-PerfHist-TC-MIB." + ::= { vdslChanPerfDataEntry 1 } + + vdslChanInvalidIntervals OBJECT-TYPE + SYNTAX HCPerfInvalidIntervals + UNITS "intervals" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Invalid Intervals per definition found in + HC-PerfHist-TC-MIB." + ::= { vdslChanPerfDataEntry 2 } + + vdslChanFixedOctets OBJECT-TYPE + SYNTAX ZeroBasedCounter64 + UNITS "octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of corrected octets since the unit was last reset." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslChanPerfDataEntry 3 } + + vdslChanBadBlks OBJECT-TYPE + SYNTAX ZeroBasedCounter64 + UNITS "blocks" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of uncorrectable blocks since the unit was last + reset." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslChanPerfDataEntry 4 } + + vdslChanCurr15MinTimeElapsed OBJECT-TYPE + SYNTAX HCPerfTimeElapsed + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total elapsed seconds in this interval." + ::= { vdslChanPerfDataEntry 5 } + + vdslChanCurr15MinFixedOctets OBJECT-TYPE + SYNTAX HCPerfCurrentCount + UNITS "octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of corrected octets in this interval." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslChanPerfDataEntry 6 } + + vdslChanCurr15MinBadBlks OBJECT-TYPE + SYNTAX HCPerfCurrentCount + UNITS "blocks" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of uncorrectable blocks in this interval." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslChanPerfDataEntry 7 } + + vdslChan1DayValidIntervals OBJECT-TYPE + SYNTAX HCPerfValidIntervals + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Valid Intervals per definition found in + HC-PerfHist-TC-MIB." + ::= { vdslChanPerfDataEntry 8 } + + vdslChan1DayInvalidIntervals OBJECT-TYPE + SYNTAX HCPerfInvalidIntervals + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Invalid Intervals per definition found in + HC-PerfHist-TC-MIB." + ::= { vdslChanPerfDataEntry 9 } + + vdslChanCurr1DayTimeElapsed OBJECT-TYPE + SYNTAX HCPerfTimeElapsed + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of seconds that have elapsed since the beginning + of the current 1-day interval." + ::= { vdslChanPerfDataEntry 10 } + + vdslChanCurr1DayFixedOctets OBJECT-TYPE + SYNTAX HCPerfCurrentCount + UNITS "octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of corrected octets since the beginning of the + current 1-day interval." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslChanPerfDataEntry 11 } + + vdslChanCurr1DayBadBlks OBJECT-TYPE + SYNTAX HCPerfCurrentCount + UNITS "blocks" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of uncorrectable blocks since the beginning of the + current 1-day interval." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslChanPerfDataEntry 12 } + + vdslChanIntervalTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslChanIntervalEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table provides one row for each Vtu channel data + collection interval. VDSL channel interfaces are those + ifEntries where ifType is equal to interleave(124) or + fast(125)." + + ::= { vdslMibObjects 8 } + + vdslChanIntervalEntry OBJECT-TYPE + SYNTAX VdslChanIntervalEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the vdslChanIntervalTable." + INDEX { ifIndex, + vdslPhysSide, + vdslChanIntervalNumber } + ::= { vdslChanIntervalTable 1 } + + VdslChanIntervalEntry ::= + SEQUENCE + { + vdslChanIntervalNumber Unsigned32, + vdslChanIntervalFixedOctets HCPerfIntervalCount, + vdslChanIntervalBadBlks HCPerfIntervalCount + } + + vdslChanIntervalNumber OBJECT-TYPE + SYNTAX Unsigned32 (1..96) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Performance Data Interval number 1 is the most recent + previous interval; interval 96 is 24 hours ago. + Intervals 2 to 96 are optional." + ::= { vdslChanIntervalEntry 1 } + + vdslChanIntervalFixedOctets OBJECT-TYPE + SYNTAX HCPerfIntervalCount + UNITS "octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of corrected octets in this interval." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslChanIntervalEntry 2 } + + vdslChanIntervalBadBlks OBJECT-TYPE + SYNTAX HCPerfIntervalCount + UNITS "blocks" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of uncorrectable blocks in this interval." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslChanIntervalEntry 3 } + + vdslChan1DayIntervalTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslChan1DayIntervalEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table provides one row for each VDSL performance + data collection interval. This table contains live data + from equipment. As such, it is NOT persistent." + ::= { vdslMibObjects 9 } + + vdslChan1DayIntervalEntry OBJECT-TYPE + SYNTAX VdslChan1DayIntervalEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the vdslChan1DayIntervalTable." + INDEX { ifIndex, + vdslPhysSide, + vdslChan1DayIntervalNumber } + ::= { vdslChan1DayIntervalTable 1 } + + VdslChan1DayIntervalEntry ::= + SEQUENCE + { + vdslChan1DayIntervalNumber Unsigned32, + vdslChan1DayIntervalMoniSecs HCPerfTimeElapsed, + vdslChan1DayIntervalFixedOctets HCPerfCurrentCount, + vdslChan1DayIntervalBadBlks HCPerfCurrentCount + } + + vdslChan1DayIntervalNumber OBJECT-TYPE + SYNTAX Unsigned32 (1..30) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "History Data Interval number. Interval 1 is the most + recent previous day; interval 30 is 30 days ago. Intervals + 2 to 30 are optional." + ::= { vdslChan1DayIntervalEntry 1 } + + vdslChan1DayIntervalMoniSecs OBJECT-TYPE + SYNTAX HCPerfTimeElapsed + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The amount of time in the 1-day interval over which the + performance monitoring information is actually counted. + This value will be the same as the interval duration except + in a situation where performance monitoring data could not + be collected for any reason." + ::= { vdslChan1DayIntervalEntry 2 } + + vdslChan1DayIntervalFixedOctets OBJECT-TYPE + SYNTAX HCPerfCurrentCount + UNITS "octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of corrected octets in this interval." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslChan1DayIntervalEntry 3 } + + vdslChan1DayIntervalBadBlks OBJECT-TYPE + SYNTAX HCPerfCurrentCount + UNITS "blocks" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of uncorrectable blocks in this interval." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + ::= { vdslChan1DayIntervalEntry 4 } + + -- + -- profile tables + -- + + vdslLineConfProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslLineConfProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains information on the VDSL line + configuration. One entry in this table reflects a + profile defined by a manager which can be used to + configure the VDSL line. + + Entries in this table MUST be maintained in a + persistent manner." + ::= { vdslMibObjects 11 } + + vdslLineConfProfileEntry OBJECT-TYPE + SYNTAX VdslLineConfProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each entry consists of a list of parameters that + represents the configuration of a VDSL line. + + A default profile with an index of 'DEFVAL', will + always exist and its parameters will be set to vendor + specific values, unless otherwise specified in this + document." + INDEX { vdslLineConfProfileName } + ::= { vdslLineConfProfileTable 1 } + + VdslLineConfProfileEntry ::= + SEQUENCE + { + vdslLineConfProfileName SnmpAdminString, + vdslLineConfDownRateMode INTEGER, + vdslLineConfUpRateMode INTEGER, + vdslLineConfDownMaxPwr Unsigned32, + vdslLineConfUpMaxPwr Unsigned32, + vdslLineConfDownMaxSnrMgn Unsigned32, + vdslLineConfDownMinSnrMgn Unsigned32, + vdslLineConfDownTargetSnrMgn Unsigned32, + vdslLineConfUpMaxSnrMgn Unsigned32, + vdslLineConfUpMinSnrMgn Unsigned32, + vdslLineConfUpTargetSnrMgn Unsigned32, + vdslLineConfDownFastMaxDataRate Unsigned32, + vdslLineConfDownFastMinDataRate Unsigned32, + vdslLineConfDownSlowMaxDataRate Unsigned32, + vdslLineConfDownSlowMinDataRate Unsigned32, + vdslLineConfUpFastMaxDataRate Unsigned32, + vdslLineConfUpFastMinDataRate Unsigned32, + vdslLineConfUpSlowMaxDataRate Unsigned32, + vdslLineConfUpSlowMinDataRate Unsigned32, + vdslLineConfDownRateRatio Unsigned32, + vdslLineConfUpRateRatio Unsigned32, + vdslLineConfDownMaxInterDelay Unsigned32, + vdslLineConfUpMaxInterDelay Unsigned32, + vdslLineConfDownPboControl INTEGER, + vdslLineConfUpPboControl INTEGER, + vdslLineConfDownPboLevel Unsigned32, + vdslLineConfUpPboLevel Unsigned32, + vdslLineConfDeploymentScenario INTEGER, + vdslLineConfAdslPresence INTEGER, + vdslLineConfApplicableStandard INTEGER, + vdslLineConfBandPlan INTEGER, + vdslLineConfBandPlanFx Unsigned32, + vdslLineConfBandOptUsage INTEGER, + vdslLineConfUpPsdTemplate INTEGER, + vdslLineConfDownPsdTemplate INTEGER, + vdslLineConfHamBandMask BITS, + vdslLineConfCustomNotch1Start Unsigned32, + vdslLineConfCustomNotch1Stop Unsigned32, + vdslLineConfCustomNotch2Start Unsigned32, + vdslLineConfCustomNotch2Stop Unsigned32, + vdslLineConfDownTargetSlowBurst Unsigned32, + vdslLineConfUpTargetSlowBurst Unsigned32, + vdslLineConfDownMaxFastFec Unsigned32, + vdslLineConfUpMaxFastFec Unsigned32, + vdslLineConfLineType INTEGER, + vdslLineConfProfRowStatus RowStatus + } + + vdslLineConfProfileName OBJECT-TYPE + SYNTAX SnmpAdminString (SIZE (1..32)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object identifies a row in this table. + + A default profile with an index of 'DEFVAL', will + always exist and its parameters will be set to vendor + specific values, unless otherwise specified in this + document." + ::= { vdslLineConfProfileEntry 1 } + + vdslLineConfDownRateMode OBJECT-TYPE + SYNTAX INTEGER + { + manual(1), + adaptAtInit(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the rate selection behavior for the line + in the downstream direction. + + manual(1) forces the rate to the configured rate + adaptAtInit(2) adapts the line based upon line quality." + DEFVAL { adaptAtInit } + ::= { vdslLineConfProfileEntry 2 } + + vdslLineConfUpRateMode OBJECT-TYPE + SYNTAX INTEGER + { + manual(1), + adaptAtInit(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the rate selection behavior for the line + in the upstream direction. + + manual(1) forces the rate to the configured rate + adaptAtInit(2) adapts the line based upon line quality." + DEFVAL { adaptAtInit } + ::= { vdslLineConfProfileEntry 3 } + + vdslLineConfDownMaxPwr OBJECT-TYPE + SYNTAX Unsigned32 (0..58) + UNITS "0.25dBm" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the maximum aggregate downstream power + level in the range 0 to 14.5 dBm." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 4 } + + vdslLineConfUpMaxPwr OBJECT-TYPE + SYNTAX Unsigned32 (0..58) + UNITS "0.25dBm" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the maximum aggregate upstream power + level in the range 0 to 14.5 dBm." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 5 } + + vdslLineConfDownMaxSnrMgn OBJECT-TYPE + SYNTAX Unsigned32 (0..127) + UNITS "0.25dBm" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the maximum downstream Signal/Noise Margin + in units of 0.25 dB, for a range of 0 to 31.75 dB." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 6 } + + vdslLineConfDownMinSnrMgn OBJECT-TYPE + SYNTAX Unsigned32 (0..127) + UNITS "0.25dBm" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the minimum downstream Signal/Noise Margin + in units of 0.25 dB, for a range of 0 to 31.75 dB." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 7 } + + vdslLineConfDownTargetSnrMgn OBJECT-TYPE + SYNTAX Unsigned32 (0..127) + UNITS "0.25dBm" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the target downstream Signal/Noise Margin + in units of 0.25 dB, for a range of 0 to 31.75 dB. + This is the Noise Margin the transceivers must achieve + with a BER of 10^-7 or better to successfully complete + initialization." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 8 } + + vdslLineConfUpMaxSnrMgn OBJECT-TYPE + SYNTAX Unsigned32 (0..127) + UNITS "0.25dBm" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the maximum upstream Signal/Noise Margin + in units of 0.25 dB, for a range of 0 to 31.75 dB." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 9 } + + vdslLineConfUpMinSnrMgn OBJECT-TYPE + SYNTAX Unsigned32 (0..127) + UNITS "0.25dBm" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the minimum upstream Signal/Noise Margin + in units of 0.25 dB, for a range of 0 to 31.75 dB." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 10 } + + vdslLineConfUpTargetSnrMgn OBJECT-TYPE + SYNTAX Unsigned32 (0..127) + UNITS "0.25dBm" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the target upstream Signal/Noise Margin in + units of 0.25 dB, for a range of 0 to 31.75 dB. This + is the Noise Margin the transceivers must achieve with + a BER of 10^-7 or better to successfully complete + initialization." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 11 } + + vdslLineConfDownFastMaxDataRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the maximum downstream fast channel + data rate in steps of 1000 bits/second." + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 12 } + + vdslLineConfDownFastMinDataRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the minimum downstream fast channel + data rate in steps of 1000 bits/second." + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 13 } + + vdslLineConfDownSlowMaxDataRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the maximum downstream slow channel + data rate in steps of 1000 bits/second. + + The maximum aggregate downstream transmit speed + of the line can be derived from the sum of maximum + downstream fast and slow channel data rates." + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 14 } + + vdslLineConfDownSlowMinDataRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the minimum downstream slow channel + data rate in steps of 1000 bits/second. + + The minimum aggregate downstream transmit speed + of the line can be derived from the sum of minimum + downstream fast and slow channel data rates." + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 15 } + + vdslLineConfUpFastMaxDataRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the maximum upstream fast channel + data rate in steps of 1000 bits/second. + + The maximum aggregate upstream transmit speed + of the line can be derived from the sum of maximum + upstream fast and slow channel data rates." + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 16 } + + vdslLineConfUpFastMinDataRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the minimum upstream fast channel + data rate in steps of 1000 bits/second. + The minimum aggregate upstream transmit speed + of the line can be derived from the sum of minimum + upstream fast and slow channel data rates." + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 17 } + + vdslLineConfUpSlowMaxDataRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the maximum upstream slow channel + data rate in steps of 1000 bits/second." + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 18 } + + vdslLineConfUpSlowMinDataRate OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the minimum upstream slow channel + data rate in steps of 1000 bits/second." + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 19 } + + vdslLineConfDownRateRatio OBJECT-TYPE + SYNTAX Unsigned32 (0..100) + UNITS "percent" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "For dynamic rate adaptation at startup, the allocation + of data rate in excess of the minimum data rate for each + channel is controlled by the object. This object specifies + the ratio of the allocation of the excess data rate between + the fast and the slow channels. This allocation represents + downstream Fast Channel Allocation / Slow Channel + Allocation." + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 20 } + + vdslLineConfUpRateRatio OBJECT-TYPE + SYNTAX Unsigned32 (0..100) + UNITS "percent" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "For dynamic rate adaptation at startup, the allocation + of data rate in excess of the minimum data rate for each + channel is controlled by the object. This object specifies + the ratio of the allocation of the excess data rate between + the fast and the slow channels. This allocation represents + upstream Fast Channel Allocation/Slow Channel Allocation." + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 21 } + + vdslLineConfDownMaxInterDelay OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + UNITS "milliseconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the maximum interleave delay for the + downstream slow channel." + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 22 } + + vdslLineConfUpMaxInterDelay OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + UNITS "milliseconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the maximum interleave delay for the + upstream slow channel." + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 23 } + + vdslLineConfDownPboControl OBJECT-TYPE + SYNTAX INTEGER + { + disabled(1), + auto(2), + manual(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Downstream power backoff (PBO) control for this + line. For transceivers which do not support downstream + PBO control, this object MUST be fixed at disabled(1). + If auto(2) is selected, the transceiver will automatically + adjust the power backoff. If manual(3) is selected, + then the transceiver will use the value from + vdslLineConfDownPboLevel." + DEFVAL { disabled } + ::= { vdslLineConfProfileEntry 24 } + + vdslLineConfUpPboControl OBJECT-TYPE + SYNTAX INTEGER + { + disabled(1), + auto(2), + manual(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Upstream power backoff (PBO) control for this + line. For transceivers which do not support upstream + PBO control, this object MUST be fixed at disabled(1). + If auto(2) is selected, the transceiver will automatically + adjust the power backoff. If manual(3) is selected, + then the transceiver will use the value from + vdslLineConfUpPboLevel." + DEFVAL { disabled } + ::= { vdslLineConfProfileEntry 25 } + + vdslLineConfDownPboLevel OBJECT-TYPE + SYNTAX Unsigned32 (0..160) + UNITS "0.25dB" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the downstream backoff level to be used + when vdslLineConfDownPboControl = manual(3)." + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 26 } + + vdslLineConfUpPboLevel OBJECT-TYPE + SYNTAX Unsigned32 (0..160) + UNITS "0.25dB" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the upstream backoff level to be used + when vdslLineConfUpPboControl = manual(3)." + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 27 } + + vdslLineConfDeploymentScenario OBJECT-TYPE + SYNTAX INTEGER + { + fttCab(1), + fttEx(2), + other(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The VDSL line deployment scenario. When using + fttCab(1), the VTU-C is located in a street cabinet. + When using fttEx(2), the VTU-C is located at the + central office. Changes to this value will have + no effect on the transceiver." + REFERENCE "DSL Forum TR-057" + DEFVAL { fttCab } + ::= { vdslLineConfProfileEntry 28 } + + vdslLineConfAdslPresence OBJECT-TYPE + SYNTAX INTEGER + { + none(1), + adslOverPots(2), + adslOverISDN(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Indicates presence of ADSL service in the associated + cable bundle/binder. + + none(1) indicates no ADSL service in the bundle + adslOverPots(2) indicates ADSL service over POTS is + present in the bundle + adslOverISDN(3) indicates ADSL service over ISDN is + present in the bundle" + DEFVAL { none } + ::= { vdslLineConfProfileEntry 29 } + + vdslLineConfApplicableStandard OBJECT-TYPE + SYNTAX INTEGER + { + ansi(1), + etsi(2), + itu(3), + other(4) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The VDSL standard to be used for the line. + + ansi(1) indicates ANSI standard + etsi(2) indicates ETSI standard + itu(3) indicates ITU standard + other(4) indicates a standard other than the above." + DEFVAL { ansi } + ::= { vdslLineConfProfileEntry 30 } + + vdslLineConfBandPlan OBJECT-TYPE + SYNTAX INTEGER + { + bandPlan997(1), + bandPlan998(2), + bandPlanFx(3), + other(4) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The VDSL band plan to be used for the line. + + bandPlan997(1) is to be used for + ITU-T G.993.1 Bandplan-B + ETSI Bandplan + ANSI Plan 997 + + bandPlan998(2) is to be used for + ITU-T G.993.1 Bandplan-A + ANSI Plan 998 + + bandPlanFx(3) is to be used for + ITU-T G.993.1 Bandplan-C. + + other(4) is to be used for + non-standard bandplans. + + If this object is set to bandPlanFx(3), then the + object vdslLineConfBandPlanFx MUST also be set." + DEFVAL { bandPlan997 } + ::= { vdslLineConfProfileEntry 31 } + + vdslLineConfBandPlanFx OBJECT-TYPE + SYNTAX Unsigned32 (3750..12000) + UNITS "kHz" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The frequency limit between bands D2 and U2 when + vdslLineConfBandPlan is set to bandPlanFx(3)." + DEFVAL { 3750 } + ::= { vdslLineConfProfileEntry 32 } + + vdslLineConfBandOptUsage OBJECT-TYPE + SYNTAX INTEGER + { + unused(1), + upstream(2), + downstream(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Defines the VDSL link use of the optional frequency + range [25kHz - 138kHz] (Opt). + + unused(1) indicates Opt is unused + upstream(2) indicates Opt usage is for upstream + downstream(3) indicates Opt usage is for downstream." + REFERENCE "ITU-T G.993.1, section 6.1" + DEFVAL { unused } + ::= { vdslLineConfProfileEntry 33 } + + vdslLineConfUpPsdTemplate OBJECT-TYPE + SYNTAX INTEGER + { + templateMask1(1), + templateMask2(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The upstream PSD template to be used for the line. + Here, templateMask1(1) refers to a notched mask that + limits the transmitted PSD within the internationally + standardized HAM (Handheld Amateur Radio) radio bands, + while templateMask2(2) refers to an unnotched mask. + + The masks themselves depend upon the applicable + standard being used (vdslLineConfApplicableStandard)." + REFERENCE "DSL TR-057" + DEFVAL { templateMask1 } + ::= { vdslLineConfProfileEntry 34 } + + + vdslLineConfDownPsdTemplate OBJECT-TYPE + SYNTAX INTEGER + { + templateMask1(1), + templateMask2(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The downstream PSD template to be used for the line. + Here, templateMask1(1) refers to a notched mask that + limits the transmitted PSD within the internationally + standardized HAM (Handheld Amateur Radio) radio bands, + while templateMask2(2) refers to an unnotched mask. + + The masks themselves depend upon the applicable + standard being used (vdslLineConfApplicableStandard)." + REFERENCE "DSL TR-057" + DEFVAL { templateMask1 } + ::= { vdslLineConfProfileEntry 35 } + + vdslLineConfHamBandMask OBJECT-TYPE + SYNTAX BITS + { + customNotch1(0), -- custom (region-specific) notch + customNotch2(1), -- custom (region-specific) notch + amateurBand30m(2), -- amateur radio band notch + amateurBand40m(3), -- amateur radio band notch + amateurBand80m(4), -- amateur radio band notch + amateurBand160m(5) -- amateur radio band notch + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The transmit power spectral density mask code, used + to avoid interference with HAM (Handheld Amateur Radio) + radio bands by introducing power control (notching) in one + or more of these bands. + + Amateur radio band notching is defined in the VDSL + spectrum as follows: + + Band Start Frequency Stop Frequency + ---- ------------------ -------------------------------- + 30m 1810 kHz 2000 kHz + 40m 3500 kHz 3800 kHz (ETSI); 4000 kHz (ANSI) + 80m 7000 kHz 7100 kHz (ETSI); 7300 kHz (ANSI) + 160m 10100 kHz 10150 kHz + + Notching for each standard band can be enabled or disabled + via the bit mask. + + Two custom notches may be specified. If either of these + are enabled via the bit mask, then the following objects + MUST be specified: + + If customNotch1 is enabled, then both + vdslLineConfCustomNotch1Start + vdslLineConfCustomNotch1Stop + MUST be specified. + + If customNotch2 is enabled, then both + vdslLineConfCustomNotch2Start + vdslLineConfCustomNotch2Stop + MUST be specified." + REFERENCE "DSLF TR-057, section 2.6" + DEFVAL { { } } + ::= { vdslLineConfProfileEntry 36 } + + vdslLineConfCustomNotch1Start OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kHz" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the start frequency of custom HAM (Handheld + Amateur Radio) notch 1. vdslLineConfCustomNotch1Start MUST + be less than or equal to vdslLineConfCustomNotch1Stop." + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 37 } + + vdslLineConfCustomNotch1Stop OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kHz" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the stop frequency of custom HAM (Handheld + Amateur Radio) notch 1. vdslLineConfCustomNotch1Stop MUST + be greater than or equal to vdslLineConfCustomNotch1Start." + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 38 } + + vdslLineConfCustomNotch2Start OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kHz" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the start frequency of custom HAM (Handheld + Amateur Radio) notch 2. vdslLineConfCustomNotch2Start MUST + be less than or equal to vdslLineConfCustomNotch2Stop." + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 39 } + + vdslLineConfCustomNotch2Stop OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kHz" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the stop frequency of custom HAM (Handheld + Amateur Radio) notch 2. vdslLineConfCustomNotch2Stop MUST + be greater than or equal to vdslLineConfCustomNotch2Start." + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 40 } + + vdslLineConfDownTargetSlowBurst OBJECT-TYPE + SYNTAX Unsigned32 (0..1275) + UNITS "microseconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the target level of impulse noise (burst) + protection for an interleaved (slow) channel." + REFERENCE "ITU-T G.997.1, section 7.3.2.3" + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 41 } + + vdslLineConfUpTargetSlowBurst OBJECT-TYPE + SYNTAX Unsigned32 (0..1275) + UNITS "microseconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the target level of impulse noise (burst) + protection for an interleaved (slow) channel." + REFERENCE "ITU-T G.997.1, section 7.3.2.3" + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 42 } + + vdslLineConfDownMaxFastFec OBJECT-TYPE + SYNTAX Unsigned32 (0..50) + UNITS "%" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This parameter provisions the maximum level of Forward + Error Correction (FEC) redundancy related overhead to + be maintained for a fast channel." + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 43 } + + vdslLineConfUpMaxFastFec OBJECT-TYPE + SYNTAX Unsigned32 (0..50) + UNITS "%" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This parameter provisions the maximum level of Forward + Error Correction (FEC) redundancy related overhead to + be maintained for a fast channel." + DEFVAL { 0 } + ::= { vdslLineConfProfileEntry 44 } + + vdslLineConfLineType OBJECT-TYPE + SYNTAX INTEGER + { + noChannel(1), -- no channels exist + fastOnly(2), -- only fast channel exists + interleavedOnly(3), -- only interleaved channel exists + fastOrInterleaved(4), -- either fast or interleaved channel + -- exist, but only one at a time + fastAndInterleaved(5) -- both fast and interleaved channels + -- exist + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This parameter provisions the VDSL physical entity at + start-up by defining whether and how the line will be + channelized, i.e., which channel type(s) are supported. + If the line is to be channelized, the value will be other + than noChannel(1). + + This configuration can be activated only during start-up. + Afterwards, the value of vdslLineType coincides with the + value of vdslLineConfLineType. Depending on this value, + the corresponding entries in the ifTable for the + interleaved and the fast channels are enabled or disabled + according to the value of their ifOperStatus. + + Defined values are: + noChannel(1) -- no channels exist + fastOnly(2) -- only fast channel exists + interleavedOnly(3) -- only interleaved channel exists + fastOrInterleaved(4) -- either fast or interleaved channel + -- exists, but only one at a time + fastAndInterleaved(5) -- both fast and interleaved channels + -- exist + + Note that 'slow' and 'interleaved' refer to the same + channel." + REFERENCE "T1E1.4/2000-009R3, Part 1, common spec" + DEFVAL { noChannel } + ::= { vdslLineConfProfileEntry 45 } + + vdslLineConfProfRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or modify or + delete an existing row in this table. + + A profile activated by setting this object to 'active'. + When 'active' is set, the system will validate the profile. + + Before a profile can be deleted or taken out of service + (by setting this object to 'destroy' or 'outOfService'), + it must be first unreferenced from all associated lines. + + An 'active' profile may be modified at any time. Note + that some changes may require that any referenced lines be + restarted (e.g., vdslLineConfLineType)." + ::= { vdslLineConfProfileEntry 46 } + + -- + -- Alarm configuration profile table + -- + + vdslLineAlarmConfProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF VdslLineAlarmConfProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains information on the VDSL line alarm + configuration. One entry in this table reflects a profile + defined by a manager which can be used to configure the + VDSL line alarm thresholds. + Entries in this table MUST be maintained in a + persistent manner." + ::= { vdslMibObjects 20 } + + vdslLineAlarmConfProfileEntry OBJECT-TYPE + SYNTAX VdslLineAlarmConfProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each entry consists of a list of parameters that + represents the configuration of a VDSL line alarm + profile. + + A default profile with an index of 'DEFVAL', will + always exist and its parameters will be set to vendor + specific values, unless otherwise specified in this + document." + INDEX { vdslLineAlarmConfProfileName } + ::= { vdslLineAlarmConfProfileTable 1 } + + VdslLineAlarmConfProfileEntry ::= + SEQUENCE + { + vdslLineAlarmConfProfileName SnmpAdminString, + vdslLineAlarmConfThresh15MinLofs HCPerfIntervalThreshold, + vdslLineAlarmConfThresh15MinLoss HCPerfIntervalThreshold, + vdslLineAlarmConfThresh15MinLprs HCPerfIntervalThreshold, + vdslLineAlarmConfThresh15MinLols HCPerfIntervalThreshold, + vdslLineAlarmConfThresh15MinESs HCPerfIntervalThreshold, + vdslLineAlarmConfThresh15MinSESs HCPerfIntervalThreshold, + vdslLineAlarmConfThresh15MinUASs HCPerfIntervalThreshold, + vdslLineAlarmConfInitFailure TruthValue, + vdslLineAlarmConfProfRowStatus RowStatus + } + + vdslLineAlarmConfProfileName OBJECT-TYPE + SYNTAX SnmpAdminString (SIZE (1..32)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The name for this profile as specified by an + administrator." + ::= { vdslLineAlarmConfProfileEntry 1 } + + vdslLineAlarmConfThresh15MinLofs OBJECT-TYPE + SYNTAX HCPerfIntervalThreshold + UNITS "seconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object configures the threshold for the number of + loss of frame seconds (lofs) within any given 15-minute + performance data collection interval. If the value of + loss of frame seconds in a particular 15-minute collection + interval reaches/exceeds this value, a + vdslPerfLofsThreshNotification notification will be + generated. No more than one notification will be sent + per interval." + DEFVAL { 0 } + ::= { vdslLineAlarmConfProfileEntry 2 } + + vdslLineAlarmConfThresh15MinLoss OBJECT-TYPE + SYNTAX HCPerfIntervalThreshold + UNITS "seconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object configures the threshold for the number of + loss of signal seconds (loss) within any given 15-minute + performance data collection interval. If the value of + loss of signal seconds in a particular 15-minute + collection interval reaches/exceeds this value, a + vdslPerfLossThreshNotification notification will be + generated. One notification will be sent per interval + per endpoint." + DEFVAL { 0 } + ::= { vdslLineAlarmConfProfileEntry 3 } + + vdslLineAlarmConfThresh15MinLprs OBJECT-TYPE + SYNTAX HCPerfIntervalThreshold + UNITS "seconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object configures the threshold for the number of + loss of power seconds (lprs) within any given 15-minute + performance data collection interval. If the value of + loss of power seconds in a particular 15-minute collection + interval reaches/exceeds this value, a + vdslPerfLprsThreshNotification notification will be + generated. No more than one notification will be sent + per interval." + DEFVAL { 0 } + ::= { vdslLineAlarmConfProfileEntry 4 } + + vdslLineAlarmConfThresh15MinLols OBJECT-TYPE + SYNTAX HCPerfIntervalThreshold + UNITS "seconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object configures the threshold for the number of + loss of link seconds (lols) within any given 15-minute + performance data collection interval. If the value of + loss of power seconds in a particular 15-minute collection + interval reaches/exceeds this value, a + vdslPerfLolsThreshNotification notification will be + generated. No more than one notification will be sent + per interval." + DEFVAL { 0 } + ::= { vdslLineAlarmConfProfileEntry 5 } + + vdslLineAlarmConfThresh15MinESs OBJECT-TYPE + SYNTAX HCPerfIntervalThreshold + UNITS "seconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object configures the threshold for the number of + errored seconds (ESs) within any given 15-minute + performance data collection interval. If the value of + errored seconds in a particular 15-minute collection + interval reaches/exceeds this value, a + vdslPerfESsThreshNotification notification will be + generated. No more than one notification will be sent + per interval." + DEFVAL { 0 } + ::= { vdslLineAlarmConfProfileEntry 6 } + + vdslLineAlarmConfThresh15MinSESs OBJECT-TYPE + SYNTAX HCPerfIntervalThreshold + UNITS "seconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object configures the threshold for the number of + severely errored seconds (SESs) within any given 15-minute + performance data collection interval. If the value of + severely errored seconds in a particular 15-minute + collection interval reaches/exceeds this value, a + vdslPerfSESsThreshNotification notification will be + generated. No more than one notification will be sent + per interval." + DEFVAL { 0 } + ::= { vdslLineAlarmConfProfileEntry 7 } + + vdslLineAlarmConfThresh15MinUASs OBJECT-TYPE + SYNTAX HCPerfIntervalThreshold + UNITS "seconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object configures the threshold for the number of + unavailable seconds (UASs) within any given 15-minute + performance data collection interval. If the value of + unavailable seconds in a particular 15-minute collection + interval reaches/exceeds this value, a + vdslPerfUASsThreshNotification notification will be + generated. No more than one notification will be sent + per interval." + DEFVAL { 0 } + ::= { vdslLineAlarmConfProfileEntry 8 } + + vdslLineAlarmConfInitFailure OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies if a vdslInitFailureNotification + notification will be generated if an initialization + failure occurs." + DEFVAL { false } + ::= { vdslLineAlarmConfProfileEntry 9 } + + vdslLineAlarmConfProfRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create a new row or modify or + delete an existing row in this table. + + A profile activated by setting this object to 'active'. + When 'active' is set, the system will validate the profile. + + Before a profile can be deleted or taken out of service, + (by setting this object to 'destroy' or 'outOfService') it + must be first unreferenced from all associated lines. + + An 'active' profile may be modified at any time." + ::= { vdslLineAlarmConfProfileEntry 10 } + + + -- Notification definitions + + vdslNotifications OBJECT IDENTIFIER ::= { vdslLineMib 0 } + + vdslPerfLofsThreshNotification NOTIFICATION-TYPE + OBJECTS { + vdslPerfDataCurr15MinLofs + } + STATUS current + DESCRIPTION + "Loss of Framing 15-minute interval threshold + (vdslLineAlarmConfThresh15MinLofs) reached." + ::= { vdslNotifications 1 } + + vdslPerfLossThreshNotification NOTIFICATION-TYPE + OBJECTS { + vdslPerfDataCurr15MinLoss + } + STATUS current + DESCRIPTION + "Loss of Signal 15-minute interval threshold + (vdslLineAlarmConfThresh15MinLoss) reached." + ::= { vdslNotifications 2 } + + vdslPerfLprsThreshNotification NOTIFICATION-TYPE + OBJECTS { + vdslPerfDataCurr15MinLprs + } + STATUS current + DESCRIPTION + "Loss of Power 15-minute interval threshold + (vdslLineAlarmConfThresh15MinLprs) reached." + ::= { vdslNotifications 3 } + + vdslPerfLolsThreshNotification NOTIFICATION-TYPE + OBJECTS { + vdslPerfDataCurr15MinLols + } + STATUS current + DESCRIPTION + "Loss of Link 15-minute interval threshold + (vdslLineAlarmConfThresh15MinLols) reached." + ::= { vdslNotifications 4 } + + vdslPerfESsThreshNotification NOTIFICATION-TYPE + OBJECTS { + vdslPerfDataCurr15MinESs + } + + STATUS current + DESCRIPTION + "Errored Seconds 15-minute interval threshold + (vdslLineAlarmConfThresh15MinESs) reached." + ::= { vdslNotifications 5 } + + vdslPerfSESsThreshNotification NOTIFICATION-TYPE + OBJECTS { + vdslPerfDataCurr15MinSESs + } + STATUS current + DESCRIPTION + "Severely Errored Seconds 15-minute interval threshold + (vdslLineAlarmConfThresh15MinSESs) reached." + ::= { vdslNotifications 6 } + + vdslPerfUASsThreshNotification NOTIFICATION-TYPE + OBJECTS { + vdslPerfDataCurr15MinUASs + } + STATUS current + DESCRIPTION + "Unavailable Seconds 15-minute interval threshold + (vdslLineAlarmConfThresh15MinUASs) reached." + ::= { vdslNotifications 7 } + + vdslDownMaxSnrMgnNotification NOTIFICATION-TYPE + OBJECTS { + vdslPhysCurrSnrMgn + } + STATUS current + DESCRIPTION + "The downstream Signal to Noise Margin exceeded + vdslLineConfDownMaxSnrMgn. The object + vdslPhysCurrSnrMgn will contain the Signal to Noise + margin as measured by the VTU-R." + ::= { vdslNotifications 8 } + + vdslDownMinSnrMgnNotification NOTIFICATION-TYPE + OBJECTS { + vdslPhysCurrSnrMgn + } + STATUS current + DESCRIPTION + "The downstream Signal to Noise Margin fell below + vdslLineConfDownMinSnrMgn. The object vdslPhysCurrSnrMgn + will contain the Signal to Noise margin as measured by + the VTU-R." + + ::= { vdslNotifications 9 } + + vdslUpMaxSnrMgnNotification NOTIFICATION-TYPE + OBJECTS { + vdslPhysCurrSnrMgn + } + STATUS current + DESCRIPTION + "The upstream Signal to Noise Margin exceeded + vdslLineConfUpMaxSnrMgn. The object vdslPhysCurrSnrMgn + will contain the Signal to Noise margin as measured + by the VTU-C." + ::= { vdslNotifications 10 } + + vdslUpMinSnrMgnNotification NOTIFICATION-TYPE + OBJECTS { + vdslPhysCurrSnrMgn + } + STATUS current + DESCRIPTION + "The upstream Signal to Noise Margin fell below + vdslLineConfUpMinSnrMgn. The object vdslPhysCurrSnrMgn + will contain the Signal to Noise margin as measured + by the VTU-C." + ::= { vdslNotifications 11 } + + vdslInitFailureNotification NOTIFICATION-TYPE + OBJECTS { + vdslPhysCurrStatus + } + STATUS current + DESCRIPTION + "Vtu initialization failed. See vdslPhysCurrStatus for + potential reasons." + ::= { vdslNotifications 12 } + + -- conformance information + + vdslConformance OBJECT IDENTIFIER ::= { vdslLineMib 3 } + vdslGroups OBJECT IDENTIFIER ::= { vdslConformance 1 } + vdslCompliances OBJECT IDENTIFIER ::= { vdslConformance 2 } + + vdslLineMibCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for SNMP entities which + manage VDSL interfaces." + MODULE -- this module + MANDATORY-GROUPS + { + vdslGroup, + vdslNotificationGroup + } + ::= { vdslCompliances 1 } + + -- units of conformance + + vdslGroup OBJECT-GROUP + OBJECTS + { + vdslLineCoding, + vdslLineType, + vdslLineConfProfile, + vdslLineAlarmConfProfile, + vdslPhysInvSerialNumber, + vdslPhysInvVendorID, + vdslPhysInvVersionNumber, + vdslPhysCurrSnrMgn, + vdslPhysCurrAtn, + vdslPhysCurrStatus, + vdslPhysCurrOutputPwr, + vdslPhysCurrAttainableRate, + vdslPhysCurrLineRate, + vdslChanInterleaveDelay, + vdslChanCrcBlockLength, + vdslChanCurrTxRate, + vdslChanCurrTxSlowBurstProtect, + vdslChanCurrTxFastFec, + vdslPerfDataValidIntervals, + vdslPerfDataInvalidIntervals, + vdslPerfDataLofs, + vdslPerfDataLoss, + vdslPerfDataLprs, + vdslPerfDataLols, + vdslPerfDataESs, + vdslPerfDataSESs, + vdslPerfDataUASs, + vdslPerfDataInits, + vdslPerfDataCurr15MinTimeElapsed, + vdslPerfDataCurr15MinLofs, + vdslPerfDataCurr15MinLoss, + vdslPerfDataCurr15MinLprs, + vdslPerfDataCurr15MinLols, + vdslPerfDataCurr15MinESs, + vdslPerfDataCurr15MinSESs, + vdslPerfDataCurr15MinUASs, + vdslPerfDataCurr15MinInits, + vdslPerfData1DayValidIntervals, + vdslPerfData1DayInvalidIntervals, + vdslPerfDataCurr1DayTimeElapsed, + vdslPerfDataCurr1DayLofs, + vdslPerfDataCurr1DayLoss, + vdslPerfDataCurr1DayLprs, + vdslPerfDataCurr1DayLols, + vdslPerfDataCurr1DayESs, + vdslPerfDataCurr1DaySESs, + vdslPerfDataCurr1DayUASs, + vdslPerfDataCurr1DayInits, + vdslPerfIntervalLofs, + vdslPerfIntervalLoss, + vdslPerfIntervalLprs, + vdslPerfIntervalLols, + vdslPerfIntervalESs, + vdslPerfIntervalSESs, + vdslPerfIntervalUASs, + vdslPerfIntervalInits, + vdslPerf1DayIntervalMoniSecs, + vdslPerf1DayIntervalLofs, + vdslPerf1DayIntervalLoss, + vdslPerf1DayIntervalLprs, + vdslPerf1DayIntervalLols, + vdslPerf1DayIntervalESs, + vdslPerf1DayIntervalSESs, + vdslPerf1DayIntervalUASs, + vdslPerf1DayIntervalInits, + vdslChanValidIntervals, + vdslChanInvalidIntervals, + vdslChanFixedOctets, + vdslChanBadBlks, + vdslChanCurr15MinTimeElapsed, + vdslChanCurr15MinFixedOctets, + vdslChanCurr15MinBadBlks, + vdslChan1DayValidIntervals, + vdslChan1DayInvalidIntervals, + vdslChanCurr1DayTimeElapsed, + vdslChanCurr1DayFixedOctets, + vdslChanCurr1DayBadBlks, + vdslChanIntervalFixedOctets, + vdslChanIntervalBadBlks, + vdslChan1DayIntervalMoniSecs, + vdslChan1DayIntervalFixedOctets, + vdslChan1DayIntervalBadBlks, + vdslLineConfDownRateMode, + vdslLineConfUpRateMode, + vdslLineConfDownMaxPwr, + vdslLineConfUpMaxPwr, + vdslLineConfDownMaxSnrMgn, + vdslLineConfDownMinSnrMgn, + vdslLineConfDownTargetSnrMgn, + vdslLineConfUpMaxSnrMgn, + vdslLineConfUpMinSnrMgn, + vdslLineConfUpTargetSnrMgn, + vdslLineConfDownFastMaxDataRate, + vdslLineConfDownFastMinDataRate, + vdslLineConfDownSlowMaxDataRate, + vdslLineConfDownSlowMinDataRate, + vdslLineConfUpFastMaxDataRate, + vdslLineConfUpFastMinDataRate, + vdslLineConfUpSlowMaxDataRate, + vdslLineConfUpSlowMinDataRate, + vdslLineConfDownRateRatio, + vdslLineConfUpRateRatio, + vdslLineConfDownMaxInterDelay, + vdslLineConfUpMaxInterDelay, + vdslLineConfDownPboControl, + vdslLineConfUpPboControl, + vdslLineConfDownPboLevel, + vdslLineConfUpPboLevel, + vdslLineConfDeploymentScenario, + vdslLineConfAdslPresence, + vdslLineConfApplicableStandard, + vdslLineConfBandPlan, + vdslLineConfBandPlanFx, + vdslLineConfBandOptUsage, + vdslLineConfUpPsdTemplate, + vdslLineConfDownPsdTemplate, + vdslLineConfHamBandMask, + vdslLineConfCustomNotch1Start, + vdslLineConfCustomNotch1Stop, + vdslLineConfCustomNotch2Start, + vdslLineConfCustomNotch2Stop, + vdslLineConfDownTargetSlowBurst, + vdslLineConfUpTargetSlowBurst, + vdslLineConfDownMaxFastFec, + vdslLineConfUpMaxFastFec, + vdslLineConfLineType, + vdslLineConfProfRowStatus, + vdslLineAlarmConfThresh15MinLofs, + vdslLineAlarmConfThresh15MinLoss, + vdslLineAlarmConfThresh15MinLprs, + vdslLineAlarmConfThresh15MinLols, + vdslLineAlarmConfThresh15MinESs, + vdslLineAlarmConfThresh15MinSESs, + vdslLineAlarmConfThresh15MinUASs, + vdslLineAlarmConfInitFailure, + vdslLineAlarmConfProfRowStatus + } + STATUS current + DESCRIPTION + "A collection of objects providing information about + a VDSL Line." + ::= { vdslGroups 1 } + + vdslNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS + { + vdslPerfLofsThreshNotification, + vdslPerfLossThreshNotification, + vdslPerfLprsThreshNotification, + vdslPerfLolsThreshNotification, + vdslPerfESsThreshNotification, + vdslPerfSESsThreshNotification, + vdslPerfUASsThreshNotification, + vdslDownMaxSnrMgnNotification, + vdslDownMinSnrMgnNotification, + vdslUpMaxSnrMgnNotification, + vdslUpMinSnrMgnNotification, + vdslInitFailureNotification + } + STATUS current + DESCRIPTION + "This group supports notifications of significant + conditions associated with VDSL Lines." + ::= { vdslGroups 2 } + + END diff --git a/mibs/calix/RFC3705-MIB b/mibs/calix/RFC3705-MIB new file mode 100644 index 0000000000..e73813b173 --- /dev/null +++ b/mibs/calix/RFC3705-MIB @@ -0,0 +1,226 @@ + + HC-PerfHist-TC-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, + Counter64, + Unsigned32, + Integer32, + mib-2 FROM SNMPv2-SMI + TEXTUAL-CONVENTION FROM SNMPv2-TC; + + hcPerfHistTCMIB MODULE-IDENTITY + LAST-UPDATED "200402030000Z" -- February 3, 2004 + ORGANIZATION "ADSLMIB Working Group" + CONTACT-INFO "WG-email: adslmib@ietf.org + Info: https://www1.ietf.org/mailman/listinfo/adslmib + + Chair: Mike Sneed + Sand Channel Systems + Postal: P.O. Box 37324 + Raleigh NC 27627-7324 + USA + Email: sneedmike@hotmail.com + Phone: +1 206 600 7022 + + Co-editor: Bob Ray + PESA Switching Systems, Inc. + Postal: 330-A Wynn Drive + Huntsville, AL 35805 + USA + Email: rray@pesa.com + Phone: +1 256 726 9200 ext. 142 + + Co-editor: Rajesh Abbi + Alcatel USA + Postal: 2301 Sugar Bush Road + Raleigh, NC 27612-3339 + USA + Email: Rajesh.Abbi@alcatel.com + Phone: +1 919 850 6194 + " + DESCRIPTION + "This MIB Module provides Textual Conventions to be + used by systems supporting 15 minute based performance + history counts that require high-capacity counts. + + Copyright (C) The Internet Society (2004). This version + of this MIB module is part of RFC 3705: see the RFC + itself for full legal notices." + + REVISION "200402030000Z" -- February 3, 2004 + DESCRIPTION "Initial version, published as RFC 3705." + + ::= { mib-2 107 } + + HCPerfValidIntervals ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The number of near end intervals for which data was + + collected. The value of an object with an + HCPerfValidIntervals syntax will be 96 unless the + measurement was (re-)started within the last 1440 minutes, + in which case the value will be the number of complete 15 + minute intervals for which the agent has at least some data. + In certain cases (e.g., in the case where the agent is a + proxy) it is possible that some intervals are unavailable. + In this case, this interval is the maximum interval number + for which data is available." + SYNTAX Integer32 (0..96) + + HCPerfInvalidIntervals ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The number of near end intervals for which no data is + available. The value of an object with an + HCPerfInvalidIntervals syntax will typically be zero except + in cases where the data for some intervals are not available + (e.g., in proxy situations)." + SYNTAX Integer32 (0..96) + + HCPerfTimeElapsed ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The number of seconds that have elapsed since the beginning + of the current measurement period. If, for some reason, + such as an adjustment in the system's time-of-day clock or + the addition of a leap second, the duration of the current + interval exceeds the maximum value, the agent will return + the maximum value. + + For 15 minute intervals, the range is limited to (0..899). + For 24 hour intervals, the range is limited to (0..86399)." + SYNTAX Integer32 (0..86399) + + HCPerfIntervalThreshold ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "This convention defines a range of values that may be set + in a fault threshold alarm control. As the number of + seconds in a 15-minute interval numbers at most 900, + objects of this type may have a range of 0...900, where the + value of 0 disables the alarm." + SYNTAX Unsigned32 (0..900) + + HCPerfCurrentCount ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + + "A gauge associated with a performance measurement in a + current 15 minute measurement interval. The value of an + object with an HCPerfCurrentCount syntax starts from zero + and is increased when associated events occur, until the + end of the 15 minute interval. At that time the value of + the gauge is stored in the first 15 minute history + interval, and the gauge is restarted at zero. In the case + where the agent has no valid data available for the + current interval, the corresponding object instance is not + available and upon a retrieval request a corresponding + error message shall be returned to indicate that this + instance does not exist. + + This count represents a non-negative integer, which + may increase or decrease, but shall never exceed 2^64-1 + (18446744073709551615 decimal), nor fall below 0. The + value of an object with HCPerfCurrentCount syntax + assumes its maximum value whenever the underlying count + exceeds 2^64-1. If the underlying count subsequently + decreases below 2^64-1 (due, e.g., to a retroactive + adjustment as a result of entering or exiting unavailable + time), then the object's value also decreases. + + Note that this TC is not strictly supported in SMIv2, + because the 'always increasing' and 'counter wrap' + semantics associated with the Counter64 base type are not + preserved. It is possible that management applications + which rely solely upon the (Counter64) ASN.1 tag to + determine object semantics will mistakenly operate upon + objects of this type as they would for Counter64 objects. + + This textual convention represents a limited and short- + term solution, and may be deprecated as a long term + solution is defined and deployed to replace it." + SYNTAX Counter64 + + HCPerfIntervalCount ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A gauge associated with a performance measurement in + a previous 15 minute measurement interval. In the case + where the agent has no valid data available for a + particular interval, the corresponding object instance is + not available and upon a retrieval request a corresponding + error message shall be returned to indicate that this + instance does not exist. + + Let X be an object with HCPerfIntervalCount syntax. + + Let Y be an object with HCPerfCurrentCount syntax. + Let Z be an object with HCPerfTotalCount syntax. + Then, in a system supporting a history of n intervals with + X(1) and X(n) the most and least recent intervals + respectively, the following applies at the end of a 15 + minute interval: + + - discard the value of X(n) + - the value of X(i) becomes that of X(i-1) + for n >= i > 1 + - the value of X(1) becomes that of Y. + - the value of Z, if supported, is adjusted. + + This count represents a non-negative integer, which + may increase or decrease, but shall never exceed 2^64-1 + (18446744073709551615 decimal), nor fall below 0. The + value of an object with HCPerfIntervalCount syntax + assumes its maximum value whenever the underlying count + exceeds 2^64-1. If the underlying count subsequently + decreases below 2^64-1 (due, e.g., to a retroactive + adjustment as a result of entering or exiting unavailable + time), then the value of the object also decreases. + + Note that this TC is not strictly supported in SMIv2, + because the 'always increasing' and 'counter wrap' + semantics associated with the Counter64 base type are not + preserved. It is possible that management applications + which rely solely upon the (Counter64) ASN.1 tag to + determine object semantics will mistakenly operate upon + objects of this type as they would for Counter64 objects. + + This textual convention represents a limited and short- + term solution, and may be deprecated as a long term + solution is defined and deployed to replace it." + SYNTAX Counter64 + + HCPerfTotalCount ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A gauge representing the aggregate of previous valid 15 + minute measurement intervals. Intervals for which no + valid data was available are not counted. + + This count represents a non-negative integer, which + may increase or decrease, but shall never exceed 2^64-1 + (18446744073709551615 decimal), nor fall below 0. The + value of an object with HCPerfTotalCount syntax + assumes its maximum value whenever the underlying count + + exceeds 2^64-1. If the underlying count subsequently + decreases below 2^64-1 (due, e.g., to a retroactive + adjustment as a result of entering or exiting unavailable + time), then the object's value also decreases. + + Note that this TC is not strictly supported in SMIv2, + because the 'always increasing' and 'counter wrap' + semantics associated with the Counter64 base type are not + preserved. It is possible that management applications + which rely solely upon the (Counter64) ASN.1 tag to + determine object semantics will mistakenly operate upon + objects of this type as they would for Counter64 objects. + + This textual convention represents a limited and short- + term solution, and may be deprecated as a long term + solution is defined and deployed to replace it." + SYNTAX Counter64 + END +