diff --git a/mibs/BROADCOM-POWER-ETHERNET-MIB.mib b/mibs/BROADCOM-POWER-ETHERNET-MIB.mib new file mode 100644 index 0000000..d2582ef --- /dev/null +++ b/mibs/BROADCOM-POWER-ETHERNET-MIB.mib @@ -0,0 +1,388 @@ +BROADCOM-POWER-ETHERNET-MIB DEFINITIONS ::= BEGIN + +-- Copyright Broadcom Corporation (2003-2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, Gauge32 FROM SNMPv2-SMI + TruthValue FROM SNMPv2-TC + ng7000managedswitch FROM BROADCOM-REF-MIB + pethPsePortEntry, pethMainPseEntry FROM POWER-ETHERNET-MIB; + + + fastPathpowerEthernetMIB MODULE-IDENTITY + LAST-UPDATED "200705230000Z" -- 23 May 2007 12:00:00 GMT + ORGANIZATION "Netgear" + CONTACT-INFO + "" + + DESCRIPTION + "This MIB Augments the POWER-ETHERNET-MIB created by the IETF Ethernet + Interfaces and Hub MIB Working Group for managing Power Source + Equipment (PSE). The objects in this MIB are intended to provide + additional objects for reporting information available to the hardware + on this platform which are not represented in the draft MIB." + + -- Revision history. + REVISION + "200708191200Z" -- 17 Aug 2007 12:00:00 GMT + DESCRIPTION + "PoE support for BCM59101 added." + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Netgear branding related changes." + REVISION + "200311101200Z" -- 10 Nov 2003 12:00:00 GMT + DESCRIPTION + "Initial revision." + ::= { ng7000managedswitch 15 } + + agentPethObjects OBJECT IDENTIFIER ::= { fastPathpowerEthernetMIB 1 } + + agentPethPsePortTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentPethPsePortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of per-port information and configuration objects relating + to the power status of each port." + ::= { agentPethObjects 1 } + + agentPethPsePortEntry OBJECT-TYPE + SYNTAX AgentPethPsePortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A collection of objects providing additional power information + and control parameters for the specified port." + AUGMENTS { pethPsePortEntry } + ::= { agentPethPsePortTable 1 } + + AgentPethPsePortEntry ::= SEQUENCE { + agentPethPowerLimit + Gauge32, + agentPethOutputPower + Gauge32, + agentPethOutputCurrent + Gauge32, + agentPethOutputVolts + Gauge32, + agentPethTemperature + Gauge32, + agentPethPowerLimitType + INTEGER, + agentPethHighPowerEnable + TruthValue, + agentPethPowerDetectionType + INTEGER, + agentPethFaultStatus + INTEGER, + agentPethPortReset + INTEGER, + agentPethPowerUpMode + INTEGER, + agentPethClassificationMode + INTEGER + } + + agentPethPowerLimit OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Milliwatts" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configured maximum power this port can provide to an + attached device measured in Milliwatts." + ::= { agentPethPsePortEntry 1 } + + agentPethOutputPower OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Milliwatts" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The power this port is supplying to an attached device measured + in Milliwatts." + ::= { agentPethPsePortEntry 2 } + + agentPethOutputCurrent OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Milliamps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current this port is supplying to an attached device measured + in Milliamps." + ::= { agentPethPsePortEntry 3 } + + agentPethOutputVolts OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Millivolts" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The voltage this port is supplying to an attached device measured + in millivolts." + ::= { agentPethPsePortEntry 4 } + + agentPethTemperature OBJECT-TYPE + SYNTAX Gauge32 + UNITS "DEGREES" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The temperature measured at this port of the PoE Controller. It is + measured in degree celcius." + ::= { agentPethPsePortEntry 5 } + + agentPethPowerLimitType OBJECT-TYPE + SYNTAX INTEGER { + dot3af(1), + user(2), + none(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Describes or controls the maximum power that a port can deliver + A value of dot3af(1) means that the port power limit is as per + the dot3af class of the PD attached. + A value of user(2) means that the port power limit is equal to the value + specified by agentPethPowerLimit" + REFERENCE + "Broadcom 5910X programmers guide, IEEE Std 802.3af Section 30.9.1.1.6" + + ::= { agentPethPsePortEntry 6 } + + agentPethHighPowerEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "true (1) The PSE port can deliver power up to 32Watts. + false(2) The PSE port can deliver power up to 18Watts" + REFERENCE + "Broadcom 5910X programmers guide" + + ::= { agentPethPsePortEntry 7 } + + agentPethPowerDetectionType OBJECT-TYPE + SYNTAX INTEGER { + none(0), + legacy(1), + fourPtdot3afonly(2), + fourPtdot3afandlegacy(3), + twoPtdot3afonly(4), + twoPtdot3afandlegacy(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Describes PD detection mechanism performed by the PSE port. + A value of none(0) means no detection is done. + A value of legacy(1) means only legacy capacitive detection scheme is + used. + A value of 4ptdot3afonly(2) means that IEEE 802.3af 4point detection scheme + is used. + A value of 4ptdot3afandlegacy(3)means that IEEE 802.3af 4point detection scheme + is used and when that fails to detect a connected PD, legacity capacitive detection + is used. + A value of 2ptdot3afonly(4) means that IEEE 802.3af 2point detection scheme + is used. + A value of 2ptdot3afandlegacy(5)means that IEEE 802.3af 2point detection scheme + is used and when that fails to detect a connected PD, legacity capacitive detection + is used. + The value 'none' can not be forcibly set by the administrator." + REFERENCE + "Broadcom 5910X programmers guide, IEEE Std 802.3af Section 30.9.1.1.6" + + ::= { agentPethPsePortEntry 8 } + + agentPethFaultStatus OBJECT-TYPE + SYNTAX INTEGER { + none(0), + mpsAbsent(1), + short(2), + overload(3), + powerDenied(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Describes the error description when the pse port is in fault status. + A value of none(0) specifies that the pse port is not in any error state. + A value of mpsAbsent(1) specifies that the pse port has detected and absence + of main power supply. + A value of short(2) specifies that the pse port has detected a short circuit + condition. + A value of overload(3) specifies that the pd connected to the pse port had tried + to draw more power than permissible by the hardware. + A value of powerDenied(4) specifies that the pse port has been denied power + because of shortage of power or due to administrative action." + REFERENCE + "Broadcom 5910X programmers guide, IEEE Std 802.3af" + + ::= { agentPethPsePortEntry 9 } + + agentPethPortReset OBJECT-TYPE + SYNTAX INTEGER { + none(0), + reset(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A value of reset(1) is used to move the pse port dot3af state to idle. A + read on this object will always return the value none(0). The value none(0) + can not be forcibly set by the administrtor." + REFERENCE + "Broadcom 5910X programmers guide, IEEE Std 802.3af" + + ::= { agentPethPsePortEntry 10 } + + agentPethPowerUpMode OBJECT-TYPE + SYNTAX INTEGER { + ieee802dot3af(0), + high-inrush(1), + pre-802dot3at(2), + ieee802dot3at(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Describes the power up mode used by the PSE Port. + A value of 802dot3af(0) means port is powered in IEEE 802.3af mode. + A value of high-inrush(1) means port is powered used high-inrush current, + used by legacy PD's + A value of pre-802dot3at(2) means port is powered in IEEE 802.3af mode initially, + switched to high-power IEEE 802.3at mode before 75msec. This mode needs + to be used if PSE is NOT performing Layer 2 Classification Or + PSE is performing 2-Event Layer 1 Classification. + A value of 802dot3at(3) means is port is powered in IEEE 802.3at mode. i.e. if class detected + by PSE is not class4 then PSE port will not power up the PD." + REFERENCE + "Broadcom 5910X programmers guide, Command 0x1C" + + ::= { agentPethPsePortEntry 11 } + + agentPethClassificationMode OBJECT-TYPE + SYNTAX INTEGER { + bypass(0), + standard(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Describes the classification mode used by the PSE Port. + A value of bypass(0) means port is not performing classification. + A value of standard(1) means port is performing classification as per IEEE 802.3af/802.3at ." + REFERENCE + "Broadcom 5910X programmers guide, Command 0x11" + + ::= { agentPethPsePortEntry 12 } + + +-- Main objects + agentPethMainPseObjects OBJECT IDENTIFIER ::= { agentPethObjects 2 } + + agentPethMainPseTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentPethMainPseEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of objects that display and control attributes + of the main power source in a PSE device. Ethernet + switches are one example of boxes that would support + these objects. + Values of all read-write objects in this table are + persistent at restart/reboot." + ::= { agentPethMainPseObjects 1 } + + agentPethMainPseEntry OBJECT-TYPE + SYNTAX AgentPethMainPseEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A set of objects that display and control the Main + power of a PSE. " + AUGMENTS { pethMainPseEntry } + ::= { agentPethMainPseTable 1 } + + AgentPethMainPseEntry ::= SEQUENCE { + agentPethMainPseLegacy + TruthValue + } + + agentPethMainPseLegacy OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/Disable Legacy device detection. The + value true(1) means legacy devices are detected; the + value false(2) means legacy devices are not detected." + ::= { agentPethMainPseEntry 1 } + + agentPethPseTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentPethPseEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of per-unit information and configuration objects relating + to the power configurtion for the entire pse unit." + ::= { agentPethObjects 3 } + + agentPethPseEntry OBJECT-TYPE + SYNTAX AgentPethPseEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A collection of objects providing additional power information + and control parameters for the specified pse unit." + AUGMENTS { pethMainPseEntry } + ::= { agentPethPseTable 1 } + + AgentPethPseEntry ::= SEQUENCE { + agentPethPsePowerManagementMode + INTEGER, + agentPethPseAutoResetEnable + TruthValue + } + + agentPethPsePowerManagementMode OBJECT-TYPE + SYNTAX INTEGER { + static(1), + dynamic(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Describes or controls the power management algorithm used by the pse + to deliver power to the requesting PDsthat a pds." + REFERENCE + "Broadcom 5910X programmers guide" + + ::= { agentPethPseEntry 1 } + + agentPethPseAutoResetEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "true (1) The PSE port is reset with out administrator intervention whenver a + fault condition occurs. + false(2) Administrator has to reset the pse port whenver a fault condition + is detected." + + ::= { agentPethPseEntry 2 } +END diff --git a/mibs/BROADCOM-REF-MIB.mib b/mibs/BROADCOM-REF-MIB.mib new file mode 100644 index 0000000..e6fb33e --- /dev/null +++ b/mibs/BROADCOM-REF-MIB.mib @@ -0,0 +1,258 @@ +BROADCOM-REF-MIB DEFINITIONS ::= BEGIN + +-- Netgear Fastpath Reference MIB +-- Copyright Broadcom Corporation (2001-2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + +IMPORTS + MODULE-IDENTITY FROM SNMPv2-SMI + TEXTUAL-CONVENTION FROM SNMPv2-TC + enterprises FROM RFC1155-SMI; + + broadcom MODULE-IDENTITY + LAST-UPDATED "200705230000Z" -- 23 May 2007 12:00:00 GMT + ORGANIZATION "Netgear" + CONTACT-INFO + "" + DESCRIPTION + "" + + -- Revision history. + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Netgear branding related changes." + REVISION + "200311210000Z" -- 21 Nov 2003 12:00:00 GMT + DESCRIPTION + "Revisions made for new release." + REVISION + "200302061200Z" -- 6 February 2003 12:00:00 GMT + DESCRIPTION + "Updated for release" + + ::= { enterprises 4413 } + + +-- New definitions + broadcomProducts OBJECT IDENTIFIER ::= { broadcom 1 } + fastPath OBJECT IDENTIFIER ::= { broadcomProducts 1 } + +netgear OBJECT IDENTIFIER ::= { enterprises 4526 } + +-- +-- below are products that defined prior to NMS100 release that they have product code +-- defined directly above the functions objects +-- +managedSwitch OBJECT IDENTIFIER ::= { netgear 1 } +vpnrouter OBJECT IDENTIFIER ::= { netgear 2 } +carrier OBJECT IDENTIFIER ::= { netgear 3 } +wireless OBJECT IDENTIFIER ::= { netgear 4 } +rps OBJECT IDENTIFIER ::= { netgear 5 } +wlanswitch OBJECT IDENTIFIER ::= { netgear 6 } + +--- +--- 700 series L2 managed switch +--- +fsm726s OBJECT IDENTIFIER ::= { managedSwitch 1 } +fsm750s OBJECT IDENTIFIER ::= { managedSwitch 2 } +gsm712 OBJECT IDENTIFIER ::= { managedSwitch 3 } +fsm726 OBJECT IDENTIFIER ::= { managedSwitch 4 } +gsm712f OBJECT IDENTIFIER ::= { managedSwitch 5 } +fsm726v2 OBJECT IDENTIFIER ::= { managedSwitch 10 } + +--- +--- AP +--- +me103 OBJECT IDENTIFIER ::= { wireless 1 } +wg302 OBJECT IDENTIFIER ::= { wireless 2 } +wg102 OBJECT IDENTIFIER ::= { wireless 3 } +wag302 OBJECT IDENTIFIER ::= { wireless 4 } +wag102 OBJECT IDENTIFIER ::= { wireless 5 } +--- +--- Added by Stephen Tsai 2-06-2006 +--- +wg302v2 OBJECT IDENTIFIER ::= { wireless 6 } +wag302v2 OBJECT IDENTIFIER ::= { wireless 7 } + + + +--- +--- WLAN Switch +--- +wls538 OBJECT IDENTIFIER ::= { wlanswitch 1 } + +--- +--- 7000 series L2/L3 managed switch +--- +gsm7312 OBJECT IDENTIFIER ::= { managedSwitch 6 } +gsm7324 OBJECT IDENTIFIER ::= { managedSwitch 7 } +gsm7224 OBJECT IDENTIFIER ::= { managedSwitch 8 } +fsm7326p OBJECT IDENTIFIER ::= { managedSwitch 9 } + +---******************************************************************** +--- new post-NMS100 SNMP products +--- + +-- +-- new post-NMS100 SNMP-enabled products. These products will have their +-- functions defined under each generic product category. +-- +ng7000managedswitch OBJECT IDENTIFIER ::= { netgear 10 } +ng700smartswitch OBJECT IDENTIFIER ::= { netgear 11 } +ngrouter OBJECT IDENTIFIER ::= { netgear 12 } +ngfirewall OBJECT IDENTIFIER ::= { netgear 13 } +ngap OBJECT IDENTIFIER ::= { netgear 14 } +ngwlan OBJECT IDENTIFIER ::= { netgear 15 } +ng9000chassisswitch OBJECT IDENTIFIER ::= { netgear 16 } +ng700stacksmartswitch OBJECT IDENTIFIER ::= { netgear 17 } + +-- +-- and their sysObjectID will be under a branch on their own +-- +productID OBJECT IDENTIFIER ::= { netgear 100 } + +stackswitch OBJECT IDENTIFIER ::= { productID 1 } +l2switch OBJECT IDENTIFIER ::= { productID 2 } +l3switch OBJECT IDENTIFIER ::= { productID 3 } +smartswitch OBJECT IDENTIFIER ::= { productID 4 } +l2Rswitch OBJECT IDENTIFIER ::= { productID 11 } + +router OBJECT IDENTIFIER ::= { productID 5 } +firewall OBJECT IDENTIFIER ::= { productID 6 } +accesspoint OBJECT IDENTIFIER ::= { productID 7 } +wirelessLAN OBJECT IDENTIFIER ::= { productID 8 } +chassisswitch OBJECT IDENTIFIER ::= { productID 9 } +stacksmartswitch OBJECT IDENTIFIER ::= { productID 10 } + +-- +-- Managed switches +-- +fsm7328s OBJECT IDENTIFIER ::= { stackswitch 1 } +fsm7352s OBJECT IDENTIFIER ::= { stackswitch 2 } +gsm7328s OBJECT IDENTIFIER ::= { stackswitch 3 } +gsm7352s OBJECT IDENTIFIER ::= { stackswitch 4 } +fsm7352ps OBJECT IDENTIFIER ::= { stackswitch 5 } +fsm7328ps OBJECT IDENTIFIER ::= { stackswitch 8 } +gsm7328fs OBJECT IDENTIFIER ::= { stackswitch 7 } +gsm7228ps OBJECT IDENTIFIER ::= { stackswitch 9 } +gsm7252ps OBJECT IDENTIFIER ::= { stackswitch 10 } +fsm7226rs OBJECT IDENTIFIER ::= { stackswitch 11 } +fsm7250rs OBJECT IDENTIFIER ::= { stackswitch 12 } +gsm7328se OBJECT IDENTIFIER ::= { stackswitch 13 } +gsm7352se OBJECT IDENTIFIER ::= { stackswitch 14 } + +gsm7312v2 OBJECT IDENTIFIER ::= { l3switch 1 } +gsm7324v2 OBJECT IDENTIFIER ::= { l3switch 2 } +xsm7312 OBJECT IDENTIFIER ::= { l3switch 3 } +gsm7324p OBJECT IDENTIFIER ::= { l3switch 4 } + +gsm7224r OBJECT IDENTIFIER ::= { l2Rswitch 1 } +gsm7248r OBJECT IDENTIFIER ::= { l2Rswitch 2 } +gsm7224rp OBJECT IDENTIFIER ::= { l2Rswitch 3 } +gsm7248rp OBJECT IDENTIFIER ::= { l2Rswitch 4 } +gsm7224v2 OBJECT IDENTIFIER ::= { l2Rswitch 5 } +gsm7248v2 OBJECT IDENTIFIER ::= { l2Rswitch 6 } + +-- +-- GSM7324, GSM7312, FSM7326P, and GSM7224, are using two different styles +-- of FP private MIB: dedicate and generic. For those using dedicated one, the sysOID +-- are assigned to "gsm7324", "gsm7312, "fsm7326p", and "gsm7224". For the one using +-- generic MIB, the new OIDs are has a "i" in the end. +-- +gsm7312i OBJECT IDENTIFIER ::= { l3switch 5 } +gsm7324i OBJECT IDENTIFIER ::= { l3switch 6 } +fsm7326pi OBJECT IDENTIFIER ::= { l3switch 7 } + +gsm7248 OBJECT IDENTIFIER ::= { l2switch 1 } +gsm7212 OBJECT IDENTIFIER ::= { l2switch 2 } +gsm7224i OBJECT IDENTIFIER ::= { l2switch 3 } +fsm7226 OBJECT IDENTIFIER ::= { l2switch 4 } + +gcm9000 OBJECT IDENTIFIER ::= { chassisswitch 1 } + +--- +--- new SNMP-enabled smartswitch +--- +gs748t OBJECT IDENTIFIER ::= { smartswitch 1 } +fs726t OBJECT IDENTIFIER ::= { smartswitch 2 } +gs716t OBJECT IDENTIFIER ::= { smartswitch 3 } +fs750t OBJECT IDENTIFIER ::= { smartswitch 4 } +gs724t OBJECT IDENTIFIER ::= { smartswitch 5 } +fs726tp OBJECT IDENTIFIER ::= { smartswitch 6 } +fs728tp OBJECT IDENTIFIER ::= { smartswitch 7 } +gs108t OBJECT IDENTIFIER ::= { smartswitch 8 } +gs108tp OBJECT IDENTIFIER ::= { smartswitch 9 } +gs724tp OBJECT IDENTIFIER ::= { smartswitch 10 } +gs748tp OBJECT IDENTIFIER ::= { smartswitch 11 } +gs724tr OBJECT IDENTIFIER ::= { smartswitch 12 } +gs748tr OBJECT IDENTIFIER ::= { smartswitch 13 } + +fs728ts OBJECT IDENTIFIER ::= { stacksmartswitch 1 } +fs752ts OBJECT IDENTIFIER ::= { stacksmartswitch 2 } +fs752tps OBJECT IDENTIFIER ::= { stacksmartswitch 3 } +gs724ts OBJECT IDENTIFIER ::= { stacksmartswitch 4 } +gs748ts OBJECT IDENTIFIER ::= { stacksmartswitch 5 } + +--- +--- new SNMP-enabled business router/firewall +--- +fvx538 OBJECT IDENTIFIER ::= { router 1 } +fvs338 OBJECT IDENTIFIER ::= { router 2 } +fvg318 OBJECT IDENTIFIER ::= { router 3 } +fvs336g OBJECT IDENTIFIER ::= { router 4 } + +--- +--- new SNMP-enabled firewall +--- +fwag114 OBJECT IDENTIFIER ::= { firewall 3 } +fvs124g OBJECT IDENTIFIER ::= { firewall 4 } +fvs318v3 OBJECT IDENTIFIER ::= { firewall 5 } +dgfv338 OBJECT IDENTIFIER ::= { firewall 6 } + +--- +--- new SNMP-enabled AP +--- +wpn802 OBJECT IDENTIFIER ::= { accesspoint 1 } +wg312 OBJECT IDENTIFIER ::= { accesspoint 2 } +wag312 OBJECT IDENTIFIER ::= { accesspoint 3 } + +--- +--- new WLAN +--- + +-- New Textual Conventions +AgentPortMask ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Each octet within this value specifies a set of eight + ports, with the first octet specifying ports 1 through + 8, the second octet specifying ports 9 through 16, etc. + Within each octet, the most significant bit represents + the lowest numbered port, and the least significant bit + represents the highest numbered port. Thus, each port + of the bridge is represented by a single bit within the + value of this object. If that bit has a value of '1' + then that port is included in the set of ports; the port + is not included if its bit has a value of '0' + + When setting this value, the system will ignore + configuration for ports not between the first and last + valid ports. Configuration of any port numbers between + this range that are not valid ports return a failure + message, but will still apply configuration for valid + ports." + SYNTAX OCTET STRING + + +END diff --git a/mibs/FASTPATH-BOXSERVICES-PRIVATE-MIB.mib b/mibs/FASTPATH-BOXSERVICES-PRIVATE-MIB.mib new file mode 100644 index 0000000..ae74812 --- /dev/null +++ b/mibs/FASTPATH-BOXSERVICES-PRIVATE-MIB.mib @@ -0,0 +1,523 @@ +-- Box Services MIB overview: +-- Box Services MIB falls under fastPath MIB node of the private subtree. + +FASTPATH-BOXSERVICES-PRIVATE-MIB DEFINITIONS ::= BEGIN + +-- Broadcom Corporation FASTPATH Box Services MIB +-- Copyright Broadcom Corporation(2004-2008) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, + Unsigned32, Integer32 FROM SNMPv2-SMI + TEXTUAL-CONVENTION FROM SNMPv2-TC + DisplayString FROM RFC1213-MIB + fastPath FROM BROADCOM-REF-MIB; + + fastPathBoxServices MODULE-IDENTITY + LAST-UPDATED "200802220000Z" -- 22 Feb 2008 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 100 Perimeter Park Dr., Suite H + Morrisville, NC 27560 + Tel: +1 919 865 2700" + + DESCRIPTION + "The Broadcom Private MIB for FASTPATH Box Services Feature." + + -- Revision history. + REVISION + "200802220000Z" -- 22 Feb 2008 12:00:00 GMT + DESCRIPTION + "Broadcom branding related changes." + + ::= { fastPath 43 } + +--************************************************************************************** +-- boxServicesGroup +-- +-- This group provides configuration and status of the Box Services +-- feature. +-- +--************************************************************************************** + + boxServicesGroup OBJECT IDENTIFIER ::= { fastPathBoxServices 1 } + + --************************************************************************************** + -- Some scalars + + boxServicesNormalTempRangeMin OBJECT-TYPE + SYNTAX INTEGER (-100..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Lower boundary of normal temperature range." + DEFVAL { 0 } + ::= { boxServicesGroup 1 } + + boxServicesNormalTempRangeMax OBJECT-TYPE + SYNTAX INTEGER (-100..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Upper boundary of normal temperature range." + DEFVAL { 45 } + ::= { boxServicesGroup 2 } + + boxServicesTemperatureTrapEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Enable or disable temperature change event trap, raised when temperature crosses boundaries of normal range" + DEFVAL { enable } + ::= { boxServicesGroup 3 } + + boxServicesPSMStateTrapEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Enable or disable Power Supply Module state change trap." + DEFVAL { enable } + ::= { boxServicesGroup 4 } + + boxServicesFanStateTrapEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Enable or disable Fan state change trap." + DEFVAL { enable } + ::= { boxServicesGroup 5 } + + --************************************************************************************** + -- boxServicesFans + + boxServicesFansTable OBJECT-TYPE + SYNTAX SEQUENCE OF BoxServicesFansEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Fan" + ::= { boxServicesGroup 6 } + + boxServicesFansEntry OBJECT-TYPE + SYNTAX BoxServicesFansEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Box Services Fan Entry" + INDEX { boxServicesFansIndex } + ::= { boxServicesFansTable 1 } + + BoxServicesFansEntry ::= SEQUENCE { + boxServicesFansIndex + Integer32, + boxServicesFanItemType + INTEGER, + boxServicesFanItemState + INTEGER, + boxServicesFanSpeed + Integer32, + boxServicesFanDutyLevel + Integer32 + } + + boxServicesFansIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique index of fan table entry" + ::= { boxServicesFansEntry 1 } + + boxServicesFanItemType OBJECT-TYPE + SYNTAX INTEGER { + fixed(1), + removable(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of fan" + ::= { boxServicesFansEntry 2 } + + + boxServicesFanItemState OBJECT-TYPE + SYNTAX INTEGER { + notpresent(1), + operational(2), + failed(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of fan" + ::= { boxServicesFansEntry 3 } + + + boxServicesFanSpeed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The speed of fan" + ::= { boxServicesFansEntry 4} + + boxServicesFanDutyLevel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The duty level of fan, in percents" + ::= { boxServicesFansEntry 5} + + + --************************************************************************************** + -- boxServicesPowSupplies + + boxServicesPowSuppliesTable OBJECT-TYPE + SYNTAX SEQUENCE OF BoxServicesPowSuppliesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Power supply" + ::= { boxServicesGroup 7 } + + boxServicesPowSuppliesEntry OBJECT-TYPE + SYNTAX BoxServicesPowSuppliesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Box Services Power Supply Entry" + INDEX { boxServicesPowSupplyIndex } + ::= { boxServicesPowSuppliesTable 1 } + + BoxServicesPowSuppliesEntry ::= SEQUENCE { + boxServicesPowSupplyIndex + Integer32, + boxServicesPowSupplyItemType + INTEGER, + boxServicesPowSupplyItemState + INTEGER + } + + boxServicesPowSupplyIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique index of power supply table entry" + ::= { boxServicesPowSuppliesEntry 1 } + + boxServicesPowSupplyItemType OBJECT-TYPE + SYNTAX INTEGER { + fixed(1), + removable(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of power supply" + ::= { boxServicesPowSuppliesEntry 2 } + + + boxServicesPowSupplyItemState OBJECT-TYPE + SYNTAX INTEGER { + notpresent(1), + operational(2), + failed(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of power supply" + ::= { boxServicesPowSuppliesEntry 3 } + + + --************************************************************************************** + -- boxServicesTempSensors + + + boxServicesTempSensorsTable OBJECT-TYPE + SYNTAX SEQUENCE OF BoxServicesTempSensorsEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "Temperature sensor + + This table has been obsoleted by boxServicesStackTempSensorsTable" + ::= { boxServicesGroup 8 } + + + boxServicesTempSensorsEntry OBJECT-TYPE + SYNTAX BoxServicesTempSensorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Box Services Temperature Sensor Entry" + INDEX { boxServicesTempSensorIndex } + ::= { boxServicesTempSensorsTable 1 } + + BoxServicesTempSensorsEntry ::= SEQUENCE { + boxServicesTempSensorIndex + Integer32, + boxServicesTempSensorType + INTEGER, + boxServicesTempSensorState + INTEGER, + boxServicesTempSensorTemperature + Integer32 + } + + boxServicesTempSensorIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique index of temperature sensor table entry" + ::= { boxServicesTempSensorsEntry 1 } + + + boxServicesTempSensorType OBJECT-TYPE + SYNTAX INTEGER { + fixed(1), + removable(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of temperature sensor" + ::= { boxServicesTempSensorsEntry 2 } + + + boxServicesTempSensorState OBJECT-TYPE + SYNTAX INTEGER { + normal(1), + warning(2), + critical(3), + shutdown(4), + notpresent(5), + notoperational(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of temperature sensor" + ::= { boxServicesTempSensorsEntry 3 } + + + boxServicesTempSensorTemperature OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The temperature value reported by sensor" + ::= { boxServicesTempSensorsEntry 4} + + --************************************************************************************** + -- boxServicesStackTempSensors + + + boxServicesStackTempSensorsTable OBJECT-TYPE + SYNTAX SEQUENCE OF BoxServicesStackTempSensorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Temperature sensor" + ::= { boxServicesGroup 9 } + + + boxServicesStackTempSensorsEntry OBJECT-TYPE + SYNTAX BoxServicesStackTempSensorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Box Services Temperature Sensor Entry" + INDEX { boxServicesUnitIndex, boxServicesStackTempSensorIndex } + ::= { boxServicesStackTempSensorsTable 1 } + + + BoxServicesStackTempSensorsEntry ::= SEQUENCE { + boxServicesUnitIndex + INTEGER, + boxServicesStackTempSensorIndex + Integer32, + boxServicesStackTempSensorType + INTEGER, + boxServicesStackTempSensorState + INTEGER, + boxServicesStackTempSensorTemperature + Integer32 + } + + + boxServicesUnitIndex OBJECT-TYPE + SYNTAX INTEGER (1..8) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of a stack unit" + ::= { boxServicesStackTempSensorsEntry 1 } + + + boxServicesStackTempSensorIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique index of temperature sensor table entry" + ::= { boxServicesStackTempSensorsEntry 2 } + + + boxServicesStackTempSensorType OBJECT-TYPE + SYNTAX INTEGER { + fixed(1), + removable(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of temperature sensor" + ::= { boxServicesStackTempSensorsEntry 3 } + + + boxServicesStackTempSensorState OBJECT-TYPE + SYNTAX INTEGER { + normal(1), + warning(2), + critical(3), + shutdown(4), + notpresent(5), + notoperational(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of temperature sensor" + ::= { boxServicesStackTempSensorsEntry 4 } + + + boxServicesStackTempSensorTemperature OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The temperature value reported by sensor" + ::= { boxServicesStackTempSensorsEntry 5 } + + +--************************************************************************************** +-- boxServicesNotificationsGroup +-- +-- This group provides notification definitions for the Box Services +-- feature. +-- +--************************************************************************************** + + boxServicesNotificationsGroup OBJECT IDENTIFIER ::= { fastPathBoxServices 2 } + + --************************************************************************************** + -- boxServices notification definitions + + boxsItemStateChangeEvent OBJECT-TYPE + SYNTAX INTEGER { + insertion(1), + removal(2), + becomeoperational(3), + failure(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This event describes states of the fan or power supply. + + insertion - hot-pluggable fan or power supply was inserted + removal - hot-pluggable fan or power supply was removed + becomeoperational - fan or power supply became operational after failure state + failure - fan or power supply failure happened, i.e. it is not able to perform its functions" + ::= { boxServicesNotificationsGroup 1 } + + boxsTemperatureChangeEvent OBJECT-TYPE + SYNTAX INTEGER { + abovethreshold(1), + belowthreshold(2), + withinnormalrange(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This event describes change of the temperature. + To avoid flipping on boundary conditions, it is allowed to send the trap + taking into account some margin around thresholds. + + abovethreshold - temperature increased and crossed upper threshold value + belowthreshold - temperature decreased and crossed lower threshold value + withinnormalrange - temperature returned to normal range (between threshold)" + ::= { boxServicesNotificationsGroup 2 } + + + + +--************************************************************************************** +-- Traps +--************************************************************************************** + + fastPathBoxServicesTraps OBJECT IDENTIFIER ::= { fastPathBoxServices 0 } + + + + boxsFanStateChange NOTIFICATION-TYPE + OBJECTS { + boxServicesFansIndex, + boxsItemStateChangeEvent + } + STATUS current + DESCRIPTION + "Trap is sent when fan state change happens." + ::= { fastPathBoxServicesTraps 1 } + + boxsPowSupplyStateChange NOTIFICATION-TYPE + OBJECTS { + boxServicesPowSupplyIndex, + boxsItemStateChangeEvent + } + STATUS current + DESCRIPTION + "Trap is sent when power supply state change happens." + ::= { fastPathBoxServicesTraps 2 } + + + boxsTemperatureChange NOTIFICATION-TYPE + OBJECTS { + boxServicesTempSensorIndex, + boxsTemperatureChangeEvent + } + STATUS current + DESCRIPTION + "Trap is sent when temperature is changing and crossing any of the thresholds" + ::= { fastPathBoxServicesTraps 3 } + +END diff --git a/mibs/FASTPATH-CAPTIVE-PORTAL-MIB.mib b/mibs/FASTPATH-CAPTIVE-PORTAL-MIB.mib new file mode 100644 index 0000000..705c2e9 --- /dev/null +++ b/mibs/FASTPATH-CAPTIVE-PORTAL-MIB.mib @@ -0,0 +1,1568 @@ +FASTPATH-CAPTIVE-PORTAL-MIB DEFINITIONS ::= BEGIN + +-- Broadcom Corporation FastPath Captive Portal MIB +-- Copyright Broadcom Corporation (2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, IpAddress, + IpAddress,Integer32, Counter32, Counter64, TimeTicks, Unsigned32 + FROM SNMPv2-SMI + RowStatus,MacAddress,TEXTUAL-CONVENTION + FROM SNMPv2-TC + DisplayString FROM RFC1213-MIB + ifIndex FROM IF-MIB + InterfaceIndex FROM IF-MIB + InetAddressType, InetAddress FROM INET-ADDRESS-MIB + ng7000managedswitch FROM BROADCOM-REF-MIB; + + fastPathCaptivePortal MODULE-IDENTITY + LAST-UPDATED "200707090000Z" -- 9 July 2007 12:00:00 GMT + ORGANIZATION "Netgear" + CONTACT-INFO + "" + DESCRIPTION + "The NETGEAR Private MIB for Captive Portal" + + -- Revision history. + REVISION + "200707090000Z" -- 09 July 2007 12:00:00 GMT + DESCRIPTION + "Initial version." + + ::= { ng7000managedswitch 38 } + + + -- + -- *********************************************************** + -- + -- Textual Conventions + -- + -- *********************************************************** + + CpCaptivePortalIntfCapabilitiesMap ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Description of the interface capabilities. + + The bit 'other(0)' indicates that the interface has capabilities + other than those listed below. + + The bit 'sessionTimeout(1)' indicates that the interface supports timeout + when traffic is not received or sent within the idle timeout period. + + The bit 'idleTimeout(2)' indicates that the interface supports timeout + when traffic is not received or sent within the idle timeout period. + + The bit 'maxBytesReceivedCounter(3)' indicates that the interface + supports displaying the number of bytes received from each client. + + The bit 'maxBytesTransmittedCounter(4)' indicates that the interface + supports displaying the number of bytes transmittted from each client. + + The bit 'maxPacketsReceivedCounter(5)' indicates that the interface + supports displaying the number of packets received from each client. + + The bit 'maxPacketsTransmittedCounter(6)' indicates that the interface + supports displaying the number of packets transmitted from each client. + + The bit 'clientRoaming(7)' indicates that the interfacesupports client + roaming. This is supported by wireless interfaces only" + SYNTAX BITS { + other(0), + sessionTimeout(1), + idleTimeout(2), + maxBytesReceivedCounter(3), + maxBytesTransmittedCounter(4), + maxPacketsReceivedCounter(5), + maxPacketsTransmittedCounter(6), + clientRoaming(7) + } + + + --************************************************************************************** + -- cpConfigGroup + --************************************************************************************** + + cpConfigGroup OBJECT IDENTIFIER ::= { fastPathCaptivePortal 1 } + + --************************************************************************************** + -- cpGlobalConfigGroup + --************************************************************************************** + + cpGlobalConfigGroup OBJECT IDENTIFIER ::= { cpConfigGroup 1 } + + cpAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable the captive portal feature on the system." + DEFVAL { disable } + ::= { cpGlobalConfigGroup 1 } + + cpAdditionalHttpPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The additional captive portal authentication server port for + HTTP web connection. The HTTP port default is 0 which denotes + no specific port and the default port (80) is used." + DEFVAL { 0 } + ::= { cpGlobalConfigGroup 2 } + +-- object support based on L7_MGMT_SECURITY_PACKAGE inclusion + cpAdditionalHttpSecurePort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The additional captive portal authentication server secure + port for HTTPS web connection. This additional HTTPS port default + is 0 which denotes no specific port and the default port (443) is used." + DEFVAL { 0 } + ::= { cpGlobalConfigGroup 3 } + +-- object support based on cluster support + cpPeerStatsReportingInterval OBJECT-TYPE + SYNTAX Integer32 ( 0 | 15..3600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The time interval between statistics reports to the cluster controller. + A value of 0 indicates reporting is disabled. + The value is represented in seconds." + DEFVAL { 120 } + ::= { cpGlobalConfigGroup 4 } + + cpAuthTimeout OBJECT-TYPE + SYNTAX Integer32 (60..600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The length of time to maintain an authentication session from a client. + This time is measured from when a client initiates an authentication request. + The value is represented in seconds." + DEFVAL { 300 } + ::= { cpGlobalConfigGroup 5 } + + + --************************************************************************************** + -- cpCaptivePortalConfigGroup + -- + --************************************************************************************** + cpCaptivePortalConfigGroup OBJECT IDENTIFIER ::= { cpConfigGroup 2 } + + cpCaptivePortalTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpCaptivePortalEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of config parms for instances of captive portal." + ::= { cpCaptivePortalConfigGroup 1 } + + cpCaptivePortalEntry OBJECT-TYPE + SYNTAX CpCaptivePortalEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Captive Portal instance entry." + INDEX { cpCaptivePortalInstanceId } + ::= { cpCaptivePortalTable 1 } + + CpCaptivePortalEntry ::= SEQUENCE { + cpCaptivePortalInstanceId + Unsigned32, + cpCaptivePortalConfigName + DisplayString, + cpCaptivePortalAdminMode + INTEGER, + cpCaptivePortalProtocolMode + INTEGER, + cpCaptivePortalVerificationMode + INTEGER, + cpCaptivePortalUserLogoutMode + INTEGER, + cpCaptivePortalURLRedirectMode + INTEGER, + cpCaptivePortalRedirectURL + DisplayString, + cpCaptivePortalSessionTimeout + Unsigned32, + cpCaptivePortalIdleTimeout + Unsigned32, + cpCaptivePortalRadiusAuthServer + DisplayString, + cpCaptivePortalMaxBandwidthUp + Unsigned32, + cpCaptivePortalMaxBandwidthDown + Unsigned32, + cpCaptivePortalMaxInputOctets + Unsigned32, + cpCaptivePortalMaxOutputOctets + Unsigned32, + cpCaptivePortalMaxTotalOctets + Unsigned32, + cpCaptivePortalUserGroup + Unsigned32, + cpCaptivePortalRowStatus + RowStatus + } + + cpCaptivePortalInstanceId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier associated with this instance of captive portal." + ::= { cpCaptivePortalEntry 1 } + + cpCaptivePortalConfigName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The name, in alpha-numeric characters, assigned to this captive portal configuration." + ::= { cpCaptivePortalEntry 2 } + + cpCaptivePortalAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable this instance of captive portal on the system." + DEFVAL { enable } + ::= { cpCaptivePortalEntry 3 } + + cpCaptivePortalProtocolMode OBJECT-TYPE + SYNTAX INTEGER { + https(0), + http(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The protocol mode to be used." + DEFVAL { http } + ::= { cpCaptivePortalEntry 4 } + + cpCaptivePortalVerificationMode OBJECT-TYPE + SYNTAX INTEGER { + guest(0), + local(1), + radius(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The type of user verification to perform." + DEFVAL { guest } + ::= { cpCaptivePortalEntry 5 } + + cpCaptivePortalUserGroup OBJECT-TYPE + SYNTAX Unsigned32(1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The group ID for this captive portal user database. + A group ID may be assigned for databases which use verification mode LOCAL." + DEFVAL { 1 } + ::= { cpCaptivePortalEntry 6 } + + cpCaptivePortalURLRedirectMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Whether the captive portal should redirect newly authenticated + clients to the configured URL. If this mode is disabled, the + default locale specific welcome page is used. If enabled, the + client is redirected to a configured URL." + DEFVAL { disable } + ::= { cpCaptivePortalEntry 7 } + + cpCaptivePortalRedirectURL OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The URL to which the newly authenticated client is redirected + if cpCaptivePortalURLRedirectMode is enabled." + ::= { cpCaptivePortalEntry 8 } + + cpCaptivePortalSessionTimeout OBJECT-TYPE + SYNTAX Unsigned32(0..86400) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The session timeout. After this limit has been reached the user + will be disconnected. If this value is set to 0, no timeout is enforced. + This value is represented in seconds." + DEFVAL { 0 } + ::= { cpCaptivePortalEntry 9 } + + cpCaptivePortalIdleTimeout OBJECT-TYPE + SYNTAX Unsigned32(0..900) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The idle timeout of the session. After this limit has been reached the user + will be disconnected. If this value is set to 0, no timeout is enforced. + This value is represented in seconds." + DEFVAL { 0 } + ::= { cpCaptivePortalEntry 10 } + + cpCaptivePortalRadiusAuthServer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The RADIUS authentication server name, in alpha-numeric characters (or dotted IP address), assigned to this captive portal configuration." + ::= { cpCaptivePortalEntry 11 } + + cpCaptivePortalMaxBandwidthUp OBJECT-TYPE + SYNTAX Unsigned32(0..536870911) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum bandwidth up/transmit bytes per second rate of the session. + After this limit has been reached the user will be disconnected. + If this value is set to 0, no rate limiting is enforced. + This value is represented in bytes (however; converted & stored as bits/sec)." + DEFVAL { 0 } + ::= { cpCaptivePortalEntry 12 } + + cpCaptivePortalMaxBandwidthDown OBJECT-TYPE + SYNTAX Unsigned32(0..536870911) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum bandwidth down/receive bytes per second rate of the session. + After this limit has been reached the user will be disconnected. + If this value is set to 0, no rate limiting is enforced. + This value is represented in bytes (however; converted & stored as bits/sec)." + DEFVAL { 0 } + ::= { cpCaptivePortalEntry 13 } + + cpCaptivePortalMaxInputOctets OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum input octets (bytes) allowed for the session. + After this limit has been reached the user will be disconnected. + If this value is set to 0, no rate limiting is enforced. + This value is represented in bytes." + DEFVAL { 0 } + ::= { cpCaptivePortalEntry 14 } + + cpCaptivePortalMaxOutputOctets OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum Output octets (bytes) allowed for the session. + After this limit has been reached the user will be disconnected. + If this value is set to 0, no rate limiting is enforced. + This value is represented in bytes." + DEFVAL { 0 } + ::= { cpCaptivePortalEntry 15 } + + cpCaptivePortalMaxTotalOctets OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum input/output octets (bytes) allowed for the session. + After this limit has been reached the user will be disconnected. + If this value is set to 0, no rate limiting is enforced. + This value is represented in bytes." + DEFVAL { 0 } + ::= { cpCaptivePortalEntry 16 } + + cpCaptivePortalUserLogoutMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Provides the captive portal authenticated user the ability to + logout of their session through the use of a logout page. The + connection will be terminated as a result of submitting the + logout request." + + DEFVAL { disable } + ::= { cpCaptivePortalEntry 17 } + + cpCaptivePortalRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The captive portal instance status. + + Supported values: + active(1) - valid instance + createAndGo(4) - creates a new instance + destroy(6) - removes an instance" + ::= { cpCaptivePortalEntry 18 } + + --************************************************************************************** + -- cpLocalUserDatabaseGroup + --************************************************************************************** + + cpLocalUserDatabaseGroup OBJECT IDENTIFIER ::= { cpConfigGroup 3 } + + -- --------------------------------- + -- cpLocalUserGroupTable + -- --------------------------------- + + cpLocalUserGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpLocalUserGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of group definitions for the local users. This database is + used by captive portal instances and local users if the verification mode is set to LOCAL." + ::= { cpLocalUserDatabaseGroup 1 } + + cpLocalUserGroupEntry OBJECT-TYPE + SYNTAX CpLocalUserGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The user group entry." + INDEX { cpLocalUserGroupIndex } + ::= { cpLocalUserGroupTable 1 } + + CpLocalUserGroupEntry ::= SEQUENCE { + cpLocalUserGroupIndex + Integer32, + cpLocalUserGroupName + DisplayString, + cpLocalUserGroupRowStatus + RowStatus + } + + cpLocalUserGroupIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The user group entry index." + ::= { cpLocalUserGroupEntry 1 } + + cpLocalUserGroupName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The user group name, limited to alpha-numeric strings (including the '-' and '_' characters)." + ::= { cpLocalUserGroupEntry 2 } + + cpLocalUserGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The user group entry status. + + Supported values: + active(1) - valid entry + createAndGo(4) - creates a new entry + destroy(6) - removes an entry" + ::= { cpLocalUserGroupEntry 3 } + + -- --------------------------------- + -- cpLocalUserTable + -- --------------------------------- + + cpLocalUserTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpLocalUserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of user definitions for the local database. This database is + used by a captive portal instance if its verification mode is set to LOCAL." + ::= { cpLocalUserDatabaseGroup 2 } + + cpLocalUserEntry OBJECT-TYPE + SYNTAX CpLocalUserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The local user entry." + INDEX { cpLocalUserIndex } + ::= { cpLocalUserTable 1 } + + CpLocalUserEntry ::= SEQUENCE { + cpLocalUserIndex + Integer32, + cpLocalUserName + DisplayString, + cpLocalUserPassword + DisplayString, + cpLocalUserSessionTimeout + Unsigned32, + cpLocalUserIdleTimeout + Unsigned32, + cpLocalUserMaxBandwidthUp + Unsigned32, + cpLocalUserMaxBandwidthDown + Unsigned32, + cpLocalUserMaxInputOctets + Unsigned32, + cpLocalUserMaxOutputOctets + Unsigned32, + cpLocalUserMaxTotalOctets + Unsigned32, + cpLocalUserRowStatus + RowStatus + } + + cpLocalUserIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The local user entry index." + ::= { cpLocalUserEntry 1 } + + cpLocalUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The user name, limited to alpha-numeric strings (including the '-' and '_' characters)." + ::= { cpLocalUserEntry 2 } + + cpLocalUserPassword OBJECT-TYPE + SYNTAX DisplayString (SIZE(8..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The user password. This object will return an empty string even if a password is set." + ::= { cpLocalUserEntry 3 } + + cpLocalUserSessionTimeout OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The session timeout in seconds. After this limit is reached, the user is disconnected. + If this value is set to 0, the default value for the captive portal is used." + DEFVAL { 0 } + ::= { cpLocalUserEntry 4 } + + cpLocalUserIdleTimeout OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The idle timeout of the session in seconds. After this limit is reached, the user is disconnected. + If this value is set to 0, the default value for the captive portal is used." + DEFVAL { 0 } + ::= { cpLocalUserEntry 5 } + + cpLocalUserMaxBandwidthUp OBJECT-TYPE + SYNTAX Unsigned32(0..536870911) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum bandwidth up/transmit bytes per second rate of the session. + After this limit has been reached the user will be disconnected. + If this value is set to 0, no rate limiting is enforced. + This value is represented in bytes (however; converted & stored as bits/sec)." + DEFVAL { 0 } + ::= { cpLocalUserEntry 6 } + + cpLocalUserMaxBandwidthDown OBJECT-TYPE + SYNTAX Unsigned32(0..536870911) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum bandwidth down/receive bytes per second rate of the session. + After this limit has been reached the user will be disconnected. + If this value is set to 0, no rate limiting is enforced. + This value is represented in bytes (however; converted & stored as bits/sec)." + DEFVAL { 0 } + ::= { cpLocalUserEntry 7 } + + cpLocalUserMaxInputOctets OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum input octets (bytes) allowed for the session. + After this limit has been reached the user will be disconnected. + If this value is set to 0, no rate limiting is enforced. + This value is represented in bytes." + DEFVAL { 0 } + ::= { cpLocalUserEntry 8 } + + cpLocalUserMaxOutputOctets OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum Output octets (bytes) allowed for the session. + After this limit has been reached the user will be disconnected. + If this value is set to 0, no rate limiting is enforced. + This value is represented in bytes." + DEFVAL { 0 } + ::= { cpLocalUserEntry 9 } + + cpLocalUserMaxTotalOctets OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum input/output octets (bytes) allowed for the session. + After this limit has been reached the user will be disconnected. + If this value is set to 0, no rate limiting is enforced. + This value is represented in bytes." + DEFVAL { 0 } + ::= { cpLocalUserEntry 10 } + + cpLocalUserRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The user entry status. + + Supported values: + active(1) - valid entry + createAndGo(4) - creates a new entry + destroy(6) - removes an entry" + ::= { cpLocalUserEntry 11 } + + -- --------------------------------- + -- cpLocalUserGroupAssociationTable + -- --------------------------------- + + cpLocalUserGroupAssociationTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpLocalUserGroupAssociationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The mapping of local user assignments to a user group." + ::= { cpLocalUserDatabaseGroup 3 } + + cpLocalUserGroupAssociationEntry OBJECT-TYPE + SYNTAX CpLocalUserGroupAssociationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The local user group association entry." + INDEX { cpLocalUserGroupAssociationUserIndex, cpLocalUserGroupAssociationGroupIndex } + ::= { cpLocalUserGroupAssociationTable 1 } + + CpLocalUserGroupAssociationEntry ::= SEQUENCE { + cpLocalUserGroupAssociationUserIndex + Integer32, + cpLocalUserGroupAssociationGroupIndex + Integer32, + cpLocalUserGroupAssociationRowStatus + RowStatus + } + + cpLocalUserGroupAssociationUserIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The local user entry index associated with a user group." + ::= { cpLocalUserGroupAssociationEntry 1 } + + cpLocalUserGroupAssociationGroupIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The user group entry index associated with a local user." + ::= { cpLocalUserGroupAssociationEntry 2 } + + cpLocalUserGroupAssociationRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The local user to user group association entry status. + + Supported values: + active(1) - valid entry + createAndGo(4) - creates a new entry + destroy(6) - removes an entry" + ::= { cpLocalUserGroupAssociationEntry 3 } + + + --************************************************************************************** + -- cpInterfaceAssociationGroup + --************************************************************************************** + + cpInterfaceAssociationGroup OBJECT IDENTIFIER ::= { cpConfigGroup 4 } + + cpInterfaceAssociationTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpInterfaceAssociationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The mapping of interface assignments to a captive portal instance." + ::= { cpInterfaceAssociationGroup 1 } + + cpInterfaceAssociationEntry OBJECT-TYPE + SYNTAX CpInterfaceAssociationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Captive Portal interface association entry." + INDEX { cpIntfAssociationCPID, cpIntfAssociationIfIndex } + ::= { cpInterfaceAssociationTable 1 } + + CpInterfaceAssociationEntry ::= SEQUENCE { + cpIntfAssociationCPID + Unsigned32, + cpIntfAssociationIfIndex + InterfaceIndex, + cpIntfAssociationRowStatus + RowStatus + } + + cpIntfAssociationCPID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Captive Portal instance identifier associated with an interface." + ::= { cpInterfaceAssociationEntry 1 } + + cpIntfAssociationIfIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The interface ifIndex to which the Captive Portal instance is associated." + ::= { cpInterfaceAssociationEntry 2 } + + cpIntfAssociationRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Captive Portal instance to interface association status. + + Supported values: + active(1) - valid entry + createAndGo(4) - creates a new entry + destroy(6) - removes an entry" + ::= { cpInterfaceAssociationEntry 3 } + + + --************************************************************************************** + -- cpStatusGroup + --************************************************************************************** + + cpStatusGroup OBJECT IDENTIFIER ::= { fastPathCaptivePortal 2 } + + --************************************************************************************** + -- cpCaptivePortalGlobalStatusGroup + --************************************************************************************** + + cpCaptivePortalGlobalStatusGroup OBJECT IDENTIFIER ::= { cpStatusGroup 1 } + + cpCaptivePortalOperStatus OBJECT-TYPE + SYNTAX INTEGER { + enablePending(0), + enabled(1), + disablePending(2), + disabled(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indication of the current operational state of the captive portal feature." + ::= { cpCaptivePortalGlobalStatusGroup 1 } + + cpCaptivePortalOperDisabledReason OBJECT-TYPE + SYNTAX INTEGER { + none(0), + adminDisabled(1), + noIPAddress(2), + noIPRoutingIntf(3), + routingDisabled(4) + } + + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The reason for the captive portal feature being operationally disabled." + ::= { cpCaptivePortalGlobalStatusGroup 2 } + + cpCaptivePortalIpv4Address OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of this captive portal." + ::= { cpCaptivePortalGlobalStatusGroup 3 } + + cpCaptivePortalInstanceMaxCount OBJECT-TYPE + SYNTAX Integer32(0..10) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of captive portal instances supported by the system." + ::= { cpCaptivePortalGlobalStatusGroup 4} + + cpCaptivePortalInstanceConfiguredCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of captive portal instances currently configured in the system." + ::= { cpCaptivePortalGlobalStatusGroup 5 } + + cpCaptivePortalInstanceActiveCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of captive portal instances currently active in the system." + ::= { cpCaptivePortalGlobalStatusGroup 6 } + + cpCaptivePortalAuthenUserMaxCount OBJECT-TYPE + SYNTAX Integer32(0..1024) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of authenticated users that the system can support." + ::= { cpCaptivePortalGlobalStatusGroup 7 } + + cpCaptivePortalLocalUserMaxCount OBJECT-TYPE + SYNTAX Integer32(0..1024) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of local users that the system can support." + ::= { cpCaptivePortalGlobalStatusGroup 8 } + + cpCaptivePortalConfiguredLocalUserCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of local users currently configured in the system." + ::= { cpCaptivePortalGlobalStatusGroup 9 } + + cpCaptivePortalAuthenUserCurrentCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of currently authenticated users across all captive portal instances." + ::= { cpCaptivePortalGlobalStatusGroup 10 } + + + --************************************************************************************** + -- cpCaptivePortalInstanceStatusGroup + --************************************************************************************** + + cpCaptivePortalInstanceStatusGroup OBJECT IDENTIFIER ::= { cpStatusGroup 2 } + + cpCaptivePortalInstanceStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpCaptivePortalInstanceStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This database is used to report status for a captive portal instance." + ::= { cpCaptivePortalInstanceStatusGroup 1 } + + cpCaptivePortalInstanceStatusEntry OBJECT-TYPE + SYNTAX CpCaptivePortalInstanceStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Captive portal instance status entry." + INDEX { cpCaptivePortalInstanceId } + ::= { cpCaptivePortalInstanceStatusTable 1 } + + CpCaptivePortalInstanceStatusEntry ::= SEQUENCE { + cpCaptivePortalInstanceOperStatus + INTEGER, + cpCaptivePortalInstanceOperDisabledReason + INTEGER, + cpCaptivePortalInstanceBlockStatus + INTEGER, + cpCaptivePortalInstanceAuthUserCount + Integer32 + } + + cpCaptivePortalInstanceOperStatus OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indication of the current operational state of the captive portal instance." + DEFVAL { disable } + ::= { cpCaptivePortalInstanceStatusEntry 1 } + + cpCaptivePortalInstanceOperDisabledReason OBJECT-TYPE + SYNTAX INTEGER { + none(0), + adminDisabled(1), + noRadiusServer(2), + noAccountingServer(3), + noIntfAssociation(4), + noActiveIntf(5), + noValidCert(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The reason the captive portal instance is not currently operational." + ::= { cpCaptivePortalInstanceStatusEntry 2 } + + cpCaptivePortalInstanceBlockStatus OBJECT-TYPE + SYNTAX INTEGER { + blockPending(0), + blocked(1), + notBlockPending(2), + notBlocked(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Block or unblock the captive portal instance for authentications." + DEFVAL { notBlocked } + ::= { cpCaptivePortalInstanceStatusEntry 3 } + + cpCaptivePortalInstanceAuthUserCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of currently authenticated users for this captive portal." + ::= { cpCaptivePortalInstanceStatusEntry 4 } + + + --************************************************************************************** + -- cpCaptivePortalIntfStatusGroup + --************************************************************************************** + + cpCaptivePortalIntfStatusGroup OBJECT IDENTIFIER ::= { cpStatusGroup 3 } + + cpCaptivePortalIntfStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpCaptivePortalIntfStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This database is used to report status for a captive portal instance interface." + ::= { cpCaptivePortalIntfStatusGroup 1 } + + cpCaptivePortalIntfStatusEntry OBJECT-TYPE + SYNTAX CpCaptivePortalIntfStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Captive portal instance interface status entry." + INDEX { cpCaptivePortalInstanceId, cpCaptivePortalIntfIfIndex } + ::= { cpCaptivePortalIntfStatusTable 1 } + + CpCaptivePortalIntfStatusEntry ::= SEQUENCE { + cpCaptivePortalIntfIfIndex + InterfaceIndex, + cpCaptivePortalIntfOperStatus + INTEGER, + cpCaptivePortalIntfOperDisabledReason + INTEGER, + cpCaptivePortalIntfBlockStatus + INTEGER, + cpCaptivePortalIntfAuthUserCount + Integer32 + } + + cpCaptivePortalIntfIfIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ifIndex of the interface associated with this entry." + ::= { cpCaptivePortalIntfStatusEntry 1 } + + cpCaptivePortalIntfOperStatus OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indication of whether captive portal instance is active on the interface." + DEFVAL { disable } + ::= { cpCaptivePortalIntfStatusEntry 2 } + + cpCaptivePortalIntfOperDisabledReason OBJECT-TYPE + SYNTAX INTEGER { + none(0), + intfNotAttached(1), + adminDisabled(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The reason for the captive portal instance interface not being currently operational." + ::= { cpCaptivePortalIntfStatusEntry 3 } + + cpCaptivePortalIntfBlockStatus OBJECT-TYPE + SYNTAX INTEGER { + blocked(0), + notBlocked(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indication of whether the captive portal instance interface is + currently blocked for authentications." + DEFVAL { notBlocked } + ::= { cpCaptivePortalIntfStatusEntry 4 } + + cpCaptivePortalIntfAuthUserCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of currently authenticated users for this captive portal instance interface." + ::= { cpCaptivePortalIntfStatusEntry 5 } + + + --************************************************************************************** + -- cpCaptivePortalIntfDatabaseGroup + --************************************************************************************** + + cpCaptivePortalIntfDatabaseGroup OBJECT IDENTIFIER ::= { cpStatusGroup 4 } + + cpCaptivePortalIntfDatabaseTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpCaptivePortalIntfDatabaseEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of definitions for interfaces that are captive portal capable. + This table identifies services that are provided on this interface." + ::= { cpCaptivePortalIntfDatabaseGroup 1 } + + cpCaptivePortalIntfDatabaseEntry OBJECT-TYPE + SYNTAX CpCaptivePortalIntfDatabaseEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { cpCaptivePortalIntfIfIndex } + ::= { cpCaptivePortalIntfDatabaseTable 1 } + + CpCaptivePortalIntfDatabaseEntry ::= SEQUENCE { + cpCaptivePortalIntfCapabilities + CpCaptivePortalIntfCapabilitiesMap + } + + cpCaptivePortalIntfCapabilities OBJECT-TYPE + SYNTAX CpCaptivePortalIntfCapabilitiesMap + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The bitmap value used to identify which capabilities are available on the interface." + ::= { cpCaptivePortalIntfDatabaseEntry 1 } + + + --************************************************************************************** + -- cpCaptivePortalClientStatusGroup + --************************************************************************************** + + cpCaptivePortalClientStatusGroup OBJECT IDENTIFIER ::= { cpStatusGroup 5 } + + cpCaptivePortalClientStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpCaptivePortalClientStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This database is used to report status of authenticated clients." + ::= { cpCaptivePortalClientStatusGroup 1 } + + cpCaptivePortalClientStatusEntry OBJECT-TYPE + SYNTAX CpCaptivePortalClientStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Captive portal client status entry." + INDEX { cpCaptivePortalClientMacAddress } + ::= { cpCaptivePortalClientStatusTable 1 } + + CpCaptivePortalClientStatusEntry ::= SEQUENCE { + cpCaptivePortalClientMacAddress + MacAddress, + cpCaptivePortalClientIpAddress + IpAddress, + cpCaptivePortalClientUserName + DisplayString, + cpCaptivePortalClientProtocolMode + INTEGER, + cpCaptivePortalClientVerificationMode + INTEGER, + cpCaptivePortalClientAssocIfIndex + InterfaceIndex, + cpCaptivePortalClientCPID + Integer32, + cpCaptivePortalClientSessionTime + TimeTicks, + cpCaptivePortalClientSwitchMacAddress + MacAddress, + cpCaptivePortalClientSwitchIpAddress + IpAddress, + cpCaptivePortalClientSwitchType + INTEGER, + cpCaptivePortalClientDeauthAction + INTEGER, + cpCaptivePortalClientAuthFailureConnectionAttempts + Integer32 + } + + cpCaptivePortalClientMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MAC address of the workstation from which the client is authenticated." + ::= { cpCaptivePortalClientStatusEntry 1 } + + cpCaptivePortalClientIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of the workstation from which the client is authenticated." + ::= { cpCaptivePortalClientStatusEntry 2 } + + cpCaptivePortalClientUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "User name (or Guest ID) of the connected client." + ::= { cpCaptivePortalClientStatusEntry 3 } + + cpCaptivePortalClientProtocolMode OBJECT-TYPE + SYNTAX INTEGER { + https(0), + http(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Protocol mode used for the client authentication." + ::= { cpCaptivePortalClientStatusEntry 4 } + + cpCaptivePortalClientVerificationMode OBJECT-TYPE + SYNTAX INTEGER { + guest(0), + local(1), + radius(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of user verification performed for the client authentication." + ::= { cpCaptivePortalClientStatusEntry 5 } + + cpCaptivePortalClientAssocIfIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The interface on which the client was authenticated." + ::= { cpCaptivePortalClientStatusEntry 6 } + + cpCaptivePortalClientCPID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The captive portal instance on which the client was authenticated." + ::= { cpCaptivePortalClientStatusEntry 7 } + + cpCaptivePortalClientSessionTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time (in seconds) since the client was authenticated." + ::= { cpCaptivePortalClientStatusEntry 8 } + +-- object support based on cluster support + cpCaptivePortalClientSwitchMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MAC address of the switch to which the client is authenticated." + ::= { cpCaptivePortalClientStatusEntry 9 } + +-- object support based on cluster support + cpCaptivePortalClientSwitchIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of the switch to which the client is authenticated." + ::= { cpCaptivePortalClientStatusEntry 10 } + +-- object support based on cluster support + cpCaptivePortalClientSwitchType OBJECT-TYPE + SYNTAX INTEGER { + peer(1), + local(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The switch (peer or local) to which the client is authenticated." + ::= { cpCaptivePortalClientStatusEntry 11 } + + cpCaptivePortalClientDeauthAction OBJECT-TYPE + SYNTAX INTEGER { + none(1), + start(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This is an action object. Setting this object to start will initiate the + deauthentication of authenticated client. Read on this object will always return none." + ::= { cpCaptivePortalClientStatusEntry 12 } + + cpCaptivePortalClientAuthFailureConnectionAttempts OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The captive portal authentication failure count." + ::= { cpCaptivePortalClientStatusEntry 13 } + + + -- ------------------------------------ + -- cpCaptivePortalClientStatisticsTable + -- ------------------------------------ + + cpCaptivePortalClientStatisticsTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpCaptivePortalClientStatisticsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of statistics for each active session." + ::= { cpCaptivePortalClientStatusGroup 2 } + + cpCaptivePortalClientStatisticsEntry OBJECT-TYPE + SYNTAX CpCaptivePortalClientStatisticsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Captive portal client statistics entry." + AUGMENTS { cpCaptivePortalClientStatusEntry } + ::= { cpCaptivePortalClientStatisticsTable 1 } + + CpCaptivePortalClientStatisticsEntry ::= SEQUENCE { + cpCaptivePortalClientBytesReceived + Counter64, + cpCaptivePortalClientBytesTransmitted + Counter64, + cpCaptivePortalClientPacketsReceived + Counter64, + cpCaptivePortalClientPacketsTransmitted + Counter64 + } + + cpCaptivePortalClientBytesReceived OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of bytes received by this client." + ::= { cpCaptivePortalClientStatisticsEntry 1 } + + cpCaptivePortalClientBytesTransmitted OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of bytes transmitted by this client." + ::= { cpCaptivePortalClientStatisticsEntry 2 } + + cpCaptivePortalClientPacketsReceived OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of packets received by this client." + ::= { cpCaptivePortalClientStatisticsEntry 3 } + + cpCaptivePortalClientPacketsTransmitted OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of packets transmitted by this client." + ::= { cpCaptivePortalClientStatisticsEntry 4 } + + + --************************************************************************************** + -- cpCaptivePortalIntfClientAssocGroup + --************************************************************************************** + + cpCaptivePortalIntfClientAssocGroup OBJECT IDENTIFIER ::= { cpStatusGroup 6 } + + cpCaptivePortalIntfClientAssocTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpCaptivePortalIntfClientAssocEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This database is used to report clients associated with a + particular captive portal interface." + ::= { cpCaptivePortalIntfClientAssocGroup 1 } + + cpCaptivePortalIntfClientAssocEntry OBJECT-TYPE + SYNTAX CpCaptivePortalIntfClientAssocEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Captive portal interface client status entry." + INDEX { cpCaptivePortalIntfClientIfIndex, cpCaptivePortalIntfClientAssocMacAddress } + ::= { cpCaptivePortalIntfClientAssocTable 1 } + + CpCaptivePortalIntfClientAssocEntry ::= SEQUENCE { + cpCaptivePortalIntfClientIfIndex + InterfaceIndex, + cpCaptivePortalIntfClientAssocMacAddress + MacAddress, + cpCaptivePortalIntfClientAssocRowStatus + RowStatus + } + + cpCaptivePortalIntfClientIfIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The interface on which the client was authenticated." + ::= { cpCaptivePortalIntfClientAssocEntry 1 } + + cpCaptivePortalIntfClientAssocMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MAC address of the workstation from which the client is authenticated." + ::= { cpCaptivePortalIntfClientAssocEntry 2 } + + cpCaptivePortalIntfClientAssocRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the row-status of this entry. For a valid entry, + the row-status will return active(1). This is the only supported value." + ::= { cpCaptivePortalIntfClientAssocEntry 3 } + + + --************************************************************************************** + -- cpCaptivePortalInstanceClientAssocGroup + --************************************************************************************** + + cpCaptivePortalInstanceClientAssocGroup OBJECT IDENTIFIER ::= { cpStatusGroup 7 } + + cpCaptivePortalInstanceClientAssocTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpCaptivePortalInstanceClientAssocEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This database is used to report clients associated with a + particular captive portal instance." + ::= { cpCaptivePortalInstanceClientAssocGroup 1 } + + cpCaptivePortalInstanceClientAssocEntry OBJECT-TYPE + SYNTAX CpCaptivePortalInstanceClientAssocEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Captive Portal instance client status entry." + INDEX { cpCaptivePortalInstanceClientAssocInstanceId, cpCaptivePortalInstanceClientAssocMacAddress } + ::= { cpCaptivePortalInstanceClientAssocTable 1 } + + CpCaptivePortalInstanceClientAssocEntry ::= SEQUENCE { + cpCaptivePortalInstanceClientAssocInstanceId + Integer32, + cpCaptivePortalInstanceClientAssocMacAddress + MacAddress, + cpCaptivePortalInstanceClientAssocRowStatus + RowStatus + } + + cpCaptivePortalInstanceClientAssocInstanceId OBJECT-TYPE + SYNTAX Integer32 (1..10) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The instance ID associated with this client." + ::= { cpCaptivePortalInstanceClientAssocEntry 1 } + + cpCaptivePortalInstanceClientAssocMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MAC address of the workstation from which the client is authenticated." + ::= { cpCaptivePortalInstanceClientAssocEntry 2 } + + cpCaptivePortalInstanceClientAssocRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the row-status of this entry. For a valid entry, + the row-status will return active(1). This is the only supported value." + ::= { cpCaptivePortalInstanceClientAssocEntry 3 } + + +--************************************************************************************** +-- cpTrapsConfig +--************************************************************************************** + + cpTrapsConfig OBJECT IDENTIFIER ::= { fastPathCaptivePortal 3 } + + cpTrapMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flag to enable/disable following Captive Portal SNMP traps: + + Client Authentication Failures, + Client Connections, + Client Database Full, + Client Disconnections." + DEFVAL { disable } + ::= { cpTrapsConfig 1 } + + cpClientAuthenticationFailureTrapMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flag to enable/disable client authentication failure SNMP traps." + DEFVAL { disable } + ::= { cpTrapsConfig 2 } + + cpClientConnectTrapMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flag to enable/disable client connection SNMP traps." + DEFVAL { disable } + ::= { cpTrapsConfig 3 } + + cpClientDatabaseFullTrapMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flag to enable/disable client database full SNMP traps." + DEFVAL { disable } + ::= { cpTrapsConfig 4 } + + cpClientDisconnectTrapMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flag to enable/disable client disconnection SNMP traps." + DEFVAL { disable } + ::= { cpTrapsConfig 5 } + + + --************************************************************************************** + -- cpTraps + --************************************************************************************** + + cpTraps OBJECT IDENTIFIER ::= { fastPathCaptivePortal 4 } + + cpClientAuthenticationFailure NOTIFICATION-TYPE + OBJECTS { cpCaptivePortalClientMacAddress,cpCaptivePortalClientIpAddress,cpCaptivePortalClientCPID,cpCaptivePortalClientAssocIfIndex,cpCaptivePortalClientSwitchMacAddress,cpCaptivePortalClientUserName,cpCaptivePortalClientAuthFailureConnectionAttempts } + STATUS current + DESCRIPTION + "A cpClientAuthenticationFailure trap signifies that the SNMP entity, + acting in an agent role, has detected a client authentication failure." + ::= { cpTraps 1 } + + cpClientConnect NOTIFICATION-TYPE + OBJECTS { cpCaptivePortalClientMacAddress,cpCaptivePortalClientAssocIfIndex,cpCaptivePortalClientIpAddress,cpCaptivePortalClientCPID,cpCaptivePortalClientSwitchMacAddress } + STATUS current + DESCRIPTION + "A cpClientConnect trap signifies that the SNMP entity, + acting in an agent role, has detected a client connection." + ::= { cpTraps 2 } + + cpClientDatabaseFull NOTIFICATION-TYPE + OBJECTS { cpCaptivePortalClientMacAddress } + STATUS current + DESCRIPTION + "A cpClientDatabaseFull trap signifies that the SNMP entity, + acting in an agent role, has detected that client authentication database is full." + ::= { cpTraps 3 } + + cpClientDisconnect NOTIFICATION-TYPE + OBJECTS { cpCaptivePortalClientMacAddress,cpCaptivePortalClientAssocIfIndex,cpCaptivePortalClientIpAddress,cpCaptivePortalClientCPID,cpCaptivePortalClientSwitchMacAddress } + STATUS current + DESCRIPTION + "A cpClientDisconnect trap signifies that the SNMP entity, + acting in an agent role, has detected a client disconnection." + ::= { cpTraps 4 } + +END diff --git a/mibs/FASTPATH-DENIALOFSERVICE-PRIVATE-MIB.mib b/mibs/FASTPATH-DENIALOFSERVICE-PRIVATE-MIB.mib new file mode 100644 index 0000000..f7d9dd3 --- /dev/null +++ b/mibs/FASTPATH-DENIALOFSERVICE-PRIVATE-MIB.mib @@ -0,0 +1,291 @@ +-- Denial of Service MIB overview: +-- Denial of Service MIB falls under fastPath MIB node of the private subtree. + +FASTPATH-DENIALOFSERVICE-PRIVATE-MIB DEFINITIONS ::= BEGIN + +-- BROADCOM FASTPATH Denial of Service MIB +-- Copyright Broadcom Corporation (2004-2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, + Unsigned32, Integer32 FROM SNMPv2-SMI + TEXTUAL-CONVENTION, + RowStatus, MacAddress FROM SNMPv2-TC + ifIndex FROM IF-MIB + + DisplayString FROM RFC1213-MIB + fastPath FROM BROADCOM-REF-MIB; + + fastPathDenialOfService MODULE-IDENTITY + LAST-UPDATED "200705230000Z" -- 23 May 2007 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 100 Perimeter Park Dr., Suite H + Morrisville, NC 27560 + Tel: +1 919 865 2700" + + DESCRIPTION + "The Broadcom Private MIB for FASTPATH Denial of Service." + + -- Revision history. + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Broadcom branding related changes." + + ::= { fastPath 31 } + + + --************************************************************************************** + -- agentSwitchDenialOfServiceGroup + -- + --************************************************************************************** + + agentSwitchDenialOfServiceGroup OBJECT IDENTIFIER ::= { fastPathDenialOfService 1 } + + + agentSwitchDenialOfServiceSIPDIPMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or Disables the SIP=DIP Denial of Service + protection feature." + DEFVAL { disable } + ::= { agentSwitchDenialOfServiceGroup 1 } + + agentSwitchDenialOfServiceSMACDMACMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or Disables the SMAC=DMAC Denial of Service + protection feature." + DEFVAL { disable } + ::= { agentSwitchDenialOfServiceGroup 9 } + + agentSwitchDenialOfServiceFirstFragMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or Disables the First Fragment Denial of Service + protection feature." + DEFVAL { disable } + ::= { agentSwitchDenialOfServiceGroup 2 } + + agentSwitchDenialOfServiceTCPHdrSize OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the Minimum allowed TCP Header size. + This is active if the First Fragment Denial of Service + protection feature is enabled." + DEFVAL { 20 } + ::= { agentSwitchDenialOfServiceGroup 3 } + + agentSwitchDenialOfServiceTCPFragMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or Disables the TCP Fragment Denial of Service + protection feature." + DEFVAL { disable } + ::= { agentSwitchDenialOfServiceGroup 4 } + + agentSwitchDenialOfServiceTCPOffsetMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or Disables the TCP Offset Denial of Service + protection feature." + DEFVAL { disable } + ::= { agentSwitchDenialOfServiceGroup 10 } + + agentSwitchDenialOfServiceTCPFlagMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or Disables the TCP Flag Denial of Service + protection feature." + DEFVAL { disable } + ::= { agentSwitchDenialOfServiceGroup 5 } + + agentSwitchDenialOfServiceTCPFlagSeqMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or Disables the TCP Flag and Sequence Denial of Service + protection feature." + DEFVAL { disable } + ::= { agentSwitchDenialOfServiceGroup 11 } + + agentSwitchDenialOfServiceTCPSynMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or Disables the TCP Syn Denial of Service + protection feature." + DEFVAL { disable } + ::= { agentSwitchDenialOfServiceGroup 14 } + + agentSwitchDenialOfServiceTCPSynFinMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or Disables the TCP Syn and Fin Denial of Service + protection feature." + DEFVAL { disable } + ::= { agentSwitchDenialOfServiceGroup 15 } + + agentSwitchDenialOfServiceTCPFinUrgPshMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or Disables the TCP Fin and Urg and Psh Denial of Service + protection feature." + DEFVAL { disable } + ::= { agentSwitchDenialOfServiceGroup 16 } + + agentSwitchDenialOfServiceL4PortMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or Disables the L4 Port Denial of Service + protection feature." + DEFVAL { disable } + ::= { agentSwitchDenialOfServiceGroup 6 } + + agentSwitchDenialOfServiceTCPPortMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or Disables the TCP Port Denial of Service + protection feature." + DEFVAL { disable } + ::= { agentSwitchDenialOfServiceGroup 12 } + + agentSwitchDenialOfServiceUDPPortMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or Disables the UDP Port Denial of Service + protection feature." + DEFVAL { disable } + ::= { agentSwitchDenialOfServiceGroup 13 } + + agentSwitchDenialOfServiceICMPMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or Disables the ICMP Denial of Service + protection feature." + DEFVAL { disable } + ::= { agentSwitchDenialOfServiceGroup 7 } + + agentSwitchDenialOfServiceICMPSize OBJECT-TYPE + SYNTAX Integer32 (0..16376) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the Maximum allowed ICMP data size. + This is active if the ICMP Denial of Service + protection feature is enabled." + DEFVAL { 512 } + ::= { agentSwitchDenialOfServiceGroup 8 } + + agentSwitchDenialOfServiceICMPv6Size OBJECT-TYPE + SYNTAX Integer32 (0..1023) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the Maximum allowed ICMPv6 data size. + This is active if the ICMPv6 Denial of Service + protection feature is enabled." + DEFVAL { 1023 } + ::= { agentSwitchDenialOfServiceGroup 18 } + + agentSwitchDenialOfServiceICMPFragMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or Disables the ICMP Fragment Denial of Service + protection feature." + DEFVAL { disable } + ::= { agentSwitchDenialOfServiceGroup 19 } + + +END + diff --git a/mibs/FASTPATH-DHCP6SERVER-PRIVATE-MIB.mib b/mibs/FASTPATH-DHCP6SERVER-PRIVATE-MIB.mib new file mode 100644 index 0000000..3181226 --- /dev/null +++ b/mibs/FASTPATH-DHCP6SERVER-PRIVATE-MIB.mib @@ -0,0 +1,1183 @@ +-- DHCPv6 Server MIB overview: +-- DHCPv6 Server MIB falls under fastPath MIB node of the private subtree. + + +FASTPATH-DHCP6SERVER-PRIVATE-MIB DEFINITIONS ::= BEGIN + +-- Broadcom Corporation FASTPATH DHCPv6 Server MIB +-- Copyright Broadcom Corporation (2002-2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, IpAddress, + Integer32, Unsigned32, TimeTicks, Counter32 + FROM SNMPv2-SMI + TEXTUAL-CONVENTION, RowStatus, RowPointer, MacAddress, + StorageType, TruthValue FROM SNMPv2-TC + + DisplayString, PhysAddress FROM RFC1213-MIB + Ipv6IfIndex, Ipv6Address, Ipv6AddressPrefix, + Ipv6AddressIfIdentifier, Ipv6IfIndexOrZero + FROM IPV6-TC + fastPath FROM BROADCOM-REF-MIB; + + fastPathDHCP6ServerPrivate MODULE-IDENTITY + LAST-UPDATED "200705230000Z" -- 23 May 2007 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 13000 Weston Parkway Suite #105 + Cary, NC 27513 + Tel: +1 919 865 2700" + DESCRIPTION + "The Broadcom Private MIB for FASTPATH DHCPv6 Server/Relay" + + -- Revision history. + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Broadcom branding related changes." + + ::= { fastPath 25 } + + + --************************************************************************************** + -- agentDhcp6ServerGroup -> contains MIB objects displaying various properties + -- of a DHCPv6 server. + -- + --************************************************************************************** + + agentDhcp6ServerGroup OBJECT IDENTIFIER ::= { fastPathDHCP6ServerPrivate 1 } + + agentDhcp6ServerAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Admin-mode of the DHCPv6 Server/Relay." + DEFVAL { disable } + ::= { agentDhcp6ServerGroup 1 } + + agentDhcp6ServerRelayOptParm OBJECT-TYPE + SYNTAX Integer32 (54..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " The numeric value for the Relay Agent Information Option to be used by DHCPv6 + Server/Relay." + DEFVAL { 54 } + ::= { agentDhcp6ServerGroup 2 } + + agentDhcp6ServerRelayOptRemoteIdSuboptParm OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " The numeric value for the Relay Agent Information Option Remote-ID Sub-option to + be used by DHCPv6 Server/Relay." + DEFVAL { 1 } + ::= { agentDhcp6ServerGroup 3 } + + agentDhcp6ServerDuid OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The DHCPv6 Server unique DUID. This value cannot be modified" + ::= { agentDhcp6ServerGroup 4 } + + agentDhcp6ServerMalformedMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of malformed(truncated or corrupt) messages that have been received by the + DHCPv6 server." + ::= { agentDhcp6ServerGroup 5 } + + agentDhcp6ServerDiscardedMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of discarded messages that have been received by the DHCPv6 server." + ::= { agentDhcp6ServerGroup 6 } + + agentDhcp6ServerSOLICITMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type SOLICIT that have been received by the DHCPv6 + server." + ::= { agentDhcp6ServerGroup 7 } + + agentDhcp6ServerREQUESTMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type REQUEST that have been received by the DHCPv6 + server." + ::= { agentDhcp6ServerGroup 8 } + + agentDhcp6ServerCONFIRMMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type CONFIRM that have been received by the DHCPv6 + server." + ::= { agentDhcp6ServerGroup 9 } + + agentDhcp6ServerRENEWMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type RENEW that have been received by the DHCPv6 + server." + ::= { agentDhcp6ServerGroup 10 } + + agentDhcp6ServerREBINDMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type REBIND that have been received by the DHCPv6 + server." + ::= { agentDhcp6ServerGroup 11 } + + agentDhcp6ServerRELEASEMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type RELEASE that have been received by the DHCPv6 + server." + ::= { agentDhcp6ServerGroup 12 } + + agentDhcp6ServerDECLINEMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type DECLINE that have been received by the DHCPv6 + server." + ::= { agentDhcp6ServerGroup 13 } + + agentDhcp6ServerINFORMREQMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type INFORMATION-REQUEST that have been received by + the DHCPv6 server." + ::= { agentDhcp6ServerGroup 14 } + + agentDhcp6ServerRELAYREPLYMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type RELAY-REPLY that have been received by the + DHCPv6 server." + ::= { agentDhcp6ServerGroup 15 } + + agentDhcp6ServerRELAYFORWMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type RELAY-FORWARD that have been received by the + DHCPv6 server." + ::= { agentDhcp6ServerGroup 16 } + + agentDhcp6ServerADVERTISEMessagesSent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type ADVERTISE that have been sent by the DHCPv6 + server." + ::= { agentDhcp6ServerGroup 17 } + + agentDhcp6ServerREPLYMessagesSent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type REPLY that have been sent by the DHCPv6 server." + ::= { agentDhcp6ServerGroup 18 } + + agentDhcp6ServerRECONFIGUREMessagesSent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type RECONFIGURE that have been sent by the DHCPv6 + server." + ::= { agentDhcp6ServerGroup 19 } + + agentDhcp6ServerRELAYREPLYMessagesSent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type RELAY-REPLY that have been sent by the DHCPv6 + server." + ::= { agentDhcp6ServerGroup 20 } + + agentDhcp6ServerRELAYFORWMessagesSent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type RELAY-FORWARD that have been sent by the DHCPv6 + server." + ::= { agentDhcp6ServerGroup 21 } + + agentDhcp6ServerClearStatistics OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Clears the DHCPv6 server statistics." + DEFVAL { disable } + ::= { agentDhcp6ServerGroup 22 } + +--********************************************************************************** +-- agentDhcp6ServerPoolConfigGroup +-- This group contains four tables : agentDhcp6ServerPoolConfigTable, +-- agentDhcp6ServerPoolDnsDomainTable, +-- agentDhcp6ServerPoolDnsServerTable, +-- agentDhcp6ServerPoolAddressTable +-- +-- agentDhcp6ServerPoolConfigTable -> This table is used to configure a +-- new DHCPv6 pool on a DHCPv6 server. This table +-- is also used to delete a configured DHCPv6 pool. +-- +-- agentDhcp6ServerPoolDnsDomainTable -> This table is used to configure DNS domain names +-- for DHCPv6 "stateless" information requests. +-- agentDhcp6ServerPoolDnsServerTable -> This table is used to configure DNS IPv6 server +-- addresses for DHCPv6 "stateless" information requests. +-- agentDhcp6ServerPoolAllocationTable -> This table is used to configure IPv6 prefixes +-- for DHCPv6 Server prefix delegation to DHCPv6 clients. +-- +--********************************************************************************** + + agentDhcp6ServerPoolConfigGroup OBJECT IDENTIFIER ::= { fastPathDHCP6ServerPrivate 2 } + + agentDhcp6ServerPoolNameCreate OBJECT-TYPE + SYNTAX DisplayString (SIZE(0|1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A pool is created by applying write operation + on this MIB object and providing a new pool-name. + Get operation on this MIB object returns a + null-value, as for the purpose of viewing the + pool name, the user should perform the + traversal of agentDhcp6ServerPoolConfigTable. + For this reason the get operation on object + agentDhcp6ServerPoolNameCreate becomes insignificant." + ::= { agentDhcp6ServerPoolConfigGroup 1 } + + agentDhcp6ServerPoolConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDhcp6ServerPoolConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the DHCPv6 Server Pool configuration entries." + ::= { agentDhcp6ServerPoolConfigGroup 2 } + + agentDhcp6ServerPoolConfigEntry OBJECT-TYPE + SYNTAX AgentDhcp6ServerPoolConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for a DHCPv6 server pool." + INDEX { agentDhcp6ServerPoolIndex } + ::= { agentDhcp6ServerPoolConfigTable 1 } + + AgentDhcp6ServerPoolConfigEntry ::= SEQUENCE { + agentDhcp6ServerPoolIndex + Unsigned32, + agentDhcp6ServerPoolName + DisplayString, + agentDhcp6ServerPoolType + INTEGER, + agentDhcp6ServerPoolDnsDomainCreate + DisplayString, + agentDhcp6ServerPoolDnsServerCreate + Ipv6Address, + agentDhcp6ServerPoolRowStatus + RowStatus + } + + agentDhcp6ServerPoolIndex OBJECT-TYPE + SYNTAX Unsigned32 (1..512) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Pool Index, which 'll be used as index for the PoolConfig Table." + ::= { agentDhcp6ServerPoolConfigEntry 1 } + + agentDhcp6ServerPoolName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the DHCPv6 pool. This value cannot be modified" + ::= { agentDhcp6ServerPoolConfigEntry 2 } + + agentDhcp6ServerPoolType OBJECT-TYPE + SYNTAX INTEGER{ + un-allocated(0), + dynamic(1), + manual(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the type of the binding that is associated with this pool." + ::= { agentDhcp6ServerPoolConfigEntry 3 } + + agentDhcp6ServerPoolDnsDomainCreate OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A DNS domain for a pool is created by applying write operation + on this MIB object and providing a new DNS domain name. + Get operation on this MIB object returns a + null-value, as for the purpose of viewing the + DNS domain name, the user should perform the + traversal of agentDhcp6ServerPoolDnsDomainTable. + For this reason the get operation on object + agentDhcp6ServerDnsDomainCreate becomes insignificant." + ::= { agentDhcp6ServerPoolConfigEntry 4 } + + agentDhcp6ServerPoolDnsServerCreate OBJECT-TYPE + SYNTAX Ipv6Address + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A DNS server for a pool is created by applying write operation + on this MIB object and providing a new DNS server address. + Get operation on this MIB object returns a + null-value, as for the purpose of viewing the + DNS server address, the user should perform the + traversal of agentDhcp6ServerPoolDnsServerTable. + For this reason the get operation on object + agentDhcp6ServerDnsServerCreate becomes insignificant." + ::= { agentDhcp6ServerPoolConfigEntry 5 } + + agentDhcp6ServerPoolRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The row status variable is used according to installation + and removal conventions for conceptual rows. When a pool is created by applying write + operation on 'agentDhcp6ServerPoolCreateName',row-status becomes 'active'. If + row-status for a poolEntry is set to 'destroy', the corresponding pool gets deleted. " + + ::= { agentDhcp6ServerPoolConfigEntry 6 } + +--********************************************************************************** + + agentDhcp6ServerPoolDnsDomainTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDhcp6ServerPoolDnsDomainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the DHCPv6 Server Pool's DNS domain entries." + ::= { agentDhcp6ServerPoolConfigGroup 4 } + + agentDhcp6ServerPoolDnsDomainEntry OBJECT-TYPE + SYNTAX AgentDhcp6ServerPoolDnsDomainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for a DHCPv6 server pool's DNS domains." + INDEX { agentDhcp6ServerPoolIndex, + agentDhcp6ServerPoolDnsDomainIndex } + ::= { agentDhcp6ServerPoolDnsDomainTable 1 } + + -- All objects are of type read-write + AgentDhcp6ServerPoolDnsDomainEntry ::= SEQUENCE { + agentDhcp6ServerPoolDnsDomainIndex + Unsigned32, + agentDhcp6ServerPoolDnsDomainName + DisplayString, + agentDhcp6ServerPoolDnsDomainRowStatus + RowStatus + } + + agentDhcp6ServerPoolDnsDomainIndex OBJECT-TYPE + SYNTAX Unsigned32 (1..6) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The DNS Domain Index, which will be used as index for the DnsDomain Table." + ::= { agentDhcp6ServerPoolDnsDomainEntry 1 } + + agentDhcp6ServerPoolDnsDomainName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies a DNS domain name for distribution to a DHCPv6 client." + ::= { agentDhcp6ServerPoolDnsDomainEntry 2 } + + agentDhcp6ServerPoolDnsDomainRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The row status variable is used according to installation + and removal conventions for conceptual rows. When a DNS domain is created by applying + write operation on 'agentDhcp6ServerDnsDomainCreate', row-status becomes 'active'. + If row-status for a DnsDomainEntry is set to 'destroy', the corresponding DNS domain + gets deleted. " + + ::= { agentDhcp6ServerPoolDnsDomainEntry 3 } + +--********************************************************************************** + + agentDhcp6ServerPoolDnsServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDhcp6ServerPoolDnsServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the DHCPv6 Server Pool's DNS server address entries." + ::= { agentDhcp6ServerPoolConfigGroup 6 } + + agentDhcp6ServerPoolDnsServerEntry OBJECT-TYPE + SYNTAX AgentDhcp6ServerPoolDnsServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for a DHCPv6 server pool's DNS server addresses." + INDEX { agentDhcp6ServerPoolIndex, + agentDhcp6ServerPoolDnsServerIndex } + ::= { agentDhcp6ServerPoolDnsServerTable 1 } + + -- All objects are of type read-write + AgentDhcp6ServerPoolDnsServerEntry ::= SEQUENCE { + agentDhcp6ServerPoolDnsServerIndex + Unsigned32, + agentDhcp6ServerPoolDnsServerAddress + Ipv6Address, + agentDhcp6ServerPoolDnsServerRowStatus + RowStatus + } + + agentDhcp6ServerPoolDnsServerIndex OBJECT-TYPE + SYNTAX Unsigned32 (1..6) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The DNS Server Index, which will be used as index for the DNS Server Table." + ::= { agentDhcp6ServerPoolDnsServerEntry 1 } + + agentDhcp6ServerPoolDnsServerAddress OBJECT-TYPE + SYNTAX Ipv6Address + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies a DNS server address for distribution to a DHCPv6 client." + ::= { agentDhcp6ServerPoolDnsServerEntry 2 } + + agentDhcp6ServerPoolDnsServerRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The row status variable is used according to installation + and removal conventions for conceptual rows. When a DNS server is created by applying + write operation on 'agentDhcp6ServerDnsServerCreate', row-status becomes 'active'. + If row-status for a DnsServerEntry is set to 'destroy', the corresponding DNS server + gets deleted. " + + ::= { agentDhcp6ServerPoolDnsServerEntry 3 } + +--********************************************************************************** + agentDhcp6ServerPoolAllocationTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDhcp6ServerPoolAllocationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the DHCPv6 Server pool's allocation entries, showing prefix + delegation specific parameters." + ::= { agentDhcp6ServerPoolConfigGroup 7 } + + agentDhcp6ServerPoolAllocationEntry OBJECT-TYPE + SYNTAX AgentDhcp6ServerPoolAllocationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for a DHCPv6 server pool's prefix delegation + information." + INDEX { agentDhcp6ServerPoolIndex, + agentDhcp6ServerPoolAllocationIndex } + ::= { agentDhcp6ServerPoolAllocationTable 1 } + + -- All objects are of type read-write + AgentDhcp6ServerPoolAllocationEntry ::= SEQUENCE { + agentDhcp6ServerPoolAllocationIndex + Unsigned32, + agentDhcp6ServerPoolAllocationClientIdentifier + DisplayString, + agentDhcp6ServerPoolAllocationPrefix + Ipv6AddressPrefix, + agentDhcp6ServerPoolAllocationPrefixLength + Integer32, + agentDhcp6ServerPoolAllocationClientName + DisplayString, + agentDhcp6ServerPoolAllocationIaid + Unsigned32, + agentDhcp6ServerPoolAllocationValidLifetime + Unsigned32, + agentDhcp6ServerPoolAllocationPreferLifetime + Unsigned32, + agentDhcp6ServerPoolAllocationRowStatus + RowStatus + } + + agentDhcp6ServerPoolAllocationIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The DNS Server Pool Allocation Index, which will be used as index + for the DNS Server Pool Allocation Table." + ::= { agentDhcp6ServerPoolAllocationEntry 1 } + + agentDhcp6ServerPoolAllocationClientIdentifier OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..255)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "It specifies the unique identifier, a.k.a. DUID, + (in colon-separated hexadecimal format) of a DHCPv6 client. " + ::= { agentDhcp6ServerPoolAllocationEntry 2 } + + agentDhcp6ServerPoolAllocationPrefix OBJECT-TYPE + SYNTAX Ipv6AddressPrefix + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The IPv6 address prefix for delegation to DHCPv6 clients." + ::= { agentDhcp6ServerPoolAllocationEntry 3 } + + agentDhcp6ServerPoolAllocationPrefixLength OBJECT-TYPE + SYNTAX Integer32 (0..128) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This specifies the no. of bits that comprise the address-prefix mask + length." + ::= { agentDhcp6ServerPoolAllocationEntry 4 } + + agentDhcp6ServerPoolAllocationClientName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "It specifies a name for a DHCPv6 client. + This name is purely used for internal use, and can be a NULL string." + ::= { agentDhcp6ServerPoolAllocationEntry 5 } + + agentDhcp6ServerPoolAllocationIaid OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This specifies a identity association ID (IAID) associated with the + allocation. It can be set to 0." + ::= { agentDhcp6ServerPoolAllocationEntry 6 } + + agentDhcp6ServerPoolAllocationValidLifetime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This specifies the valid lifetime timer interval (in seconds) for the + associated allocation. If set to 0, the timer is set to 'infinity'." + ::= { agentDhcp6ServerPoolAllocationEntry 7 } + + agentDhcp6ServerPoolAllocationPreferLifetime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This specifies the preferred lifetime timer interval (in seconds) for + the associated allocation. If set to 0, the timer is set to 'infinity'. + Also, the preferred lifetime value must be less than or equal to the + valid lifetime value." + ::= { agentDhcp6ServerPoolAllocationEntry 8 } + + agentDhcp6ServerPoolAllocationRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status variable is used according to installation + and removal conventions for conceptual rows. When an allocation is created, + row-status becomes 'active'. If row-status for an allocation is set to 'invalid', + the corresponding allocation gets deleted. " + + ::= { agentDhcp6ServerPoolAllocationEntry 9 } + + --************************************************************************************** + -- agentDhcp6InterfaceGroup -> contains MIB objects for configuring and displaying + -- interfaces in DHCPv6 server/relay mode. + -- + --************************************************************************************** + + agentDhcp6InterfaceGroup OBJECT IDENTIFIER ::= { fastPathDHCP6ServerPrivate 3 } + + agentDhcp6InterfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDhcp6InterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the DHCPv6 Server/Relay interface entries." + ::= { agentDhcp6InterfaceGroup 1 } + + agentDhcp6InterfaceEntry OBJECT-TYPE + SYNTAX AgentDhcp6InterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for DHCPv6 server or relay functionality on an + interface." + INDEX { agentDhcp6InterfaceIndex } + ::= { agentDhcp6InterfaceTable 1 } + + AgentDhcp6InterfaceEntry ::= SEQUENCE { + agentDhcp6InterfaceIndex + Ipv6IfIndex, + agentDhcp6InterfaceMode + INTEGER, + agentDhcp6InterfaceServerPoolName + DisplayString, + agentDhcp6InterfaceServerPreference + Unsigned32, + agentDhcp6InterfaceRelayAddress + Ipv6Address, + agentDhcp6InterfaceRelayInterface + Ipv6IfIndexOrZero, + agentDhcp6InterfaceRemoteIdentifier + DisplayString, + agentDhcp6InterfaceOptionFlags + BITS + } + + agentDhcp6InterfaceIndex OBJECT-TYPE + SYNTAX Ipv6IfIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This specifies the ifindex of the DHCPv6 interface" + ::= { agentDhcp6InterfaceEntry 1 } + + agentDhcp6InterfaceMode OBJECT-TYPE + SYNTAX INTEGER { + disable(0), + server(1), + relay(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This specifies whether an interface is in DHCPv6 Server or Relay mode. + Setting the mode to 'disable' (0) effectively un-configures the + interface." + ::= { agentDhcp6InterfaceEntry 2 } + + agentDhcp6InterfaceServerPoolName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This specifies a DHCPv6 Server pool name, which exists within + the agentDhcp6ServerPoolConfigTable. This parameter is only + meaningful when the interface is in DHCPv6 server mode." + ::= { agentDhcp6InterfaceEntry 3 } + + agentDhcp6InterfaceServerPreference OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This specifies a DHCPv6 Server preference value, which is used + by DHCPv6 clients to choose betweeen servers. This parameter is only + meaningful when the interface is in DHCPv6 server mode." + ::= { agentDhcp6InterfaceEntry 4 } + + agentDhcp6InterfaceRelayAddress OBJECT-TYPE + SYNTAX Ipv6Address + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This specifies the IPv6 address of a DHCPv6 relay server, + to which DHCPv6 messages receivd on this interface will + be relayed. If this is specified as global IPv6 address, + then agentDhcp6ServerInterfaceRelayInterface is not + required to be configured. However, if the address is + specified as a link-local or multicast address, then + agentDhcp6ServerInterfaceRelayInterface is required. + This parameter is only meaningful when the interface is + in DHCPv6 relay mode." + ::= { agentDhcp6InterfaceEntry 5 } + + agentDhcp6InterfaceRelayInterface OBJECT-TYPE + SYNTAX Ipv6IfIndexOrZero + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This specifies the IPv6 ifindex of a interface to reach + a DHCPv6 relay server, to which DHCPv6 messages received + on this interface will be relayed. + This parameter is only meaningful when the interface is + in DHCPv6 relay mode." + ::= { agentDhcp6InterfaceEntry 6 } + + agentDhcp6InterfaceRemoteIdentifier OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This specifies the Relay Agent Information Option + 'remote-id' sub-option to be attached to DHCPv6 + messages being relayed on this interface. There exists + a special reserved value of 'duid-ifid', which causes + the remote-id value to be derived from the local DHCPv6 + Server DUID and the interface ifindex. Otherwise, the + string defined here is used as the remote-id value. + This parameter is only meaningful when the interface is + in DHCPv6 relay mode." + ::= { agentDhcp6InterfaceEntry 7 } + + agentDhcp6InterfaceOptionFlags OBJECT-TYPE + SYNTAX BITS { + rapid-commit(0), + allow-unicast(1) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This specifies a bitmask field for various DHCPv6 options. + Currently, only the 'rapid-commit' option is available, + which is only meaningful when the interface is in DHCPv6 + Server mode. Setting this parameter to 0 effectively + clears any configured option flags on the interface." + ::= { agentDhcp6InterfaceEntry 8 } + + agentDhcp6InterfaceStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDhcp6InterfaceStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the DHCPv6 Server/Relay interface statistics" + ::= { agentDhcp6InterfaceGroup 2 } + + agentDhcp6InterfaceStatsEntry OBJECT-TYPE + SYNTAX AgentDhcp6InterfaceStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for DHCPv6 server or relay statistics on an interface." + INDEX { agentDhcp6InterfaceStatsIndex } + ::= { agentDhcp6InterfaceStatsTable 1 } + + AgentDhcp6InterfaceStatsEntry ::= SEQUENCE { + agentDhcp6InterfaceStatsIndex + Ipv6IfIndex, + agentDhcp6InterfaceMalformedMessagesReceived + Counter32, + agentDhcp6InterfaceDiscardedMessages + Counter32, + agentDhcp6InterfaceSOLICITMessagesReceived + Counter32, + agentDhcp6InterfaceREQUESTMessagesReceived + Counter32, + agentDhcp6InterfaceCONFIRMMessagesReceived + Counter32, + agentDhcp6InterfaceRENEWMessagesReceived + Counter32, + agentDhcp6InterfaceREBINDMessagesReceived + Counter32, + agentDhcp6InterfaceRELEASEMessagesReceived + Counter32, + agentDhcp6InterfaceDECLINEMessagesReceived + Counter32, + agentDhcp6InterfaceINFORMREQMessagesReceived + Counter32, + agentDhcp6InterfaceRELAYREPLYMessagesReceived + Counter32, + agentDhcp6InterfaceRELAYFORWMessagesReceived + Counter32, + agentDhcp6InterfaceADVERTISEMessagesSent + Counter32, + agentDhcp6InterfaceREPLYMessagesSent + Counter32, + agentDhcp6InterfaceRECONFIGUREMessagesSent + Counter32, + agentDhcp6InterfaceRELAYREPLYMessagesSent + Counter32, + agentDhcp6InterfaceRELAYFORWMessagesSent + Counter32, + agentDhcp6InterfaceClearStatistics + INTEGER + } + + + agentDhcp6InterfaceStatsIndex OBJECT-TYPE + SYNTAX Ipv6IfIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This specifies the ifindex of the DHCPv6 interface" + ::= { agentDhcp6InterfaceStatsEntry 1 } + + agentDhcp6InterfaceMalformedMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The number of malformed (truncated or corrupt) messages + that have been received on the interface" + ::= { agentDhcp6InterfaceStatsEntry 2 } + + agentDhcp6InterfaceDiscardedMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of discarded messages on the interface." + ::= { agentDhcp6InterfaceStatsEntry 3 } + + agentDhcp6InterfaceSOLICITMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type SOLICIT that have been + received on the interface." + ::= { agentDhcp6InterfaceStatsEntry 4 } + + agentDhcp6InterfaceREQUESTMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type REQUEST that have been + received on the interface." + ::= { agentDhcp6InterfaceStatsEntry 5 } + + agentDhcp6InterfaceCONFIRMMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type CONFIRM that have been + received on the interface." + ::= { agentDhcp6InterfaceStatsEntry 6 } + + agentDhcp6InterfaceRENEWMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type RENEW that have been + received on the interface." + ::= { agentDhcp6InterfaceStatsEntry 7 } + + agentDhcp6InterfaceREBINDMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type REBIND that have been + received on the interface." + ::= { agentDhcp6InterfaceStatsEntry 8 } + + agentDhcp6InterfaceRELEASEMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type RELEASE that have been + received on the interface." + ::= { agentDhcp6InterfaceStatsEntry 9 } + + agentDhcp6InterfaceDECLINEMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type DECLINE that have been + received on the interface." + ::= { agentDhcp6InterfaceStatsEntry 10 } + + agentDhcp6InterfaceINFORMREQMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type INFORMATION-REQUEST that have been + received on the interface." + ::= { agentDhcp6InterfaceStatsEntry 11 } + + agentDhcp6InterfaceRELAYREPLYMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type RELAY-REPLY that have been + received on the interface." + ::= { agentDhcp6InterfaceStatsEntry 12 } + + agentDhcp6InterfaceRELAYFORWMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type RELAY-FORWARD that have been + received on the interface." + ::= { agentDhcp6InterfaceStatsEntry 13 } + + agentDhcp6InterfaceADVERTISEMessagesSent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type ADVERTISE that have been + sent on the interface." + ::= { agentDhcp6InterfaceStatsEntry 14 } + + agentDhcp6InterfaceREPLYMessagesSent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type REPLY that have been + sent on the interface." + ::= { agentDhcp6InterfaceStatsEntry 15 } + + agentDhcp6InterfaceRECONFIGUREMessagesSent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type RECONFIGURE that have been + sent on the interface." + ::= { agentDhcp6InterfaceStatsEntry 16 } + + agentDhcp6InterfaceRELAYREPLYMessagesSent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type RELAY-REPLY that have been + sent on the interface." + ::= { agentDhcp6InterfaceStatsEntry 17 } + + agentDhcp6InterfaceRELAYFORWMessagesSent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type RELAY-FORWARD that have been + sent on the interface." + ::= { agentDhcp6InterfaceStatsEntry 18 } + + agentDhcp6InterfaceClearStatistics OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " Clears the DHCPv6 statistics on the interface." + DEFVAL { disable } + ::= { agentDhcp6InterfaceStatsEntry 19 } + + --************************************************************************************** + -- agentDhcp6ServerBindingGroup -> contains MIB objects displaying active bindings for + -- the DHCPv6 server. + -- + --************************************************************************************** + + agentDhcp6ServerBindingGroup OBJECT IDENTIFIER ::= { fastPathDHCP6ServerPrivate 4 } + + agentDhcp6ServerBindingTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDhcp6ServerBindingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the DHCPv6 Server's active binding entries." + ::= { agentDhcp6ServerBindingGroup 1 } + + agentDhcp6ServerBindingEntry OBJECT-TYPE + SYNTAX AgentDhcp6ServerBindingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for a DHCPv6 server's active bindings." + INDEX { agentDhcp6ServerBindingIndex } + + ::= { agentDhcp6ServerBindingTable 1 } + + -- All objects are of type read-only + AgentDhcp6ServerBindingEntry ::= SEQUENCE { + agentDhcp6ServerBindingIndex + Unsigned32, + agentDhcp6ServerBindingPrefix + Ipv6AddressPrefix, + agentDhcp6ServerBindingPrefixLength + Integer32, + agentDhcp6ServerBindingPrefixType + INTEGER, + agentDhcp6ServerBindingClientIdentifier + DisplayString, + agentDhcp6ServerBindingClientAddress + Ipv6Address, + agentDhcp6ServerBindingClientInterface + Ipv6IfIndex, + agentDhcp6ServerBindingIaid + Unsigned32, + agentDhcp6ServerBindingValidLifetime + Unsigned32, + agentDhcp6ServerBindingPreferLifetime + Unsigned32, + agentDhcp6ServerBindingExpiration + Unsigned32 + } + + agentDhcp6ServerBindingIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of the entry in the list of the DHCPv6 server's active + bindings." + + ::= { agentDhcp6ServerBindingEntry 1 } + + agentDhcp6ServerBindingPrefix OBJECT-TYPE + SYNTAX Ipv6AddressPrefix + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IPv6 address prefix delegated to a DHCPv6 client." + ::= { agentDhcp6ServerBindingEntry 2 } + + agentDhcp6ServerBindingPrefixLength OBJECT-TYPE + SYNTAX Integer32 (0..128) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the no. of bits that comprise the + address-prefix mask length for the delegated prefix." + ::= { agentDhcp6ServerBindingEntry 3 } + + agentDhcp6ServerBindingPrefixType OBJECT-TYPE + SYNTAX INTEGER { + iapd(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the type of prefix associated with the + binding. Currently, only IA_PD type (prefix delegation) + is supported." + ::= { agentDhcp6ServerBindingEntry 4 } + + agentDhcp6ServerBindingClientIdentifier OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "It specifies the unique identifier, a.k.a. DUID, + (in colon-separated hexadecimal format) of a DHCPv6 client. " + ::= { agentDhcp6ServerBindingEntry 5 } + + agentDhcp6ServerBindingClientAddress OBJECT-TYPE + SYNTAX Ipv6Address + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "It specifies the address for a DHCPv6 client." + ::= { agentDhcp6ServerBindingEntry 6 } + + agentDhcp6ServerBindingClientInterface OBJECT-TYPE + SYNTAX Ipv6IfIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "It specifies the interface for a DHCPv6 client." + ::= { agentDhcp6ServerBindingEntry 7 } + + agentDhcp6ServerBindingIaid OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies a identity association ID (IAID) associated + with the binding." + ::= { agentDhcp6ServerBindingEntry 8 } + + agentDhcp6ServerBindingValidLifetime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the valid lifetime timer interval (in seconds) for the + associated allocation. If set to 0, the timer is set to 'infinity'." + ::= { agentDhcp6ServerBindingEntry 9 } + + agentDhcp6ServerBindingPreferLifetime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the preferred lifetime timer interval (in seconds) for + the associated allocation. If set to 0, the timer is set to 'infinity'. + Also, the preferred lifetime value must be less than or equal to the + valid lifetime value." + ::= { agentDhcp6ServerBindingEntry 10 } + + agentDhcp6ServerBindingExpiration OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the amount of time (in seconds) for the + associated binding to expire." + ::= { agentDhcp6ServerBindingEntry 11 } + +END diff --git a/mibs/FASTPATH-DHCPSERVER-PRIVATE-MIB.mib b/mibs/FASTPATH-DHCPSERVER-PRIVATE-MIB.mib new file mode 100644 index 0000000..55d8bf0 --- /dev/null +++ b/mibs/FASTPATH-DHCPSERVER-PRIVATE-MIB.mib @@ -0,0 +1,1002 @@ +-- DHCP Server MIB overview: +-- DHCP Server MIB falls under fastPath MIB node of the private subtree. + + + +FASTPATH-DHCPSERVER-PRIVATE-MIB DEFINITIONS ::= BEGIN + +-- BROADCOM FASTPATH DHCP Server MIB +-- Copyright Broadcom Corporation (2002-2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, IpAddress, + Integer32, Unsigned32, TimeTicks, Counter32 + FROM SNMPv2-SMI + TEXTUAL-CONVENTION, RowStatus, RowPointer, MacAddress, + StorageType, TruthValue FROM SNMPv2-TC + + DisplayString, PhysAddress FROM RFC1213-MIB + fastPath FROM BROADCOM-REF-MIB; + + fastPathDHCPServerPrivate MODULE-IDENTITY + LAST-UPDATED "200705230000Z" -- 23 May 2007 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 100, Perimeter Park Drive., Suite H + Morrisville, NC 27560 + Tel: +1 919 865 2700" + DESCRIPTION + "The Broadcom Private MIB for FASTPATH DHCP Server" + + -- Revision history. + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Broadcom branding related changes." + + ::= { fastPath 12 } + + + --************************************************************************************** + -- agentDhcpServerGroup -> contains MIB objects displaying various properties of a DHCP server + -- + --************************************************************************************** + + agentDhcpServerGroup OBJECT IDENTIFIER ::= { fastPathDHCPServerPrivate 1 } + + agentDhcpServerAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Admin-mode of the DHCP Server." + DEFVAL { disable } + ::= { agentDhcpServerGroup 1 } + + + agentDhcpServerPingPktNos OBJECT-TYPE + SYNTAX INTEGER (0 | 2..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " The no. of packets a DHCP Server sends to a pool address as part of a ping operation.Setting the value of ping-packets to zero turns off DHCP Server ping operation ." + DEFVAL { 2 } + ::= { agentDhcpServerGroup 2 } + + agentDhcpServerAutomaticBindingsNos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of IP addresses that have been assigned automatically." + + ::= { agentDhcpServerGroup 3 } + + agentDhcpServerExpiredBindingsNos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of expired leases." + ::= { agentDhcpServerGroup 4 } + + + agentDhcpServerMalformedMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of malformed(truncated or corrupt) messages that have been received by the DHCP server." + ::= { agentDhcpServerGroup 5 } + + agentDhcpServerDISCOVERMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCP messages of type DHCPDISCOVER that have been received by the DHCP server." + ::= { agentDhcpServerGroup 6 } + + agentDhcpServerREQUESTMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCP messages of type DHCPREQUEST that have been received by the DHCP server." + ::= { agentDhcpServerGroup 7 } + + agentDhcpServerDECLINEMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCP messages of type DHCPDECLINE that have been received by the DHCP server." + ::= { agentDhcpServerGroup 8 } + + agentDhcpServerRELEASEMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCP messages of type DHCPRELEASE that have been received by the DHCP server." + ::= { agentDhcpServerGroup 9 } + + agentDhcpServerINFORMMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCP messages of type DHCPINFORM that have been received by the DHCP server." + ::= { agentDhcpServerGroup 10 } + + agentDhcpServerOFFERMessagesSent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCP messages of type DHCPOFFER that have been sent by the DHCP server." + ::= { agentDhcpServerGroup 11 } + + agentDhcpServerACKMessagesSent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCP messages of type DHCPACK that have been sent by the DHCP server." + ::= { agentDhcpServerGroup 12 } + + agentDhcpServerNAKMessagesSent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCP messages of type DHCPNAK that have been sent by the DHCP server." + ::= { agentDhcpServerGroup 13 } + + agentDhcpServerClearStatistics OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Clears the DHCP server statistics." + DEFVAL { disable } + ::= { agentDhcpServerGroup 14 } + + agentDhcpServerBootpAutomatic OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Used to enable or disable autmatic address allocation to bootp clients from dynamic address pools." + DEFVAL { disable } + ::= { agentDhcpServerGroup 15 } + +--********************************************************************************** +-- agentDhcpServerPoolConfigGroup +-- This group contains three tables : agentDhcpServerPoolConfigTable, +-- agentDhcpServerBindingTable, +-- +-- agentDhcpServerPoolConfigTable -> This table is used to configure a +-- new DHCP address pool on a DHCP server. This table +-- is also used to delete a configured DHCP address pool. +-- +-- agentDhcpServerPoolAllocationTable -> This table is used to configure a DHCP address +-- pool for dynamic and manual allocations. +-- +-- agentDhcpServerExcludedAddressRangeTable -> This table lists the excluded-address ranges +-- for a DHCP Server +-- +-- agentDhcpServerPoolOptionTable -> Table for DHCP Server options +--********************************************************************************** + + + agentDhcpServerPoolConfigGroup OBJECT IDENTIFIER ::= { fastPathDHCPServerPrivate 2 } + + agentDhcpServerPoolNameCreate OBJECT-TYPE + SYNTAX DisplayString (SIZE(0|1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A pool is created by applying write operation + on this MIB object and providing a new pool-name. + Get operation on this MIB object returns a + null-value, as for the purpose of viewing the + pool name, the user should perform the + traversal of agentDhcpServerPoolConfigTable. + For this reason the get operation on object + agentDhcpServerPoolNameCreate becomes insignificant." + ::= { agentDhcpServerPoolConfigGroup 1 } + + agentDhcpServerPoolConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDhcpServerPoolConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the DHCP Server Pool configuration entries." + ::= { agentDhcpServerPoolConfigGroup 2 } + + agentDhcpServerPoolConfigEntry OBJECT-TYPE + SYNTAX AgentDhcpServerPoolConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for a Dhcp server pool." + INDEX { agentDhcpServerPoolIndex } + ::= { agentDhcpServerPoolConfigTable 1 } + + AgentDhcpServerPoolConfigEntry ::= SEQUENCE { + agentDhcpServerPoolIndex + Unsigned32, + agentDhcpServerPoolName + DisplayString, + agentDhcpServerPoolDefRouter + DisplayString, + agentDhcpServerPoolDNSServer + DisplayString, + agentDhcpServerPoolLeaseTime + Integer32, + agentDhcpServerPoolType + INTEGER, + agentDhcpServerPoolNetbiosNameServer + DisplayString, + agentDhcpServerPoolNetbiosNodeType + INTEGER, + agentDhcpServerPoolNextServer + IpAddress, + agentDhcpServerPoolDomainName + DisplayString, + agentDhcpServerPoolBootfile + DisplayString, + agentDhcpServerPoolRowStatus + RowStatus + } + + agentDhcpServerPoolIndex OBJECT-TYPE + SYNTAX Unsigned32 (1..512) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Pool Index, which 'll be used as index for the PoolConfig Table." + ::= { agentDhcpServerPoolConfigEntry 1 } + + agentDhcpServerPoolName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the DHCP Address pool. This value cannot be modified" + ::= { agentDhcpServerPoolConfigEntry 2 } + + agentDhcpServerPoolDefRouter OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This specifies the default-router list(each default-router is + separated by comma and the list is terminated by semi-colon) for a DHCP client, + an example would be 10.10.1.1,192.168.36.1,157.227.44.1;(no spaces in between).User should enter a 'null' or 'NULL' string to remove current default-router list." + ::= { agentDhcpServerPoolConfigEntry 3 } + + agentDhcpServerPoolDNSServer OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This specifies the DNS IP servers(each DNS IP server is + separated by comma and the list is terminated by semi-colon) for a DHCP client, + an example would be 10.10.1.1,192.168.36.1,157.227.44.1;(no spaces in between).User should enter a 'null' or 'NULL' string to remove current default-router list." + ::= { agentDhcpServerPoolConfigEntry 4 } + + agentDhcpServerPoolLeaseTime OBJECT-TYPE + SYNTAX Integer32 (1..86400) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This specifies the duration of the lease(in minutes) for an IP address that is assigened from a + DHCP server to a DHCP client. For infinite leases, lease-time value will be set to + 86400." + ::= { agentDhcpServerPoolConfigEntry 5 } + + agentDhcpServerPoolType OBJECT-TYPE + SYNTAX INTEGER{ + un-allocated(0), + dynamic(1), + manual(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the type of the binding that is associated with this pool." + ::= { agentDhcpServerPoolConfigEntry 6 } + + agentDhcpServerPoolNetbiosNameServer OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This specifies the IP address-list of Net BIOS name-servers that are + available to DHCP clients + (each IP address in this list is + separated by comma and the list is terminated by semi-colon), + an example would be 10.10.1.1,192.168.36.1,157.227.44.1;(no spaces in between).User should enter a 'null' or 'NULL' string to remove current Net BIOS name-server list." + ::= { agentDhcpServerPoolConfigEntry 7 } + + + agentDhcpServerPoolNetbiosNodeType OBJECT-TYPE + SYNTAX INTEGER { + none(0), + b-node(1), + p-node(2), + m-node(4), + h-node(8) + } + + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This specifies the NetBIOS node-type for DHCP clients. 'none' is shown if + node-type is not set to any of the four values." + ::= { agentDhcpServerPoolConfigEntry 8 } + + agentDhcpServerPoolNextServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This configures the next server in the boot-process of a DHCP clients.User should enter zero(0.0.0.0) to remove the current Next-server address" + ::= { agentDhcpServerPoolConfigEntry 9 } + + agentDhcpServerPoolDomainName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This specifies the domain-name for a DHCP client. User should enter a 'null' or 'NULL' string to remove specified domain-name." + ::= { agentDhcpServerPoolConfigEntry 10 } + + agentDhcpServerPoolBootfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..128)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This specifies the name of the default boot image for a DHCP client.User should enter a 'null' or 'NULL' string to remove specified bootfile name." + ::= { agentDhcpServerPoolConfigEntry 11 } + + agentDhcpServerPoolRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The row status variable is used according to installation + and removal conventions for conceptual rows. When a pool is created by applying write + operation on 'agentDhcpServerPoolCreateName',row-status becomes 'active'. If row-status for + a poolEntry is set to 'destroy', the corresponding pool gets deleted. " + + ::= { agentDhcpServerPoolConfigEntry 12 } + +--********************************************************************************** + agentDhcpServerPoolAllocationTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDhcpServerPoolAllocationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the DHCP Server's pool entries, showing the binding(dynamic/manual) + specific parameters." + ::= { agentDhcpServerPoolConfigGroup 3 } + + agentDhcpServerPoolAllocationEntry OBJECT-TYPE + SYNTAX AgentDhcpServerPoolAllocationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for a Dhcp server's allocation pool." + AUGMENTS { agentDhcpServerPoolConfigEntry } + ::= { agentDhcpServerPoolAllocationTable 1 } + + -- All objects are of type read-write + AgentDhcpServerPoolAllocationEntry ::= SEQUENCE { + agentDhcpServerPoolAllocationName + DisplayString, + agentDhcpServerDynamicPoolIpAddress + IpAddress, + agentDhcpServerDynamicPoolIpMask + IpAddress, + agentDhcpServerDynamicPoolIpPrefixLength + Unsigned32, + agentDhcpServerPoolAllocationType + INTEGER, + agentDhcpServerManualPoolClientIdentifier + DisplayString, + agentDhcpServerManualPoolClientName + DisplayString, + agentDhcpServerManualPoolClientHWAddr + DisplayString, + agentDhcpServerManualPoolClientHWType + INTEGER, + agentDhcpServerManualPoolIpAddress + IpAddress, + agentDhcpServerManualPoolIpMask + IpAddress, + agentDhcpServerManualPoolIpPrefixLength + Unsigned32 + } + + agentDhcpServerPoolAllocationName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..30)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies name of the DHCP Address pool having dynamic binding. + This value is same as agentDhcpServerPoolName of the agentDhcpServerPoolConfigTable." + ::= { agentDhcpServerPoolAllocationEntry 1 } + + agentDhcpServerDynamicPoolIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Address pool. + The IP address must be set before setting the IP Mask or IP Prefix Length. + After setting IP address, network -mask, or IP Prefix length must be set in order to change the pool type to dynamic. + This value shows 0.0.0.0, if the binding type is 'un-allocated',or,'manual'." + ::= { agentDhcpServerPoolAllocationEntry 2 } + + agentDhcpServerDynamicPoolIpMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The bit-combination that renders which portion of the address of the DHCP + address pool refers to the network or subnet and which part refers to the host.The IP address must have been set before. + This value shows 0.0.0.0, if the binding type is 'un-allocated',or,'manual'." + ::= { agentDhcpServerPoolAllocationEntry 3 } + + agentDhcpServerDynamicPoolIpPrefixLength OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This specifies the no. of bits that comprise the address-prefix. + The prefix is an alternative way of specifying the network-mask of the client.The IP address must have been set before. + This value shows 0, if the binding type is 'un-allocated',or,'mnaual'." + ::= { agentDhcpServerPoolAllocationEntry 4 } + + agentDhcpServerPoolAllocationType OBJECT-TYPE + SYNTAX INTEGER{ + un-allocated(0), + dynamic(1), + manual(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the type of the binding that is associated with this pool." + ::= { agentDhcpServerPoolAllocationEntry 5 } + + agentDhcpServerManualPoolClientIdentifier OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "It specifies the unique identifier (in colon separated hexadecimal format) + of a DHCP client. It is valid for manual bindings only. + It displays 'unconfigured',if the binding type is 'un-allocated',or,'dynamic'. + To set this object, input should be 7 octets long with the hardware + type in the first octet." + ::= { agentDhcpServerPoolAllocationEntry 6 } + + agentDhcpServerManualPoolClientName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..30)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "It specifies the name of a DHCP client. + Client name should't include domain-name. + It displays 'unconfigured',if the binding type is 'un-allocated',or,'dynamic'. " + ::= { agentDhcpServerPoolAllocationEntry 7 } + + agentDhcpServerManualPoolClientHWAddr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "It specifies the hardware-address of a DHCP client. It is valid for manual bindings only. + It displays 'unconfigured',if the binding type is 'un-allocated',or,'dynamic'. + After hardware-address, hardware-type will be configured." + ::= { agentDhcpServerPoolAllocationEntry 8 } + + agentDhcpServerManualPoolClientHWType OBJECT-TYPE + SYNTAX INTEGER{ + ethernet(1), + ieee802(6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "It specifies the hardware-type of a DHCP client. It is valid for manual bindings only. + It displays 'unconfigured',if the binding type is 'un-allocated',or,'dynamic'. + Before this, hardware-address must be configured." + DEFVAL { ethernet } + ::= { agentDhcpServerPoolAllocationEntry 9 } + + agentDhcpServerManualPoolIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the DHCP Address pool for manual binding. + The IP address must be set before setting the IP Mask or IP Prefix Length.After setting IP address, network -mask, or IP Prefix length must be set in order to change the pool type to dynamic. + This value shows 0.0.0.0, if the binding type is 'un-allocated',or,'dynamic'." + ::= { agentDhcpServerPoolAllocationEntry 10 } + + agentDhcpServerManualPoolIpMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The bit-combination that renders which portion of the address of the DHCP + address pool for a manual binding refers to the network or subnet and which part refers to the host. + The IP address must have been set before. + This value shows 0.0.0.0, if the binding type is 'un-allocated',or,'dynamic'." + ::= { agentDhcpServerPoolAllocationEntry 11 } + + agentDhcpServerManualPoolIpPrefixLength OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This specifies the no. of bits that comprise the address-prefix. + The prefix is an alternative way of specifying the network-mask of the client.The IP address must have been set before. + This value shows 0, if the binding type is 'un-allocated',or,'dynamic'." + ::= { agentDhcpServerPoolAllocationEntry 12 } + + + --*********************************************************************************************** + agentDhcpServerExcludedAddressRangeCreate OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "It sets the IP address-ranges(from low to high) that a + DHCP server should not assign to DHCP clients. Each time + this MIB object is set successfully, one excluded range + of IP address will be set. + It is given in format - start and end IP address + separated by '-' and terminated by ';'. + One example would be - 192.168.36.1-200.1.1.1; . + This sets one excluded range of IP address,which + starts at 192.168.36.1 and ends at 200.1.1.1. + If only start IP address is given, + end IP address is assumed to be equal to the start IP + address. Get operation on this MIB object returns a + null-value, as for the purpose of viewing the + exclude-address ranges, the user should perform the + traversal of agentDhcpServerExcludedAddressRangeTable. + For this reason the get operation on object + agentDhcpServerExcludedAddressRangeCreate becomes insignificant." + ::= { agentDhcpServerPoolConfigGroup 4 } + + agentDhcpServerExcludedAddressRangeTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDhcpServerExcludedAddressRangeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the DHCP Server Pool configuration entries." + ::= { agentDhcpServerPoolConfigGroup 5 } + + agentDhcpServerExcludedAddressRangeEntry OBJECT-TYPE + SYNTAX AgentDhcpServerExcludedAddressRangeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for a Dhcp server excluded address range table." + INDEX { agentDhcpServerExcludedRangeIndex } + ::= { agentDhcpServerExcludedAddressRangeTable 1 } + + -- All objects are of type read-only, except agentDhcpServerExcludedAddressRangeStatus, + -- which is of type read-write + AgentDhcpServerExcludedAddressRangeEntry ::= SEQUENCE { + agentDhcpServerExcludedRangeIndex + Unsigned32, + agentDhcpServerExcludedStartIpAddress + IpAddress, + agentDhcpServerExcludedEndIpAddress + IpAddress, + agentDhcpServerExcludedAddressRangeStatus + RowStatus + } + + agentDhcpServerExcludedRangeIndex OBJECT-TYPE + SYNTAX Unsigned32 (1..256) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the index of the excluded IP address-range table." + ::= { agentDhcpServerExcludedAddressRangeEntry 1 } + + agentDhcpServerExcludedStartIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the starting IP address of the excluded address-range." + ::= { agentDhcpServerExcludedAddressRangeEntry 2 } + + agentDhcpServerExcludedEndIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the ending IP address of the excluded address-range." + ::= { agentDhcpServerExcludedAddressRangeEntry 3 } + + agentDhcpServerExcludedAddressRangeStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This specifies the row-status of the excluded address-range. Implemented values + are - active(1) and destroy(6). For a valid range, the row-satus will return active(1). + When it is set to destroy(6), the corresponding address-range is deleted." + ::= { agentDhcpServerExcludedAddressRangeEntry 4 } + + --*********************************************************************************************** + + agentDhcpServerPoolOptionCreate OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This sets the option for an existing DHCP Server pool. Here, it is required + to enter the pool-index, for which option is to be set and + the value of the DHCP option code in string-format : pool-index and option code + separated by '-' and terminated by ';', one example would be -> 1-19; + , 1 is the pool-index and 19 is the option code. " + ::= { agentDhcpServerPoolConfigGroup 6 } + + agentDhcpServerPoolOptionTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDhcpServerPoolOptionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table for configuring DHCP Server options." + ::= { agentDhcpServerPoolConfigGroup 7 } + + agentDhcpServerPoolOptionEntry OBJECT-TYPE + SYNTAX AgentDhcpServerPoolOptionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for a Dhcp server option table." + INDEX { agentDhcpServerPoolOptionIndex, + agentDhcpServerPoolOptionCode } + ::= { agentDhcpServerPoolOptionTable 1 } + + -- All objects are of type read-write, except the indexes agentDhcpServerPoolOptionIndex and + -- agentDhcpServerPoolOptionCode + -- For a particular poolOption entry, option data ( ASCII, HEX and IP Address) can be + -- entered multiple times provided data-format is same each time. + AgentDhcpServerPoolOptionEntry ::= SEQUENCE { + agentDhcpServerPoolOptionIndex + Unsigned32, + agentDhcpServerPoolOptionCode + Unsigned32, + agentDhcpServerOptionPoolName + DisplayString, + agentDhcpServerPoolOptionAsciiData + DisplayString, + agentDhcpServerPoolOptionHexData + DisplayString, + agentDhcpServerPoolOptionIpAddressData + DisplayString, + agentDhcpServerPoolOptionStatus + RowStatus + } + agentDhcpServerPoolOptionIndex OBJECT-TYPE + SYNTAX Unsigned32 (1..512) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Pool Index alongwith option-code, acts as index for the DHCP Server Option table. + " + ::= { agentDhcpServerPoolOptionEntry 1 } + + agentDhcpServerPoolOptionCode OBJECT-TYPE + SYNTAX Unsigned32 (1..254) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This specifies the DHCP option code. This alongwith pool-index acts as the index of the + DHCP Server Option table." + ::= { agentDhcpServerPoolOptionEntry 2 } + + agentDhcpServerOptionPoolName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the DHCP Address pool. This value cannot be modified" + ::= { agentDhcpServerPoolOptionEntry 3 } + + agentDhcpServerPoolOptionAsciiData OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..441)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This specifies an NVT ASCII character string. ASCII character strings + that contain white space must be delimited by quotation marks. + If an ascii optiondata is entered again, it gets concatenated with the + previous ascii data." + ::= { agentDhcpServerPoolOptionEntry 4 } + + agentDhcpServerPoolOptionHexData OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..1324)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This specifies semi-colon separated hexadecimal data. Two hexadecimal digits + in hexadecimal character string represents one byte . Hexadecimal strings can + be entered in the following formats : + 1) continuous hexadecimal digits like -- 0123456789abcdef + 2) hexadecimal digits separated by space ' ' -- 01 23 45 67 de 0f + 3) Two hexadecimal digits separated by delimeter ':' -- 01:02:a0 de:0f 78:5e + 4) Four hexadecimal digits separated by delimeter '.' -- 01ab.c0de.7865 + If a Hex optiondata is entered again, it gets concatenated with the + previous Hex data." + ::= { agentDhcpServerPoolOptionEntry 5 } + + agentDhcpServerPoolOptionIpAddressData OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This specifies the IP-address list(each IP-address is + separated by comma and the list is terminated by semi-colon) for a DHCP client, + an example would be 10.10.1.1,192.168.36.1,157.227.44.1;(no spaces in between). + If a IP option is entered again, it gets concatenated with the + previous IP data. + Maximum no. of IP addresses that can be entered at one time is 8. + " + ::= { agentDhcpServerPoolOptionEntry 6 } + + + agentDhcpServerPoolOptionStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This specifies the row-status of the DHCP Server Pool option." + ::= { agentDhcpServerPoolOptionEntry 7 } + + --************************************************************************************** + -- agentDhcpServerLeaseGroup -> contains MIB objects displaying and clearing leases of a DHCP server + -- + --************************************************************************************** + + agentDhcpServerLeaseGroup OBJECT IDENTIFIER ::= { fastPathDHCPServerPrivate 3 } + + agentDhcpServerLeaseClearAllBindings OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Clears All the DHCP server bindings." + DEFVAL { disable } + ::= { agentDhcpServerLeaseGroup 1} + + agentDhcpServerLeaseTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDhcpServerLeaseEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the DHCP Server's Lease entries." + ::= { agentDhcpServerLeaseGroup 2 } + + agentDhcpServerLeaseEntry OBJECT-TYPE + SYNTAX AgentDhcpServerLeaseEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for a Dhcp server's leases." + INDEX { agentDhcpServerLeaseIPAddress } + + ::= { agentDhcpServerLeaseTable 1 } + + -- All objects are of type read-only + AgentDhcpServerLeaseEntry ::= SEQUENCE { + agentDhcpServerLeaseIPAddress + IpAddress, + agentDhcpServerLeaseIPMask + IpAddress, + agentDhcpServerLeaseHWAddress + MacAddress, + agentDhcpServerLeaseRemainingTime + TimeTicks, + agentDhcpServerLeaseType + INTEGER, + agentDhcpServerLeaseStatus + RowStatus + } + + agentDhcpServerLeaseIPAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the IP address leased to the client." + ::= { agentDhcpServerLeaseEntry 1 } + + agentDhcpServerLeaseIPMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the IP mask of the address leased to the client." + ::= { agentDhcpServerLeaseEntry 2 } + agentDhcpServerLeaseHWAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the hardware address of the client." + ::= { agentDhcpServerLeaseEntry 3 } + + agentDhcpServerLeaseRemainingTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the period for which the lease is valid. It is displayed in days, hours, minutes, and seconds." + ::= { agentDhcpServerLeaseEntry 4 } + + agentDhcpServerLeaseType OBJECT-TYPE + SYNTAX INTEGER{ + automatic(1), + manual(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the type of address lease as Automatic or Manual." + ::= { agentDhcpServerLeaseEntry 5 } + + agentDhcpServerLeaseStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This specifies the row-status of the address-lease. Implemented values + are - active(1) and destroy(6). For a valid range, the row-satus will return active(1). + When it is set to destroy(6), the corresponding address-lease is cleared." + ::= { agentDhcpServerLeaseEntry 6 } + + + --************************************************************************************** + -- agentDhcpServerAddressConflictGroup -> contains MIB objects displaying and clearing + -- address conflicts found by a DHCP server, when addresses are offered to the client. + -- + --************************************************************************************** + + agentDhcpServerAddressConflictGroup OBJECT IDENTIFIER ::= { fastPathDHCPServerPrivate 4 } + + agentDhcpServerClearAllAddressConflicts OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Clears all the address-conflicts found by DHCP server,when set to enable." + DEFVAL { disable } + ::= { agentDhcpServerAddressConflictGroup 1} + + agentDhcpServerAddressConflictLogging OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " It is used to enable, or disables the logging of address-conflicts on a DHCP Server." + DEFVAL { enable } + ::= { agentDhcpServerAddressConflictGroup 2} + + + + agentDhcpServerAddressConflictTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDhcpServerAddressConflictEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the conflicting-address entries." + ::= { agentDhcpServerAddressConflictGroup 3 } + + agentDhcpServerAddressConflictEntry OBJECT-TYPE + SYNTAX AgentDhcpServerAddressConflictEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents a conflicting-address entry." + INDEX { agentDhcpServerAddressConflictIP } + + ::= { agentDhcpServerAddressConflictTable 1 } + + -- All objects are of type read-only, except agentDhcpServerAddressConflictStatus which is + -- of type read-write + AgentDhcpServerAddressConflictEntry ::= SEQUENCE { + agentDhcpServerAddressConflictIP + IpAddress, + agentDhcpServerAddressConflictDetectionType + INTEGER, + agentDhcpServerAddressConflictDetectionTime + TimeTicks, + agentDhcpServerAddressConflictStatus + RowStatus + } + + agentDhcpServerAddressConflictIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the conflicting IP address assigned to the client by DHCP server." + ::= { agentDhcpServerAddressConflictEntry 1 } + + agentDhcpServerAddressConflictDetectionType OBJECT-TYPE + SYNTAX INTEGER{ + ping(1), + gratuitousArp(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the address-conflict detection-method." + ::= { agentDhcpServerAddressConflictEntry 2 } + + agentDhcpServerAddressConflictDetectionTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the sysUpTime at which the address-conflict was detected." + ::= { agentDhcpServerAddressConflictEntry 3 } + + agentDhcpServerAddressConflictStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This specifies the row-status of the conflicting-address entry. Implemented values + are - active(1) and destroy(6). For a valid range, the row-satus will return active(1). + When it is set to destroy(6), the corresponding conflicting-address entry is cleared." + ::= { agentDhcpServerAddressConflictEntry 4 } +END diff --git a/mibs/FASTPATH-DNS-RESOLVER-CONTROL-MIB.mib b/mibs/FASTPATH-DNS-RESOLVER-CONTROL-MIB.mib new file mode 100644 index 0000000..1fb6015 --- /dev/null +++ b/mibs/FASTPATH-DNS-RESOLVER-CONTROL-MIB.mib @@ -0,0 +1,270 @@ + + FASTPATH-DNS-RESOLVER-CONTROL-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, IpAddress, Counter32, Integer32 + FROM SNMPv2-SMI + TEXTUAL-CONVENTION, RowStatus, DisplayString, TruthValue + FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF + fastPath + FROM BROADCOM-REF-MIB; + + -- DNS Control Resolver MIB + + fastPathDnsResControlMIB MODULE-IDENTITY + LAST-UPDATED "200705230000Z" -- 23 May 2007 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + "Postal: Broadcom Corporation + 100 Perimeter Park, Dr., Suite H + Morrisville, NC 27560 + USA + Phone: +1 919 865 2700" + + DESCRIPTION + "This MIB module defines a portion of the SNMP MIB under + the Broadcom Corporation enterprise OID pertaining to + DNS Client control configuration" + + -- Revision history. + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Broadcom branding related changes." + REVISION + "200503281100Z" -- Mon Mar 28 11:00 GMT 2005 + DESCRIPTION + "Initial version of this MIB module." + ::= { fastPath 37 } + +-- ------------------------------------------------------------- +-- Textual Conventions +-- ------------------------------------------------------------- + + DnsCacheEntryType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A DNS cache entry type. This is for address or + for canonical name." + SYNTAX INTEGER { dnsCacheAddresstype(1), + dnsCacheCnametye(2) } + + + fastPathDnsResCtlMIBObjects OBJECT IDENTIFIER ::= { fastPathDnsResControlMIB 1 } + + agentResCtlglobal OBJECT IDENTIFIER ::= { fastPathDnsResCtlMIBObjects 1 } + agentResCtlServConfig OBJECT IDENTIFIER ::= { fastPathDnsResCtlMIBObjects 2 } + agentResCtlStaticServConfig OBJECT IDENTIFIER ::= { fastPathDnsResCtlMIBObjects 3 } +-- agentResCtlCacheConfig OBJECT IDENTIFIER ::= { dnsResCtlMIBObjects 4 } + + + -- Resolver Control Configuration Group + + agentResCtlAdminMode OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The dns client administrative modes supported by the device. + The dns client services can be turned on or off." + ::= {agentResCtlglobal 1 } + + agentResCtlDefDomainName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The default domain name for unqualified hostnames." + ::= {agentResCtlglobal 2 } + + agentResCtlCacheFlushStatus OBJECT-TYPE + SYNTAX INTEGER { dnsCacheFlushEnable(1), + dnsCacheFlushDisable(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The cache Flush status. If set to enable all dynamic cache + entries would be removed." + ::= {agentResCtlglobal 3 } + + agentResCtlRequestTimeout OBJECT-TYPE + SYNTAX INTEGER (0..3600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The timeout before retransmitting a request to the server. The + timeout value is configured and displayed in seconds." + DEFVAL { 3 } + ::= {agentResCtlglobal 4 } + + agentResCtlRequestRetransmits OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The number of times the request is retransmitted. The request + is retransmitted provided the maximum timeout value allows + this many number of retransmits." + DEFVAL { 2 } + ::= {agentResCtlglobal 5 } + + agentResCtlDomainListTable OBJECT-TYPE + SYNTAX SEQUENCE OF ResCtlDomainListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A table for default domain list." + ::= {agentResCtlglobal 6} + + agentResCtlDomainListEntry OBJECT-TYPE + SYNTAX ResCtlDomainListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the DNS domain name list. + Rows may be created or deleted at any time by the DNS + Resolver and by SNMP SET requests." + INDEX {agentResCtlDomainListName } + ::= {agentResCtlDomainListTable 1 } + + ResCtlDomainListEntry ::= + SEQUENCE { + agentResCtlDomainListName + DisplayString, + agentResCtlDomainListNameStatus + RowStatus + } + + agentResCtlDomainListName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The dns domain list entry identified by + this row of the table." + ::= {agentResCtlDomainListEntry 1 } + + agentResCtlDomainListNameStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of the DNS domain list Entry Table + Supported values: + active(1) - valid entry + createAndGo(4) - used to create a new entry + destroy(6) - removes the entry" + ::= {agentResCtlDomainListEntry 2 } + + -- DNS Resolver Control Server Configuration Table + + agentResCtlServConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF ResCtlConfigIPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of DNS servers list" + ::= {agentResCtlServConfig 1 } + + agentResCtlConfigIPEntry OBJECT-TYPE + SYNTAX ResCtlConfigIPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the DNS Servers list. + Rows may be created or deleted at any time by the DNS + Resolver and by SNMP SET requests." + INDEX {agentResCtlDnsNameServerIP } + ::= {agentResCtlServConfigTable 1 } + + ResCtlConfigIPEntry ::= + SEQUENCE { + agentResCtlDnsNameServerIP + IpAddress, + agentResCtlDnsNameServerStatus + RowStatus + } + + agentResCtlDnsNameServerIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The IP address of the dns server identified by + this row of the table." + ::= {agentResCtlConfigIPEntry 1 } + + agentResCtlDnsNameServerStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of the DNS Server Address Table + Supported values: + active(1) - valid entry + createAndGo(4) - used to create a new entry + destroy(6) - removes the entry" + ::= {agentResCtlConfigIPEntry 2 } + + -- DNS Resolver Control Static Host Name IP Address Table + + agentResCtlStaticServConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF ResCtlStaticServEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Static table of DNS hostname to IP address table" + ::= {agentResCtlStaticServConfig 1 } + + agentResCtlStaticServEntry OBJECT-TYPE + SYNTAX ResCtlStaticServEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the static DNS hostname IP address list. + Rows may be created or deleted at any time by the DNS + Resolver and by SNMP SET requests." + INDEX {agentResCtlStaticHostName, + agentResCtlStaticIPAddress } + ::= {agentResCtlStaticServConfigTable 1 } + + ResCtlStaticServEntry ::= + SEQUENCE { + agentResCtlStaticHostName + OCTET STRING, + agentResCtlStaticIPAddress + IpAddress, + agentResCtlStaticNameServerStatus + RowStatus + } + + agentResCtlStaticHostName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0 .. 255)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The static hostname to be stored in the name server table." + ::= {agentResCtlStaticServEntry 1 } + + agentResCtlStaticIPAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The IP address of the dns server for the static hostname." + ::= {agentResCtlStaticServEntry 2 } + + agentResCtlStaticNameServerStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of the Static Host Name - IP Address Table + Supported values: + active(1) - valid entry + createAndGo(4) - used to create a new entry + destroy(6) - removes the entry" + ::= {agentResCtlStaticServEntry 3 } + +END diff --git a/mibs/FASTPATH-DOT1X-ADVANCED-FEATURES-MIB.mib b/mibs/FASTPATH-DOT1X-ADVANCED-FEATURES-MIB.mib new file mode 100644 index 0000000..7903e90 --- /dev/null +++ b/mibs/FASTPATH-DOT1X-ADVANCED-FEATURES-MIB.mib @@ -0,0 +1,452 @@ +-- Dot1x Advanced Features MIB overview: +-- Dot1x Advanced Features MIB falls under fastPath MIB node of the private subtree. + +FASTPATH-DOT1X-ADVANCED-FEATURES-MIB DEFINITIONS ::= BEGIN + +-- Broadcom Corporation FastPath Dot1x Advanced Features MIB +-- Copyright Broadcom Corporation (2003-2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, + Unsigned32 FROM SNMPv2-SMI + dot1xPaePortNumber FROM IEEE8021-PAE-MIB + TEXTUAL-CONVENTION, + RowStatus,MacAddress FROM SNMPv2-TC + DisplayString FROM RFC1213-MIB + fastPath FROM BROADCOM-REF-MIB; + + + fastPathdot1xAdvanced MODULE-IDENTITY + LAST-UPDATED "200705230000Z" -- 23 May 2007 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 100, Perimeter Park Drive + Morrisville, NC 27560 + Tel: +1 919 865 2700" + + DESCRIPTION + "The Broadcom Private MIB for FastPath Dot1x Advanced Features " + + -- Revision history. + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Broadcom branding related changes." + + ::= { fastPath 36 } + + +Dot1xPortControlMode ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The control values of the Authenticator PAE controlled + Port." + SYNTAX INTEGER { + forceUnauthorized(1), + auto(2), + forceAuthorized(3), + macBased(4) + } + +Dot1xSessionTerminationAction ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The action to be taken on session termination ." + SYNTAX INTEGER { + default(1), + reauthenticate(2) + } + +agentDot1xEnhancementConfigGroup OBJECT IDENTIFIER ::= { fastPathdot1xAdvanced 1 } + + agentDot1xRadiusVlanAssignment OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/Disable dot1x Vlan Assignment Support on the switch." + DEFVAL { disable } + ::= { agentDot1xEnhancementConfigGroup 1 } + + +--************************************************************************************** +-- agentDot1xPortConfigGroup -> Contains MIB objects configuring/displaying Dot1x Port details +-- and associated Functionality +-- +--************************************************************************************** + + agentDot1xPortConfigGroup OBJECT IDENTIFIER ::= { fastPathdot1xAdvanced 2 } + +-------------------------------------------------------------- +-- The Dot1x Enhanced Port Table +-------------------------------------------------------------- + + agentDot1xPortConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDot1xPortConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A table for dot1x enhanced Port details and associated functionality." + ::= { agentDot1xPortConfigGroup 1 } + + agentDot1xPortConfigEntry OBJECT-TYPE + SYNTAX AgentDot1xPortConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Represents entry for port config table." + INDEX { dot1xPaePortNumber} + ::= {agentDot1xPortConfigTable 1 } + + AgentDot1xPortConfigEntry ::= SEQUENCE { + agentDot1xPortControlMode + Dot1xPortControlMode, + agentDot1xGuestVlanId + Unsigned32, + agentDot1xGuestVlanPeriod + Unsigned32, + agentDot1xUnauthenticatedVlan + Unsigned32, + agentDot1xMaxUsers + Unsigned32, + agentDot1xPortVlanAssigned + Unsigned32, + agentDot1xPortVlanAssignedReason + INTEGER, + agentDot1xPortSessionTimeout + Unsigned32, + agentDot1xPortTerminationAction + Dot1xSessionTerminationAction, + agentDot1xPortMABenabled + INTEGER, + agentDot1xPortMABenabledOperational + INTEGER + + } + + agentDot1xPortControlMode OBJECT-TYPE + SYNTAX Dot1xPortControlMode + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Dot1x port control mode of this port.The Port control mode . + The port control mode for this interface can take the following values , + force-unauthorized - the port is in unauthorized mode, + auto-Port based mode. If a client authenticates suscessfully, then the interface is authorized . + Otherwise, the port is in unauthorized mode. + If more than one clients are attached to the port , then only one client needs to authenticate to allow other clients access. + force-authorized - The port is placed in authorized mode + macBased - If more than one client is attached to the port, then each client needs to authenticate separately. + This object depcreates dot1xAuthAuthControlledPortControl object in IEEE8021-PAE-MIB" + DEFVAL {auto} + ::= { agentDot1xPortConfigEntry 1} + + agentDot1xGuestVlanId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specifies the Guest Vlan of the port. A port will + be moved to its Guest Vlan if no client sucessfully + authenticates on that port for the Guest Vlan Period. + A value of zero indicates no Guest Vlan is configured for the interface." + DEFVAL {0} + ::= { agentDot1xPortConfigEntry 2} + + agentDot1xGuestVlanPeriod OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value, in seconds, of the guestVlanPeriod constant + currently in use for Guest Vlan Assignment for the + port ." + DEFVAL { 90 } + ::= { agentDot1xPortConfigEntry 3 } + + + agentDot1xUnauthenticatedVlan OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specifies the Unauthenticated Vlan of the port. A port will + be moved to its unauthenticated Vlan if the client authenticates unsucessfully + on that port . + A value of zero indicates no Unauthenticated Vlan is configured for the port. " + DEFVAL {0} + ::= { agentDot1xPortConfigEntry 4} + + agentDot1xMaxUsers OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Specifies the maximum users or clients that can authenticate on this port when the port control mode is macBased. " + ::= { agentDot1xPortConfigEntry 5} + + agentDot1xPortVlanAssigned OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Specifies the vlan the port is assigned to by Dot1x . + Only relevant if the port control mode of the port is auto. " + DEFVAL {0} + ::= { agentDot1xPortConfigEntry 6} + + agentDot1xPortVlanAssignedReason OBJECT-TYPE + SYNTAX INTEGER { + default(1), + radius(2), + unauthenticatedVlan(3), + guestVlan(4), + notAssigned(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Reason the port is assigned to the vlan specified by agentDot1xPortVlanAssigned . + Only relevant if the port control mode of the port is auto. " + DEFVAL {5} + ::= { agentDot1xPortConfigEntry 7} + + agentDot1xPortSessionTimeout OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Specifies the session timeout value assigned by the Radius server for this port . + Only relevant if the port control mode of the port is auto. " + ::= { agentDot1xPortConfigEntry 8} + + agentDot1xPortTerminationAction OBJECT-TYPE + SYNTAX Dot1xSessionTerminationAction + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Specifies the session termination action assigned by the Radius Server .This is the action taken when the session times out . + Only relevant if the port control mode of the port is auto. " + DEFVAL {1} + ::= { agentDot1xPortConfigEntry 9} + + agentDot1xPortMABenabled OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Specifies if Mac-based bypass authentication is configured for the port. " + DEFVAL {2} + ::= { agentDot1xPortConfigEntry 10} + + agentDot1xPortMABenabledOperational OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Displays the operational value of the Mac-based authentication bypass mode (MAB) on the port. " + DEFVAL {2} + ::= { agentDot1xPortConfigEntry 11} + +--************************************************************************************** +-- agentDot1xClientConfigGroup -> Contains MIB objects displaying Dot1x Client details and +-- associated Functionality +-- +--************************************************************************************** + + agentDot1xClientConfigGroup OBJECT IDENTIFIER ::= { fastPathdot1xAdvanced 3 } + + agentDot1xClientConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDot1xClientConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A table for dot1x Client details and associated functionality." + ::= { agentDot1xClientConfigGroup 1 } + + agentDot1xClientConfigEntry OBJECT-TYPE + SYNTAX AgentDot1xClientConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Represents entry for port config table." + INDEX { agentDot1xClientMacAddress} + ::= {agentDot1xClientConfigTable 1 } + + AgentDot1xClientConfigEntry ::= SEQUENCE { + agentDot1xClientMacAddress + MacAddress, + agentDot1xLogicalPort + Unsigned32, + agentDot1xInterface + Unsigned32, + agentDot1xClientAuthPAEstate + INTEGER, + agentDot1xClientBackendState + INTEGER, + agentDot1xClientUserName + DisplayString, + agentDot1xClientSessionTime + Unsigned32, + agentDot1xClientFilterID + DisplayString, + agentDot1xClientVlanAssigned + Unsigned32, + agentDot1xClientVlanAssignedReason + INTEGER, + agentDot1xClientSessionTimeout + Unsigned32, + agentDot1xClientTerminationAction + Dot1xSessionTerminationAction + } + + agentDot1xClientMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies the client MAC address of the client. " + ::= { agentDot1xClientConfigEntry 1} + + agentDot1xLogicalPort OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies the client MAC address of the client . " + ::= { agentDot1xClientConfigEntry 2} + + agentDot1xInterface OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies the physical interface to which the client is attached . " + ::= { agentDot1xClientConfigEntry 3} + + agentDot1xClientAuthPAEstate OBJECT-TYPE + SYNTAX INTEGER { + initialize(1), + disconnected(2), + connecting(3), + authenticating(4), + authenticated(5), + aborting(6), + held(7), + forceAuth(8), + forceUnauth(9) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current value of the Authenticator PAE state + machine for the client." + ::={ agentDot1xClientConfigEntry 4} + + agentDot1xClientBackendState OBJECT-TYPE + SYNTAX INTEGER { + request(1), + response(2), + success(3), + fail(4), + timeout(5), + idle(6), + initialize(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current state of the Backend Authentication + state machine." + ::={ agentDot1xClientConfigEntry 5} + + agentDot1xClientUserName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies the username with which the client is authenticated to the Radius server . + This value is only valid when the client is in authenticated state. " + ::= { agentDot1xClientConfigEntry 6} + + agentDot1xClientSessionTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies the time elapsed in seconds since the client was authenticated in this session. + This value is only valid when the client is in authenticated state. " + ::= { agentDot1xClientConfigEntry 7} + + agentDot1xClientFilterID OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies the Filter ID or Diffserv Policy name to be applied to the session . + This vlaue is populated only if it has been assigned by the RADIUS server. + This value is only valid when the client is in authenticated state." + ::= { agentDot1xClientConfigEntry 8} + + agentDot1xClientVlanAssigned OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies the vlan the client is associated with by Dot1x . + This value is only valid when the client is in authenticated state." + ::= { agentDot1xClientConfigEntry 9} + + agentDot1xClientVlanAssignedReason OBJECT-TYPE + SYNTAX INTEGER { + default(1), + radius(2), + unauthenticatedVlan(3), + invalid(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Reason the client is associated to the vlan specified by agentDot1xClientVlanAssigned . + This value is only valid when the client is in authenticated state." + ::= { agentDot1xClientConfigEntry 10} + + agentDot1xClientSessionTimeout OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies the session time remaining for the client if assigned by the Radius server . + A value of 0 indicates that no session timeout was assigned by the RADIUS server. + This value is only valid when the client is in authenticated state. " + ::= { agentDot1xClientConfigEntry 11} + + agentDot1xClientTerminationAction OBJECT-TYPE + SYNTAX Dot1xSessionTerminationAction + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies the session termination action assigned by the Radius Server . + This is the action taken when the session times out . + This value is only valid when the client is in authenticated state. " + ::= { agentDot1xClientConfigEntry 12} +END + diff --git a/mibs/FASTPATH-INVENTORY-MIB.mib b/mibs/FASTPATH-INVENTORY-MIB.mib new file mode 100644 index 0000000..af88d34 --- /dev/null +++ b/mibs/FASTPATH-INVENTORY-MIB.mib @@ -0,0 +1,1189 @@ +FASTPATH-INVENTORY-MIB DEFINITIONS ::= BEGIN + +-- Copyright Broadcom Corporation (2003-2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, Integer32, Gauge32, Counter32, + Unsigned32, TimeTicks, NOTIFICATION-TYPE FROM SNMPv2-SMI + TEXTUAL-CONVENTION, DisplayString, + RowStatus FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP + FROM SNMPv2-CONF + fastPath FROM BROADCOM-REF-MIB; + + fastPathInventory MODULE-IDENTITY + LAST-UPDATED "200705230000Z" -- 23 May 2007 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 100 Perimeter Park Dr., Suite H + Morrisville, NC 27560 + Tel: +1 919 865 2700" + DESCRIPTION + "This MIB defines the objects used for FastPath to + configure and report information and status of units, + slots and supported cards." + + -- Revision history. + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Broadcom branding related changes." + REVISION + "200410282037Z" -- Thu Jun 26 20:37:34 2003 GMT + DESCRIPTION + "Version 2 - Add support for Front Panel Stacking configuration." + REVISION + "200305261930Z" -- Thu Jun 26 19:30:54 2003 GMT + DESCRIPTION + "Initial version." + + ::= { fastPath 13 } + + AgentInventoryUnitPreference ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Indicates the preference the unit has for being the + management unit in the stack. If the value is 0, it + indicates the unit is disabled for management." + SYNTAX INTEGER { + disabled(0), + unsassigned(1), + assigned(2) + } + + AgentInventoryUnitType ::= TEXTUAL-CONVENTION + DISPLAY-HINT "x" + STATUS current + DESCRIPTION + "The Unit Type value for a given unit, displayed in hexadecimal." + SYNTAX Unsigned32 + + AgentInventoryCardType ::= TEXTUAL-CONVENTION + DISPLAY-HINT "x" + STATUS current + DESCRIPTION + "The Card Type value for a given card, displayed in hexadecimal." + SYNTAX Unsigned32 + + --************************************************************************************** + -- agentInventoryStackGroup + -- + --************************************************************************************** + + agentInventoryStackGroup OBJECT IDENTIFIER ::= { fastPathInventory 1 } + + agentInventoryStackReplicateSTK OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Initiates STK copy from management unit to all other management capable units in + the stack." + ::= { agentInventoryStackGroup 1 } + + agentInventoryStackReload OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Initiates stack reload." + ::= { agentInventoryStackGroup 2 } + + agentInventoryStackMaxUnitNumber OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the maximum allowed Unit Number configurable on the stack." + ::= { agentInventoryStackGroup 3 } + + agentInventoryStackReplicateSTKStatus OBJECT-TYPE + SYNTAX INTEGER { + inProgress(1), + notInProgress(2), + finishedWithSuccess(3), + finishedWithError(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current status of an STK copy from management unit to all other + management capable units inthe stack." + ::= { agentInventoryStackGroup 4 } + + agentInventoryStackSTKname OBJECT-TYPE + SYNTAX INTEGER { + unconfigured(1), + image1(2), + image2(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "STK file on management unit for copy/activate/delete operations to all units in the stack + unconfigured(1) - indicates a default state and can not be set." + ::= { agentInventoryStackGroup 5 } + + agentInventoryStackActivateSTK OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Activates the specified STK file on all units on the stack." + ::= { agentInventoryStackGroup 6 } + + agentInventoryStackDeleteSTK OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Deletes the specified STK file from all units on the stack." + ::= { agentInventoryStackGroup 7 } + + + --************************************************************************************** + -- agentInventoryUnitGroup + -- + --************************************************************************************** + + agentInventoryUnitGroup OBJECT IDENTIFIER ::= { fastPathInventory 2 } + + --************************************************************************************** + -- agentInventorySupportedUnitTable + -- + --************************************************************************************** + + agentInventorySupportedUnitTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentInventorySupportedUnitEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "TODO" + ::= { agentInventoryUnitGroup 1 } + + agentInventorySupportedUnitEntry OBJECT-TYPE + SYNTAX AgentInventorySupportedUnitEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "TODO" + INDEX { agentInventorySupportedUnitIndex } + ::= { agentInventorySupportedUnitTable 1 } + + AgentInventorySupportedUnitEntry ::= + SEQUENCE { + agentInventorySupportedUnitIndex + Unsigned32, + agentInventorySupportedUnitModelIdentifier + DisplayString, + agentInventorySupportedUnitDescription + DisplayString, + agentInventorySupportedUnitExpectedCodeVer + DisplayString + } + + agentInventorySupportedUnitIndex OBJECT-TYPE + SYNTAX Unsigned32 (1..100) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The unit identifier associated with the supported unit." + ::= { agentInventorySupportedUnitEntry 1 } + + agentInventorySupportedUnitModelIdentifier OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The model identifier for the supported unit." + ::= { agentInventorySupportedUnitEntry 4 } + + agentInventorySupportedUnitDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..80)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The description of the supported unit." + ::= { agentInventorySupportedUnitEntry 5 } + + agentInventorySupportedUnitExpectedCodeVer OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The expected code version." + ::= { agentInventorySupportedUnitEntry 6 } + + --************************************************************************************** + -- agentInventoryUnitTable + -- + --************************************************************************************** + + agentInventoryUnitTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentInventoryUnitEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of Per-Unit configuration objects." + ::= { agentInventoryUnitGroup 2 } + + agentInventoryUnitEntry OBJECT-TYPE + SYNTAX AgentInventoryUnitEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each Instance corresponds with a different unit managed by this agent." + INDEX { agentInventoryUnitNumber } + ::= { agentInventoryUnitTable 1 } + + AgentInventoryUnitEntry ::= + SEQUENCE { + agentInventoryUnitNumber + Unsigned32, + agentInventoryUnitAssignNumber + Unsigned32, + agentInventoryUnitType + AgentInventoryUnitType, + agentInventoryUnitSupportedUnitIndex + Unsigned32, + agentInventoryUnitMgmtAdmin + INTEGER, + agentInventoryUnitHWMgmtPref + AgentInventoryUnitPreference, + agentInventoryUnitHWMgmtPrefValue + Unsigned32, + agentInventoryUnitAdminMgmtPref + AgentInventoryUnitPreference, + agentInventoryUnitAdminMgmtPrefValue + Unsigned32, + agentInventoryUnitStatus + INTEGER, + agentInventoryUnitDetectedCodeVer + DisplayString, + agentInventoryUnitDetectedCodeInFlashVer + DisplayString, + agentInventoryUnitUpTime + TimeTicks, + agentInventoryUnitDescription + DisplayString, + agentInventoryUnitReplicateSTK + INTEGER, + agentInventoryUnitReload + INTEGER, + agentInventoryUnitRowStatus + RowStatus, + agentInventoryUnitSerialNumber + DisplayString, + agentInventoryUnitImage1Version + DisplayString, + agentInventoryUnitImage2Version + DisplayString, + agentInventoryUnitSTKname + INTEGER, + agentInventoryUnitActivateSTK + INTEGER, + agentInventoryUnitDeleteSTK + INTEGER, + agentInventoryUnitReplicateSTKStatus + INTEGER, + agentInventoryUnitStandby + INTEGER + } + + agentInventoryUnitNumber OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The unit number associated with this unit." + ::= { agentInventoryUnitEntry 1 } + + agentInventoryUnitAssignNumber OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Allows setting the unit number associated with this unit. This number must + be less than the value returned by agentInventoryStackMaxUnitNumber. Setting + this object to a non-zero value will initate unit renumbering. The switch will + be reset to perform unit renumbering and the configuration of switch interfaces + will be cleared. If the unit being renumbered is the manager of the stack, then + all the switches in the stack will be reset to perform Manager unit renumbering + and the configuration of Manager switch interfaces will be cleared." + ::= { agentInventoryUnitEntry 2 } + + agentInventoryUnitType OBJECT-TYPE + SYNTAX AgentInventoryUnitType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Unit Type identifier for this unit." + ::= { agentInventoryUnitEntry 3 } + + agentInventoryUnitSupportedUnitIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The index of the unit type in agentInventorySupportedUnitTable which this unit + is associated with." + ::= { agentInventoryUnitEntry 4 } + + agentInventoryUnitMgmtAdmin OBJECT-TYPE + SYNTAX INTEGER { + mgmtUnit(1), + stackUnit(2), + mgmtUnassigned(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Indicates whether the unit is a Management Unit, a Stack Unit, or has + been configured to be a Management Unit. + + Setting this object to mgmtUnit(1) initiates transfer of the + management functionality to the specified stack unit. Object values + stackUnit(2) and mgmtUnassigned(3) cannot be set." + ::= { agentInventoryUnitEntry 6 } + + agentInventoryUnitHWMgmtPref OBJECT-TYPE + SYNTAX AgentInventoryUnitPreference + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the default preference assigned to the unit." + ::= { agentInventoryUnitEntry 7 } + + agentInventoryUnitHWMgmtPrefValue OBJECT-TYPE + SYNTAX Unsigned32 (0|1..15) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the default preference value assigned to the unit. + The preference value indicates how likely this unit is to be + chosen as the management unit. A value of 0 indicates a disabled + or unassigned preference." + ::= { agentInventoryUnitEntry 8 } + + agentInventoryUnitAdminMgmtPref OBJECT-TYPE + SYNTAX AgentInventoryUnitPreference + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Indicates the configured preference assigned to the unit. This object + can not be set to assigned(3). Setting this object to disabled(1), + or unassigned(2) will set agentInventoryUnitHWMgmtPrefValue to 0." + ::= { agentInventoryUnitEntry 9 } + + agentInventoryUnitAdminMgmtPrefValue OBJECT-TYPE + SYNTAX Unsigned32 (0|1..15) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Indicates the configured preference value assigned to the unit. + The preference value indicates how likely this unit is to be + chosen as the management unit. A value of 0 indicates a disabled + or unassigned preference. Setting this object to 0 will also set + agentInventoryUnitHWMgmtPref to unassigned(2). Setting this object + to a non-zero value will set agentInventoryUnitHWMgmtPref to + assigned(3). This value overrides the value of + agentInventoryUnitHWMgmtPref if assigned." + ::= { agentInventoryUnitEntry 10 } + + agentInventoryUnitStatus OBJECT-TYPE + SYNTAX INTEGER { + ok(1), + unsupported(2), + codeMismatch(3), + configMismatch(4), + notPresent(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit status of this unit." + ::= { agentInventoryUnitEntry 11 } + + agentInventoryUnitDetectedCodeVer OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The version of code running on this unit. If the unit is not + detected then the code version is an empty string." + ::= { agentInventoryUnitEntry 12 } + + agentInventoryUnitDetectedCodeInFlashVer OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The version of code that is currently stored in FLASH + memory on the unit. This code will execute after the unit + is reset. If the unit is not detected then this object will + return an empty string." + ::= { agentInventoryUnitEntry 13 } + + agentInventoryUnitUpTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The system up time of the unit." + ::= { agentInventoryUnitEntry 14 } + + agentInventoryUnitDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..80)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The description of the unit." + ::= { agentInventoryUnitEntry 15 } + + agentInventoryUnitReplicateSTK OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Initiates the specified STK file copy from management unit to this unit." + ::= { agentInventoryUnitEntry 16 } + + agentInventoryUnitReload OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Reload a specific unit in the stack." + ::= { agentInventoryUnitEntry 17 } + + agentInventoryUnitRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this unit instance. Creation of new instances requires the object + agentInventoryUnitSupportedUnitIndex to be set at the same time to indicate the type + of of unit to pre-configure. + + active(1) - This instance is active. + createAndGo(4) - Creates a new instance. + destroy(6) - Removes this instance." + ::= { agentInventoryUnitEntry 18 } + + agentInventoryUnitSerialNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Serial Number of the unit." + ::= { agentInventoryUnitEntry 19 } + + agentInventoryUnitImage1Version OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..80)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Code version for Image1." + ::= { agentInventoryUnitEntry 20 } + + agentInventoryUnitImage2Version OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..80)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Code version for Image2." + ::= { agentInventoryUnitEntry 21 } + + agentInventoryUnitSTKname OBJECT-TYPE + SYNTAX INTEGER { + image1(2), + image2(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "STK file to be used for copy/delete/activate operatiosn." + ::= { agentInventoryUnitEntry 22 } + + agentInventoryUnitActivateSTK OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Activates the specified STK file on this unit." + ::= { agentInventoryUnitEntry 23 } + + agentInventoryUnitDeleteSTK OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Deletes the specified STK file on this unit." + ::= { agentInventoryUnitEntry 24 } + + agentInventoryUnitReplicateSTKStatus OBJECT-TYPE + SYNTAX INTEGER { + inProgress(1), + notInProgress(2), + finishedWithSuccess(3), + finishedWithError(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current status of an STK copy from the management unit to another + management capable unit in the stack." + ::= { agentInventoryUnitEntry 25 } + + agentInventoryUnitStandby OBJECT-TYPE + SYNTAX INTEGER { + unassigned(1), + standby-opr(2), + standby-cfg(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the standby status of this unit. The Management unit may not be + configured. A unit that is standby_cfg(3) may be set to uassigned(1) to clear + standby configuration. A unit that is standby_opr(2) may NOT be set to + unassigned(1)." + ::= { agentInventoryUnitEntry 26 } + + --************************************************************************************** + -- agentInventorySlotGroup + -- + --************************************************************************************** + + agentInventorySlotGroup OBJECT IDENTIFIER ::= { fastPathInventory 3 } + + --************************************************************************************** + -- agentInventorySlotTable + -- + --************************************************************************************** + + agentInventorySlotTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentInventorySlotEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "TODO" + ::= { agentInventorySlotGroup 1 } + + agentInventorySlotEntry OBJECT-TYPE + SYNTAX AgentInventorySlotEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "TODO" + INDEX { agentInventoryUnitNumber, agentInventorySlotNumber } + ::= { agentInventorySlotTable 1 } + + AgentInventorySlotEntry ::= + SEQUENCE { + agentInventorySlotNumber + Unsigned32, + agentInventorySlotStatus + INTEGER, + agentInventorySlotPowerMode + INTEGER, + agentInventorySlotAdminMode + INTEGER, + agentInventorySlotInsertedCardType + AgentInventoryCardType, + agentInventorySlotConfiguredCardType + AgentInventoryCardType, + agentInventorySlotCapabilities + BITS + } + + agentInventorySlotNumber OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An incrimental index of the slot in this unit." + ::= { agentInventorySlotEntry 1 } + + agentInventorySlotStatus OBJECT-TYPE + SYNTAX INTEGER { + empty(1), + full(2), + error(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current status of the slot." + ::= { agentInventorySlotEntry 3 } + + agentInventorySlotPowerMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates whether a card in this slot will be powered on." + ::= { agentInventorySlotEntry 4 } + + agentInventorySlotAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates whether this card is administratively enabled or + disabled." + ::= { agentInventorySlotEntry 5 } + + agentInventorySlotInsertedCardType OBJECT-TYPE + SYNTAX AgentInventoryCardType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the inserted card type. Will return 0 if the slot is + not full." + ::= { agentInventorySlotEntry 6 } + + agentInventorySlotConfiguredCardType OBJECT-TYPE + SYNTAX AgentInventoryCardType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates the configured card type. This object may be set with a + corresponding value of agentInventoryCardType if this slot supports + removable cards." + ::= { agentInventorySlotEntry 7 } + + agentInventorySlotCapabilities OBJECT-TYPE + SYNTAX BITS { + pluggable(0), + power-down(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the different capabilities this slot has. + + pluggable(0) - This slot can contain pluggable cards. + power-down(1) - Power to this slot can be controlled through the object + agentInventorySlotPowerMode + " + ::= { agentInventorySlotEntry 8 } + + --************************************************************************************** + -- agentInventoryCardGroup + -- + --************************************************************************************** + + agentInventoryCardGroup OBJECT IDENTIFIER ::= { fastPathInventory 4 } + + --************************************************************************************** + -- agentInventoryCardTypeTable + -- + --************************************************************************************** + + agentInventoryCardTypeTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentInventoryCardTypeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Contains information for all supported Card Types in the system." + ::= { agentInventoryCardGroup 1 } + + agentInventoryCardTypeEntry OBJECT-TYPE + SYNTAX AgentInventoryCardTypeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Contains information related to a specific Card Type." + INDEX { agentInventoryCardIndex } + ::= { agentInventoryCardTypeTable 1 } + + AgentInventoryCardTypeEntry ::= + SEQUENCE { + agentInventoryCardIndex + Unsigned32, + agentInventoryCardType + AgentInventoryCardType, + agentInventoryCardModelIdentifier + DisplayString, + agentInventoryCardDescription + DisplayString + } + + agentInventoryCardIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An arbitrary index used to identify cards in the table." + ::= { agentInventoryCardTypeEntry 1 } + + agentInventoryCardType OBJECT-TYPE + SYNTAX AgentInventoryCardType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Card Type associated with this instance." + ::= { agentInventoryCardTypeEntry 2 } + + agentInventoryCardModelIdentifier OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The model identifier for the supported Card Type." + ::= { agentInventoryCardTypeEntry 3 } + + agentInventoryCardDescription OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The card description for the supported Card Type." + ::= { agentInventoryCardTypeEntry 4 } + + --************************************************************************************** + -- agentInventoryComponentGroup + -- + --************************************************************************************** + + agentInventoryComponentGroup OBJECT IDENTIFIER ::= { fastPathInventory 5 } + + + --************************************************************************************** + -- agentInventoryComponentTable + -- + --************************************************************************************** + + agentInventoryComponentTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentInventoryComponentEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Contains information for all supported Components in the system." + ::= { agentInventoryComponentGroup 1 } + + agentInventoryComponentEntry OBJECT-TYPE + SYNTAX AgentInventoryComponentEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Contains information related to a specific Components." + INDEX { agentInventoryComponentIndex } + ::= { agentInventoryComponentTable 1 } + + AgentInventoryComponentEntry ::= + SEQUENCE { + agentInventoryComponentIndex + Unsigned32, + agentInventoryComponentMnemonic + DisplayString, + agentInventoryComponentName + DisplayString + } + + agentInventoryComponentIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An arbitrary index used to reference components in the table." + ::= { agentInventoryComponentEntry 1 } + + agentInventoryComponentMnemonic OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The abreviated name of this component." + ::= { agentInventoryComponentEntry 2 } + + agentInventoryComponentName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the component for this instance." + ::= { agentInventoryComponentEntry 3 } + + --************************************************************************************** + -- agentInventoryComponentGroup + -- + --************************************************************************************** + + agentInventoryStackPortGroup OBJECT IDENTIFIER ::= { fastPathInventory 7 } + + + agentInventoryStackPortIpTelephonyQOSSupport OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Controls whether the Stack Ports give higher priority to IP Telephony traffic." + ::= { agentInventoryStackPortGroup 1 } + + --************************************************************************************** + -- agentInventoryStackPortTable + -- + --************************************************************************************** + + agentInventoryStackPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentInventoryStackPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Contains information for all Stack Ports present in the system." + ::= { agentInventoryStackPortGroup 2 } + + agentInventoryStackPortEntry OBJECT-TYPE + SYNTAX AgentInventoryStackPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Contains information related to a specific Stack Port." + INDEX { agentInventoryStackPortIndex } + ::= { agentInventoryStackPortTable 1 } + + AgentInventoryStackPortEntry ::= + SEQUENCE { + agentInventoryStackPortIndex + Unsigned32, + agentInventoryStackPortUnit + Unsigned32, + agentInventoryStackPortTag + DisplayString, + agentInventoryStackPortConfiguredStackMode + INTEGER, + agentInventoryStackPortRunningStackMode + INTEGER, + agentInventoryStackPortLinkStatus + INTEGER, + agentInventoryStackPortLinkSpeed + Gauge32, + agentInventoryStackPortDataRate + Counter32, + agentInventoryStackPortErrorRate + Counter32, + agentInventoryStackPortTotalErrors + Counter32 + } + + agentInventoryStackPortIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An arbitrary index used to reference Stack Ports in the table." + ::= { agentInventoryStackPortEntry 1 } + + agentInventoryStackPortUnit OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Unit Index this Stack Port is physically located on." + ::= { agentInventoryStackPortEntry 2 } + + agentInventoryStackPortTag OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the Stack Port for this instance." + ::= { agentInventoryStackPortEntry 3 } + + agentInventoryStackPortConfiguredStackMode OBJECT-TYPE + SYNTAX INTEGER { + stack(1), + ethernet(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured mode of the Stack Port. Changes to this + value happen only after a reset of the switch." + ::= { agentInventoryStackPortEntry 4 } + + agentInventoryStackPortRunningStackMode OBJECT-TYPE + SYNTAX INTEGER { + stack(1), + ethernet(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Currently operational mode of the Stack Port." + ::= { agentInventoryStackPortEntry 5 } + + agentInventoryStackPortLinkStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Link status of the Stack Port. Ports which are in ethernet + mode will return a status of down(2)." + ::= { agentInventoryStackPortEntry 6 } + + agentInventoryStackPortLinkSpeed OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Speed of the Stack Port measured in Gb/s. Ports which are + in ethernet mode will return a speed of 0." + ::= { agentInventoryStackPortEntry 7 } + + agentInventoryStackPortDataRate OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Approximate data rate on the stacking port. Measured in Gb/s. + Ports which are in ethernet mode will return 0." + ::= { agentInventoryStackPortEntry 8 } + + agentInventoryStackPortErrorRate OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Approximate error rate on the stack port. Measured in Errors + per Second. Ports which are in ethernet mode will return 0." + ::= { agentInventoryStackPortEntry 9 } + + agentInventoryStackPortTotalErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of errors since boot. The counter may wrap. Ports + which are in ethernet mode will return 0." + ::= { agentInventoryStackPortEntry 10 } + + --************************************************************************************** + -- agentInventory Traps + -- + --************************************************************************************** + + agentInventoryTraps OBJECT IDENTIFIER ::= { fastPathInventory 0 } + + agentInventoryCardMismatch NOTIFICATION-TYPE + OBJECTS { + agentInventoryUnitNumber, + agentInventorySlotNumber, + agentInventorySlotInsertedCardType, + agentInventorySlotConfiguredCardType + } + STATUS current + DESCRIPTION + "Sent when a card is inserted which is a different type than + what the slot was configured for." + ::= { agentInventoryTraps 1 } + + agentInventoryCardUnsupported NOTIFICATION-TYPE + OBJECTS { + agentInventoryUnitNumber, + agentInventorySlotNumber, + agentInventorySlotInsertedCardType + } + STATUS current + DESCRIPTION + "Sent when a card is inserted which is of a type that is not + supported by the slot." + ::= { agentInventoryTraps 2 } + + agentInventoryStackPortLinkUp NOTIFICATION-TYPE + OBJECTS { + agentInventoryStackPortUnit, + agentInventoryStackPortTag + } + STATUS current + DESCRIPTION + "Sent when a Stack Port is connected to annother Stack Member." + ::= { agentInventoryTraps 3 } + + agentInventoryStackPortLinkDown NOTIFICATION-TYPE + OBJECTS { + agentInventoryStackPortUnit, + agentInventoryStackPortTag + } + STATUS current + DESCRIPTION + "Sent when a Stack Port is disconnected from annother Stack Member." + ::= { agentInventoryTraps 4 } + + +-- conformance information +fastPathInventoryConformance OBJECT IDENTIFIER ::= { fastPathInventory 6 } + +fastPathInventoryCompliances OBJECT IDENTIFIER ::= { fastPathInventoryConformance 1 } +fastPathInventoryGroups OBJECT IDENTIFIER ::= { fastPathInventoryConformance 2 } + +-- compliance statements +fastPathInventoryCompliance MODULE-COMPLIANCE + STATUS obsolete + DESCRIPTION + "The compliance statement for SNMP entities which implement + version 1 of the fastPathInventory MIB." + MODULE -- this module + MANDATORY-GROUPS { + fastPathInventorySlotGroup, + fastPathInventoryCardGroup, + fastPathInventoryCardGroup + } + GROUP fastPathInventoryUnitGroup + DESCRIPTION + "Implementation of the agentInventoryUnitTable is only mandatory + on systems which support the capability of managing multiple units + in a stack." + ::= { fastPathInventoryCompliances 1 } + +fastPathInventoryCompliance2 MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for SNMP entities which implement + version 2 of the fastPathInventory MIB." + MODULE -- this module + MANDATORY-GROUPS { + fastPathInventorySlotGroup, + fastPathInventoryCardGroup, + fastPathInventoryCardGroup + } + GROUP fastPathInventoryUnitGroup + DESCRIPTION + "Implementation of the agentInventoryUnitTable is only mandatory + on systems which support the capability of managing multiple units + in a stack." + + ::= { fastPathInventoryCompliances 2 } + +-- MIB groupings +fastPathInventorySupportedUnitGroup OBJECT-GROUP + OBJECTS { + agentInventorySupportedUnitIndex, + agentInventorySupportedUnitModelIdentifier, + agentInventorySupportedUnitDescription, + agentInventorySupportedUnitExpectedCodeVer + } + STATUS current + DESCRIPTION + "The collection of objects which are used to represent + multiple units in the stack." + ::= { fastPathInventoryGroups 1 } + +fastPathInventoryUnitGroup OBJECT-GROUP + OBJECTS { + agentInventoryUnitNumber, + agentInventoryUnitAssignNumber, + agentInventoryUnitType, + agentInventoryUnitMgmtAdmin, + agentInventoryUnitHWMgmtPref, + agentInventoryUnitAdminMgmtPref, + agentInventoryUnitStatus, + agentInventoryUnitDetectedCodeVer, + agentInventoryUnitDetectedCodeInFlashVer, + agentInventoryUnitUpTime, + agentInventoryUnitDescription, + agentInventoryUnitReplicateSTK, + agentInventoryUnitRowStatus, + agentInventoryUnitImage1Version, + agentInventoryUnitImage2Version, + agentInventoryUnitSTKname, + agentInventoryUnitActivateSTK, + agentInventoryUnitDeleteSTK, + agentInventoryUnitSTKname + } + STATUS current + DESCRIPTION + "The collection of objects which are used to represent + multiple units in the stack." + ::= { fastPathInventoryGroups 2 } + +fastPathInventorySlotGroup OBJECT-GROUP + OBJECTS { + agentInventorySlotNumber, + agentInventorySlotStatus, + agentInventorySlotPowerMode, + agentInventorySlotAdminMode, + agentInventorySlotInsertedCardType, + agentInventorySlotConfiguredCardType + } + STATUS current + DESCRIPTION + "The collection of objects which are used to represent + slots in the each unit managed by this agent." + ::= { fastPathInventoryGroups 3 } + +fastPathInventoryCardGroup OBJECT-GROUP + OBJECTS { + agentInventoryCardIndex, + agentInventoryCardType, + agentInventoryCardModelIdentifier, + agentInventoryCardDescription + } + STATUS current + DESCRIPTION + "The collection of objects which are used to represent + the card types this system can manage." + ::= { fastPathInventoryGroups 4 } + +fastPathInventoryNotificationsGroup NOTIFICATION-GROUP + NOTIFICATIONS { + agentInventoryCardMismatch, + agentInventoryCardUnsupported + } + STATUS current + DESCRIPTION + "The collection of notifications used to indicate problems + associated with the insertion of cards." + ::= { fastPathInventoryGroups 5 } + +END diff --git a/mibs/FASTPATH-IPV6-LOOPBACK-MIB.mib b/mibs/FASTPATH-IPV6-LOOPBACK-MIB.mib new file mode 100644 index 0000000..66d2a81 --- /dev/null +++ b/mibs/FASTPATH-IPV6-LOOPBACK-MIB.mib @@ -0,0 +1,112 @@ +FASTPATH-IPV6-LOOPBACK-MIB DEFINITIONS ::= BEGIN + +-- Broadcom Corporation FastPath IPV6 Loopback MIB +-- Copyright Broadcom Corporation (2001-2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE FROM SNMPv2-SMI + RowStatus + FROM SNMPv2-TC + InetAddressPrefixLength FROM INET-ADDRESS-MIB + Ipv6AddressPrefix FROM IPV6-TC + agentLoopbackID FROM FASTPATH-LOOPBACK-MIB + fastPath FROM BROADCOM-REF-MIB; + + fastPathIpv6Loopback MODULE-IDENTITY + LAST-UPDATED "200705230000Z" -- 23 May 2007 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 100, Perimeter Park Drive + Morrisville, NC 27560 + Tel: +1 919 865 2700" + DESCRIPTION + "The Broadcom Private MIB for FastPath Loopback IPV6 address configuration" + + -- Revision history. + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Broadcom branding related changes." + + + ::= { fastPath 23 } + --************************************************************************************** + -- agentLoopbackIpv6Group + -- + --************************************************************************************** + + agentLoopbackIpv6Group OBJECT IDENTIFIER ::= { fastPathIpv6Loopback 1 } + + agentLoopbackIpv6PrefixTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentLoopbackIpv6PrefixEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the Ipv6 prefixes associated with loopback instances" + ::= { agentLoopbackIpv6Group 1 } + + agentLoopbackIpv6PrefixEntry OBJECT-TYPE + SYNTAX AgentLoopbackIpv6PrefixEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { agentLoopbackID, agentLoopbackIpv6PrefixPrefix, agentLoopbackIpv6PrefixPrefixLen} + ::= { agentLoopbackIpv6PrefixTable 1 } + + AgentLoopbackIpv6PrefixEntry ::= SEQUENCE { + agentLoopbackIpv6PrefixPrefix + Ipv6AddressPrefix, + agentLoopbackIpv6PrefixPrefixLen + InetAddressPrefixLength, + agentLoopbackIpv6PrefixStatus + RowStatus + } + + agentLoopbackIpv6PrefixPrefix OBJECT-TYPE + SYNTAX Ipv6AddressPrefix + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The prefix associated with the loopback interface. The data type + is used to model the Ipv6 address. It is a binary string + of 16 octects in network byte-order. It specifies the IP + address of loopback which will be in Ipv6 Format, generated + using internal interface number." + ::= { agentLoopbackIpv6PrefixEntry 1 } + + agentLoopbackIpv6PrefixPrefixLen OBJECT-TYPE + SYNTAX InetAddressPrefixLength + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The length of the prefix (in bits)." + DEFVAL { 0 } + ::= { agentLoopbackIpv6PrefixEntry 2 } + + agentLoopbackIpv6PrefixStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of this instance.Row can be added or deleted + by setting the value to createAndGo/destroy + + active(1) - this Loopback instance is active + createAndGo(4) - set to this value to create an instance + destroy(6) - set to this value to delete an instance" + ::= { agentLoopbackIpv6PrefixEntry 3 } +END diff --git a/mibs/FASTPATH-IPV6-TUNNEL-MIB.mib b/mibs/FASTPATH-IPV6-TUNNEL-MIB.mib new file mode 100644 index 0000000..a1deb97 --- /dev/null +++ b/mibs/FASTPATH-IPV6-TUNNEL-MIB.mib @@ -0,0 +1,253 @@ +FASTPATH-IPV6-TUNNEL-MIB DEFINITIONS ::= BEGIN + +-- Broadcom Corporation FastPath IPV6 Tunnel MIB +-- Copyright Broadcom Corporation (2001-2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32 FROM SNMPv2-SMI + RowStatus FROM SNMPv2-TC + Ipv6IfIndex, Ipv6Address, Ipv6AddressPrefix + FROM IPV6-TC + InetAddressIPv4, InetAddressPrefixLength + FROM INET-ADDRESS-MIB + fastPath FROM BROADCOM-REF-MIB; + + fastPathIpv6Tunnel MODULE-IDENTITY + LAST-UPDATED "200705230000Z" -- 23 May 2007 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 100, Perimeter Park Drive + Morrisville, NC 27560 + Tel: +1 919 865 2700" + DESCRIPTION + "The Broadcom Private MIB for FastPath IPV6 Tunnel" + + -- Revision history. + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Broadcom branding related changes." + + + ::= { fastPath 27 } + + --************************************************************************************** + -- agentTunnelIPV6Group + -- + --************************************************************************************** + agentTunnelIPV6Group OBJECT IDENTIFIER ::= { fastPathIpv6Tunnel 1 } + + agentTunnelIPV6Table OBJECT-TYPE + SYNTAX SEQUENCE OF AgentTunnelIPV6Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A summary table of the IPV6 tunnel instances" + ::= { agentTunnelIPV6Group 1 } + + agentTunnelIPV6Entry OBJECT-TYPE + SYNTAX AgentTunnelIPV6Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { agentTunnelID } + ::= { agentTunnelIPV6Table 1 } + + AgentTunnelIPV6Entry ::= SEQUENCE { + agentTunnelID + Integer32, + agentTunnelIfIndex + Integer32, + agentTunnelMode + INTEGER, + agentTunnelLocalIP4Addr + InetAddressIPv4, + agentTunnelRemoteIP4Addr + InetAddressIPv4, + agentTunnelLocalIfIndex + Integer32, + agentTunnelIcmpUnreachableMode + INTEGER, + agentTunnelStatus + RowStatus + } + + + agentTunnelID OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The tunnel ID is associated with Internal Interface number + which is generated when we create a tunnel, and is used + to configure the tunnel." + ::= { agentTunnelIPV6Entry 1 } + + agentTunnelIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The external interface of the tunnel is associted with + internal interface. The tunnel ID associated with + Internal Interface number is generated when we create a + tunnel, which is used to configure the tunnel." + ::= { agentTunnelIPV6Entry 2 } + + + agentTunnelMode OBJECT-TYPE + SYNTAX INTEGER { + undefined(1), + ip6over4(2), + ip6to4(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the type of Tunnel either undefined, 6over4 or 6to4. + The default value is undefined. It supports 6over4 + which supports an assigned IPV6 address, an IPV4 address + is not allowed. For this mode, the tunnel source and + tunnel destination must be IPV4 address. For 6to4 tunnel, + the tunnel source must be IPv4 address. Tunnel destination + should not be set. The first 48-bits of the IPv4 address assigned + to the 6to4 tunnel should be of the format 2002:sourceIpv4address." + DEFVAL { undefined } + ::= { agentTunnelIPV6Entry 3 } + + agentTunnelLocalIP4Addr OBJECT-TYPE + SYNTAX InetAddressIPv4 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The address of the Local endpoint of the tunnel i.e. the + source address used in the outer IP header. It is 0.0.0.0 + if unknown or the tunnel is over IPv6." + + ::= { agentTunnelIPV6Entry 4 } + + agentTunnelRemoteIP4Addr OBJECT-TYPE + SYNTAX InetAddressIPv4 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The address of the Remote endpoint of the tunnel i.e. + the destination address used in the outer IP header. It is + 0.0.0.0 if the tunnel is unknown or IPv6 address, or not + a point to point link" + + ::= { agentTunnelIPV6Entry 5 } + + agentTunnelLocalIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specifies the interface for IPv6 Tunnel Source" + ::= { agentTunnelIPV6Entry 6} + + agentTunnelStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of this instance.Row can be added or deleted + by setting the value to createAndGo/destroy + + active(1) - this Tunnel instance is active + createAndGo(4) - set to this value to create an instance + destroy(6) - set to this value to delete an instance" + ::= { agentTunnelIPV6Entry 7 } + + agentTunnelIcmpUnreachableMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the Mode of Sending ICMPv6 Unreachable + messages on this tunnel interface." + ::= { agentTunnelIPV6Entry 8} + + + agentTunnelIPV6PrefixTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentTunnelIPV6PrefixEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the IPV6 prefixes associated with tunnel instances" + ::= { agentTunnelIPV6Group 2 } + + agentTunnelIPV6PrefixEntry OBJECT-TYPE + SYNTAX AgentTunnelIPV6PrefixEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { agentTunnelID, agentTunnelIPV6PrefixPrefix, agentTunnelIPV6PrefixPrefixLen} + ::= { agentTunnelIPV6PrefixTable 1 } + + AgentTunnelIPV6PrefixEntry ::= SEQUENCE { + agentTunnelIPV6PrefixPrefix + Ipv6AddressPrefix, + agentTunnelIPV6PrefixPrefixLen + InetAddressPrefixLength, + agentTunnelIPV6PrefixStatus + RowStatus + } + + agentTunnelIPV6PrefixPrefix OBJECT-TYPE + SYNTAX Ipv6AddressPrefix + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The prefix associated with the tunnel interface. The data type + is used to model the IPV6 address. It is a binary string + of 16 octects in network byte-order. It specifies the IP + address of tunnel which will be in IPV6 Format, generated + using internal interface number." + ::= { agentTunnelIPV6PrefixEntry 1 } + + agentTunnelIPV6PrefixPrefixLen OBJECT-TYPE + SYNTAX InetAddressPrefixLength + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The length of the prefix (in bits)." + DEFVAL { 0 } + ::= { agentTunnelIPV6PrefixEntry 2 } + + agentTunnelIPV6PrefixStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of this instance.Row can be added or deleted + by setting the value to createAndGo/destroy + + active(1) - this Tunnel instance is active + createAndGo(4) - set to this value to create an instance + destroy(6) - set to this value to delete an instance" + ::= { agentTunnelIPV6PrefixEntry 3 } +END + + + + diff --git a/mibs/FASTPATH-ISDP-MIB.mib b/mibs/FASTPATH-ISDP-MIB.mib new file mode 100644 index 0000000..d8f1e4d --- /dev/null +++ b/mibs/FASTPATH-ISDP-MIB.mib @@ -0,0 +1,548 @@ +FASTPATH-ISDP-MIB DEFINITIONS ::= BEGIN + +-- Broadcom Corporation FastPath Switching MIB +-- Copyright Broadcom Corporation (2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, Integer32, Unsigned32,Counter32 FROM SNMPv2-SMI + TEXTUAL-CONVENTION, TimeStamp FROM SNMPv2-TC + fastPath FROM BROADCOM-REF-MIB + DisplayString FROM RFC1213-MIB; + + fastPathIsdp MODULE-IDENTITY + LAST-UPDATED "200712030000Z" -- 03 December 2007 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 100, Perimeter Park Drive + Morrisville, NC 27560 + Tel: +1 919 865 2700" + DESCRIPTION + "The Broadcom Private MIB for FastPath ISDP" + + -- Revision history. + REVISION + "201001110000Z" -- 11th january 2010 12:00:00 GMT + DESCRIPTION + "Device ID can be system's host name too." + REVISION + "200712030000Z" -- 03 December 2007 12:00:00 GMT + DESCRIPTION + "Initial version." + + ::= { fastPath 39 } + + +agentIsdpMIBObjects OBJECT IDENTIFIER ::= { fastPathIsdp 1 } +agentIsdpCache OBJECT IDENTIFIER ::= { agentIsdpMIBObjects 2 } +agentIsdpInterface OBJECT IDENTIFIER ::= { agentIsdpMIBObjects 3 } + +-- **************************************************************************** +-- +-- The ISDP Interface Group +-- Manage ISDP on interface. +-- +-- **************************************************************************** + +agentIsdpInterfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentIsdpInterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The (conceptual) table containing the status of ISDP on + the device's interfaces." + ::= { agentIsdpInterface 1 } + +agentIsdpInterfaceEntry OBJECT-TYPE + SYNTAX AgentIsdpInterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry (conceptual row) in the agentIsdpInterfaceTable, + containing the status of ISDP on an interface." + INDEX { agentIsdpInterfaceIfIndex } + ::= { agentIsdpInterfaceTable 1 } + +AgentIsdpInterfaceEntry ::= SEQUENCE { + agentIsdpInterfaceIfIndex Integer32, + agentIsdpInterfaceEnable INTEGER + } + +agentIsdpInterfaceIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The ifIndex value of the local interface. + + For 802.3 Repeaters on which the repeater ports do not + have ifIndex values assigned, this value is a unique + value for the port, and greater than any ifIndex value + supported by the repeater; in this case, the specific + port is indicated by corresponding values of + agentIsdpInterfaceGroup and agentIsdpInterfacePort, where these + values correspond to the group number and port number + values of RFC 1516." + ::= { agentIsdpInterfaceEntry 1 } + +agentIsdpInterfaceEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(0) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An indication of whether the Industry Standard Discovery Protocol + is currently running on this interface. This variable + has no effect when ISDP is disabled (agentIsdpGlobalRun = FALSE)." + ::= { agentIsdpInterfaceEntry 2 } + +-- **************************************************************************** +-- +-- The ISDP Cache Group +-- Display Cache ISDP settings. +-- +-- **************************************************************************** + +agentIsdpCacheTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentIsdpCacheEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The (conceptual) table containing the cached + information obtained via receiving ISDP messages." + ::= { agentIsdpCache 1 } + +agentIsdpCacheEntry OBJECT-TYPE + SYNTAX AgentIsdpCacheEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry (conceptual row) in the agentIsdpCacheTable, + containing the information received via ISDP on one + interface from one device. Entries appear when + a ISDP advertisement is received from a neighbor + device. Entries disappear when ISDP is disabled + on the interface, or globally." + INDEX { agentIsdpCacheIfIndex, agentIsdpCacheIndex } + ::= { agentIsdpCacheTable 1 } + +AgentIsdpCacheEntry ::= SEQUENCE { + agentIsdpCacheIfIndex Integer32, + agentIsdpCacheIndex Integer32, + agentIsdpCacheLocalIntf DisplayString, + agentIsdpCacheAddress DisplayString, + agentIsdpCacheVersion DisplayString, + agentIsdpCacheDeviceId DisplayString, + agentIsdpCacheDevicePort DisplayString, + agentIsdpCachePlatform DisplayString, + agentIsdpCacheCapabilities DisplayString, + agentIsdpCacheLastChange TimeStamp, + agentIsdpCacheProtocolVersion DisplayString, + agentIsdpCacheHoldtime INTEGER +} + +agentIsdpCacheIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Normally, the ifIndex value of the local interface." + ::= { agentIsdpCacheEntry 1 } + +agentIsdpCacheIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index value is unique integer id of each neighbor entry." + ::= { agentIsdpCacheEntry 2 } + +agentIsdpCacheAddress OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The (first) network-layer address of the device's + SNMP-agent as reported in the Address TLV of the most recently + received ISDP message. For example, if the corresponding + instance of cacheAddressType had the value 'ip(1)', then + this object would be an IP-address." + ::= { agentIsdpCacheEntry 3 } + +agentIsdpCacheLocalIntf OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The device Interface which had this neighbor." + ::= { agentIsdpCacheEntry 4 } + +agentIsdpCacheVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Version string as reported in the most recent ISDP + message. The zero-length string indicates that no Version + field (TLV) was reported in the most recent ISDP + message." + ::= { agentIsdpCacheEntry 5 } + +agentIsdpCacheDeviceId OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Device-ID string as reported in the most recent ISDP + message. The zero-length string indicates that no Device-ID + field (TLV) was reported in the most recent ISDP + message." + ::= { agentIsdpCacheEntry 6 } + +agentIsdpCacheDevicePort OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Port-ID string as reported in the most recent ISDP + message. This will typically be the value of the ifName + object (e.g., 'Ethernet0'). The zero-length string + indicates that no Port-ID field (TLV) was reported in the + most recent ISDP message." + ::= { agentIsdpCacheEntry 7 } + +agentIsdpCachePlatform OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Device's Hardware Platform as reported in the most + recent ISDP message. The zero-length string indicates + that no Platform field (TLV) was reported in the most + recent ISDP message." + ::= { agentIsdpCacheEntry 8 } + +agentIsdpCacheCapabilities OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Device's Functional Capabilities as reported in the + most recent ISDP message. For latest set of specific + values, see the latest version of the ISDP specification. + The zero-length string indicates that no Capabilities field + (TLV) was reported in the most recent ISDP message." + + ::= { agentIsdpCacheEntry 9 } + +agentIsdpCacheLastChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the time when this cache entry was last changed. + This object is initialised to the current time when the entry + gets created and updated to the current time whenever the value + of any (other) object instance in the corresponding row is + modified." + ::= { agentIsdpCacheEntry 10 } + +agentIsdpCacheProtocolVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Device's version of ISDP protcol as reported in the + most recent ISDP message." + + ::= { agentIsdpCacheEntry 11 } + +agentIsdpCacheHoldtime OBJECT-TYPE + SYNTAX INTEGER (10..255) + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Device's ISDP Holdtime as reported in the most + recent ISDP message." + ::= { agentIsdpCacheEntry 12 } + +-- *************************************************************************** +-- +-- The ISDP Global Group +-- Manage Global ISDP settings. +-- +-- *************************************************************************** +agentIsdpGlobal OBJECT IDENTIFIER ::= { agentIsdpMIBObjects 1 } + +-- **************************************************************************** +-- +-- The ISDP Clear Group +-- +-- **************************************************************************** +agentIsdpClear OBJECT IDENTIFIER ::= { agentIsdpGlobal 1 } + + agentIsdpClearStats OBJECT-TYPE + SYNTAX INTEGER { + clear(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Clear ISDP stats." + ::= { agentIsdpClear 1 } + + agentIsdpClearEntries OBJECT-TYPE + SYNTAX INTEGER { + clear(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Clear ISDP entries table." + ::= { agentIsdpClear 2 } + +-- **************************************************************************** +-- +-- The ISDP Statistics Group +-- +-- **************************************************************************** +agentIsdpStatistics OBJECT IDENTIFIER ::= { agentIsdpGlobal 2 } + + agentIsdpStatisticsPduReceived OBJECT-TYPE + SYNTAX Counter32 + UNITS "packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the number of all ISDP pdu received." + ::= { agentIsdpStatistics 1 } + + agentIsdpStatisticsPduTransmit OBJECT-TYPE + SYNTAX Counter32 + UNITS "packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the number of all ISDP pdu transmitted." + ::= { agentIsdpStatistics 2 } + + agentIsdpStatisticsV1PduReceived OBJECT-TYPE + SYNTAX Counter32 + UNITS "packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the number of v1 ISDP pdu received." + ::= { agentIsdpStatistics 3 } + + agentIsdpStatisticsV1PduTransmit OBJECT-TYPE + SYNTAX Counter32 + UNITS "packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the number of v1 ISDP pdu transmitted." + ::= { agentIsdpStatistics 4 } + + agentIsdpStatisticsV2PduReceived OBJECT-TYPE + SYNTAX Counter32 + UNITS "packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the number of v2 ISDP pdu received." + ::= { agentIsdpStatistics 5 } + + agentIsdpStatisticsV2PduTransmit OBJECT-TYPE + SYNTAX Counter32 + UNITS "packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the number of v2 ISDP pdu transmitted." + ::= { agentIsdpStatistics 6 } + + agentIsdpStatisticsBadHeaderPduReceived OBJECT-TYPE + SYNTAX Counter32 + UNITS "packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the number of ISDP pdu with bad header received." + ::= { agentIsdpStatistics 7 } + + agentIsdpStatisticsChkSumErrorPduReceived OBJECT-TYPE + SYNTAX Counter32 + UNITS "packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the number of ISDP pdu with chksum error received." + ::= { agentIsdpStatistics 8 } + + agentIsdpStatisticsFailurePduTransmit OBJECT-TYPE + SYNTAX Counter32 + UNITS "packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the number of ISDP pdu transmition failures." + ::= { agentIsdpStatistics 9 } + + agentIsdpStatisticsInvalidFormatPduReceived OBJECT-TYPE + SYNTAX Counter32 + UNITS "packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the number of ISDP pdu in invalid format received." + ::= { agentIsdpStatistics 10 } + + agentIsdpStatisticsTableFull OBJECT-TYPE + SYNTAX Counter32 + UNITS "times" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the number of ISDP entry table was full." + ::= { agentIsdpStatistics 11 } + + agentIsdpStatisticsIpAddressTableFull OBJECT-TYPE + SYNTAX Counter32 + UNITS "times" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display the number of ISDP entry address table was full." + ::= { agentIsdpStatistics 12 } + +agentIsdpGlobalRun OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(0) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An indication of whether the Indastry Standart Discovery Protocol + is currently running. Entries in agentIsdpCacheTable are + deleted when ISDP is disabled." + DEFVAL { 1 } + ::= { agentIsdpGlobal 4 } + +agentIsdpGlobalMessageInterval OBJECT-TYPE + SYNTAX INTEGER (5..254) + UNITS "seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The interval at which ISDP messages are to be generated. + The default value is 60 seconds. This is also known as the ISDP timer." + DEFVAL { 60 } + ::= { agentIsdpGlobal 5 } + +agentIsdpGlobalHoldTime OBJECT-TYPE + SYNTAX INTEGER (10..255) + UNITS "seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The time for the receiving device holds ISDP message. + The default value is 180 seconds." + DEFVAL { 180 } + ::= { agentIsdpGlobal 6 } + +agentIsdpGlobalDeviceId OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The device ID advertised by this device. The format of this + device ID is characterized by the value of + agentIsdpGlobalDeviceIdFormat object." + ::= { agentIsdpGlobal 7 } + +agentIsdpGlobalAdvertiseV2 OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(0) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An indication of whether the Indastry Standart Discovery Protocol V2 + is currently enabled." + ::= { agentIsdpGlobal 8 } + +agentIsdpGlobalDeviceIdFormatCpb OBJECT-TYPE + SYNTAX BITS { + serialNumber(1), + macAddress(2), + other (4), + hostName(8) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the Device ID format capability of the device. + + serialNumber(0) indicates that the device supports using + serial number as the format for its Device ID. + + macAddress(1) indicates that the device supports using + layer 2 MAC address as the format for its Device ID. + + other(2) indicates that the device supports using its + platform specific format as the format for its Device ID. + + hostName(3) indicates that the device supports using + system Host Name as the format for its Device ID." + + ::= { agentIsdpGlobal 9 } + +agentIsdpGlobalDeviceIdFormat OBJECT-TYPE + SYNTAX INTEGER { + serialNumber(1), + macAddress(2), + other(3), + hostName(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An indication of the format of Device ID contained in the + corresponding instance of agentIsdpGlobalDeviceId. User can only + specify the formats which the device is capable of as + denoted in agentIsdpGlobalDeviceIdFormatCpb object. + + serialNumber(1) indicates that the value of agentIsdpGlobalDeviceId + object is in the form of an ASCII string contain the device + serial number. + + macAddress(2) indicates that the value of agentIsdpGlobalDeviceId + object is in the form of Layer 2 MAC address. + + other(3) indicates that the value of agentIsdpGlobalDeviceId object + is in the form of a platform specific ASCII string contain + info that identifies the device. For example: ASCII string + contains serialNumber appended/prepened with system name. + + hostName(4) indicates that the value of agentIsdpGlobalDeviceIdFormat + object is in system Host Name format." + + ::= { agentIsdpGlobal 10 } +END diff --git a/mibs/FASTPATH-KEYING-PRIVATE-MIB.mib b/mibs/FASTPATH-KEYING-PRIVATE-MIB.mib new file mode 100644 index 0000000..d9927bf --- /dev/null +++ b/mibs/FASTPATH-KEYING-PRIVATE-MIB.mib @@ -0,0 +1,133 @@ +-- Feature Keying MIB overview: +-- Feature Keying MIB falls under fastPath MIB node of the private subtree. + + + +FASTPATH-KEYING-PRIVATE-MIB DEFINITIONS ::= BEGIN + +-- Broadcom FASTPATH Keying MIB +-- Copyright Broadcom Corporation (2004-2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporations +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, + Unsigned32 FROM SNMPv2-SMI + + + TEXTUAL-CONVENTION,RowStatus, + RowPointer FROM SNMPv2-TC + + DisplayString FROM RFC1213-MIB + ng7000managedswitch FROM BROADCOM-REF-MIB; + + fastPathKeyingPrivate MODULE-IDENTITY + LAST-UPDATED "200705230000Z" -- 23 May 2007 12:00:00 GMT + ORGANIZATION "Netgear" + CONTACT-INFO + "" + + DESCRIPTION + "The NETGEAR Private MIB for FASTPATH Keying Utility" + + -- Revision history. + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Netgear branding related changes." + + ::= { ng7000managedswitch 24 } + + + --************************************************************************************** + -- agentFeatureKeyingGroup -> contains MIB objects displaying Key and associated Functionality + -- + --************************************************************************************** + +agentFeatureKeyingGroup OBJECT IDENTIFIER ::= { fastPathKeyingPrivate 1 } + +agentFeatureKeyingEnableKey OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Hexadecimal Key-string entered to enable an advance functionality." + ::={ agentFeatureKeyingGroup 1 } + +agentFeatureKeyingDisableKey OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Hexadecimal Key-string entered to disable an advance functionality." + ::={ agentFeatureKeyingGroup 2 } + + +agentFeatureKeyingTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentFeatureKeyingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A table for license key and associated functionality. " + ::= { agentFeatureKeyingGroup 3 } + +agentFeatureKeyingEntry OBJECT-TYPE + SYNTAX AgentFeatureKeyingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Represents entry for key table" + INDEX { agentFeatureKeyingIndex } + ::={ agentFeatureKeyingTable 1} + + AgentFeatureKeyingEntry ::= + SEQUENCE { + agentFeatureKeyingIndex + Unsigned32, + agentFeatureKeyingName + DisplayString, + agentFeatureKeyingStatus + INTEGER + } + + agentFeatureKeyingIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A value corresponding to a keyable feature.When this table is walked, + only values associated with keyable features are returned.This value + must be equivalent to valid value of agentFeatureKeyingIndex." + ::={ agentFeatureKeyingEntry 1 } + + agentFeatureKeyingName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The abbreviated name of this component.This is also equivalent to + agentFeatureKeyingName" + ::={ agentFeatureKeyingEntry 2 } + + agentFeatureKeyingStatus OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Returns a value of (1) if the feature is enabled for management, + (2) if disabled." + ::={agentFeatureKeyingEntry 3 } + +END + diff --git a/mibs/FASTPATH-LOGGING-MIB.mib b/mibs/FASTPATH-LOGGING-MIB.mib new file mode 100644 index 0000000..1a7680a --- /dev/null +++ b/mibs/FASTPATH-LOGGING-MIB.mib @@ -0,0 +1,519 @@ +FASTPATH-LOGGING-MIB DEFINITIONS ::= BEGIN + +-- Copyright Broadcom Corporation (2004-2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter32, Gauge32, + Unsigned32, TimeTicks, NOTIFICATION-TYPE FROM SNMPv2-SMI + TEXTUAL-CONVENTION, DisplayString, + DateAndTime, RowStatus FROM SNMPv2-TC + fastPath FROM BROADCOM-REF-MIB + InetAddress, InetAddressType FROM INET-ADDRESS-MIB + agentInventoryComponentIndex FROM FASTPATH-INVENTORY-MIB; + + AgentLogFacility ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Facility code used in determining the SysLog Priority value." + REFERENCE + "RFC3164 - 4.1.1: Table 1" + SYNTAX INTEGER { + kernel(0), -- kernel messages + user(1), -- user-level messages + mail(2), -- mail system + system(3), -- system daemons + security(4), -- security/authorization messages + syslog(5), -- messages generated internally by syslogd + lpr(6), -- line printer subsystem + nntp(7), -- network news subsystem + uucp(8), -- UUCP subsystem + cron(9), -- clock daemon + auth (10), -- security/authorization messages + ftp(11), -- FTP daemon + ntp(12), -- NTP subsystem + audit(13), -- log audit + alert(14), -- log alert + clock(15), -- clock daemon + local0(16), -- local use 0 + local1(17), -- local use 1 + local2(18), -- local use 2 + local3(19), -- local use 3 + local4(20), -- local use 4 + local5(21), -- local use 5 + local6(22), -- local use 6 + local7(23) -- local use 7 + } + + AgentLogSeverity ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Severity code used in determining the SysLog Priority value." + REFERENCE + "RFC3164 - 4.1.1: Table 2" + SYNTAX INTEGER { + emergency(0), -- System is unusable. System failure has occurred. + alert(1), -- Action must be taken immediately. Unrecoverable + -- failure of a component. System failure likely. + critical(2), -- Critical conditions. Recoverable failure of a + -- component that may lead to system failure. + error(3), -- Error conditions. Recoverable failure of a component. + warning(4), -- Warning conditions. Minor failure, e.g. + -- misconfiguration of a component. + notice(5), -- Normal but significant conditions. + informational(6), -- Informational messages. + debug(7) -- Debug-level messages. + } + + fastPathLogging MODULE-IDENTITY + LAST-UPDATED "200705230000Z" -- 23 May 2007 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 100 Perimeter Park Dr., Suite H + Morrisville, NC 27560 + Tel: +1 919 865 2700" + DESCRIPTION + "This MIB provides objects to configure and display events logged + on this system." + + -- Revision history. + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Broadcom branding related changes." + REVISION + "200410261303Z" -- Tue Oct 23 13:03:07 2004 GMT + DESCRIPTION + "Initial version." + + ::= { fastPath 14 } + + --************************************************************************************** + -- agentLogConfigGroup + -- + --************************************************************************************** + + agentLogConfigGroup OBJECT IDENTIFIER ::= { fastPathLogging 1 } + + --************************************************************************************** + -- agentLogInMemoryConfigGroup + -- + --************************************************************************************** + + agentLogInMemoryConfigGroup OBJECT IDENTIFIER ::= { agentLogConfigGroup 1 } + + agentLogInMemoryAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Administratively enable/disable the In Memory log." + ::= { agentLogInMemoryConfigGroup 1 } + + + agentLogInMemoryBehavior OBJECT-TYPE + SYNTAX INTEGER { + wrap(1), + stop-on-full(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the behavior of the In Memory Log when it becomes full. A value of + wrap(1) will cause the oldest log message to be removed, making room for the new + message. A value of stop-on-full(2) will prevent any further logging." + ::= { agentLogInMemoryConfigGroup 4 } + + --************************************************************************************** + -- agentLogConsoleConfigGroup + -- + --************************************************************************************** + + agentLogConsoleConfigGroup OBJECT IDENTIFIER ::= { agentLogConfigGroup 2 } + + agentLogConsoleAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Admin mode for console logs" + ::= { agentLogConsoleConfigGroup 1 } + + agentLogConsoleSeverityFilter OBJECT-TYPE + SYNTAX AgentLogSeverity + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Severity filter for console logs" + ::= { agentLogConsoleConfigGroup 2 } + + --************************************************************************************** + -- agentLogPersistentConfigGroup + -- + --************************************************************************************** + + agentLogPersistentConfigGroup OBJECT IDENTIFIER ::= { agentLogConfigGroup 3 } + + agentLogPersistentAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This control disables/enables logging for the persistent startup log. Setting this + value to disable does not clear the current contents of the log." + ::= { agentLogPersistentConfigGroup 1 } + + agentLogPersistentSeverityFilter OBJECT-TYPE + SYNTAX AgentLogSeverity + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This control specifies the minimum severity to log to the startup and operation log. + Messages with an equal or lower numerical severity are logged." + ::= { agentLogPersistentConfigGroup 2 } + + --************************************************************************************** + -- agentLogSysLogConfigGroup + -- + --************************************************************************************** + + agentLogSysLogConfigGroup OBJECT IDENTIFIER ::= { agentLogConfigGroup 4 } + + agentLogSyslogAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "For Enabling and Disabling logging to configured syslog hosts. Setting this to disable + stops logging to all syslog hosts." + ::= { agentLogSysLogConfigGroup 1 } + + agentLogSyslogLocalPort OBJECT-TYPE + SYNTAX Unsigned32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This is the port on the local host from which syslog messages are sent." + ::= { agentLogSysLogConfigGroup 3 } + + agentLogSyslogMaxHosts OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum number of hosts that can be configured for logging syslog messages." + ::= { agentLogSysLogConfigGroup 4 } + + --************************************************************************************** + -- agentLogCliCommandsConfigGroup + -- + --************************************************************************************** + + agentLogCliCommandsConfigGroup OBJECT IDENTIFIER ::= { agentLogConfigGroup 5 } + + agentLogCliCommandsAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Administratively enable/disable the logging of the CLI Commands " + ::= { agentLogCliCommandsConfigGroup 1 } + + + --************************************************************************************** + -- agentLogSyslogHostTable + -- + --************************************************************************************** + + agentLogSyslogHostTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentLogSyslogHostEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Syslog host table containing syslog host entries." + ::= { agentLogSysLogConfigGroup 5 } + + agentLogSyslogHostEntry OBJECT-TYPE + SYNTAX AgentLogSyslogHostEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Syslog Host entry attributes." + INDEX { agentLogHostTableIndex } + ::= { agentLogSyslogHostTable 1 } + + AgentLogSyslogHostEntry ::= + SEQUENCE { + agentLogHostTableIndex + Unsigned32, + agentLogHostTableIpAddress + InetAddress, + agentLogHostTableIpAddressType + InetAddressType, + agentLogHostTablePort + Unsigned32, + agentLogHostTableSeverityFilter + AgentLogSeverity, + agentLogHostTableRowStatus + RowStatus + } + + agentLogHostTableIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index to syslog host entry in syslog host table." + ::= { agentLogSyslogHostEntry 1 } + + agentLogHostTableIpAddressType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Syslog Host table IP Address Type." + ::= { agentLogSyslogHostEntry 2 } + + agentLogHostTableIpAddress OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Syslog Host table IP Address." + ::= { agentLogSyslogHostEntry 3 } + + agentLogHostTablePort OBJECT-TYPE + SYNTAX Unsigned32 (1..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Syslog Host table port number." + ::= { agentLogSyslogHostEntry 4 } + + agentLogHostTableSeverityFilter OBJECT-TYPE + SYNTAX AgentLogSeverity + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Configures the minimum severity that will be stored in the In Memory log." + ::= { agentLogSyslogHostEntry 5 } + + agentLogHostTableRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Syslog Host table row status" + ::= { agentLogSyslogHostEntry 7 } + + + --************************************************************************************** + -- agentLogStatisticsGroup + -- + --************************************************************************************** + + agentLogStatisticsGroup OBJECT IDENTIFIER ::= { fastPathLogging 2 } + + agentLogMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of messages received by the log process. This includes messages that are + dropped or ignored." + ::= { agentLogStatisticsGroup 1 } + + agentLogMessagesDropped OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of messages that could not be processed due to error or lack of resources." + ::= { agentLogStatisticsGroup 2 } + + agentLogSyslogMessagesRelayed OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of messages forwarded by the syslog function to a syslog host. Messages forwarded + to multiple hosts are counted once for each host." + ::= { agentLogStatisticsGroup 3 } + + agentLogSyslogMessagesIgnored OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of messages that were not processed by the syslog process because the component name + or the priority level did not match any specification." + ::= { agentLogStatisticsGroup 4 } + + agentLogMessageReceivedTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The local time when a message was last received by the log subsystem specified as the number of + non-leap seconds since 00:00:00 UTC on January 1 1970." + ::= { agentLogStatisticsGroup 5 } + + agentLogSyslogMessageDeliveredTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The local time when a message was last delivered to a syslog host specified as the number of non-leap + seconds since 00:00:00 UTC on January 1 1970." + ::= { agentLogStatisticsGroup 6 } + + --************************************************************************************** + -- agentLogInMemoryGroup + -- + --************************************************************************************** + + agentLogInMemoryGroup OBJECT IDENTIFIER ::= { fastPathLogging 3 } + + agentLogInMemoryLogCount OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The count of valid entries in the in-memory log." + ::= { agentLogInMemoryGroup 1 } + + --************************************************************************************** + -- agentLogInMemoryTable + -- + --************************************************************************************** + + agentLogInMemoryTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentLogInMemoryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The in-memory log table containing sequence of in-memory log entries." + ::= { agentLogInMemoryGroup 2 } + + agentLogInMemoryEntry OBJECT-TYPE + SYNTAX AgentLogInMemoryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An individual message entry in in-memory log table." + INDEX { agentLogInMemoryMsgIndex } + ::= { agentLogInMemoryTable 1 } + + AgentLogInMemoryEntry ::= + SEQUENCE { + agentLogInMemoryMsgIndex + Unsigned32, + agentLogInMemoryMsgText + DisplayString + } + + agentLogInMemoryMsgIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index to message entry in the in-memory log table." + ::= { agentLogInMemoryEntry 1 } + + agentLogInMemoryMsgText OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Message text info for inmemory logged messages." + ::= { agentLogInMemoryEntry 2 } + + --************************************************************************************** + -- agentLogPersistentGroup + -- + --************************************************************************************** + + agentLogPersistentGroup OBJECT IDENTIFIER ::= { fastPathLogging 4 } + + agentLogPersistentLogCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The count of valid entries in the persistent log." + ::= { agentLogPersistentGroup 1 } + + --************************************************************************************** + -- agentLogPersistentTable + -- + --************************************************************************************** + + agentLogPersistentTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentLogPersistentEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table for storing persistent log messages." + ::= { agentLogPersistentGroup 4 } + + agentLogPersistentEntry OBJECT-TYPE + SYNTAX AgentLogPersistentEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Log entry details for logging message in persistent log table." + INDEX { agentLogMsgPersistentMsgIndex } + ::= { agentLogPersistentTable 1 } + + AgentLogPersistentEntry ::= + SEQUENCE { + agentLogMsgPersistentMsgIndex + Unsigned32, + agentLogMsgPersistentMsgText + DisplayString + } + + agentLogMsgPersistentMsgIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table index for logging message in persistent log table." + ::= { agentLogPersistentEntry 1 } + + agentLogMsgPersistentMsgText OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The text corresponding to persistent log message." + ::= { agentLogPersistentEntry 2 } + + +END diff --git a/mibs/FASTPATH-LOOPBACK-MIB.mib b/mibs/FASTPATH-LOOPBACK-MIB.mib new file mode 100644 index 0000000..43fb7f3 --- /dev/null +++ b/mibs/FASTPATH-LOOPBACK-MIB.mib @@ -0,0 +1,130 @@ +FASTPATH-LOOPBACK-MIB DEFINITIONS ::= BEGIN + +-- Broadcom Corporation FastPath Loopback MIB +-- Copyright Broadcom Corporation (2001-2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, IpAddress, + mib-2, Unsigned32, Integer32 FROM SNMPv2-SMI + RowStatus, DisplayString, PhysAddress, TruthValue + FROM SNMPv2-TC + InetAddressIPv4 FROM INET-ADDRESS-MIB + fastPath FROM BROADCOM-REF-MIB; + + fastPathLoopback MODULE-IDENTITY + LAST-UPDATED "200705230000Z" -- 23 May 2007 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 100, Perimeter Park Drive + Morrisville, NC 27560 + Tel: +1 919 865 2700" + DESCRIPTION + "The Broadcom Private MIB for FastPath Loopback" + + -- Revision history. + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Broadcom branding related changes." + + + ::= { fastPath 22 } + --************************************************************************************** + -- agentLoopbackIPV6Group + -- + --************************************************************************************** + + agentLoopbackGroup OBJECT IDENTIFIER ::= { fastPathLoopback 1 } + + agentLoopbackTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentLoopbackEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A summary table of the Loopback instances" + ::= { agentLoopbackGroup 1 } + + agentLoopbackEntry OBJECT-TYPE + SYNTAX AgentLoopbackEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { agentLoopbackID } + ::= { agentLoopbackTable 1 } + + AgentLoopbackEntry ::= SEQUENCE { + agentLoopbackID + Integer32, + agentLoopbackIfIndex + Integer32, + agentLoopbackIPAddress + InetAddressIPv4, + agentLoopbackIPSubnet + InetAddressIPv4, + agentLoopbackStatus + RowStatus + } + + agentLoopbackID OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Loopback ID is associated with Internal Interface number + which will be generated when we create a loopback." + ::= { agentLoopbackEntry 1 } + + agentLoopbackIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is external interface associated with inetrnal interface of loopback. + The Loopback ID is associated with Internal Interface number + which will be generated when we create a loopback." + ::= { agentLoopbackEntry 2 } + + agentLoopbackIPAddress OBJECT-TYPE + SYNTAX InetAddressIPv4 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP Address configured for the respective loopback" + ::= { agentLoopbackEntry 3 } + + agentLoopbackIPSubnet OBJECT-TYPE + SYNTAX InetAddressIPv4 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Subnet mask configured for the respective loopback" + ::= { agentLoopbackEntry 4 } + + agentLoopbackStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of this instance. The rows can be added/deleted in the table by setting createAndGo/destroy respectively + + active(1) - this loopback instance is active + createAndGo(4) - set to this value to create an instance + destroy(6) - set to this value to delete an instance" + ::= { agentLoopbackEntry 5 } + +END + diff --git a/mibs/FASTPATH-MGMT-SECURITY-MIB.mib b/mibs/FASTPATH-MGMT-SECURITY-MIB.mib new file mode 100644 index 0000000..c69bb0d --- /dev/null +++ b/mibs/FASTPATH-MGMT-SECURITY-MIB.mib @@ -0,0 +1,252 @@ +FASTPATH-MGMT-SECURITY-MIB DEFINITIONS ::= BEGIN + +-- Broadcom Corporation FastPath Mgmt Security MIB +-- Copyright Broadcom Corporation (2003-2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, + IpAddress, Integer32 FROM SNMPv2-SMI + fastPath FROM BROADCOM-REF-MIB + DisplayString FROM RFC1213-MIB + TruthValue FROM SNMPv2-TC; + + fastPathMgmtSecurity MODULE-IDENTITY + LAST-UPDATED "200705230000Z" -- 23 May 2007 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 100, Perimeter Park Drive + Morrisville, NC 27560 + Tel: +1 919 865 2700" + DESCRIPTION + "The Broadcom Private MIB for FastPath Security" + + -- Revision history. + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Broadcom branding related changes." + REVISION + "200311210000Z" -- 21 Nov 2003 12:00:00 GMT + DESCRIPTION + "Initial revision." + + ::= { fastPath 11 } + + + --************************************************************************************** + -- agentSSLConfigGroup + -- + --************************************************************************************** + + agentSSLConfigGroup OBJECT IDENTIFIER ::= { fastPathMgmtSecurity 1 } + + agentSSLAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures whether the SSL service is enabled on this switch. The + default value is disable(2)." + ::= { agentSSLConfigGroup 1 } + + agentSSLSecurePort OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the port the SSL service will respond on. The default + value is 443." + ::= { agentSSLConfigGroup 2 } + + agentSSLProtocolLevel OBJECT-TYPE + SYNTAX INTEGER { + ssl30(1), -- SSL 3.0 + tls10(2), -- TSL 1.0 + both(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays which protocol versions of SSL are enabled on this + switch. The default value is both(3)." + ::= { agentSSLConfigGroup 3 } + + agentSSLMaxSessions OBJECT-TYPE + SYNTAX Integer32 (0..16) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the maximum number of allowable SSL sessions. The default + value is 16." + ::= { agentSSLConfigGroup 4 } + + agentSSLHardTimeout OBJECT-TYPE + SYNTAX Integer32 (1..168) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the hard timeout for SSL sessions in hours. The default + value is 24 hours." + ::= { agentSSLConfigGroup 5 } + + agentSSLSoftTimeout OBJECT-TYPE + SYNTAX Integer32 (1..60) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the soft (activity) timeout for SSL sessions in minutes. + The default value is 5 minutes." + ::= { agentSSLConfigGroup 6 } + + agentSSLCertificatePresent OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Boolean value indicating whether SSL certificate files exist on the device." + ::= { agentSSLConfigGroup 7 } + + agentSSLCertificateControl OBJECT-TYPE + SYNTAX INTEGER { + noop(1), + generate(2), + delete(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Controls certificate generation and deletion. Always returns noop(1)." + ::= { agentSSLConfigGroup 8 } + + agentSSLCertificateGenerationStatus OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether certificate files are currently being generated." + ::= { agentSSLConfigGroup 9 } + + --************************************************************************************** + -- agentSSHConfigGroup + -- + --************************************************************************************** + + agentSSHConfigGroup OBJECT IDENTIFIER ::= { fastPathMgmtSecurity 2 } + + agentSSHAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures whether the SSH service is enabled on this switch. The + default value is disable(2)." + ::= { agentSSHConfigGroup 1 } + + agentSSHProtocolLevel OBJECT-TYPE + SYNTAX INTEGER { + ssh10(1), -- SSH 1.0 + ssh20(2), -- SSH 2.0 + both(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays which protocol versions of SSH are enabled on this + switch. The default value is both(3)." + ::= { agentSSHConfigGroup 2 } + + agentSSHSessionsCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current number of active SSH sessions on this switch." + ::= { agentSSHConfigGroup 3 } + + agentSSHMaxSessionsCount OBJECT-TYPE + SYNTAX Integer32 (0..5) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Max number of SSH sessions permitted on this switch." + ::= { agentSSHConfigGroup 4 } + + agentSSHSessionTimeout OBJECT-TYPE + SYNTAX Integer32 (1..3932159) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "SSH idle timeout value for this switch in seconds. The + upper limit represents 65535 minutes and 59 seconds." + ::= { agentSSHConfigGroup 5 } + + agentSSHKeysPresent OBJECT-TYPE + SYNTAX INTEGER { + dsa(1), + rsa(2), + both(3), + none(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates what key files are present on the device, if any." + ::= { agentSSHConfigGroup 6 } + + agentSSHKeyGenerationStatus OBJECT-TYPE + SYNTAX INTEGER { + dsa(1), + rsa(2), + both(3), + none(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates what key files are currently being generated, if any." + ::= { agentSSHConfigGroup 7 } + + agentSSHRSAKeyControl OBJECT-TYPE + SYNTAX INTEGER { + noop(1), + generate(2), + delete(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Controls RSA key generation and deletion. Always returns noop(1)." + ::= { agentSSHConfigGroup 8 } + + agentSSHDSAKeyControl OBJECT-TYPE + SYNTAX INTEGER { + noop(1), + generate(2), + delete(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Controls DSA key generation and deletion. Always returns noop(1)." + ::= { agentSSHConfigGroup 9 } + +END diff --git a/mibs/FASTPATH-MIB.mib b/mibs/FASTPATH-MIB.mib new file mode 100644 index 0000000..bc0c1be --- /dev/null +++ b/mibs/FASTPATH-MIB.mib @@ -0,0 +1,777 @@ +FASTPATH-MIB DEFINITIONS ::= BEGIN + +-- Title: FASTPATH MIB +-- Date: April 4, 1990 +-- By: Brian Holmes + +IMPORTS + OBJECT-TYPE FROM RFC-1212 + enterprises, NetworkAddress, IpAddress, Counter, Gauge, + TimeTicks + FROM RFC1065-SMI; + + +excelan OBJECT IDENTIFIER ::= { enterprises 23 } +genericGroup OBJECT IDENTIFIER ::= { excelan 2 } +fastpathMib OBJECT IDENTIFIER ::= { genericGroup 11 } + +scc OBJECT IDENTIFIER ::= { fastpathMib 1 } +alap OBJECT IDENTIFIER ::= { fastpathMib 2 } +ethernet OBJECT IDENTIFIER ::= { fastpathMib 3 } +aarp OBJECT IDENTIFIER ::= { fastpathMib 4 } +atif OBJECT IDENTIFIER ::= { fastpathMib 5 } +ddp OBJECT IDENTIFIER ::= { fastpathMib 6 } +rtmp OBJECT IDENTIFIER ::= { fastpathMib 7 } +kip OBJECT IDENTIFIER ::= { fastpathMib 8 } +zip OBJECT IDENTIFIER ::= { fastpathMib 9 } +nbp OBJECT IDENTIFIER ::= { fastpathMib 10 } +echo OBJECT IDENTIFIER ::= { fastpathMib 11 } +buffer OBJECT IDENTIFIER ::= { fastpathMib 12 } + + sccInterruptCount OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { scc 1 } + + sccAbortCount OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { scc 2 } + + sccSpuriousCount OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { scc 3 } + + sccCRCCount OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { scc 4 } + + sccOverrunCount OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { scc 5 } + + sccUnderrunCount OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::={ scc 6 } + + alapReceiveCount OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { alap 1 } + + alapTransmitCount OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { alap 2 } + + alapNoHandlerCount OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { alap 3 } + + alapLengthErrorCount OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { alap 4 } + + alapBadCount OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { alap 5 } + + alapCollisionCount OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { alap 6 } + + alapDeferCount OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { alap 7 } + + alapNoDataCount OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { alap 8 } + + alapRandomCTS OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { alap 9 } + + etherCRCErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ethernet 1 } + + etherAlignErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ethernet 2 } + + etherResourceErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ethernet 3 } + + etherOverrunErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ethernet 4 } + + etherInPackets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ethernet 5 } + + etherOutPackets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ethernet 6 } + + etherBadTransmits OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ethernet 7 } + + etherOversizeFrames OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ethernet 8 } + + etherSpurRUReadys OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ethernet 9 } + + etherSpurCUActives OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ethernet 10 } + + etherSpurUnknown OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ethernet 11 } + + etherBcastDrops OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ethernet 12 } + + etherReceiverRestarts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ethernet 13 } + + etherReinterrupts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ethernet 14 } + + etherBufferReroutes OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ethernet 15 } + + etherBufferDrops OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ethernet 16 } + + etherCollisions OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ethernet 17 } + + etherDefers OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ethernet 18 } + + etherDMAUnderruns OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ethernet 19 } + + etherMaxCollisions OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ethernet 20 } + + etherNoCarriers OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ethernet 21 } + + etherNoCTS OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ethernet 22 } + + etherNoSQEs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ethernet 23 } + + aarpTable OBJECT-TYPE + SYNTAX SEQUENCE OF AarpEntry + ACCESS read-write + STATUS mandatory + ::= { aarp 1 } + + aarpEntry OBJECT-TYPE + SYNTAX AarpEntry + ACCESS read-write + STATUS mandatory + ::= { aarpTable 1 } + + AarpEntry ::= SEQUENCE { + aarpIfIndex INTEGER, + aarpPhysAddress OCTET STRING, + aarpNetAddress OCTET STRING + } + + aarpIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + ::= { aarpEntry 1 } + + aarpPhysAddress OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + ::= { aarpEntry 2 } + + aarpNetAddress OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + ::= { aarpEntry 3 } + + atifTable OBJECT-TYPE + SYNTAX SEQUENCE OF AtifEntry + ACCESS read-write + STATUS mandatory + ::= { atif 1 } + + atifEntry OBJECT-TYPE + SYNTAX AtifEntry + ACCESS read-write + STATUS mandatory + ::= { atifTable 1 } + + AtifEntry ::= SEQUENCE { + atifIndex INTEGER, + atifDescr OCTET STRING, + atifType INTEGER, + atifNetStart OCTET STRING, + atifNetEnd OCTET STRING, + atifNetAddress OCTET STRING, + atifStatus INTEGER, + atifNetConfig INTEGER, + atifZoneConfig INTEGER, + atifZone OCTET STRING, + atifIfIndex INTEGER + } + + atifIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + ::= { atifEntry 1 } + + atifDescr OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + ::= { atifEntry 2 } + + atifType OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + localtalk(2), + ethertalk1(3), + ethertalk2(4), + tokentalk(5), + iptalk(6) + } + ACCESS read-only + STATUS mandatory + ::= { atifEntry 3 } + + atifNetStart OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + ::= { atifEntry 4 } + + atifNetEnd OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + ::= { atifEntry 5 } + + atifNetAddress OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + ::= { atifEntry 6 } + + atifStatus OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + ::= { atifEntry 7 } + + atifNetConfig OBJECT-TYPE + SYNTAX INTEGER { + configured(1), + garnered(2), + guessed(3), + unconfigured(4) + } + ACCESS read-only + STATUS mandatory + ::= { atifEntry 8 } + + atifZoneConfig OBJECT-TYPE + SYNTAX INTEGER { + configured(1), + garnered(2), + guessed(3), + unconfigured(4) + } + ACCESS read-only + STATUS mandatory + ::= { atifEntry 9 } + + atifZone OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + ::= { atifEntry 10 } + + atifIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + ::= { atifEntry 11 } + + ddpOutRequests OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ddp 1 } + + ddpOutShort OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ddp 2 } + + ddpOutLong OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::={ ddp 3 } + + ddpReceived OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ddp 4 } + + ddpToForward OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::={ ddp 5 } + + ddpForwards OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ddp 6 } + + ddpForMe OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ddp 7 } + + ddpOutNoRoutes OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ddp 9 } + + ddpTooShortDrops OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ddp 10 } + + ddpTooLongDrops OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ddp 11 } + + ddpBroadcastDrops OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ddp 12 } + + ddpShortDDPDrops OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ddp 13 } + + ddpHopCountDrops OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ddp 14 } + + rtmpTable OBJECT-TYPE + SYNTAX SEQUENCE OF RtmpEntry + ACCESS read-write + STATUS mandatory + ::= { rtmp 1 } + + rtmpEntry OBJECT-TYPE + SYNTAX RtmpEntry + ACCESS read-write + STATUS mandatory + ::= { rtmpTable 1 } + + RtmpEntry ::= SEQUENCE { + rtmpRangeStart OCTET STRING, + rtmpRangeEnd OCTET STRING, + rtmpNextHop OCTET STRING, + rtmpInterface INTEGER, + rtmpHops INTEGER, + rtmpState INTEGER + } + + rtmpRangeStart OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + ::= { rtmpEntry 1 } + + rtmpRangeEnd OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + ::= { rtmpEntry 2 } + + rtmpNextHop OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + ::= { rtmpEntry 3 } + + rtmpInterface OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + ::= { rtmpEntry 4 } + + rtmpHops OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + ::= { rtmpEntry 5 } + + rtmpState OBJECT-TYPE + SYNTAX INTEGER { + good(1), + suspect(2), + bad(3) + } + ACCESS read-write + STATUS mandatory + ::= { rtmpEntry 6 } + + kipTable OBJECT-TYPE + SYNTAX SEQUENCE OF KipEntry + ACCESS read-write + STATUS mandatory + ::= { kip 1 } + + kipEntry OBJECT-TYPE + SYNTAX KipEntry + ACCESS read-write + STATUS mandatory + ::= { kipTable 1 } + + KipEntry ::= SEQUENCE { + kipNet OCTET STRING, + kipNextHop IpAddress, + kipHopCount INTEGER, + kipBCastAddr IpAddress, + kipCore INTEGER, + kipKfps INTEGER + } + + kipNet OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + ::= { kipEntry 1 } + + kipNextHop OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + ::= { kipEntry 2 } + + kipHopCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + ::= { kipEntry 3 } + + kipBCastAddr OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + ::= { kipEntry 4 } + + kipCore OBJECT-TYPE + SYNTAX INTEGER { + core(1), + notcore(2) + } + ACCESS read-write + STATUS mandatory + ::= { kipEntry 5 } + + kipKfps OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + ::= { kipEntry 6 } + + zipTable OBJECT-TYPE + SYNTAX SEQUENCE OF ZipEntry + ACCESS read-write + STATUS mandatory + ::= { zip 1 } + + zipEntry OBJECT-TYPE + SYNTAX ZipEntry + ACCESS read-write + STATUS mandatory + ::= { zipTable 1 } + + ZipEntry ::= SEQUENCE { + zipZoneName OCTET STRING, + zipZoneIndex INTEGER, + zipNetStart OCTET STRING, + zipNetEnd OCTET STRING + } + + zipZoneName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + ::= { zipEntry 1 } + + zipZoneIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + ::= { zipEntry 2 } + + zipZoneNetStart OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + ::= { zipEntry 3 } + + zipZoneNetEnd OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + ::= { zipEntry 4 } + + nbpTable OBJECT-TYPE + SYNTAX SEQUENCE OF NbpEntry + ACCESS read-write + STATUS mandatory + ::= { nbp 1 } + + nbpEntry OBJECT-TYPE + SYNTAX NbpEntry + ACCESS read-write + STATUS mandatory + ::= { nbpTable 1 } + + + NbpEntry ::= SEQUENCE { + nbpIndex INTEGER, + nbpObject OCTET STRING, + nbpType OCTET STRING, + nbpZone OCTET STRING + } + + nbpIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + ::= { nbpEntry 1 } + + nbpObject OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + ::= { nbpEntry 2 } + + nbpType OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + ::= { nbpEntry 3 } + + nbpZone OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + ::= { nbpEntry 4 } + + echoRequests OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { echo 1 } + + echoReplies OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { echo 2 } + + bufferSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + ::= { buffer 1 } + + bufferAvail OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + ::= { buffer 2 } + + bufferDrops OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { buffer 3 } + + bufferTypeTable OBJECT-TYPE + SYNTAX SEQUENCE OF BufferTypeEntry + ACCESS read-only + STATUS mandatory + ::= { buffer 4 } + + bufferTypeEntry OBJECT-TYPE + SYNTAX BufferTypeEntry + ACCESS read-only + STATUS mandatory + ::= { bufferTypeTable 1 } + + BufferTypeEntry ::= SEQUENCE { + bufferTypeIndex INTEGER, + bufferType INTEGER, + bufferTypeDescr OCTET STRING, + bufferTypeCount INTEGER + } + + bufferTypeIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + ::= { bufferTypeEntry 1 } + + bufferType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + free(2), + localtalk(3), + ethernet(4), + arp(5), + data(6), -- general data + erbf(7), -- ethernet receive + etbf(8), -- ethernet transmit complete + malloc(9), + tkbf(10), -- token ring receive packet + token(11) -- token ring packet + } + ACCESS read-only + STATUS mandatory + ::= { bufferTypeEntry 2 } + + bufferTypeDescr OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + ::= { bufferTypeEntry 3 } + + bufferTypeCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + ::= { bufferTypeEntry 4 } + +END + + diff --git a/mibs/FASTPATH-MULTICAST-MIB.mib b/mibs/FASTPATH-MULTICAST-MIB.mib new file mode 100644 index 0000000..2c88ef3 --- /dev/null +++ b/mibs/FASTPATH-MULTICAST-MIB.mib @@ -0,0 +1,457 @@ +FASTPATH-MULTICAST-MIB DEFINITIONS ::= BEGIN + +-- Broadcom Corporation Multicast Routing Package MIB +-- Copyright Broadcom Corporation (2002-2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + +IMPORTS + MODULE-IDENTITY,OBJECT-TYPE, + Integer32,IpAddress,Unsigned32 + FROM SNMPv2-SMI + RowStatus FROM SNMPv2-TC + InetAddress,InetAddressType FROM INET-ADDRESS-MIB + InterfaceIndex FROM IF-MIB + fastPath FROM BROADCOM-REF-MIB; + + fastPathMulticast MODULE-IDENTITY + LAST-UPDATED "200901030000Z" -- 03 Jan 2009 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 100, Perimeter Park Drive + Morrisville, NC 27560 + Tel: +1 919 865 2700" + DESCRIPTION + "The MIB definitions for Multicast Routing Flex package." + + -- Revision history. + REVISION + "200901030000Z" -- 03 Jan 2009 12:00:00 GMT + DESCRIPTION + "Add agentIpStaticMRouteTable." + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Broadcom branding related changes." + REVISION + "200311210000Z" -- 21 Nov 2003 12:00:00 GMT + DESCRIPTION + "Revisions made for new release." + REVISION + "200205081418Z" + DESCRIPTION + "Initial revision." + + ::= { fastPath 4 } + + + --************************************************************************************** + agentMulticastIGMPConfigGroup OBJECT IDENTIFIER ::= { fastPathMulticast 1 } + + agentMulticastIGMPAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This enables or disables IGMP on the system." + DEFVAL { disable } + ::= { agentMulticastIGMPConfigGroup 1 } + + + agentMulticastIGMPInterfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentMulticastIGMPInterfaceEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "Provides Per-Interface configuration of IGMP." + ::= { agentMulticastIGMPConfigGroup 2 } + + agentMulticastIGMPInterfaceEntry OBJECT-TYPE + SYNTAX AgentMulticastIGMPInterfaceEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "Information about a table entry." + INDEX { agentMulticastIGMPInterfaceIfIndex } + ::= { agentMulticastIGMPInterfaceTable 1 } + + AgentMulticastIGMPInterfaceEntry ::= SEQUENCE { + agentMulticastIGMPInterfaceIfIndex + Integer32, + agentMulticastIGMPInterfaceAdminMode + INTEGER + } + + agentMulticastIGMPInterfaceIfIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Identifies the external interface number." + ::= { agentMulticastIGMPInterfaceEntry 1 } + + agentMulticastIGMPInterfaceAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "This enables or disables IGMP on this interface." + DEFVAL { disable } + ::= { agentMulticastIGMPInterfaceEntry 2 } + + --************************************************************************************** + agentMulticastPIMConfigGroup OBJECT IDENTIFIER ::= { fastPathMulticast 2 } + + agentMulticastPIMConfigMode OBJECT-TYPE + SYNTAX INTEGER { + sparse(1), + dense(2) + } + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "This controls which PIM mode configuration the PIM-MIB displays." + DEFVAL { dense } + ::= { agentMulticastPIMConfigGroup 1 } + + --************************************************************************************** + agentMulticastPIMSMConfigGroup OBJECT IDENTIFIER ::= { fastPathMulticast 3 } + + agentMulticastPIMSMAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This enables or disables PIM Sparse Mode on the system." + DEFVAL { disable } + ::= { agentMulticastPIMSMConfigGroup 1 } + + agentMulticastPIMSMDataThresholdRate OBJECT-TYPE + SYNTAX Integer32 (0..2000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specifies the minimum rate in Kbits/sec for the last hop router to initiate switching to the shortest path." + DEFVAL { 50 } + ::= { agentMulticastPIMSMConfigGroup 2 } + + agentMulticastPIMSMRegThresholdRate OBJECT-TYPE + SYNTAX Integer32 (0..2000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specifies the minimum rate in Kbits/sec for the RP to switch to the shortest path." + DEFVAL { 50 } + ::= { agentMulticastPIMSMConfigGroup 3 } + + agentMulticastPIMSMStaticRPTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentMulticastPIMSMStaticRPEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "Provides Per-Interface configuration of PIM-SM." + ::= { agentMulticastPIMSMConfigGroup 4 } + + agentMulticastPIMSMStaticRPEntry OBJECT-TYPE + SYNTAX AgentMulticastPIMSMStaticRPEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "Information about a table entry." + INDEX { agentMulticastPIMSMStaticRPIpAddr, + agentMulticastPIMSMStaticRPGroupIpAddr, + agentMulticastPIMSMStaticRPGroupIpMask } + ::= { agentMulticastPIMSMStaticRPTable 1 } + + AgentMulticastPIMSMStaticRPEntry ::= SEQUENCE { + agentMulticastPIMSMStaticRPIpAddr + IpAddress, + agentMulticastPIMSMStaticRPGroupIpAddr + IpAddress, + agentMulticastPIMSMStaticRPGroupIpMask + IpAddress, + agentMulticastPIMSMStaticRPStatus + RowStatus + } + + agentMulticastPIMSMStaticRPIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "IP Address of the RP." + ::= { agentMulticastPIMSMStaticRPEntry 1 } + + agentMulticastPIMSMStaticRPGroupIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "Group IP Address supported by the RP." + ::= { agentMulticastPIMSMStaticRPEntry 2 } + + agentMulticastPIMSMStaticRPGroupIpMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "Group mask for the group IP Address." + ::= { agentMulticastPIMSMStaticRPEntry 3 } + + agentMulticastPIMSMStaticRPStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "Status of this entry in the Static RP Table. + + Allowed values are: + + active(1) - This entry is active + destroy(6) - Setting an entry to this value removes the + entry from the table." + ::= { agentMulticastPIMSMStaticRPEntry 4 } + + + agentMulticastPIMSMInterfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentMulticastPIMSMInterfaceEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "Provides Per-Interface configuration of PIM-SM." + ::= { agentMulticastPIMSMConfigGroup 5 } + + agentMulticastPIMSMInterfaceEntry OBJECT-TYPE + SYNTAX AgentMulticastPIMSMInterfaceEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "Allows configuration of parameters not provided in the + standard PIM-MIB." + INDEX { agentMulticastPIMSMInterfaceIndex } + ::= { agentMulticastPIMSMInterfaceTable 1 } + + AgentMulticastPIMSMInterfaceEntry ::= SEQUENCE { + agentMulticastPIMSMInterfaceIndex + Unsigned32, + agentMulticastPIMSMInterfaceCBSRHashMaskLength + Unsigned32, + agentMulticastPIMSMInterfaceCRPPreference + Integer32 + } + + agentMulticastPIMSMInterfaceIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "Routing Interface associated with this PIM SM configuration entry." + ::= { agentMulticastPIMSMInterfaceEntry 1 } + + agentMulticastPIMSMInterfaceCBSRHashMaskLength OBJECT-TYPE + SYNTAX Unsigned32 (0..32) + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "The BSR hash mask length to be advertised in bootstrap messages if + this interface is elected as the bootstrap router. This hash mask + length will be used in the hash algorith for selecting the RP for + a particular group." + DEFVAL { 30 } + ::= { agentMulticastPIMSMInterfaceEntry 2 } + + agentMulticastPIMSMInterfaceCRPPreference OBJECT-TYPE + SYNTAX Integer32 (-1|0..255) + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "The preference value for the local interface as a Candidate + Rendezvous Point. The value of -1 is used to indicate that the local + interface is not a Candidate RP interface." + DEFVAL { 0 } + ::= { agentMulticastPIMSMInterfaceEntry 3 } + + --************************************************************************************** + agentMulticastPIMDMConfigGroup OBJECT IDENTIFIER ::= { fastPathMulticast 4 } + + agentMulticastPIMDMAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This enables or disables PIM Dense Mode on the system." + DEFVAL { disable } + ::= { agentMulticastPIMDMConfigGroup 1 } + + --************************************************************************************** + agentMulticastRoutingConfigGroup OBJECT IDENTIFIER ::= { fastPathMulticast 5 } + + agentMulticastRoutingAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This enables or disables Multicast Routing Mode on the system." + DEFVAL { disable } + ::= { agentMulticastRoutingConfigGroup 1 } + + --************************************************************************************** + agentMulticastDVMRPConfigGroup OBJECT IDENTIFIER ::= { fastPathMulticast 6 } + + agentMulticastDVMRPAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This enables or disables DVMRP on the system." + DEFVAL { disable } + ::= { agentMulticastDVMRPConfigGroup 1 } + + --************************************************************************************** + -- agentSnmpTrapFlagsConfigGroupMulticast + -- + --************************************************************************************** + agentSnmpTrapFlagsConfigGroupMulticast OBJECT IDENTIFIER ::= { fastPathMulticast 7 } + + agentSnmpDVMRPTrapFlag OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This enables or disables DVMRP Traps on the system." + DEFVAL { disable } + ::= { agentSnmpTrapFlagsConfigGroupMulticast 1 } + + agentSnmpPIMTrapFlag OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This enables or disables PIM Traps on the system." + DEFVAL { disable } + ::= { agentSnmpTrapFlagsConfigGroupMulticast 2 } + + --************************************************************************************** + -- The Static Multicast Route Table + -- + --************************************************************************************** + agentIpStaticMRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentIpStaticMRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table listing the Static Multicast Route Entries." + ::= { fastPathMulticast 8 } + + agentIpStaticMRouteEntry OBJECT-TYPE + SYNTAX AgentIpStaticMRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a table entry." + INDEX { agentIpStaticMRouteSrcAddressType, agentIpStaticMRouteSrcIpAddr, agentIpStaticMRouteSrcNetMask} + ::= { agentIpStaticMRouteTable 1 } + + AgentIpStaticMRouteEntry ::= SEQUENCE { + agentIpStaticMRouteSrcAddressType InetAddressType, + agentIpStaticMRouteSrcIpAddr InetAddress, + agentIpStaticMRouteSrcNetMask Integer32, + agentIpStaticMRouteRpfIpAddr InetAddress, + agentIpStaticMRouteIfIndex InterfaceIndex, + agentIpStaticMRoutePreference Integer32, + agentIpStaticMRouteStatus RowStatus + } + + agentIpStaticMRouteSrcAddressType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The address type of this Multicast data source." + ::= { agentIpStaticMRouteEntry 1 } + + agentIpStaticMRouteSrcIpAddr OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The address of the Multicast data source." + ::= { agentIpStaticMRouteEntry 2 } + + agentIpStaticMRouteSrcNetMask OBJECT-TYPE + SYNTAX Integer32(1..128) + MAX-ACCESS not-accessible + STATUS current + + DESCRIPTION + "The network mask for the IP address of the Multicast data source." + ::= { agentIpStaticMRouteEntry 3 } + + agentIpStaticMRouteRpfIpAddr OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The RPF Address." + ::= { agentIpStaticMRouteEntry 4 } + + agentIpStaticMRouteIfIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The interface index is valid only for IPv6 and only if RPF address is link-local." + ::= { agentIpStaticMRouteEntry 5 } + + agentIpStaticMRoutePreference OBJECT-TYPE + SYNTAX Integer32(1..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The preference of this route entry." + ::= { agentIpStaticMRouteEntry 6 } + + agentIpStaticMRouteStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The preference of this route entry." + ::= { agentIpStaticMRouteEntry 7 } + +END diff --git a/mibs/FASTPATH-NSF-MIB.mib b/mibs/FASTPATH-NSF-MIB.mib new file mode 100644 index 0000000..7a3fe7a --- /dev/null +++ b/mibs/FASTPATH-NSF-MIB.mib @@ -0,0 +1,362 @@ +FASTPATH-NSF-MIB DEFINITIONS ::= BEGIN + +-- Copyright Broadcom Corporation (2009-2009) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter32, Gauge32, + Unsigned32, TimeTicks, NOTIFICATION-TYPE FROM SNMPv2-SMI + TEXTUAL-CONVENTION, DisplayString, TruthValue, + RowStatus FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP + FROM SNMPv2-CONF + fastPath FROM BROADCOM-REF-MIB + agentInventoryUnitEntry, agentInventoryUnitNumber + FROM FASTPATH-INVENTORY-MIB; + + fastPathNsf MODULE-IDENTITY + LAST-UPDATED "200904230000Z" -- 23 Apr 2009 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 100 Perimeter Park Dr., Suite H + Morrisville, NC 27560 + Tel: +1 919 865 2700" + DESCRIPTION + "This MIB defines the objects used for FastPath to + configure and report information and status of NSF features." + + -- Revision history. + REVISION + "200904230000Z" -- 23 Apr 2009 12:00:00 GMT + DESCRIPTION + "Initial version." + + ::= { fastPath 46 } + + + --************************************************************************************** + -- agentNsfUnitTable + -- + --************************************************************************************** + + agentNsfUnitTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentNsfUnitEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of Per-Unit configuration objects for NSF." + ::= { fastPathNsf 1 } + + agentNsfUnitEntry OBJECT-TYPE + SYNTAX AgentNsfUnitEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each Instance corresponds with a different unit managed by this agent." + AUGMENTS { agentInventoryUnitEntry } + ::= { agentNsfUnitTable 1 } + + AgentNsfUnitEntry ::= + SEQUENCE { + agentNsfUnitSupport + TruthValue + } + + agentNsfUnitSupport OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates if the unit supports the NSF feature." + ::= { agentNsfUnitEntry 1 } + + + --************************************************************************************** + -- agentNsfConfigGroup + -- + --************************************************************************************** + + agentNsfGroup OBJECT IDENTIFIER ::= { fastPathNsf 2 } + + agentNsfAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Controls whether NSF is enabled on the unit/stack." + ::= { agentNsfGroup 1 } + + agentNsfOperStatus OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether NSF is enabled on the unit/stack." + ::= { agentNsfGroup 2 } + + agentNsfLastStartupReason OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + power-on(2), + warm-admin-move(3), + cold-admin-move(4), + warm-auto-restart(5), + cold-auto-restart(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of activation that caused the software to start the last time. + + unknown: The switch rebooted for an unknown reason. + power-on: The switch rebooted. This could have been caused by a power + cycle or an administrative 'Reload' command. + warm-admin-move: The administrator issued a command for the stand-by manager to + take over. + cold-admin-move: The administrator issued a command for the stand-by manager to + take over, but the system was not ready for a warm-failover. + warm-auto-restart: The primary management card restarted due to a failure, and the + system executed a nonstop forwarding failover. + cold-auto-restart: The system switched from the active manager to the backup manager + and was unable to maintain user data traffic. This is usually + caused by multiple failures occurring close together" + + ::= { agentNsfGroup 3 } + + agentNsfTimeSinceLastRestart OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time since the current management card became the active management card." + + ::= { agentNsfGroup 4 } + + agentNsfRestartInProgress OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether a restart is in progress. A restart is not considered complete until all + hardware tables have been fully reconciled." + ::= { agentNsfGroup 5 } + + agentNsfWarmRestartReady OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the initial full checkpoint has finished." + ::= { agentNsfGroup 6 } + + agentNsfBackupConfigurationAge OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Age of the configuration on the backup unit. The time since the running configuration + was last copied to the backup unit." + + ::= { agentNsfGroup 7 } + + agentNsfInitiateFailover OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Triggers an administrative failover to the backup unit." + ::= { agentNsfGroup 8 } + + + --************************************************************************************** + -- agentCheckpointStatsGroup + -- + --************************************************************************************** + agentCheckpointStatsGroup OBJECT IDENTIFIER ::= { fastPathNsf 3 } + + agentCheckpointClearStatistics OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "When set to enable(1), resets checkpoint statistics." + ::= { agentCheckpointStatsGroup 1 } + + agentCheckpointMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of checkpoint messages sent." + ::= { agentCheckpointStatsGroup 2 } + + agentCheckpointBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Size in bytes of the total ammount of checkpoint messages sent." + ::= { agentCheckpointStatsGroup 3 } + + agentCheckpointTimeSinceCountersCleared OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates how long since the Checkpoint counters have been cleared." + ::= { agentCheckpointStatsGroup 4 } + + agentCheckpointMessageRateInterval OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the duration in seconds of the message rate interval." + ::= { agentCheckpointStatsGroup 5 } + + agentCheckpointMessageRate OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of checkpoint messages received in the last interval defined by + agentCheckpointMessageRateInterval." + ::= { agentCheckpointStatsGroup 6 } + + agentCheckpointHighestMessageRate OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Highest number of checkpoint messages received in an interval defined by + agentCheckpointMessageRateInterval." + ::= { agentCheckpointStatsGroup 7 } + + --************************************************************************************** + -- agentNsfOspfGroup + -- + --************************************************************************************** + agentNsfOspfGroup OBJECT IDENTIFIER ::= { fastPathNsf 4 } + + agentNsfOspfSupportMode OBJECT-TYPE + SYNTAX INTEGER { + none(1), + planned(2), + always(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { agentNsfOspfGroup 1 } + + agentNsfOspfRestartInterval OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { agentNsfOspfGroup 2 } + + agentNsfOspfRestartStatus OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + not-restarting(2), + planned-restart(3), + unplanned-restart(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { agentNsfOspfGroup 3 } + + agentNsfOspfRestartAge OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { agentNsfOspfGroup 4 } + + agentNsfOspfRestartExitReason OBJECT-TYPE + SYNTAX INTEGER { + none(1), + in-progress(2), + completed(3), + timed-out(4), + topology-change(5), + manual-clear(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { agentNsfOspfGroup 5 } + + agentNsfOspfHelperSupportMode OBJECT-TYPE + SYNTAX INTEGER { + none(1), + planned(2), + always(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { agentNsfOspfGroup 6 } + + agentNsfOspfHelperStrictLSAChecking OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { agentNsfOspfGroup 7 } + + --************************************************************************************** + -- agentNsfTraps + -- + --************************************************************************************** + + agentNsfTraps OBJECT IDENTIFIER ::= { fastPathNsf 0 } + + agentNsfStackRestartComplete NOTIFICATION-TYPE + OBJECTS { + agentInventoryUnitNumber, + agentNsfLastStartupReason + } + STATUS current + DESCRIPTION + "Sent when a the stack finishes restarting after a failover." + ::= { agentNsfTraps 1 } + +END + diff --git a/mibs/FASTPATH-OUTBOUNDTELNET-PRIVATE-MIB.mib b/mibs/FASTPATH-OUTBOUNDTELNET-PRIVATE-MIB.mib new file mode 100644 index 0000000..9f26980 --- /dev/null +++ b/mibs/FASTPATH-OUTBOUNDTELNET-PRIVATE-MIB.mib @@ -0,0 +1,84 @@ +-- OUTBOUND TELNET MIB overview: +-- OUTBOUND TELNET MIB falls under fastPath MIB node of the private subtree. + + + +FASTPATH-OUTBOUNDTELNET-PRIVATE-MIB DEFINITIONS ::= BEGIN + +-- Broadcom Corporation FASTPATH OUTBOUND TELNET MIB +-- Copyright Broadcom Corporation (2002-2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, Integer32 FROM SNMPv2-SMI + fastPath FROM BROADCOM-REF-MIB; + + fastPathOutboundTelnetPrivate MODULE-IDENTITY + LAST-UPDATED "200705230000Z" -- 23 May 2007 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 13000 Weston Parkway Suite #105 + Cary, NC 27513 + Tel: +1 919 865 2700" + DESCRIPTION + "The Broadcom Private MIB for FASTPATH Outbound Telnet" + + -- Revision history. + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Broadcom branding related changes." + + ::= { fastPath 19 } + + + --************************************************************************************** + -- agentOutboundTelnetGroup -> contains MIB objects displaying various properties of a Outbound Telnet + -- + --************************************************************************************** + + agentOutboundTelnetGroup OBJECT IDENTIFIER ::= { fastPathOutboundTelnetPrivate 1 } + + agentOutboundTelnetAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Admin-mode of the Outbound Telnet." + DEFVAL { enable } + ::= { agentOutboundTelnetGroup 1 } + + + agentOutboundTelnetMaxNoOfSessions OBJECT-TYPE + SYNTAX INTEGER (0..5) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " The maximum no. of Outbound Telnet sessions allowed." + DEFVAL { 5 } + ::= { agentOutboundTelnetGroup 2 } + + agentOutboundTelnetTimeout OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The login inactivity timeout value for Outbound Telnet." + ::= { agentOutboundTelnetGroup 3 } +END diff --git a/mibs/FASTPATH-PFC-MIB.mib b/mibs/FASTPATH-PFC-MIB.mib new file mode 100644 index 0000000..e55ac4e --- /dev/null +++ b/mibs/FASTPATH-PFC-MIB.mib @@ -0,0 +1,214 @@ +FASTPATH-PFC-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32, Unsigned32 FROM SNMPv2-SMI + RowStatus FROM SNMPv2-TC + InterfaceIndex FROM IF-MIB + fastPath FROM BROADCOM-REF-MIB; + + fastPathPFC MODULE-IDENTITY + LAST-UPDATED "200905220000Z" -- 22 May 2009 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 100 Perimeter Park Drive + Suite H + Morrisville, NC 27560 + Tel: +1 919 865 2700" + DESCRIPTION + "The MIB definitions Priority based Flow Control Feature." + + + ::= { fastPath 47 } + +--********************************************************************* +-- agentPfcCfgGroup +--********************************************************************* +agentPfcCfgGroup OBJECT IDENTIFIER ::= { fastPathPFC 1 } + +--********************************************************************* +-- agentPfcTable +-- PFC Profile Configuration table (per-interface) +--********************************************************************* + agentPfcTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentPfcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table providing configuration of PFC Profile per interface." + + ::= { agentPfcCfgGroup 1 } + + agentPfcEntry OBJECT-TYPE + SYNTAX AgentPfcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "PFC Profile configuration for a port." + INDEX { agentPfcIntfIndex } + ::= { agentPfcTable 1 } + + AgentPfcEntry::= + SEQUENCE { + agentPfcIntfIndex + InterfaceIndex, + agentPfcIntfAdminMode + INTEGER, + agentPfcIntfPfcStatus + INTEGER, + agentPfcTotalIntfPfcFramesRx + Unsigned32, + agentPfcTotalIntfPfcFramesTx + Unsigned32 + } + + agentPfcIntfIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This is a unique index for an entry in the + agentPfcTable. A non-zero value indicates + the ifIndex for the corresponding interface entry + in the ifTable." + + ::= { agentPfcEntry 1 } + + agentPfcIntfAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables/disables PFC profile on an interface." + DEFVAL { 2 } + + ::= { agentPfcEntry 2 } + + agentPfcIntfPfcStatus OBJECT-TYPE + SYNTAX INTEGER { + active(1), + inactive(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Shows the operational-status of PFC on an interface." + DEFVAL { 2 } + + ::= { agentPfcEntry 3 } + + agentPfcTotalIntfPfcFramesRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Received PFC Frames on this interface." + + ::= { agentPfcEntry 4 } + + agentPfcTotalIntfPfcFramesTx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Transmitted PFC Frames on this interface." + + ::= { agentPfcEntry 5 } + +--********************************************************************* +-- agentPfcActionTable +-- PFC Priority and Action Mappings Configuration table (per-interface) +--********************************************************************* + agentPfcActionTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentPfcActionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table providing priority and action mappings configuration of PFC." + + ::= { agentPfcCfgGroup 2 } + + agentPfcActionEntry OBJECT-TYPE + SYNTAX AgentPfcActionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "PFC Action Profile configuration for a port." + INDEX { agentPfcIntfIndex, agentPfcPriority } + ::= { agentPfcActionTable 1 } + + AgentPfcActionEntry::= + SEQUENCE { + agentPfcPriority + Unsigned32, + agentPfcAction + INTEGER + } + + agentPfcPriority OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This is a unique index for an entry in the + agentPfcActionTable. A non-zero value indicates + the CosQueue Priority." + + ::= { agentPfcActionEntry 1 } + + agentPfcAction OBJECT-TYPE + SYNTAX INTEGER { + drop(1), + nodrop(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set Drop/No-Drop action in PFC profile for the corresponding priority." + DEFVAL { 1 } + + ::= { agentPfcActionEntry 2 } + +--********************************************************************* +-- agentPfcIntfStatsPerPriorityTable +-- PFC Profile Statistics table (per-interface) +--********************************************************************* + agentPfcIntfStatsPerPriorityTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentPfcIntfStatsPerPriorityEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table providing statistics of PFC per interface per priority." + + ::= { agentPfcCfgGroup 3 } + + agentPfcIntfStatsPerPriorityEntry OBJECT-TYPE + SYNTAX AgentPfcIntfStatsPerPriorityEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "PFC Stats for a priority and for a port." + INDEX { agentPfcIntfIndex, agentPfcPriority } + ::= { agentPfcIntfStatsPerPriorityTable 1 } + + AgentPfcIntfStatsPerPriorityEntry::= + SEQUENCE { + agentPfcIntfPfcPriorityFramesRx + Unsigned32 + } + + agentPfcIntfPfcPriorityFramesRx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Received PFC Frames on this interface for a priority." + + ::= { agentPfcIntfStatsPerPriorityEntry 1 } + +END diff --git a/mibs/FASTPATH-PORTSECURITY-PRIVATE-MIB.mib b/mibs/FASTPATH-PORTSECURITY-PRIVATE-MIB.mib new file mode 100644 index 0000000..e518cc8 --- /dev/null +++ b/mibs/FASTPATH-PORTSECURITY-PRIVATE-MIB.mib @@ -0,0 +1,272 @@ +-- Port Security MIB overview: +-- Port Security MIB falls under fastPath MIB node of the private subtree. + +FASTPATH-PORTSECURITY-PRIVATE-MIB DEFINITIONS ::= BEGIN + +-- Broadcom Corporation FASTPATH Port Security MIB +-- Copyright Broadcom Corporation(2004-2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, + Unsigned32 FROM SNMPv2-SMI + TEXTUAL-CONVENTION,RowStatus, + MacAddress FROM SNMPv2-TC + ifIndex FROM IF-MIB + + DisplayString FROM RFC1213-MIB + ng7000managedswitch FROM BROADCOM-REF-MIB; + + fastPathPortSecurity MODULE-IDENTITY + LAST-UPDATED "200705230000Z" -- 23 May 2007 12:00:00 GMT + ORGANIZATION "Netgear" + CONTACT-INFO + "" + + DESCRIPTION + "The Netgear Private MIB for FASTPATH Port Security Feature." + + -- Revision history. + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Netgear branding related changes." + + ::= { ng7000managedswitch 20 } + + + --************************************************************************************** + -- agentPortSecurityGroup -> contains MIB objects displaying Port Security + -- and associated Functionality + -- + --************************************************************************************** + +agentPortSecurityGroup OBJECT IDENTIFIER ::= { fastPathPortSecurity 1} + +agentGlobalPortSecurityMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Mode showing whether at the global level, port security is enabled or not." + DEFVAL { disable } + ::={ agentPortSecurityGroup 1 } + +agentPortSecurityTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentPortSecurityEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A table for Port Security and associated functionality." + ::= { agentPortSecurityGroup 2 } + +agentPortSecurityEntry OBJECT-TYPE + SYNTAX AgentPortSecurityEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Represents entry for port security table" + INDEX { ifIndex } + ::={ agentPortSecurityTable 1} + + AgentPortSecurityEntry ::= + SEQUENCE { + agentPortSecurityMode + INTEGER, + agentPortSecurityDynamicLimit + Unsigned32, + agentPortSecurityStaticLimit + Unsigned32, + agentPortSecurityViolationTrapMode + INTEGER, + agentPortSecurityStaticMACs + DisplayString, + agentPortSecurityLastDiscardedMAC + DisplayString, + agentPortSecurityMACAddressAdd + DisplayString, + agentPortSecurityMACAddressRemove + DisplayString, + agentPortSecurityMACAddressMove + INTEGER + } + + agentPortSecurityMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Mode showing whether at port level security is enabled or not." + DEFVAL { disable } + ::={ agentPortSecurityEntry 1 } + + agentPortSecurityDynamicLimit OBJECT-TYPE + SYNTAX Unsigned32(0..600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This variable signifies the limit of dynamically locked MAC addresses + allowed on a specific port." + DEFVAL { 600 } + ::={ agentPortSecurityEntry 2 } + + agentPortSecurityStaticLimit OBJECT-TYPE + SYNTAX Unsigned32(0..20) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This variable signifies the limit of statically locked MAC addresses + allowed on a specific port." + DEFVAL { 20 } + ::={ agentPortSecurityEntry 3 } + + + agentPortSecurityViolationTrapMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This variable is used to enable or disable the sending of new violation + traps designating when a packet with a disallowed MAC address is + received on a locked port." + ::={agentPortSecurityEntry 4 } + + agentPortSecurityStaticMACs OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This variable displays the statically locked MAC addresses for port. + The list displayed in a particular fashion : + 2 a0:b1:c2:d1:e3:a1,11 a0:b1:c2:d3:e4:f5 + (i.e., VLAN MAC pairs separated by commas)." + ::={agentPortSecurityEntry 6 } + + agentPortSecurityLastDiscardedMAC OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This variable displays the vlan-id and source MAC address of the last packet that was + discarded on a locked port." + ::={agentPortSecurityEntry 7 } + + + agentPortSecurityMACAddressAdd OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This MIB variable accepts a VLAN id and MAC address to be added to the list + of statically locked MAC addresses on a port. The VLAN id and MAC address combination + would be entered in a particular fashion like :- 2 a0:b0:c0:d1:e2:a1(the vlan-id and + MAC address separated by a blank-space)." + ::={ agentPortSecurityEntry 8 } + + agentPortSecurityMACAddressRemove OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This MIB variable accepts a VLAN id and MAC address to be removed from the list + of statically locked MAC addresses on a port.. The VLAN id and MAC address combination + would be entered in a particular fashion like :- 2 a0:b0:c0:d1:e2:a1(the vlan-id and + MAC address separated by a blank-space)." + ::={ agentPortSecurityEntry 9 } + + agentPortSecurityMACAddressMove OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "When this object is enabled, all the dynamically locked MAC addresses will + be moved to statically locked addresses on a port. GET operation on this object will display + disable." + ::={ agentPortSecurityEntry 10 } + --**********************************************************************-- + + agentPortSecurityDynamicTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentPortSecurityDynamicEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A table for Port Security Dynamic and associated functionality." + ::= { agentPortSecurityGroup 3 } + + agentPortSecurityDynamicEntry OBJECT-TYPE + SYNTAX AgentPortSecurityDynamicEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Represents entry for port MAC Locking table" + INDEX { ifIndex,agentPortSecurityDynamicVLANId,agentPortSecurityDynamicMACAddress } + ::={ agentPortSecurityDynamicTable 1} + + AgentPortSecurityDynamicEntry ::= + SEQUENCE { + agentPortSecurityDynamicVLANId + Unsigned32, + agentPortSecurityDynamicMACAddress + MacAddress + } + + + agentPortSecurityDynamicVLANId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Source VLAN id of the packet that is received on the dynamically locked port." + ::={agentPortSecurityDynamicEntry 1 } + + + agentPortSecurityDynamicMACAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Source MAC address of the packet that is received on the dynamically locked port." + ::={ agentPortSecurityDynamicEntry 2 } + + + --************************************************************************************** + -- agentPortSecurity Traps + -- + --************************************************************************************** + + agentPortSecurityTraps OBJECT IDENTIFIER ::= { fastPathPortSecurity 2 } + + agentPortSecurityViolation NOTIFICATION-TYPE + OBJECTS { + ifIndex, + agentPortSecurityLastDiscardedMAC + } + STATUS current + DESCRIPTION + "Sent when a packet is received on a locked port with a source MAC address + that is not allowed." + ::= { agentPortSecurityTraps 1 } + + + +END + diff --git a/mibs/FASTPATH-QOS-ACL-MIB.mib b/mibs/FASTPATH-QOS-ACL-MIB.mib new file mode 100644 index 0000000..1cd2b02 --- /dev/null +++ b/mibs/FASTPATH-QOS-ACL-MIB.mib @@ -0,0 +1,1580 @@ +FASTPATH-QOS-ACL-MIB DEFINITIONS ::= BEGIN + +-- Broadcom Corporation Quality of Service - ACL Package MIB +-- Copyright Broadcom Corporation (2002-2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, + IpAddress, Integer32, Unsigned32, Counter64 + FROM SNMPv2-SMI + TEXTUAL-CONVENTION, RowStatus, MacAddress, TruthValue + FROM SNMPv2-TC + + DisplayString FROM RFC1213-MIB + InterfaceIndexOrZero FROM IF-MIB + fastPathQOS FROM FASTPATH-QOS-MIB; + + fastPathQOSACL MODULE-IDENTITY + LAST-UPDATED "200705230000Z" -- 23 May 2007 12:00:00 GMT + ORGANIZATION "Netgear" + CONTACT-INFO + "" + DESCRIPTION + "The MIB definitions for Quality of Service - ACL Flex package." + + -- Revision history. + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Netgear branding related changes." + REVISION + "200507080000Z" -- 08 Jul 2005 12:00:00 GMT + DESCRIPTION + "Added support for ACL rule logging and trap notification." + REVISION + "200409200000Z" -- 20 Sep 2004 12:00:00 GMT + DESCRIPTION + "Added L2 MAC ACL support." + REVISION + "200311210000Z" -- 21 Nov 2003 12:00:00 GMT + DESCRIPTION + "Revisions made for new release." + REVISION + "200302062334Z" -- 6 February 2003 + DESCRIPTION + "Updated for release" + ::= { fastPathQOS 2 } + + + EtypeValue ::= TEXTUAL-CONVENTION + DISPLAY-HINT "x" + STATUS current + DESCRIPTION + "Ethertype value of a packet. The allowed value is 0x0600 to 0xFFFF." + SYNTAX Unsigned32 (1536..65535) -- hex value 0x0600 to 0xFFFF + + Ipv6AddressPrefix ::= TEXTUAL-CONVENTION + DISPLAY-HINT "2x:" + STATUS current + DESCRIPTION + "This data type is used to model IPv6 address prefixes. This is a binary + string of up to 16 octets in network byte-order." + SYNTAX OCTET STRING (SIZE (0..16)) + +--************************************************************************************** + + aclNamedIpv4IndexNextFree OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains an unused value for the aclIndex + to be used when creating a new named IPv4 ACL. A value of zero + zero indicates the ACL table is full." + ::= { fastPathQOSACL 14 } + + --************************************************************************************** + + aclTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of ACL instances." + ::= { fastPathQOSACL 1 } + + aclEntry OBJECT-TYPE + SYNTAX AclEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { aclIndex } + ::= { aclTable 1 } + + AclEntry ::= SEQUENCE { + aclIndex + Integer32, + aclStatus + RowStatus, + aclName + DisplayString + } + + aclIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The IP ACL table index this instance is associated with." + ::= { aclEntry 1 } + + aclStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of this instance. Entries can not be deleted until all rows in + the aclIfTable and aclRuleTable with corresponding values of aclIndex + have been deleted. + + active(1) - this ACL instance is active + createAndGo(4) - set to this value to create an instance + destroy(6) - set to this value to delete an instance" + ::= { aclEntry 3 } + + aclName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The name of this IPv4 ACL entry, which must consist of + 1 to 31 alphanumeric characters and uniquely identify + this IPv4 ACL. An existing IPv4 ACL can be renamed by + setting this object to a new name. + + This object must be set to complete a new IPv4 ACL + row instance." + ::= { aclEntry 2 } + + --************************************************************************************** + + aclIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of ACL interface instances per direction." + ::= { fastPathQOSACL 2 } + + aclIfEntry OBJECT-TYPE + SYNTAX AclIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { aclIfIndex, aclIfDirection, aclIfSequence, aclIfAclType, aclIfAclId } + ::= { aclIfTable 1 } + + AclIfEntry ::= SEQUENCE { + aclIfIndex + Integer32, + aclIfDirection + INTEGER, + aclIfSequence + Unsigned32, + aclIfAclType + INTEGER, + aclIfAclId + Integer32, + aclIfStatus + RowStatus + } + + aclIfIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The interface to which this ACL instance applies." + ::= { aclIfEntry 1 } + + aclIfDirection OBJECT-TYPE + SYNTAX INTEGER { + inbound(1), + outbound(2) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The interface direction to which this ACL instance applies." + ::= { aclIfEntry 2 } + + aclIfSequence OBJECT-TYPE + SYNTAX Unsigned32 (1..4294967295) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The relative evaluation sequence of this ACL for this + interface and direction. When multiple ACLs are allowed + for a given interface and direction, the sequence number + determines the order in which the list of ACLs are evaluated, + with lower sequence numbers given higher precedence. The + sequence number value is arbitrary, but must be a unique + non-zero value for a given interface and direction. + + Setting this object to an existing sequence number + value for a given interface and direction causes the + ACL corresponding to that value to be replaced with + this ACL." + ::= { aclIfEntry 3 } + + aclIfAclType OBJECT-TYPE + SYNTAX INTEGER { + ip(1), + mac(2), + ipv6(3) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The type of this ACL, which is used to interpret the + aclIfId object value. Each type of ACL uses its own + numbering scheme for identification (see aclIfAclId object + for details). + + The aclIfAclId object must be specified along with this + object." + ::= { aclIfEntry 4 } + + aclIfAclId OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The ACL identifier value, which is interpreted based on + the aclIfType object. + + For the IP ACLs, the actual ACL number is its identifier + as follows: IP standard ranges from 1-99, while + IP extended ranges from 100-199. Here, aclIfAclId represents + aclIndex. + + The MAC ACLs use an internally-generated index value + that is assigned when the ACL is created.Here, aclIfAclId + represents aclMacIndex. + + The IPv6 ACLs use an internally-generated index value + that is assigned when the ACL is created.Here, aclVlanAclId + represents aclIpv6Index. + + The aclIfType object must be specified along with + this object." + ::= { aclIfEntry 5 } + + aclIfStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of this instance. + + active(1) - this ACL interface instance is active + createAndGo(4) - set to this value to assign an ACL to an interface and direction + destroy(6) - set to this value to remove an ACL from an interface and direction" + ::= { aclIfEntry 6 } + + + --************************************************************************************** + -- Layer 3 IP Access List Rules + -- + --************************************************************************************** + + aclRuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of IP ACL Rule instances." + ::= { fastPathQOSACL 4 } + + aclRuleEntry OBJECT-TYPE + SYNTAX AclRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of IP ACL Classification Rules" + INDEX { aclIndex, aclRuleIndex } + ::= { aclRuleTable 1 } + + AclRuleEntry ::= SEQUENCE { + aclRuleIndex + Integer32, + aclRuleAction + INTEGER, + aclRuleProtocol + Integer32, + aclRuleSrcIpAddress + IpAddress, + aclRuleSrcIpMask + IpAddress, + aclRuleSrcL4Port + Integer32, + aclRuleSrcL4PortRangeStart + Integer32, + aclRuleSrcL4PortRangeEnd + Integer32, + aclRuleDestIpAddress + IpAddress, + aclRuleDestIpMask + IpAddress, + aclRuleDestL4Port + Integer32, + aclRuleDestL4PortRangeStart + Integer32, + aclRuleDestL4PortRangeEnd + Integer32, + aclRuleIPDSCP + Integer32, + aclRuleIpPrecedence + Integer32, + aclRuleIpTosBits + Integer32, + aclRuleIpTosMask + Integer32, + aclRuleStatus + RowStatus, + aclRuleAssignQueueId + Unsigned32, + aclRuleRedirectIntf + InterfaceIndexOrZero, + aclRuleMatchEvery + TruthValue, + aclRuleMirrorIntf + InterfaceIndexOrZero, + aclRuleLogging + TruthValue + } + + aclRuleIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this rule instance within an IP ACL." + ::= { aclRuleEntry 1 } + + aclRuleAction OBJECT-TYPE + SYNTAX INTEGER { + permit(1), + deny(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The type of action this rule should perform." + DEFVAL { deny } + ::= { aclRuleEntry 2 } + + aclRuleProtocol OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "icmp - 1 + igmp - 2 + ip - 4 + tcp - 6 + udp - 17 + All values from 1 to 255 are valid." + ::= { aclRuleEntry 3 } + + aclRuleSrcIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Source IP Address used in the ACL Classification." + ::= { aclRuleEntry 4 } + + aclRuleSrcIpMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Source IP Mask used in the ACL Classification. + This mask is expressed using wild-card notation,which + is the 1's compliment of traditional Subnet Masks. + Here, the 'Don't care bits' are represented by binary 1's and + 'Do care bits' are represented by binary 0's. " + ::= { aclRuleEntry 5 } + + + aclRuleSrcL4Port OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Source Port Number (Layer 4) used in the ACL Classification." + ::= { aclRuleEntry 6 } + + aclRuleSrcL4PortRangeStart OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Source Port Number(Layer 4) range start." + ::= { aclRuleEntry 7 } + + aclRuleSrcL4PortRangeEnd OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Source Port Number(Layer 4) range end." + ::= { aclRuleEntry 8 } + + aclRuleDestIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Destination IP Address used in the ACL Classification." + ::= { aclRuleEntry 9 } + + aclRuleDestIpMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Destination IP Mask used in the ACL Classification. + This mask is expressed using wild-card notation,which + is the 1's compliment of traditional Subnet Masks. + Here, the 'Don't care bits' are represented by binary 1's and + 'Do care bits' are represented by binary 0's. " + ::= { aclRuleEntry 10 } + + aclRuleDestL4Port OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Destination Port (Layer 4) used in ACl classification." + ::= { aclRuleEntry 11 } + + aclRuleDestL4PortRangeStart OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Destination Port (Layer 4) starting range used in ACL classification." + ::= { aclRuleEntry 12 } + + aclRuleDestL4PortRangeEnd OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Destination Port (Layer 4) ending range used in ACL classification." + ::= { aclRuleEntry 13 } + + aclRuleIPDSCP OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Differentiated Services Code Point value." + ::= { aclRuleEntry 14 } + + aclRuleIpPrecedence OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Type of Service (TOS) IP Precedence value." + ::= { aclRuleEntry 15 } + + aclRuleIpTosBits OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Type of Service (TOS) Bits value." + ::= { aclRuleEntry 16 } + + aclRuleIpTosMask OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Type of Service (TOS) Mask value." + ::= { aclRuleEntry 17 } + + aclRuleStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of this instance. + + active(1) - this ACL Rule is active + createAndGo(4) - set to this value to create an instance + destroy(6) - set to this value to delete an instance" + ::= { aclRuleEntry 18 } + + aclRuleAssignQueueId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Queue identifier to which all inbound packets matching this + ACL rule are directed. This object defaults to the standard + queue assignment for user priority 0 traffic per the IEEE 802.1D + specification based on the number of assignable queues in the + system: + 1-3 queues: 0 + 4-7 queues: 1 + 8 queues: 2 + This default assignment is static and is not influenced by + other system configuration changes." + ::= { aclRuleEntry 19 } + + aclRuleRedirectIntf OBJECT-TYPE + SYNTAX InterfaceIndexOrZero + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A non-zero value indicates the external ifIndex to which all + inbound packets matching this ACL rule are directed. A + value of zero means packet redirection is not in effect, which + is the default value of this object. Note that packet + redirection and mirroring (aclRuleMirrorIntf object) + are mutually-exclusive rule attributes." + DEFVAL { 0 } + ::= { aclRuleEntry 20 } + + aclRuleMatchEvery OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Flag to indicate that the ACL rule is defined to match on every IP packet, + regardless of content." + ::= { aclRuleEntry 21 } + + aclRuleMirrorIntf OBJECT-TYPE + SYNTAX InterfaceIndexOrZero + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A non-zero value indicates the external ifIndex to which all + inbound packets matching this ACL rule are copied. A + value of zero means packet mirroring is not in effect, which + is the default value of this object. Note that packet + mirroring and redirection (aclRuleRedirectIntf object) + are mutually-exclusive rule attributes." + DEFVAL { 0 } + ::= { aclRuleEntry 22 } + + aclRuleLogging OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Flag to indicate that the ACL rule is being logged. + A hardware count of the number of times this rule is + hit is reported via the aclTrapRuleLogEvent notification. + + This object may be supported for an aclRuleAction + setting of permit(1) and/or deny(2), depending on the + ACL feature capabilities of the device." + ::= { aclRuleEntry 23 } + + + + --************************************************************************************** + -- Layer 2 MAC Access Lists + -- + --************************************************************************************** + + aclMacGroup OBJECT IDENTIFIER ::= { fastPathQOSACL 5 } + + aclMacIndexNextFree OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains an unused value for the aclMacIndex + to be used when creating a new MAC ACL. A value of zero + zero indicates the ACL table is full." + ::= { aclMacGroup 1 } + + --************************************************************************************** + + aclMacTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of MAC ACL instances." + ::= { aclMacGroup 2 } + + aclMacEntry OBJECT-TYPE + SYNTAX AclMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { aclMacIndex } + ::= { aclMacTable 1 } + + AclMacEntry ::= SEQUENCE { + aclMacIndex + Integer32, + aclMacName + DisplayString, + aclMacStatus + RowStatus + } + + aclMacIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The MAC ACL table index this instance is associated with. + When creating a new MAC ACL, refer to the aclMacIndexNextFree + object to determine the next available aclMacIndex to use." + ::= { aclMacEntry 1 } + + aclMacName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The name of this MAC ACL entry, which must consist of + 1 to 31 alphanumeric characters and uniquely identify + this MAC ACL. An existing MAC ACL can be renamed by + setting this object to a new name. + + This object must be set to complete a new MAC ACL + row instance." + ::= { aclMacEntry 2 } + + aclMacStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of this instance. ACL MAC entries can not be deleted until all rows in + the aclIfTable and aclRuleTable with corresponding values of aclMacIndex + have been deleted. + + active(1) - this ACL instance is active + createAndGo(4) - set to this value to create an instance + destroy(6) - set to this value to delete an instance + + The aclMacName object must be set to complete this row instance." + ::= { aclMacEntry 3 } + + --************************************************************************************** + + aclMacRuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclMacRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of layer 2 MAC ACL Rule instances." + ::= { aclMacGroup 3 } + + aclMacRuleEntry OBJECT-TYPE + SYNTAX AclMacRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of layer 2 MAC ACL Classification Rules" + INDEX { aclMacIndex, aclMacRuleIndex } + ::= { aclMacRuleTable 1 } + + AclMacRuleEntry ::= SEQUENCE { + aclMacRuleIndex + Integer32, + aclMacRuleAction + INTEGER, + aclMacRuleCos + Unsigned32, + aclMacRuleCos2 + Unsigned32, + aclMacRuleDestMacAddr + MacAddress, + aclMacRuleDestMacMask + MacAddress, + aclMacRuleEtypeKey + INTEGER, + aclMacRuleEtypeValue + EtypeValue, + aclMacRuleSrcMacAddr + MacAddress, + aclMacRuleSrcMacMask + MacAddress, + aclMacRuleVlanId + Unsigned32, + aclMacRuleVlanIdRangeStart + Unsigned32, + aclMacRuleVlanIdRangeEnd + Unsigned32, + aclMacRuleVlanId2 + Unsigned32, + aclMacRuleVlanId2RangeStart + Unsigned32, + aclMacRuleVlanId2RangeEnd + Unsigned32, + aclMacRuleStatus + RowStatus, + aclMacRuleAssignQueueId + Unsigned32, + aclMacRuleRedirectIntf + InterfaceIndexOrZero, + aclMacRuleMatchEvery + TruthValue, + aclMacRuleMirrorIntf + InterfaceIndexOrZero, + aclMacRuleLogging + TruthValue + } + + aclMacRuleIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this rule instance within an MAC ACL." + ::= { aclMacRuleEntry 1 } + + aclMacRuleAction OBJECT-TYPE + SYNTAX INTEGER { + permit(1), + deny(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The type of action this MAC ACL rule should perform." + DEFVAL { deny } + ::= { aclMacRuleEntry 2 } + + aclMacRuleCos OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Class of Service (COS) used in the MAC ACL Classification. + + This is the three-bit user priority field in the 802.1Q tag + header of a tagged Ethernet frame. For frames containing a + double VLAN tag, this field is located in the first/outer tag." + ::= { aclMacRuleEntry 3 } + + aclMacRuleCos2 OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Secondary Class of Service (COS2) used in the MAC ACL Classification. + + This is the three-bit user priority field in the second/inner 802.1Q + tag header of a double VLAN tagged Ethernet frame." + ::= { aclMacRuleEntry 4 } + + aclMacRuleDestMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Destination MAC address used in the MAC ACL Classification." + ::= { aclMacRuleEntry 5 } + + aclMacRuleDestMacMask OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Destination MAC address mask used in the MAC ACL Classification. + + This mask value identifies the portion of the aclMacRuleDestMacAddr + that is compared against a packet. A non-contiguous mask value is + permitted." + ::= { aclMacRuleEntry 6 } + + aclMacRuleEtypeKey OBJECT-TYPE + SYNTAX INTEGER { + custom(1), + appletalk(2), + arp(3), + ibmsna(4), + ipv4(5), + ipv6(6), + ipx(7), + mplsmcast(8), + mplsucast(9), + netbios(10), + novell(11), + pppoe(12), + rarp(13) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Ethertype keyword used in the MAC ACL Classification. + + A keyword of custom(1) requires that the aclMacRuleEtypeValue + object also be set." + ::= { aclMacRuleEntry 7 } + + aclMacRuleEtypeValue OBJECT-TYPE + SYNTAX EtypeValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Ethertype custom value used in the MAC ACL Classification. + + This object is only valid if the aclMacRuleEtypeKey is set to + custom(1). The allowed value for this object is 0x0600 to 0xFFFF + (1536 to 65535)." + ::= { aclMacRuleEntry 8 } + + aclMacRuleSrcMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Source MAC address used in the MAC ACL Classification." + ::= { aclMacRuleEntry 9 } + + aclMacRuleSrcMacMask OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Source MAC address mask used in the MAC ACL Classification. + + This mask value identifies the portion of the aclMacRuleSrcMacAddr + that is compared against a packet. A non-contiguous mask value is + permitted." + ::= { aclMacRuleEntry 10 } + + aclMacRuleVlanId OBJECT-TYPE + SYNTAX Unsigned32 (0..4095) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The VLAN ID value used in the MAC ACL Classification. + + The VLAN ID field is defined as the 12-bit VLAN identifier + in the 802.1Q tag header of a tagged Ethernet frame. This is + contained in the first/outer tag of a double VLAN tagged frame." + ::= { aclMacRuleEntry 11 } + + aclMacRuleVlanIdRangeStart OBJECT-TYPE + SYNTAX Unsigned32 (0..4095) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The VLAN ID range start value used in the MAC ACL Classification. + Setting this value greater than the current aclMacRuleVlanIdRangeEnd + changes the VLAN ID range end to the same value as the range start. + + The VLAN ID field is defined as the 12-bit VLAN identifier + in the 802.1Q tag header of a tagged Ethernet frame. This is + contained in the first/outer tag of a double VLAN tagged frame." + ::= { aclMacRuleEntry 12 } + + aclMacRuleVlanIdRangeEnd OBJECT-TYPE + SYNTAX Unsigned32 (0..4095) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The VLAN ID range end value used in the MAC ACL Classification. + Setting this value less than the current aclMacRuleVlanIdRangeStart + changes the VLAN ID range start to the same value as the range end. + + The VLAN ID field is defined as the 12-bit VLAN identifier + in the 802.1Q tag header of a tagged Ethernet frame. This is + contained in the first/outer tag of a double VLAN tagged frame." + ::= { aclMacRuleEntry 13 } + + aclMacRuleVlanId2 OBJECT-TYPE + SYNTAX Unsigned32 (0..4095) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Secondary VLAN ID value used in the MAC ACL Classification. + + The Secondary VLAN ID field is defined as the 12-bit VLAN identifier + in the second/inner 802.1Q tag header of a double VLAN tagged Ethernet + frame." + ::= { aclMacRuleEntry 14 } + + aclMacRuleVlanId2RangeStart OBJECT-TYPE + SYNTAX Unsigned32 (0..4095) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Secondary VLAN ID range start value used in the MAC ACL Classification. + Setting this value greater than the current aclMacRuleVlanId2RangeEnd + changes the Secondary VLAN ID range end to the same value as the range start. + + The Secondary VLAN ID field is defined as the 12-bit VLAN identifier + in the second/inner 802.1Q tag header of a double VLAN tagged Ethernet + frame." + ::= { aclMacRuleEntry 15 } + + aclMacRuleVlanId2RangeEnd OBJECT-TYPE + SYNTAX Unsigned32 (0..4095) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Secondary VLAN ID range end value used in the MAC ACL Classification. + Setting this value less than the current aclMacRuleVlanId2RangeStart + changes the Secondary VLAN ID range start to the same value as the range end. + + The Secondary VLAN ID field is defined as the 12-bit VLAN identifier + in the second/inner 802.1Q tag header of a double VLAN tagged Ethernet + frame." + ::= { aclMacRuleEntry 16 } + + aclMacRuleStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of this instance. + + active(1) - this ACL Rule is active + createAndGo(4) - set to this value to create an instance + destroy(6) - set to this value to delete an instance" + ::= { aclMacRuleEntry 17 } + + aclMacRuleAssignQueueId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Queue identifier to which all inbound packets matching this + MAC ACL rule are directed. This object defaults to the standard + queue assignment for user priority 0 traffic per the IEEE 802.1D + specification based on the number of assignable queues in the + system: + 1-3 queues: 0 + 4-7 queues: 1 + 8 queues: 2 + This default assignment is static and is not influenced by + other system configuration changes." + ::= { aclMacRuleEntry 18 } + + aclMacRuleRedirectIntf OBJECT-TYPE + SYNTAX InterfaceIndexOrZero + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A non-zero value indicates the external ifIndex to which all + inbound packets matching this MAC ACL rule are directed. A + value of zero means packet redirection is not in effect, which + is the default value of this object. Note that packet + redirection and mirroring (aclMacRuleMirrorIntf object) + are mutually-exclusive rule attributes." + DEFVAL { 0 } + ::= { aclMacRuleEntry 19 } + + aclMacRuleMatchEvery OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Flag to indicate that the MAC ACL rule is defined to match all packets, + regardless of Ethertype." + ::= { aclMacRuleEntry 20 } + + aclMacRuleMirrorIntf OBJECT-TYPE + SYNTAX InterfaceIndexOrZero + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A non-zero value indicates the external ifIndex to which all + inbound packets matching this MAC ACL rule are copied. A + value of zero means packet mirroring is not in effect, which + is the default value of this object. Note that packet + mirroring and redirection (aclMacRuleRedirectIntf object) + are mutually-exclusive rule attributes." + DEFVAL { 0 } + ::= { aclMacRuleEntry 21 } + + aclMacRuleLogging OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Flag to indicate that the ACL rule is being logged. + A hardware count of the number of times this rule is + hit is reported via the aclTrapRuleLogEvent notification. + + This object may be supported for an aclMacRuleAction + setting of permit(1) and/or deny(2), depending on the + ACL feature capabilities of the device." + ::= { aclMacRuleEntry 22 } + + --************************************************************************************** + -- Global controls + -- + --************************************************************************************** + + --************************************************************************************** + -- aclLoggingGroup + --************************************************************************************** + + aclLoggingGroup OBJECT IDENTIFIER ::= { fastPathQOSACL 9 } + + aclTrapRuleIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "The index of an ACL rule instance. + Used by aclTrapRuleLogEvent trap." + ::= { aclLoggingGroup 2 } + + aclTrapRuleAction OBJECT-TYPE + SYNTAX INTEGER { + permit(1), + deny(2) + } + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "The type of action this rule should perform, either + permit(1) or deny(2). + Used by aclTrapRuleLogEvent trap." + ::= { aclLoggingGroup 3 } + + aclTrapRuleHitCount OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "Number of times the ACL rule was hit during the most + recent logging interval. Used by aclTrapRuleLogEvent trap." + ::= { aclLoggingGroup 4 } + + aclTrapFlag OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ACL Trap Flag - Enables or disables ACL trap generation. + When this value is set to enable(1), ACL traps are + sent from the switch when they occur." + ::= { aclLoggingGroup 5 } + + + --************************************************************************************** + -- ACL Trap Definitions + --************************************************************************************** + + aclNotifications OBJECT IDENTIFIER ::= { fastPathQOSACL 0 } + + aclTrapRuleLogEvent NOTIFICATION-TYPE + OBJECTS { + aclIfAclType, + aclIfAclId, + aclTrapRuleIndex, + aclTrapRuleAction, + aclTrapRuleHitCount + } + STATUS current + DESCRIPTION + "This trap is generated on a periodic basis to indicate that an + ACL rule configured for logging was actively used by hardware to + take action on one or more packets. The aclTrapRuleHitCount denotes + the number of times this rule was hit during the most recent logging + interval. ACL Trap generation requires that the aclTrapFlag object + be set to enable(1)." + ::= { aclNotifications 1 } + + --************************************************************************************** + +--************************************************************************************** +-- +-- +--************************************************************************************** + + aclIpv6IndexNextFree OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains an unused value for the aclIPv6Index + to be used when creating a new IPv6 ACL. A value of zero + zero indicates the ACL table is full." + ::= { fastPathQOSACL 10 } + + --************************************************************************************** + + aclIpv6Table OBJECT-TYPE + SYNTAX SEQUENCE OF AclIpv6Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of Ipv6 ACL instances." + ::= { fastPathQOSACL 11 } + + aclIpv6Entry OBJECT-TYPE + SYNTAX AclIpv6Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { aclIpv6Index } + ::= { aclIpv6Table 1 } + + AclIpv6Entry ::= SEQUENCE { + aclIpv6Index + Integer32, + aclIpv6Name + DisplayString, + aclIpv6Status + RowStatus + } + + aclIpv6Index OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The IPv6 ACL table index this instance is associated with. + When creating a new IPv6 ACL, refer to the aclIPv6IndexNextFree + object to determine the next available aclIpv6Index to use." + ::= { aclIpv6Entry 1 } + + aclIpv6Name OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The name of this IPv6 ACL entry, which must consist of + 1 to 31 alphanumeric characters and uniquely identify + this IPv6 ACL. An existing IPv6 ACL can be renamed by + setting this object to a new name. + + This object must be set to complete a new IPv6 ACL + row instance." + ::= { aclIpv6Entry 2 } + + aclIpv6Status OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of this instance. + + active(1) - this ACL instance is active + createAndGo(4) - set to this value to create an instance + destroy(6) - set to this value to delete an instance + + The aclMacName object must be set to complete this row instance." + ::= { aclIpv6Entry 3 } + +--************************************************************************************** + aclIpv6RuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclIpv6RuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of IPv6 ACL Rule instances." + ::= { fastPathQOSACL 12 } + + aclIpv6RuleEntry OBJECT-TYPE + SYNTAX AclIpv6RuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of IPv6 ACL Classification Rules" + INDEX { aclIpv6Index, aclIpv6RuleIndex } + ::= { aclIpv6RuleTable 1 } + + AclIpv6RuleEntry ::= SEQUENCE { + aclIpv6RuleIndex + Integer32, + aclIpv6RuleAction + INTEGER, + aclIpv6RuleLogging + TruthValue, + aclIpv6RuleAssignQueueId + Unsigned32, + aclIpv6RuleRedirectIntf + InterfaceIndexOrZero, + aclIpv6RuleMirrorIntf + InterfaceIndexOrZero, + aclIpv6RuleMatchEvery + TruthValue, + aclIpv6RuleProtocol + Integer32, + aclIpv6RuleSrcL4Port + Integer32, + aclIpv6RuleSrcL4PortRangeStart + Integer32, + aclIpv6RuleSrcL4PortRangeEnd + Integer32, + aclIpv6RuleDestL4Port + Integer32, + aclIpv6RuleDestL4PortRangeStart + Integer32, + aclIpv6RuleDestL4PortRangeEnd + Integer32, + aclIpv6RuleFlowLabel + Integer32, + aclIpv6RuleIPDSCP + Integer32, + aclIpv6RuleStatus + RowStatus, + aclRuleSrcIpv6Prefix + Ipv6AddressPrefix, + aclRuleSrcIpv6PrefixLength + Integer32, + aclRuleDstIpv6Prefix + Ipv6AddressPrefix, + aclRuleDstIpv6PrefixLength + Integer32 + } + + aclIpv6RuleIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this rule instance within an IPv6 ACL." + ::= { aclIpv6RuleEntry 1 } + + aclIpv6RuleAction OBJECT-TYPE + SYNTAX INTEGER { + permit(1), + deny(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The type of action this IPv6 ACL rule should perform." + DEFVAL { deny } + ::= { aclIpv6RuleEntry 2 } + + aclIpv6RuleLogging OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Flag to indicate that the ACL rule is being logged. + A hardware count of the number of times this rule is + hit is reported via the aclTrapRuleLogEvent notification. + + This object may be supported for an aclIPv6RuleAction + setting of permit(1) and/or deny(2), depending on the + ACL feature capabilities of the device." + ::= { aclIpv6RuleEntry 3 } + + + aclIpv6RuleAssignQueueId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Queue identifier to which all inbound packets matching this + ACL rule are directed. This object defaults to the standard + queue assignment for user priority 0 traffic per the IEEE 802.1D + specification based on the number of assignable queues in the + system: + 1-3 queues: 0 + 4-7 queues: 1 + 8 queues: 2 + This default assignment is static and is not influenced by + other system configuration changes." + ::= { aclIpv6RuleEntry 4 } + + aclIpv6RuleRedirectIntf OBJECT-TYPE + SYNTAX InterfaceIndexOrZero + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A non-zero value indicates the external ifIndex to which all + inbound packets matching this Ipv6 ACL rule are directed. A + value of zero means packet redirection is not in effect, which + is the default value of this object. Note that packet + redirection and mirroring (aclIpv6RuleMirrorIntf object) + are mutually-exclusive rule attributes." + DEFVAL { 0 } + ::= { aclIpv6RuleEntry 5 } + + aclIpv6RuleMirrorIntf OBJECT-TYPE + SYNTAX InterfaceIndexOrZero + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A non-zero value indicates the external ifIndex to which all + inbound packets matching this IPv6 ACL rule are copied. A + value of zero means packet mirroring is not in effect, which + is the default value of this object. Note that packet + mirroring and redirection (aclIpv6RuleRedirectIntf object) + are mutually-exclusive rule attributes." + DEFVAL { 0 } + ::= { aclIpv6RuleEntry 6 } + + aclIpv6RuleMatchEvery OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Flag to indicate that the ACL rule is defined to match on every IP packet, + regardless of content." + ::= { aclIpv6RuleEntry 7 } + + aclIpv6RuleProtocol OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "icmp - 1 + igmp - 2 + ip - 4 + tcp - 6 + udp - 17 + All values from 1 to 255 are valid." + ::= { aclIpv6RuleEntry 8 } + + aclIpv6RuleSrcL4Port OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Source Port Number (Layer 4) used in the ACL Classification." + ::= { aclIpv6RuleEntry 9 } + + aclIpv6RuleSrcL4PortRangeStart OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Source Port Number(Layer 4) range start." + ::= { aclIpv6RuleEntry 10 } + + aclIpv6RuleSrcL4PortRangeEnd OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Source Port Number(Layer 4) range end." + ::= { aclIpv6RuleEntry 11 } + + aclIpv6RuleDestL4Port OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Destination Port (Layer 4) used in ACl classification." + ::= { aclIpv6RuleEntry 12 } + + aclIpv6RuleDestL4PortRangeStart OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Destination Port (Layer 4) starting range used in ACL classification." + ::= { aclIpv6RuleEntry 13 } + + aclIpv6RuleDestL4PortRangeEnd OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Destination Port (Layer 4) ending range used in ACL classification." + ::= { aclIpv6RuleEntry 14 } + + aclIpv6RuleStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of this instance. + active(1) - this ACL Rule is active + createAndGo(4) - set to this value to create an instance + destroy(6) - set to this value to delete an instance" + ::= { aclIpv6RuleEntry 15 } + + aclIpv6RuleFlowLabel OBJECT-TYPE + SYNTAX Integer32 (0..1048575) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Flow label is 20-bit number that is unique to an IPv6 packet, used by end + stations to signify quality-of-service handling in routers." + ::= { aclIpv6RuleEntry 16 } + + aclIpv6RuleIPDSCP OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Differentiated Services Code Point value." + ::= { aclIpv6RuleEntry 17 } + + aclRuleSrcIpv6Prefix OBJECT-TYPE + SYNTAX Ipv6AddressPrefix + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Ipv6 Prefix Address configured on the Service Port." + ::= { aclIpv6RuleEntry 18 } + + aclRuleSrcIpv6PrefixLength OBJECT-TYPE + SYNTAX Integer32 (1..128) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Prefix Length." + ::= { aclIpv6RuleEntry 19 } + + aclRuleDstIpv6Prefix OBJECT-TYPE + SYNTAX Ipv6AddressPrefix + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Ipv6 Prefix Address configured on the Service Port." + ::= { aclIpv6RuleEntry 20 } + + aclRuleDstIpv6PrefixLength OBJECT-TYPE + SYNTAX Integer32 (1..128) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Prefix Length." + ::= { aclIpv6RuleEntry 21 } + +--************************************************************************************** + + aclVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of ACL VLAN instances per direction." + ::= { fastPathQOSACL 13 } + + aclVlanEntry OBJECT-TYPE + SYNTAX AclVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { aclVlanIndex, aclVlanDirection, aclVlanSequence, aclVlanAclType, aclVlanAclId } + ::= { aclVlanTable 1 } + + AclVlanEntry ::= SEQUENCE { + aclVlanIndex + Integer32, + aclVlanDirection + INTEGER, + aclVlanSequence + Unsigned32, + aclVlanAclType + INTEGER, + aclVlanAclId + Integer32, + aclVlanStatus + RowStatus + } + + aclVlanIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Vlan to which this ACL instance applies." + ::= { aclVlanEntry 1 } + + aclVlanDirection OBJECT-TYPE + SYNTAX INTEGER { + inbound(1), + outbound(2) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Vlan direction to which this ACL instance applies." + ::= { aclVlanEntry 2 } + + aclVlanSequence OBJECT-TYPE + SYNTAX Unsigned32 (1..4294967295) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The relative evaluation sequence of this ACL for this + Vlan and direction. When multiple ACLs are allowed + for a given Vlan and direction, the sequence number + determines the order in which the list of ACLs are evaluated, + with lower sequence numbers given higher precedence. The + sequence number value is arbitrary, but must be a unique + non-zero value for a given Vlan and direction. + + Setting this object to an existing sequence number + value for a given Vlan and direction causes the + ACL corresponding to that value to be replaced with + this ACL." + ::= { aclVlanEntry 3 } + + aclVlanAclType OBJECT-TYPE + SYNTAX INTEGER { + ip(1), + mac(2), + ipv6(3) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The type of this ACL, which is used to interpret the + aclVlanId object value. Each type of ACL uses its own + numbering scheme for identification (see aclVlanAclId object + for details). + + The aclVlanAclId object must be specified along with this + object." + ::= { aclVlanEntry 4 } + + aclVlanAclId OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The ACL identifier value, which is interpreted based on + the aclVlanType object. + + For the IP ACLs, the actual ACL number is its identifier + as follows: IP standard ranges from 1-99, while + IP extended ranges from 100-199. Here, aclVlanAclId represents + aclIndex. + + The MAC ACLs use an internally-generated index value + that is assigned when the ACL is created. Here, aclVlanAclId + represents aclMacIndex. + + The IPv6 ACLs use an internally-generated index value + that is assigned when the ACL is created.Here, aclVlanAclId + represents aclIpv6Index. + + The aclVlanType object must be specified along with + this object." + ::= { aclVlanEntry 5 } + + aclVlanStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of this instance. + + active(1) - this ACL Vlan instance is active + createAndGo(4) - set to this value to assign an ACL to a Vlan and direction + destroy(6) - set to this value to remove an ACL from a Vlan and direction" + ::= { aclVlanEntry 6 } + +END diff --git a/mibs/FASTPATH-QOS-AUTOVOIP-MIB.mib b/mibs/FASTPATH-QOS-AUTOVOIP-MIB.mib new file mode 100644 index 0000000..657ab84 --- /dev/null +++ b/mibs/FASTPATH-QOS-AUTOVOIP-MIB.mib @@ -0,0 +1,126 @@ +FASTPATH-QOS-AUTOVOIP-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, IpAddress, + Integer32, Unsigned32 FROM SNMPv2-SMI + + TEXTUAL-CONVENTION, RowStatus FROM SNMPv2-TC + InterfaceIndexOrZero FROM IF-MIB + fastPathQOS FROM FASTPATH-QOS-MIB; + + fastPathQOSAUTOVOIP MODULE-IDENTITY + LAST-UPDATED "200711230000Z" -- 23 Nov 2007 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 100 Perimeter Park Drive + Suite H + Morrisville, NC 27560 + Tel: +1 919 865 2700" + DESCRIPTION + "The MIB definitions for Quality of Service - VoIP Flex package." + + -- Revision history. + REVISION + "200711230000Z" -- 23 Nov 2007 12:00:00 GMT + DESCRIPTION + "Broadcom branding related changes." + REVISION + "200711230000Z" -- 3 Nov 2004 12:00:00 GMT + DESCRIPTION + "Initial revision." + ::= { fastPathQOS 4 } + + PercentByFives ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "An unsigned integer representing a value expressed + as a percentage with five percent increments." + SYNTAX Unsigned32 (0|5|10|15|20|25|30|35|40|45|50|55|60|65|70|75|80|85|90|95|100) + + Sixteenths ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "An unsigned integer representing the numerator of a + value expressing a fraction in terms of sixteenths + (0/16, 1/16, 2/16, up to 16/16)." + SYNTAX Unsigned32 (0..16) + +--********************************************************************* +-- agentAutoVoIPCfgGroup +-- +-- Note: System-wide configuration is supported for this +-- group by using an index value of 0. +--********************************************************************* +agentAutoVoIPCfgGroup OBJECT IDENTIFIER ::= { fastPathQOSAUTOVOIP 1 } + + -- Auto VoIP Profile Configuration table (global and per-port) + agentAutoVoIPTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentAutoVoIPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table providing configuration of Auto VoIP Profile." + + ::= { agentAutoVoIPCfgGroup 1 } + + agentAutoVoIPEntry OBJECT-TYPE + SYNTAX AgentAutoVoIPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Auto VoIP Profile configuration for a port." + INDEX { agentAutoVoIPIntfIndex } + ::= { agentAutoVoIPTable 1 } + + AgentAutoVoIPEntry::= + SEQUENCE { + agentAutoVoIPIntfIndex + InterfaceIndexOrZero, + agentAutoVoIPMode + INTEGER, + agentAutoVoIPCosQueue + Unsigned32 + } + + agentAutoVoIPIntfIndex OBJECT-TYPE + SYNTAX InterfaceIndexOrZero + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This is a unique index for an entry in the + agentAutoVoIPTable. A non-zero value indicates + the ifIndex for the corresponding interface entry + in the ifTable. A value of zero represents global + configuration, which in turn causes all interface + entries to be updated for a set operation, or + reflects the most recent global setting for a get + operation." + + ::= { agentAutoVoIPEntry 1 } + + agentAutoVoIPMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables / disables AutoVoIP profile on an interface." + DEFVAL { 2 } + + ::= { agentAutoVoIPEntry 2 } + + agentAutoVoIPCosQueue OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Cos Queue to which all VoIP traffic is mapped to." + + ::= { agentAutoVoIPEntry 3 } + + +END diff --git a/mibs/FASTPATH-QOS-COS-MIB.mib b/mibs/FASTPATH-QOS-COS-MIB.mib new file mode 100644 index 0000000..3d3c36d --- /dev/null +++ b/mibs/FASTPATH-QOS-COS-MIB.mib @@ -0,0 +1,969 @@ +FASTPATH-QOS-COS-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, IpAddress, + Integer32, Unsigned32 FROM SNMPv2-SMI + + RowStatus, TEXTUAL-CONVENTION FROM SNMPv2-TC + InterfaceIndexOrZero FROM IF-MIB + fastPathQOS FROM FASTPATH-QOS-MIB; + + fastPathQOSCOS MODULE-IDENTITY + LAST-UPDATED "201003170000Z" -- 17 Mar 2010 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 100 Perimeter Park Drive + Suite H + Morrisville, NC 27560 + Tel: +1 919 865 2700" + DESCRIPTION + "The MIB definitions for Quality of Service - CoS Flex package." + + -- Revision history. + REVISION + "201003170000Z" -- 17 Mar 2010 12:00:00 GMT + DESCRIPTION + "Fixed error in range of agentCosQueueWredDecayExponent." + REVISION + "200910270000Z" -- 27 Oct 2009 12:00:00 GMT + DESCRIPTION + "Updated description for agentCosQueueIntfShapingRate object." + REVISION + "200901060000Z" -- 6 Jan 2009 12:00:00 GMT + DESCRIPTION + "Added new objects in agentCosQueueMgmtTable with units of percentages, rather than + Sixteenths or reciprocal exponentials. Deprecated the replaced objects." + REVISION + "200809230000Z" -- 23 Sep 2008 12:00:00 GMT + DESCRIPTION + "Changed object agentCosQueueIntfShapingRate to support configuration of bandwidth as + either percent of port speed or kilobits per second units. Systems report which unit + applies via a new object agentCosQueueIntfShapingRateUnits object. Added object + agentCosQueueIntfShapingRateUnits." + REVISION + "200712190000Z" -- 19 Dec 2007 12:00:00 GMT + DESCRIPTION + "Changed objects agentCosQueueIntfShapingRate, agentCosQueueMinBandwidth, and agentCosQueueMaxBandwidth to allow + an increment of 1 percent rather than 5 percent." + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Broadcom branding related changes." + REVISION + "200405030000Z" -- 3 May 2004 12:00:00 GMT + DESCRIPTION + "Initial revision." + ::= { fastPathQOS 3 } + + PercentByFives ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "An unsigned integer representing a value expressed + as a percentage with five percent increments." + SYNTAX Unsigned32 (0|5|10|15|20|25|30|35|40|45|50|55|60|65|70|75|80|85|90|95|100) + + Percent ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "An unsigned integer representing a value expressed + as a percentage with one percent increments." + SYNTAX Unsigned32 (0..100) + + Sixteenths ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "An unsigned integer representing the numerator of a + value expressing a fraction in terms of sixteenths + (0/16, 1/16, 2/16, up to 16/16)." + SYNTAX Unsigned32 (0..16) + +--********************************************************************* +-- agentCosMapCfgGroup +-- +-- Note: System-wide configuration is supported for this +-- group by using an index value of 0. +--********************************************************************* + agentCosMapCfgGroup OBJECT IDENTIFIER ::= { fastPathQOSCOS 1 } + + -- IP Precedence mapping table (global and per-port) + agentCosMapIpPrecTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentCosMapIpPrecEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table mapping evaluated IP precedence to Traffic + Class for a specific physical port. Traffic class + is a number in the range + (0..(dot1dPortNumTrafficClasses-1))." + + ::= { agentCosMapCfgGroup 1 } + + agentCosMapIpPrecEntry OBJECT-TYPE + SYNTAX AgentCosMapIpPrecEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IP Precedence to Traffic Class mapping for a port." + INDEX { agentCosMapIpPrecIntfIndex, agentCosMapIpPrecValue } + ::= { agentCosMapIpPrecTable 1 } + + AgentCosMapIpPrecEntry ::= + SEQUENCE { + agentCosMapIpPrecIntfIndex + InterfaceIndexOrZero, + agentCosMapIpPrecValue + Unsigned32, + agentCosMapIpPrecTrafficClass + Unsigned32 + } + + agentCosMapIpPrecIntfIndex OBJECT-TYPE + SYNTAX InterfaceIndexOrZero + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This is a unique index for an entry in the + agentCosMapIpPrecTable. A non-zero value indicates + the ifIndex for the corresponding interface entry + in the ifTable. A value of zero represents global + configuration, which in turn causes all interface + entries to be updated for a set operation, or + reflects the most recent global setting for a get + operation." + + ::= { agentCosMapIpPrecEntry 1 } + + agentCosMapIpPrecValue OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The IP precedence value contained in the received + frame. This value is only indicated in IP packets, + but is independent of both media-type and frame + tagging. + + Non-IP packets are handled in accordance with the + dot1dPortDefaultUserPriority value of the ingress + port." + + ::= { agentCosMapIpPrecEntry 2 } + + agentCosMapIpPrecTrafficClass OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Traffic class priority queue the received frame is + mapped to. This represents the actual configuration + setting the port is using." + + ::= { agentCosMapIpPrecEntry 3 } + + + -- IP DSCP mapping table (global and per-port) + agentCosMapIpDscpTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentCosMapIpDscpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table mapping evaluated IP DSCP to Traffic Class + for a specific physical port. Traffic class is a + number in the range + (0..(dot1dPortNumTrafficClasses-1))." + + ::= { agentCosMapCfgGroup 2 } + + agentCosMapIpDscpEntry OBJECT-TYPE + SYNTAX AgentCosMapIpDscpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IP DSCP to Traffic Class mapping for a port." + INDEX { agentCosMapIpDscpIntfIndex, agentCosMapIpDscpValue } + ::= { agentCosMapIpDscpTable 1 } + + AgentCosMapIpDscpEntry ::= + SEQUENCE { + agentCosMapIpDscpIntfIndex + InterfaceIndexOrZero, + agentCosMapIpDscpValue + Unsigned32, + agentCosMapIpDscpTrafficClass + Unsigned32 + } + + agentCosMapIpDscpIntfIndex OBJECT-TYPE + SYNTAX InterfaceIndexOrZero + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This is a unique index for an entry in the + agentCosMapIpDscpTable. A non-zero value indicates + the ifIndex for the corresponding interface entry + in the ifTable. A value of zero represents global + configuration, which in turn causes all interface + entries to be updated for a set operation, or + reflects the most recent global setting for a get + operation." + + ::= { agentCosMapIpDscpEntry 1 } + + agentCosMapIpDscpValue OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The IP DSCP value contained in the received frame. + This value is only indicated in IP packets, but is + independent of both media-type and frame tagging. + + Non-IP packets are handled in accordance with the + dot1dPortDefaultUserPriority value of the ingress + port." + + ::= { agentCosMapIpDscpEntry 2 } + + agentCosMapIpDscpTrafficClass OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Traffic class priority queue the received frame is + mapped to." + + ::= { agentCosMapIpDscpEntry 3 } + + + -- Interface trust mode (global and per-port) + agentCosMapIntfTrustTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentCosMapIntfTrustEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Specifies the interface trust mode of operation for + a port. The trust mode setting determines which COS + mapping table is used for directing ingress packets + to a Traffic Class." + + ::= { agentCosMapCfgGroup 3 } + + agentCosMapIntfTrustEntry OBJECT-TYPE + SYNTAX AgentCosMapIntfTrustEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "COS interface trust mode." + INDEX { agentCosMapIntfTrustIntfIndex } + ::= { agentCosMapIntfTrustTable 1 } + + AgentCosMapIntfTrustEntry ::= + SEQUENCE { + agentCosMapIntfTrustIntfIndex + InterfaceIndexOrZero, + agentCosMapIntfTrustMode + INTEGER, + agentCosMapUntrustedTrafficClass + Unsigned32 + } + + agentCosMapIntfTrustIntfIndex OBJECT-TYPE + SYNTAX InterfaceIndexOrZero + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This is a unique index for an entry in the + agentCosMapIntfTrustTable. A non-zero value indicates + the ifIndex for the corresponding interface entry + in the ifTable. A value of zero represents global + configuration, which in turn causes all interface + entries to be updated for a set operation, or + reflects the most recent global setting for a get + operation." + + ::= { agentCosMapIntfTrustEntry 1 } + + agentCosMapIntfTrustMode OBJECT-TYPE + SYNTAX INTEGER { + untrusted(1), + trustDot1p(2), + trustIpPrecedence(3), + trustIpDscp(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The class of service trust mode of an interface. + When set to a trusted mode, the appropriate COS + mapping table is used as follows: + + trustDot1p(2) : dot1dTrafficClassTable + trustIpPrecedence(3): agentCosMapIpPrecTable + trustIpDscp(4): agentCosMapIpDscpTable + + For an untrusted(1) interface, packets are handled in + accordance with the dot1dPortDefaultUserPriority value + of the ingress port." + + ::= { agentCosMapIntfTrustEntry 2 } + + agentCosMapUntrustedTrafficClass OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The traffic class (i.e. hardware queue) to which all + untrusted traffic is assigned. This includes all + traffic when the agentCosMapIntfTrustMode is set to + untrusted(1), or just non-IP packets when in + trustIpPrecedence(3) or trustIpDscp(4) modes. + + This is a read-only object that reflects the current setting + of the dot1dPortDefaultUserPriority object as mapped + to a traffic class through the dot1dTrafficClassEntry." + ::= { agentCosMapIntfTrustEntry 3 } + + + +--********************************************************************* +-- agentCosQueueCfgGroup +-- +-- Note: System-wide configuration is supported for this +-- group by using an index value of 0. +--********************************************************************* +agentCosQueueCfgGroup OBJECT IDENTIFIER ::= { fastPathQOSCOS 2 } + + agentCosQueueNumQueuesPerPort OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of configurable COS queues per port + supported by the hardware device." + ::= { agentCosQueueCfgGroup 1 } + + agentCosQueueNumDropPrecedenceLevels OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of distinct drop precedence levels per + queue supported by the hardware device. These levels + are typically used when configuring the queue + management tail drop and WRED parameters." + ::= { agentCosQueueCfgGroup 2 } + + -- Control table for managing queue configuration for the interface + agentCosQueueControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentCosQueueControlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of class-of-service queue configuration + controls for the specified interface." + ::= { agentCosQueueCfgGroup 3 } + + agentCosQueueControlEntry OBJECT-TYPE + SYNTAX AgentCosQueueControlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provides a general control mechanism that affects + all queues on a given interface." + INDEX { agentCosQueueIntfIndex } + ::= { agentCosQueueControlTable 1 } + + AgentCosQueueControlEntry ::= SEQUENCE { + agentCosQueueIntfIndex + InterfaceIndexOrZero, + agentCosQueueIntfShapingRate + Unsigned32, + agentCosQueueMgmtTypeIntf + INTEGER, + agentCosQueueWredDecayExponent + Unsigned32, + agentCosQueueDefaultsRestore + INTEGER, + agentCosQueueIntfShapingRateUnits + INTEGER + } + + agentCosQueueIntfIndex OBJECT-TYPE + SYNTAX InterfaceIndexOrZero + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This is a unique index for an entry in the + agentCosQueueControlTable, agentCosQueueTable, + or agentCosQueueMgmtTable. A non-zero value indicates + the ifIndex for the corresponding interface entry + in the ifTable. A value of zero represents global + configuration, which in turn causes all interface + entries to be updated for a set operation, or + reflects the most recent global setting for a get + operation." + + ::= { agentCosQueueControlEntry 1 } + + agentCosQueueIntfShapingRate OBJECT-TYPE + SYNTAX Unsigned32 (0..4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum bandwidth allowed for this interface as a + whole, typically used to shape the outbound + transmission rate. The value is specified in terms + of percentage of overall link speed for the port in + 1% increments. A value of 0 means there is no + maximum bandwidth limit in effect and that the + interface is allowed to transmit up to its maximum + line rate (i.e., work conserving method). + The default value is 0. + + When set to a non-zero value, the interface is + restricted to using at most the bandwidth specified + in this object for the outbound transmission rate + (i.e., non-work-conserving method). This bandwidth + value is independent of any per-queue maximum + bandwidth value(s) in effect for the interface, as + specified in the agentCosQueueMaxBandwidth ohject, + and should be considered as a second-level + transmission rate control mechanism that regulates + the output of the entire interface regardless of + which queues originate the outbound traffic. + + Valid value ranges depend on the value returned by + object agentCosQueueIntfShapingRateUnits. If that + object returns percent(1), agentCosQueueIntfShapingRate + accepts values 0..100. If that object returns kbps(2), + agentCosQueueIntfShapingRate accepts values + 0,64..4294967295." + DEFVAL { 0 } + ::= { agentCosQueueControlEntry 2 } + + agentCosQueueMgmtTypeIntf OBJECT-TYPE + SYNTAX INTEGER { + taildrop(1), + wred(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The management technique used for all queues on this + interface. If taildrop(1), then all new packets + presented to the queues are dropped based on some + maximum threshold value(s). If wred(2), then an + active queue management scheme is employed whereby + packet drop precedence is considered during times of + queue congestion using WRED parameters. The + necessary queue management parameters are specified + in the agentCosQueueMgmtTable for the corresponding + agentCosQueueIntfIndex value. The default for this + object is taildrop(1). + + Implementations that support this object but do not + support weighted RED must return taildrop(1) for this + value and must not allow a value of wred(2) to be set." + DEFVAL { taildrop } + ::= { agentCosQueueControlEntry 3 } + + agentCosQueueWredDecayExponent OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The decay exponent value used with the weighted + random early discard (WRED) algorithm to determine + how quickly the average queue length calculation + reacts to the current length of the queue. A higher + value produces a slower response, meaning previously + sampled queue length values are factored into the + calculation for a longer period of time. The default + value is 9. + + Use caution when changing this value from its + default. If set too low, short traffic bursts can + cause WRED to drop too many packets. If set too + high, WRED might not detect queue congestion in a + timely manner and becomes ineffective. The default + value should be sufficient for most users. + + This object value is only used when the + agentCosQueueMgmtType is set to wred(2) and is + otherwise ignored." + DEFVAL { 9 } + ::= { agentCosQueueControlEntry 4 } + + agentCosQueueDefaultsRestore OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Causes the default values to be restored for all COS + queue objects defined for this interface. This + includes objects in the following tables: + agentCosQueueTable + agentCosQueueMgmtTable + + This object always reads as disable(2). This object may + only be set to enable(1), which immediately causes the + default value restoration action as described above. + In essence, this models a momentary-style push button + switch that triggers a restoration of the original + default values for all affected objects." + ::= { agentCosQueueControlEntry 5 } + + agentCosQueueIntfShapingRateUnits OBJECT-TYPE + SYNTAX INTEGER { + percent(1), + kbps(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Gets the units of the threshold value to percentage of + port speed or kilobits per second (kbps)." + DEFVAL { percent } + ::= { agentCosQueueControlEntry 6 } + + + -- Queue table for specifying attributes of each COS queue on an interface + agentCosQueueTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentCosQueueEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of class-of-service queue configuration + parameters for the specified interface." + ::= { agentCosQueueCfgGroup 4 } + + agentCosQueueEntry OBJECT-TYPE + SYNTAX AgentCosQueueEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each entry describes a single class-of-service (COS) + queue for a given Interface Index. The number of + configurable COS queues for an interface vary based + on device capabilities. + + All objects defined for this table entry contain a + default value corresponding to a typical, + non-preferential treatment of packets traversing the + interface's COS queues." + INDEX { agentCosQueueIntfIndex, agentCosQueueIndex } + ::= { agentCosQueueTable 1 } + + AgentCosQueueEntry ::= SEQUENCE { + agentCosQueueIndex + Unsigned32, + agentCosQueueSchedulerType + INTEGER, + agentCosQueueMinBandwidth + Percent, + agentCosQueueMaxBandwidth + Percent, + agentCosQueueMgmtType + INTEGER + } + + agentCosQueueIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The COS queue index, numbered 0 to (n-1), where n is + the total number of configurable interface queues for + the device as indicated by agentCosQueueNumQueuesPerPort. + In general, a higher numbered queue index is used to + support higher priority traffic, although actual + operation may be altered via configuration through + this table." + ::= { agentCosQueueEntry 1 } + + agentCosQueueSchedulerType OBJECT-TYPE + SYNTAX INTEGER { + strict(1), + weighted(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The type of scheduling used for this queue. If + strict(1), then all traffic placed on this queue is + transmitted before any queue with a lower precedence + (lower agentCosQueueIndex). A weighted(2) scheme + gives this queue service relative to other weighted + queues based on their relative agentCosQueueMinBandwidth + object values. The default is weighted(2)." + DEFVAL { weighted } + ::= { agentCosQueueEntry 2 } + + agentCosQueueMinBandwidth OBJECT-TYPE + SYNTAX Percent + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Minimum guaranteed bandwidth allotted to this queue. + The value is specified in terms of percentage of + overall link speed for the port in 1% increments. A + value of 0 means there is no guaranteed minimum + bandwidth in effect (best-effort service). + The default value is 0. + + The sum of all agentCosQueueMinBandwidth object + values for the queues on the same interface must not + exceed 100%. + + If the agentCosQueueMaxBandwidth corresponding to the + same agentCosQueueIndex on this interface is + currently set to a non-zero value, then setting this + object to a value greater than + agentCosQueueMaxBandwidth automatically updates + agentCosQueueMaxBandwidth to the same value to + maintain a proper relationship between the minimum + and maximum queue bandwidth specification. + + The value of this object is ignored when + agentCosQueueSchedulerType is set to strict(1)." + DEFVAL { 0 } + ::= { agentCosQueueEntry 3 } + + agentCosQueueMaxBandwidth OBJECT-TYPE + SYNTAX Percent + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum bandwidth allowed for this queue, typically + used to shape the outbound transmission rate. The + value is specified in terms of percentage of overall + link speed for the port in 1% increments. A value + of 0 means there is no maximum bandwidth limit in + effect and that the queue is allowed to use any + available excess bandwidth (i.e., work conserving + method). The default value is 0. + + When set to a non-zero value, the queue is restricted + to using at most the bandwidth specified in this + object for the outbound transmission rate (i.e., + non-work-conserving method). Any non-zero value set + for this object must be equal to or greater than the + value of agentCosQueueMinBandwidth for the same + agentCosQueueIndex on this interface." + DEFVAL { 0 } + ::= { agentCosQueueEntry 4 } + + agentCosQueueMgmtType OBJECT-TYPE + SYNTAX INTEGER { + taildrop(1), + wred(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The queue depth management technique used when + per-queue specification is supported. If + taildrop(1), then all new packets presented to the + queue are dropped based on some maximum threshold + value(s). If wred(2), then an active queue management + scheme is employed whereby packet drop precedence is + considered during times of queue congestion using + WRED parameters. The necessary queue management + parameters are specified in the + agentCosQueueMgmtEntry for the corresponding + agentCosQueueIntfIndex and agentCosQueueIndex values. + The default for this object is taildrop(1). + + Implementations that do not support weighted RED must + return taildrop(1) for this value and must not allow + a value of wred(2) to be set." + DEFVAL { taildrop } + ::= { agentCosQueueEntry 5 } + + + -- Queue management table for setting parameters related to queue depth + agentCosQueueMgmtTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentCosQueueMgmtEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of class-of-service queue drop precedence + configuration parameters. The values in this table + are used based on the agentCosQueueMgmtType for the + corresponding agentCosQueueIntfIndex and agentCosQueueIndex + values. These parameters are specified for each + drop precedence level supported within a queue." + ::= { agentCosQueueCfgGroup 5 } + + agentCosQueueMgmtEntry OBJECT-TYPE + SYNTAX AgentCosQueueMgmtEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The individual objects in this table are specified + for each drop precedence level supported within a + particular queue on a given interface. Each object's + usage is based on the current setting of the + agentCosQueueMgmtType. + + See the individual object descriptions for details." + INDEX { agentCosQueueIntfIndex, agentCosQueueIndex, agentCosQueueDropPrecIndex } + ::= { agentCosQueueMgmtTable 1 } + + AgentCosQueueMgmtEntry ::= SEQUENCE { + agentCosQueueDropPrecIndex + Unsigned32, + agentCosQueueMgmtTailDropThreshold + Sixteenths, + agentCosQueueMgmtWredMinThreshold + Sixteenths, + agentCosQueueMgmtWredMaxThreshold + Sixteenths, + agentCosQueueMgmtWredDropProbScale + Unsigned32, + agentCosQueueMgmtPercentTailDropThreshold + Percent, + agentCosQueueMgmtPercentWredMinThreshold + Percent, + agentCosQueueMgmtPercentWredMaxThreshold + Percent, + agentCosQueueMgmtWredDropProbability + Percent + } + + agentCosQueueDropPrecIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The COS queue drop precedence level, numbered 1 to + p, where p is the total number of drop precedences + supported per queue, as indicated by + agentCosQueueNumDropPrecedenceLevels. This is used as + the minor index into the table. Each supported drop + precedence level for a queue has its own set of + configuration parameters. + + The actual number of drop precedence levels supported + depends on the device characteristics. For example, + some implementations may allow for three levels of + drop precedence (1/2/3, sometimes referred to as + green/yellow/red), some may support two levels + (1/2, or high/low), while others only one. Some devices + use the lowest (highest-numbered) drop precedence + level to represent non-TCP traffic." + ::= { agentCosQueueMgmtEntry 1 } + + agentCosQueueMgmtTailDropThreshold OBJECT-TYPE + SYNTAX Sixteenths + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "Tail drop queue threshold above which all packets + are dropped for the current drop precedence level. + The value specifies the threshold based on a fraction + of the overall device queue size in terms of + sixteenths (0/16, 1/16, 2/16, ... 16/16). Since device + implementations vary, the actual value deployed may + be rounded up or down accordingly. + + The default value is calculated from the + agentCosQueueIndex and agentCosQueueDropPrecIndex as + shown in the following table (values listed for drop + precedence levels 1, 2, and 3, respectively): + Queue Index 0: 16, 14, 12 + Queue Index 1: 16, 14, 12 + Queue Index 2: 16, 14, 12 + Queue Index 3: 16, 14, 12 + Queue Index 4: 16, 14, 12 + Queue Index 5: 16, 14, 12 + Queue Index 6: 16, 14, 12 + Queue Index 7: 16, 14, 12 + + This object is only used when agentCosQueueMgmtType + is set to taildrop(1)." + ::= { agentCosQueueMgmtEntry 2 } + + agentCosQueueMgmtWredMinThreshold OBJECT-TYPE + SYNTAX Sixteenths + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "Weighted RED minimum queue threshold, below which no + packets are dropped for the current drop precedence + level. The value specifies the threshold based on a + fraction of the overall device queue size in terms of + sixteenths (0/16, 1/16, 2/16, ... 16/16). Since device + implementations vary, the actual value deployed may + be rounded up or down accordingly. + + The default value is calculated from the + agentCosQueueIndex and agentCosQueueDropPrecIndex as + shown in the following table (values listed for drop + precedence levels 1, 2, and 3, respectively): + Queue Index 0: 8, 6, 4 + Queue Index 1: 9, 7, 5 + Queue Index 2: 10, 8, 6 + Queue Index 3: 11, 9, 7 + Queue Index 4: 12, 10, 8 + Queue Index 5: 13, 11, 9 + Queue Index 6: 14, 12, 10 + Queue Index 7: 15, 13, 11 + + This object is only used when agentCosQueueMgmtType + is set to wred(2). Any value set for this object must + be equal to or less than the value of + agentCosQueueMgmtWredMaxThreshold." + ::= { agentCosQueueMgmtEntry 3 } + + agentCosQueueMgmtWredMaxThreshold OBJECT-TYPE + SYNTAX Sixteenths + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "Weighted RED maximum queue threshold, above which + all packets are dropped for the current drop + precedence level. The value specifies the threshold + based on a fraction the overall device queue size in + terms of sixteenths (0/16, 1/16, 2/16, ... 16/16). Since + device implementations vary, the actual value + deployed may be rounded up or down accordingly. + + The default value is calculated from the + agentCosQueueIndex and agentCosQueueDropPrecIndex as + shown in the following table (values listed for drop + precedence levels 1, 2, and 3, respectively): + Queue Index 0: 16, 14, 12 + Queue Index 1: 16, 14, 12 + Queue Index 2: 16, 14, 12 + Queue Index 3: 16, 14, 12 + Queue Index 4: 16, 14, 12 + Queue Index 5: 16, 14, 12 + Queue Index 6: 16, 14, 12 + Queue Index 7: 16, 14, 12 + + This object is only used when agentCosQueueMgmtType + is set to wred(2). Any value set for this object must + be equal to or greater than the value of + agentCosQueueMgmtWredMinThreshold." + ::= { agentCosQueueMgmtEntry 4 } + + agentCosQueueMgmtWredDropProbScale OBJECT-TYPE + SYNTAX Unsigned32 (1..15) + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "A scaling factor used for the WRED calculation to + determine the packet drop probability for the current + drop precedence level. The value is specified as a + number S from 1-15 and is used in the formula: 1/(2** + S), meaning one packet is dropped out of every (2** + S). Packet dropping begins when + agentCosQueueMgmtWredMinThreshold is reached and + proceeds linearly up to the (2**S) value specified by + this object until the + agentCosQueueMgmtWredMaxThreshold is reached, beyond + which all packets are dropped. Smaller values of S + produce a steeper slope, hence a higher incidence of + randomly dropped packets. + + The default value is 10, which corresponds to a drop + rate of 1 out of every (2**10)=1024 packets. + + This object is only used when agentCosQueueMgmtType + is set to wred(2)." + DEFVAL { 10 } + ::= { agentCosQueueMgmtEntry 5 } + + agentCosQueueMgmtPercentTailDropThreshold OBJECT-TYPE + SYNTAX Percent + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Tail drop queue threshold above which all packets + are dropped for the current drop precedence level. + The value specifies the threshold based on a percentage + of the overall device queue size. Since device + implementations vary, the actual value deployed may + be rounded up or down accordingly. + + The default value, for all queues, is 100% for drop + precedence 1 and non-TCP traffic, 90% and 80% for + drop precedences 2 and 3. + + This object is only used when agentCosQueueMgmtType + is set to taildrop(1)." + ::= { agentCosQueueMgmtEntry 6 } + + agentCosQueueMgmtPercentWredMinThreshold OBJECT-TYPE + SYNTAX Percent + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Weighted RED minimum queue threshold, below which no + packets are dropped for the current drop precedence + level. The value specifies the threshold based on a + percentage of the overall device queue size. Since device + implementations vary, the actual value deployed may + be rounded up or down accordingly. + + The default value, for all queues, is 100% for non-TCP + traffic, 40%, 30% and 20% for TCP drop precedences 1, 2 + and 3. + + This object is only used when agentCosQueueMgmtType + is set to wred(2). Any value set for this object must + be equal to or less than the value of + agentCosQueueMgmtPercentWredMaxThreshold." + ::= { agentCosQueueMgmtEntry 7 } + + agentCosQueueMgmtPercentWredMaxThreshold OBJECT-TYPE + SYNTAX Percent + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Weighted RED maximum queue threshold, above which + all packets are dropped for the current drop + precedence level. The value specifies the threshold + based on a percentage of the overall device queue size. + Since device implementations vary, the actual value + deployed may be rounded up or down accordingly. + + The default value, for all queues, is 100% for drop + precedence 1 and non-TCP traffic, 90% and 80% for + drop precedences 2 and 3. + + This object is only used when agentCosQueueMgmtType + is set to wred(2). Any value set for this object must + be equal to or greater than the value of + agentCosQueueMgmtPercentWredMinThreshold." + ::= { agentCosQueueMgmtEntry 8 } + + agentCosQueueMgmtWredDropProbability OBJECT-TYPE + SYNTAX Percent + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A scaling factor used for the WRED calculation to + determine the packet drop probability for the current + drop precedence level. Packet dropping begins when + agentCosQueueMgmtWredMinThreshold is reached and + proceeds linearly up to the percentage value specified by + this object until the agentCosQueueMgmtWredMaxThreshold + is reached, beyond which all packets are dropped. + + The default value is 10. + + This object is only used when agentCosQueueMgmtType + is set to wred(2)." + DEFVAL { 10 } + ::= { agentCosQueueMgmtEntry 9 } + + + +END diff --git a/mibs/FASTPATH-QOS-DIFFSERV-EXTENSIONS-MIB.mib b/mibs/FASTPATH-QOS-DIFFSERV-EXTENSIONS-MIB.mib new file mode 100644 index 0000000..684b36e --- /dev/null +++ b/mibs/FASTPATH-QOS-DIFFSERV-EXTENSIONS-MIB.mib @@ -0,0 +1,1072 @@ +FASTPATH-QOS-DIFFSERV-EXTENSIONS-MIB DEFINITIONS ::= BEGIN + +-- Broadcom Corporation Quality of Service Diffserv Extensions MIB +-- Copyright Broadcom Corporation (2001-2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + +IMPORTS + IpAddress, Integer32, Unsigned32, MODULE-IDENTITY, OBJECT-TYPE, OBJECT-IDENTITY + FROM SNMPv2-SMI + TEXTUAL-CONVENTION, RowStatus, StorageType, MacAddress + FROM SNMPv2-TC + InterfaceIndex + FROM IF-MIB + InetPortNumber + FROM INET-ADDRESS-MIB + DisplayString + FROM RFC1213-MIB + IndexInteger, IndexIntegerNextFree, IfDirection, diffServMeterEntry + FROM DIFFSERV-MIB + fastPathQOS + FROM FASTPATH-QOS-MIB; + + fastPathQOSDiffServExtensions MODULE-IDENTITY + LAST-UPDATED "200705230000Z" -- 23 May 2007 12:00:00 GMT + ORGANIZATION "Netgear" + CONTACT-INFO + "" + DESCRIPTION + "" + + -- Revision history. + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Netgear branding related changes." + REVISION + "200406300000Z" -- 30 Jun 2003 12:00:00 GMT + DESCRIPTION + "DiffServ enhancements for Netgear Release 8.0" + REVISION + "200311210000Z" -- 21 Nov 2003 12:00:00 GMT + DESCRIPTION + "Revisions made for new release." + REVISION + "200111010933Z" + DESCRIPTION + "Initial version." + ::= { fastPathQOS 6 } + +IpPrecedence ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "An IP Precedence value that may be used for marking a traffic stream." + SYNTAX Integer32 (0..7) + +Cos ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "The 802.1p header Class of Service field that may be used for + marking a traffic streams. Also known as the Ethernet frame + priority." + SYNTAX Integer32 (0..7) + +CosOrAny ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "The 802.1p header Class of Service field that may be used for + discriminating among traffic streams. Also known as the Ethernet + frame priority. The value -1 is used to indicate a wild card + i.e. any value." + SYNTAX Integer32 (-1 | 0..7) + +VlanIdOrAny ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "The virtual LAN identifier (VLAN ID) that may be used to + differentiate among traffic streams. The value -1 is + used to indicate a wild card i.e. any value." + SYNTAX Integer32 (-1 | 1..4094) + +EtypeOrAny ::= TEXTUAL-CONVENTION + DISPLAY-HINT "x" + STATUS current + DESCRIPTION + "Ethertype value field that may be used to differentiate among traffic + streams. The allowed value is 0x0600 to 0xFFFF, with a value of + 0 used to indicate this object is not involved in the classifier + entry." + SYNTAX Unsigned32 (0 | 1536..65535) -- hex value 0x0600 to 0xFFFF + +agentDiffServMIBObjects OBJECT IDENTIFIER ::= { fastPathQOSDiffServExtensions 1 } +agentDiffServMIBAdmin OBJECT IDENTIFIER ::= { fastPathQOSDiffServExtensions 2 } + +-- +-- Classifiers +-- + +agentDiffServClassifier OBJECT IDENTIFIER ::= { agentDiffServMIBObjects 1 } + +-- +-- Auxiliary Multi-field Classification Table +-- +-- Classification based on different fields in the Layer 2 and IP headers. +-- Functional Data Paths may share definitions by using the same entry. +-- +-- NOTE: This table is an alternative to the IP Multi-field Classification +-- Table. +-- + +agentDiffServAuxMfClfrNextFree OBJECT-TYPE + SYNTAX IndexIntegerNextFree + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains an unused value for + agentDiffServAuxMfClfrId , or a zero to indicate that none exist." + ::= { agentDiffServClassifier 1 } + +agentDiffServAuxMfClfrTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDiffServAuxMfClfrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of Auxiliary Multi-field Classifier filter entries that a + system may use to identify IP traffic." + ::= { agentDiffServClassifier 2 } + +agentDiffServAuxMfClfrEntry OBJECT-TYPE + SYNTAX AgentDiffServAuxMfClfrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An IP Multi-field Classifier entry describes a single filter." + INDEX { agentDiffServAuxMfClfrId } + ::= { agentDiffServAuxMfClfrTable 1 } + +AgentDiffServAuxMfClfrEntry ::= SEQUENCE { + agentDiffServAuxMfClfrId IndexInteger, + agentDiffServAuxMfClfrDstAddr IpAddress, + agentDiffServAuxMfClfrDstMask IpAddress, + agentDiffServAuxMfClfrSrcAddr IpAddress, + agentDiffServAuxMfClfrSrcMask IpAddress, + agentDiffServAuxMfClfrProtocol Unsigned32, + agentDiffServAuxMfClfrDstL4PortMin InetPortNumber, + agentDiffServAuxMfClfrDstL4PortMax InetPortNumber, + agentDiffServAuxMfClfrSrcL4PortMin InetPortNumber, + agentDiffServAuxMfClfrSrcL4PortMax InetPortNumber, + agentDiffServAuxMfClfrCos CosOrAny, + agentDiffServAuxMfClfrTos OCTET STRING, + agentDiffServAuxMfClfrTosMask OCTET STRING, + agentDiffServAuxMfClfrDstMac MacAddress, + agentDiffServAuxMfClfrDstMacMask MacAddress, + agentDiffServAuxMfClfrSrcMac MacAddress, + agentDiffServAuxMfClfrSrcMacMask MacAddress, + agentDiffServAuxMfClfrVlanId VlanIdOrAny, + agentDiffServAuxMfClfrStorage StorageType, + agentDiffServAuxMfClfrStatus RowStatus, + agentDiffServAuxMfClfrCos2 CosOrAny, + agentDiffServAuxMfClfrEtypeVal1 EtypeOrAny, + agentDiffServAuxMfClfrEtypeVal2 EtypeOrAny, + agentDiffServAuxMfClfrVlanIdMin Unsigned32, + agentDiffServAuxMfClfrVlanIdMax Unsigned32, + agentDiffServAuxMfClfrVlanId2Min Unsigned32, + agentDiffServAuxMfClfrVlanId2Max Unsigned32 +} + +agentDiffServAuxMfClfrId OBJECT-TYPE + SYNTAX IndexInteger + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index that enumerates the Auxiliary MultiField Classifier filter + entries. Managers obtain new values for row creation in this + table by reading agentDiffServAuxMfClfrNextFree." + + ::= { agentDiffServAuxMfClfrEntry 1 } + +agentDiffServAuxMfClfrDstAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The IP address to match against the packet's destination IP + address." + ::= { agentDiffServAuxMfClfrEntry 2 } + +agentDiffServAuxMfClfrDstMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This mask value identifies the portion of agentDiffServAuxMfClfrDstAddr + that is compared against a packet. + A non-contiguous mask value is permitted. A mask of 0 indicates a match + of any address." + DEFVAL { '00000000'h } + ::= { agentDiffServAuxMfClfrEntry 3 } + + +agentDiffServAuxMfClfrSrcAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The IP address to match against the packet's source IP + address." + ::= { agentDiffServAuxMfClfrEntry 4 } + +agentDiffServAuxMfClfrSrcMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This mask value identifies the portion of agentDiffServAuxMfClfrSrcAddr + that is compared against a packet. + A non-contiguous mask value is permitted. A mask of 0 indicates a match + of any address." + DEFVAL { '00000000'h } + ::= { agentDiffServAuxMfClfrEntry 5 } + + +agentDiffServAuxMfClfrProtocol OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The IP protocol to match against the IPv4 protocol number. A value of 255 means + match all. " + DEFVAL { 255 } + ::= { agentDiffServAuxMfClfrEntry 6 } + + +agentDiffServAuxMfClfrDstL4PortMin OBJECT-TYPE + SYNTAX InetPortNumber + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The minimum value that the layer-4 destination port number in the packet must have + in order to match this classifier entry. " + DEFVAL { 0 } + ::= { agentDiffServAuxMfClfrEntry 7 } + + +agentDiffServAuxMfClfrDstL4PortMax OBJECT-TYPE + SYNTAX InetPortNumber + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The maximum value that the layer-4 destination port number in the + packet must have in order to match this classifier entry. + This value must be equal to or greater than the value specified + for this entry in agentDiffServAuxMfClfrDstL4PortMin. " + DEFVAL { 65535 } + ::= { agentDiffServAuxMfClfrEntry 8 } + + +agentDiffServAuxMfClfrSrcL4PortMin OBJECT-TYPE + SYNTAX InetPortNumber + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The minimum value that the layer-4 source port number in the + packet must have in order to match this classifier entry. " + DEFVAL { 0 } + ::= { agentDiffServAuxMfClfrEntry 9 } + + +agentDiffServAuxMfClfrSrcL4PortMax OBJECT-TYPE + SYNTAX InetPortNumber + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The maximum value that the layer-4 source port number in the + packet must have in order to match this classifier entry. This + value must be equal to or greater than the value specified for + this entry in diffServMultiFieldClfrSrcL4PortMin. " + DEFVAL { 65535 } + ::= { agentDiffServAuxMfClfrEntry 10 } + + +agentDiffServAuxMfClfrCos OBJECT-TYPE + SYNTAX CosOrAny + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Three-bit user priority field in the 802.1Q tag header of a tagged + Ethernet frame used as a class-match parameter. For frames + containing a double VLAN tag, this field is located in the first/outer + tag. A value of -1 indicates that a specific COS value has not been + defined and thus all COS values are considered a match." + DEFVAL { -1 } + ::= { agentDiffServAuxMfClfrEntry 11 } + + +agentDiffServAuxMfClfrTos OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "IP TOS bits value, defined as all eight bits of the Service + Type octet in the IPv4 header. There are multiple, overlapping, + meanings of the TOS octet in use today: + + Precedence (bits 7-5): IP Precedence, values 0-7 + DSCP (bits 7-2): IP DiffServ Code Point, values 0-63 + TOS (bits 7-0): IP Type of Service, by bits, values 0-255 + + Each of these definitions can be produced using the appropriate + agentDiffServAuxMfClfrTosMask mask value. These definitions are + mutually-exclusive, so only one is allowed for any given classifier + element." + ::= { agentDiffServAuxMfClfrEntry 12 } + + +agentDiffServAuxMfClfrTosMask OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "IP TOS bits mask value. It identifies the portion of + agentDiffServAuxMfClfrTos that is compared against a packet. + A non-contiguous mask value is permitted. A mask of 0 indicates a match + of any TOS value. + + There are multiple, overlapping meanings of the TOS octet in use today. + These are represented by the following specific mask values: + + Precedence (bits 7-5): 224 (bit mask '11100000') + DSCP (bits 7-2): 252 (bit mask '11111100') + TOS (bits 7-0): 255 (bit mask '11111111') + + Other mask values are also permitted." + ::= { agentDiffServAuxMfClfrEntry 13 } + + +agentDiffServAuxMfClfrDstMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination MAC address. " + ::= { agentDiffServAuxMfClfrEntry 14 } + + +agentDiffServAuxMfClfrDstMacMask OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination MAC address mask value. This mask value + identifies the portion of agentDiffServAuxMfClfrDstMac + that is compared against a packet. + A non-contiguous mask value is permitted. A mask of 0 indicates a match + of any MAC address." + ::= { agentDiffServAuxMfClfrEntry 15 } + + +agentDiffServAuxMfClfrSrcMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source MAC address. " + ::= { agentDiffServAuxMfClfrEntry 16 } + + +agentDiffServAuxMfClfrSrcMacMask OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source MAC address mask value. This mask value + identifies the portion of agentDiffServAuxMfClfrSrcMac + that is compared against a packet. + A non-contiguous mask value is permitted. A mask of 0 indicates a match + of any MAC address." + ::= { agentDiffServAuxMfClfrEntry 17 } + +agentDiffServAuxMfClfrVlanId OBJECT-TYPE + SYNTAX VlanIdOrAny + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "VLAN ID value for the classifier. A value of -1 indicates that + a specific VLAN ID value has not been defined and thus all + VLAN ID values are considered a match." + DEFVAL { -1 } + ::= { agentDiffServAuxMfClfrEntry 18 } + + +agentDiffServAuxMfClfrStorage OBJECT-TYPE + SYNTAX StorageType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The storage type for this conceptual row. " + DEFVAL { nonVolatile } + ::= { agentDiffServAuxMfClfrEntry 19 } + +agentDiffServAuxMfClfrStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row." + ::= { agentDiffServAuxMfClfrEntry 20 } + +agentDiffServAuxMfClfrCos2 OBJECT-TYPE + SYNTAX CosOrAny + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Three-bit user priority field in the second/inner 802.1Q tag header of a + double VLAN tagged Ethernet frame used as a class-match parameter + A value of -1 indicates that a specific Secondary COS value has not been + defined and thus all Secondary COS values are considered a match." + DEFVAL { -1 } + ::= { agentDiffServAuxMfClfrEntry 21 } + +agentDiffServAuxMfClfrEtypeVal1 OBJECT-TYPE + SYNTAX EtypeOrAny + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Ethertype value to be compared in order to match this classifier entry. + The allowed value for this object is 0x0600 to 0xFFFF, with a value of + 0 used to indicate this object is not involved in the classifier entry." + DEFVAL { 0 } + ::= { agentDiffServAuxMfClfrEntry 22 } + + +agentDiffServAuxMfClfrEtypeVal2 OBJECT-TYPE + SYNTAX EtypeOrAny + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A second Ethertype value to be compared in order to match + this classifier entry. This value is considered in addition + to the value specified by agentDiffServAuxMfClfrEtypeVal1 and serves + as a second possible match value (i.e. a packet can match either + EtypeVal1 or EtypeVal2). The allowed value for this object is + 0x0600 to 0xFFFF, with a value of 0 used to indicate this object is + not involved in the classifier entry." + DEFVAL { 0 } + ::= { agentDiffServAuxMfClfrEntry 23 } + + +agentDiffServAuxMfClfrVlanIdMin OBJECT-TYPE + SYNTAX Unsigned32 (1..4094) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The minimum value that the VLAN ID in the packet must have + in order to match this classifier entry. This field is defined + as the 12-bit VLAN identifier in the 802.1Q tag header of a + tagged Ethernet frame. For a double VLAN tagged frame, this + field is contained in the first/outer tag." + DEFVAL { 1 } + ::= { agentDiffServAuxMfClfrEntry 24 } + + +agentDiffServAuxMfClfrVlanIdMax OBJECT-TYPE + SYNTAX Unsigned32 (1..4094) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The maximum value that the VLAN ID in the packet must have + in order to match this classifier entry. This field is defined + as the 12-bit VLAN identifier in the 802.1Q tag header of a + tagged Ethernet frame. For a double VLAN tagged frame, this + field is contained in the first/outer tag. This value must be + equal to or greater than the value specified for the entry in + agentDiffServAuxMfClfrVlanIdMin." + DEFVAL { 4094 } + ::= { agentDiffServAuxMfClfrEntry 25 } + + +agentDiffServAuxMfClfrVlanId2Min OBJECT-TYPE + SYNTAX Unsigned32 (1..4094) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The minimum value that the Secondary VLAN ID in the packet must have + in order to match this classifier entry. This field is defined + as the 12-bit VLAN identifier in the second/inner 802.1Q tag header + of a double VLAN tagged Ethernet frame." + DEFVAL { 1 } + ::= { agentDiffServAuxMfClfrEntry 26 } + + +agentDiffServAuxMfClfrVlanId2Max OBJECT-TYPE + SYNTAX Unsigned32 (1..4094) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The maximum value that the Secondary VLAN ID in the packet must have + in order to match this classifier entry. This field is defined + as the 12-bit VLAN identifier in the second/inner 802.1Q tag header + of a double VLAN tagged Ethernet frame. This value must be equal to or + greater than the value specified for the entry in + agentDiffServAuxMfClfrVlanId2Min." + DEFVAL { 4094 } + ::= { agentDiffServAuxMfClfrEntry 27 } + + + +-- +-- Actions +-- + +agentDiffServAction OBJECT IDENTIFIER ::= { agentDiffServMIBObjects 2 } + +-- +-- IP Precedence Mark Action Table +-- +-- Rows of this table are pointed to by diffServActionSpecific to +-- provide detailed parameters specific to the IP Precedence Mark action. +-- +-- A single entry in this table can be shared by multiple +-- diffServActionTable entries. +-- +-- NOTE: This table is referenced instead of the DSCP Mark Action Table +-- when marking the IP Precedence of a packet rather than its DSCP. +-- + +agentDiffServIpPrecMarkActTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDiffServIpPrecMarkActEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table enumerates specific IP Precedence values used for marking + or remarking the Precedence field of IP packets. The entries of this + table may be referenced by a diffServActionSpecific attribute." + ::= { agentDiffServAction 4 } + +agentDiffServIpPrecMarkActEntry OBJECT-TYPE + SYNTAX AgentDiffServIpPrecMarkActEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the IP Precedence mark action table that describes a + single IP Precedence value used for marking." + INDEX { agentDiffServIpPrecMarkActPrecedence } + ::= { agentDiffServIpPrecMarkActTable 1 } + +AgentDiffServIpPrecMarkActEntry ::= SEQUENCE { + agentDiffServIpPrecMarkActPrecedence IpPrecedence +} + +agentDiffServIpPrecMarkActPrecedence OBJECT-TYPE + SYNTAX IpPrecedence + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP Precedence that this Action will store into the Precedence + field of the IP packet. It is quite possible that the only packets + subject to this Action are already marked with this IP Precedence. + Note also that Differentiated Services processing may result in a + packet being marked on both ingress to a network and on egress from + it, and that ingress and egress can occur in the same router." + ::= { agentDiffServIpPrecMarkActEntry 1 } + + +-- +-- COS Mark Action Table +-- +-- Rows of this table are pointed to by diffServActionSpecific to +-- provide detailed parameters specific to the COS Mark action. +-- +-- A single entry in this table can be shared by multiple +-- diffServActionTable entries. +-- +-- NOTE: This table is referenced when marking the Class of Service +-- priority bits as defined in the 802.1Q tag header of a +-- tagged Ethernet frame. For frames containing a double VLAN +-- tag, this field is located in the first/outer tag. +-- + +agentDiffServCosMarkActTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDiffServCosMarkActEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table enumerates specific Class of Service values used for marking + or remarking the priority bits in the 802.1p header. The entries of this + table may be referenced by a diffServActionSpecific attribute." + ::= { agentDiffServAction 2 } + +agentDiffServCosMarkActEntry OBJECT-TYPE + SYNTAX AgentDiffServCosMarkActEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the COS mark action table that describes a + single Class of Service value used for marking." + INDEX { agentDiffServCosMarkActCos } + ::= { agentDiffServCosMarkActTable 1 } + +AgentDiffServCosMarkActEntry ::= SEQUENCE { + agentDiffServCosMarkActCos Cos +} + +agentDiffServCosMarkActCos OBJECT-TYPE + SYNTAX Cos + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Class of Service value that this Action will store into the + priority bits of the 802.1p header. It is quite possible that the + only packets subject to this Action are already marked with this COS + value." + ::= { agentDiffServCosMarkActEntry 1 } + + +-- +-- Secondary COS (COS2) Mark Action Table +-- +-- Rows of this table are pointed to by diffServActionSpecific to +-- provide detailed parameters specific to the Secondary COS Mark action. +-- +-- A single entry in this table can be shared by multiple +-- diffServActionTable entries. +-- +-- NOTE: This table is referenced when marking the Secondary Class of Service +-- priority bits as defined in the second/inner 802.1Q tag header of a +-- double VLAN tagged Ethernet packet. +-- + +agentDiffServCos2MarkActTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDiffServCos2MarkActEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table enumerates specific Secondary Class of Service values used for marking + or remarking the priority bits in the second/inner 802.1Q tag header of a double VLAN + tagged Ethernet packet. The entries of this table may be referenced by + a diffServActionSpecific attribute." + ::= { agentDiffServAction 5 } + +agentDiffServCos2MarkActEntry OBJECT-TYPE + SYNTAX AgentDiffServCos2MarkActEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the Secondary COS mark action table that describes a + single Class of Service value used for marking." + INDEX { agentDiffServCos2MarkActCos } + ::= { agentDiffServCos2MarkActTable 1 } + +AgentDiffServCos2MarkActEntry ::= SEQUENCE { + agentDiffServCos2MarkActCos Cos +} + +agentDiffServCos2MarkActCos OBJECT-TYPE + SYNTAX Cos + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Secondary Class of Service value that this Action will store into the + priority bits of the second/inner 802.1p tag header. It is quite possible + that the only packets subject to this Action are already marked with this + COS value." + ::= { agentDiffServCos2MarkActEntry 1 } + + +-- +-- Assign Queue Table +-- +-- Rows of this table are pointed to by diffServActionSpecific to +-- provide detailed parameters specific to the Assign Queue action. +-- + +agentDiffServAssignQueueNextFree OBJECT-TYPE + SYNTAX IndexIntegerNextFree + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains an unused value for agentDiffServAssignIndex, or a + zero to indicate that none exist." + ::= { agentDiffServAction 6 } + +agentDiffServAssignQueueTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDiffServAssignQueueEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table used for assigning a stream of Differentiated Services + traffic to a specific quality of service (QoS) queue. + The traffic stream is identified by the upstream Functional + Data Path Element(s), i.e. by the object(s) that point + to each entry in this table. This may include all traffic on an + interface or just a portion thereof." + ::= { agentDiffServAction 7 } + +agentDiffServAssignQueueEntry OBJECT-TYPE + SYNTAX AgentDiffServAssignQueueEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the assign queue table describes a specific (egress) + QoS queue identifier for a traffic stream." + INDEX { agentDiffServAssignQueueIndex } + ::= { agentDiffServAssignQueueTable 1 } + +AgentDiffServAssignQueueEntry ::= SEQUENCE { + agentDiffServAssignQueueIndex IndexInteger, + agentDiffServAssignQueueQnum Unsigned32, + agentDiffServAssignQueueStorage StorageType, + agentDiffServAssignQueueStatus RowStatus +} + +agentDiffServAssignQueueIndex OBJECT-TYPE + SYNTAX IndexInteger + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index that enumerates the Assign Queue entries. Managers obtain + new values for row creation in this table by reading + agentDiffServAssignQueueNextFree." + ::= { agentDiffServAssignQueueEntry 1 } + +agentDiffServAssignQueueQnum OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The queue identifier value. This value indicates the QoS queue + number to which the traffic stream for this data path is directed + for egress from the device." + ::= { agentDiffServAssignQueueEntry 2 } + +agentDiffServAssignQueueStorage OBJECT-TYPE + SYNTAX StorageType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The storage type for this conceptual row. Conceptual rows + having the value 'permanent' need not allow write-access to any + columnar objects in the row." + DEFVAL { nonVolatile } + ::= { agentDiffServAssignQueueEntry 3 } + +agentDiffServAssignQueueStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + + STATUS current + DESCRIPTION + "The status of this conceptual row. All writable objects in this + row may be modified at any time. Setting this variable to + 'destroy' when the MIB contains one or more RowPointers pointing + to it results in destruction being delayed until the row is no + longer used." + ::= { agentDiffServAssignQueueEntry 4 } + + +-- +-- Redirect Table +-- +-- Rows of this table are pointed to by diffServActionSpecific to +-- provide detailed parameters specific to the Redirect action. +-- + +agentDiffServRedirectNextFree OBJECT-TYPE + SYNTAX IndexIntegerNextFree + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains an unused value for agentDiffServRedirectId, or a + zero to indicate that none exist." + ::= { agentDiffServAction 8 } + +agentDiffServRedirectTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDiffServRedirectEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table used for redirecting a stream of Differentiated Services + traffic to a specific egress interface, bypassing any normal + device forwarding decision. The traffic stream is identified by + the upstream Functional Data Path Element(s), i.e. by the object(s) + that point to each entry in this table. This may include all traffic + on an interface or just a portion thereof." + ::= { agentDiffServAction 9 } + +agentDiffServRedirectEntry OBJECT-TYPE + SYNTAX AgentDiffServRedirectEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the redirect table describes a specific external + interface number used as the egress point of a traffic stream." + INDEX { agentDiffServRedirectId } + ::= { agentDiffServRedirectTable 1 } + +AgentDiffServRedirectEntry ::= SEQUENCE { + agentDiffServRedirectId IndexInteger, + agentDiffServRedirectIntf InterfaceIndex, + agentDiffServRedirectStorage StorageType, + agentDiffServRedirectStatus RowStatus +} + +agentDiffServRedirectId OBJECT-TYPE + SYNTAX IndexInteger + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index that enumerates the Redirect entries. Managers obtain new + values for row creation in this table by reading + agentDiffServRedirectNextFree." + ::= { agentDiffServRedirectEntry 1 } + +agentDiffServRedirectIntf OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The external interface number identifier value. This value indicates + the egress interface to which the traffic stream for this data path + is directed. Normal traffic forwarding decisions are bypassed." + ::= { agentDiffServRedirectEntry 2 } + +agentDiffServRedirectStorage OBJECT-TYPE + SYNTAX StorageType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The storage type for this conceptual row. Conceptual rows + having the value 'permanent' need not allow write-access to any + columnar objects in the row." + DEFVAL { nonVolatile } + ::= { agentDiffServRedirectEntry 3 } + +agentDiffServRedirectStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + + STATUS current + DESCRIPTION + "The status of this conceptual row. All writable objects in this + row may be modified at any time. Setting this variable to + 'destroy' when the MIB contains one or more RowPointers pointing + to it results in destruction being delayed until the row is no + longer used." + ::= { agentDiffServRedirectEntry 4 } + + +-- +-- Mirror Table +-- +-- Rows of this table are pointed to by diffServActionSpecific to +-- provide detailed parameters specific to the Mirror action. +-- + +agentDiffServMirrorNextFree OBJECT-TYPE + SYNTAX IndexIntegerNextFree + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains an unused value for agentDiffServMirrorId, or a + zero to indicate that none exist." + ::= { agentDiffServAction 10 } + +agentDiffServMirrorTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDiffServMirrorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table used for mirroring a stream of Differentiated Services + traffic to a specific egress interface, in addition to any normal + device forwarding decision. The traffic stream is identified by + the upstream Functional Data Path Element(s), i.e. by the object(s) + that point to each entry in this table. This may include all traffic + on an interface or just a portion thereof." + ::= { agentDiffServAction 11 } + +agentDiffServMirrorEntry OBJECT-TYPE + SYNTAX AgentDiffServMirrorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the mirror table describes a specific external + interface number used as the egress point of a copied traffic + stream." + INDEX { agentDiffServMirrorId } + ::= { agentDiffServMirrorTable 1 } + +AgentDiffServMirrorEntry ::= SEQUENCE { + agentDiffServMirrorId IndexInteger, + agentDiffServMirrorIntf InterfaceIndex, + agentDiffServMirrorStorage StorageType, + agentDiffServMirrorStatus RowStatus +} + +agentDiffServMirrorId OBJECT-TYPE + SYNTAX IndexInteger + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index that enumerates the Mirror entries. Managers obtain new + values for row creation in this table by reading + agentDiffServMirrorNextFree." + ::= { agentDiffServMirrorEntry 1 } + +agentDiffServMirrorIntf OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The external interface number identifier value. This value indicates + the egress interface to which the traffic stream for this data path + is copied. Normal traffic forwarding decisions are still performed + on the traffic stream." + ::= { agentDiffServMirrorEntry 2 } + +agentDiffServMirrorStorage OBJECT-TYPE + SYNTAX StorageType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The storage type for this conceptual row. Conceptual rows + having the value 'permanent' need not allow write-access to any + columnar objects in the row." + DEFVAL { nonVolatile } + ::= { agentDiffServMirrorEntry 3 } + +agentDiffServMirrorStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + + STATUS current + DESCRIPTION + "The status of this conceptual row. All writable objects in this + row may be modified at any time. Setting this variable to + 'destroy' when the MIB contains one or more RowPointers pointing + to it results in destruction being delayed until the row is no + longer used." + ::= { agentDiffServMirrorEntry 4 } + + + +-- +-- Meter +-- + +agentDiffServMeter OBJECT IDENTIFIER ::= { agentDiffServMIBObjects 3 } + +-- +-- Color Aware Table +-- +-- Augments the diffServMeterTable to provide additional information regarding +-- the policing color mode and its associated color-aware parameters. Each +-- row in this table is indexed using a meter Id corresponding to its +-- associated Meter Table row plus a local table row index. +-- + +agentDiffServColorAwareTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDiffServColorAwareEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table used for augmenting the Differentiated Services + meter information with information describing the packet coloration + characteristics for a color-aware mode of policing. The + diffServMeterId is used as the index to this table, + which logically extends the Meter table row with the columnar + objects defined in this Color Aware table row." + ::= { agentDiffServMeter 1 } + +agentDiffServColorAwareEntry OBJECT-TYPE + SYNTAX AgentDiffServColorAwareEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the color aware table describes a single color conformance + level of a meter." + AUGMENTS { diffServMeterEntry } + ::= { agentDiffServColorAwareTable 1 } + +AgentDiffServColorAwareEntry ::= SEQUENCE { + agentDiffServColorAwareLevel INTEGER, + agentDiffServColorAwareMode INTEGER, + agentDiffServColorAwareValue Unsigned32 +} + +agentDiffServColorAwareLevel OBJECT-TYPE + SYNTAX INTEGER { + conform(1), + exceed(2), + unused(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The metering conformance level of this table entry. A policing meter + represents either a conforming or an exceeding level of traffic + in the traffic stream for this data path. The color characteristics + used by the meter are relevant to this conformance level. This + object is set to unused(3) when the meter is not being used for + policing." + DEFVAL { unused } + ::= { agentDiffServColorAwareEntry 1 } + +agentDiffServColorAwareMode OBJECT-TYPE + SYNTAX INTEGER { + blind(1), + awarecos(2), + awarecos2(3), + awareipdscp(4), + awareipprec(5), + awareunused(6) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The color mode indicator for the meter. When set to blind(1), + metering is performed in a color-blind manner such that any + packet markings are ignored by the meter. The other values + listed for this object indicate the packet field used for determining + its pre-existing color marking. In color-aware mode, the + current color of a packet (e.g. green, yellow, red) influences + the metering outcome. The object value awareunused(6) is + special in that it denotes that the specific field attributes + are not specified for the meter even though a color aware scheme + is in use for policing. This object always returns blind(1) when the + agentDiffServColorAwareLevel is set to unused(3)." + DEFVAL { blind } + ::= { agentDiffServColorAwareEntry 2 } + +agentDiffServColorAwareValue OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of the color aware table entry. This value is used + to compare the field indicated in agentDiffServColorAwareMode against + packets in a traffic stream along the data path supplying the meter + for a given conformance level. This object always returns 0 when the + agentDiffServColorAwareMode is set to blind(1) or awareunused(6)." + DEFVAL { 0 } + ::= { agentDiffServColorAwareEntry 3 } + + + +-- +-- OIDs for diffServTBParamType standard MIB definitions: additional values +-- + +agentDiffServTBMeters OBJECT IDENTIFIER ::= { agentDiffServMIBAdmin 1 } + +agentDiffServTBParamSimpleTokenBucketAware OBJECT-IDENTITY + STATUS current + DESCRIPTION + "Two Parameter Token Bucket Meter as described in the Informal + Differentiated Services Model section 5.2.3, but using a + color-aware mode of operation." + ::= { agentDiffServTBMeters 1 } + +END diff --git a/mibs/FASTPATH-QOS-DIFFSERV-PRIVATE-MIB.mib b/mibs/FASTPATH-QOS-DIFFSERV-PRIVATE-MIB.mib new file mode 100644 index 0000000..cace6dc --- /dev/null +++ b/mibs/FASTPATH-QOS-DIFFSERV-PRIVATE-MIB.mib @@ -0,0 +1,2790 @@ +-- DiffServ MIB overview: + +-- DiffServ Private MIB falls under Netgear QOS MIB node of the private subtree. +-- Various MIB groups defined within this MIB are: + +-- a) General Status Group -> All objects within this group are scalar and are not part of a +-- conceptual MIB table. The objects of this group define the current and maximum sizes of +-- conceptual DiffServ MIB tables like, DiffServ Class Table, DiffServ Class Rule Table, +-- DiffServ Policy Table,DiffServ Policy-Class Instance Table, DiffServ Policy Attribute +-- Table, DiffServ Service Table. Also, one object of this group named GenStatusAdminMode, is +-- used to enable or disable DiffServ on the switch. + +-- b) Class Group -> This MIB group represents classifiers, which are used to differentiate +-- among types of traffic. There are two conceptual MIB tables within the class group : + +-- 1) Class Table - The Class Table entry contains a name and type, plus a referenced ACL +-- type and number if the class type is 'acl'. + +-- 2) Class Rule Table - Each Class Rule Table entry in the private MIB represents a single +-- match criterion that belongs to a class definition. Depending on the class type, +-- multiple criteria are evaluated as either an all-inclusive or sequential-ordered +-- relationship to determine if a packet belongs to the class. The +-- classRuleMatchEntryType object indicates specifically which of the match items is +-- described by this entry. + +-- c) Policy Group -> DiffServ Policy group is used to define: +-- traffic conditioning actions - policing and marking applied to traffic classes, and +-- service provisioning actions - specifying bandwidth, shaping and queue depth management +-- requirements of service levels like Expedite Forwarding, Assured Forwarding etc. There +-- are five conceptual MIB tables within the policy group: + +-- 1) Policy Table - The Policy Table entry contains policy-name, policy-type and next free +-- per-policy policyInstIndex for the Policy-Class Instance table. The policy-type defines +-- whether policy is applied inbound or outbound to an interface. + +-- 2) Policy-Class Instance Table - An entry in this table is used to connect an policy with +-- an already created DiffServ class. It contains a class index, which identifies the +-- classifier definition used by the policy to establish an instance of that class (to +-- which policy attributes can be attached). It also contains the next free per-policy +-- policyAttrIndex for the policy attribute table. + +-- 3) Policy Attribute Table - Each Policy Table Attribute entry attaches various policy +-- attributes to a policy-class instance. There is an object named +-- policyAttrStmtEntryType, that specifies which policy attributes are meaningful for a +-- particular policy-class instance. + +-- 4) Policy-Class Inbound Performance Table - Contains performance counters for each +-- policy-class instance assigned to an interface in the inbound direction. This table +-- contains offered and discarded counters. These rows are automatically created/deleted +-- when a policy is attached to/removed from a service interface in an inbound direction. + +-- 5) Policy-Class Outbound Performance Table - Contains performance counters for each +-- policy-class instance assigned to an interface in the outbound direction. This table +-- contains offered and discarded counters. These rows are automatically created/deleted +-- when a policy is attached to/removed from a service interface in an outbound direction. + +-- d) Service Group -> DiffServ Service group associates a policy with an interface in a +-- specific direction. There are two conceptual MIB tables within the service group: + +-- 1) Service Table - Contains rows for each interface (ifIndex) that has a policy index +-- attached to it in a specific direction (ifDirection). + +-- 2) Service Performance Table - Augments the Service Table to provide performance +-- counters for each row. This table contains offered, discarded and sent counters that +-- are aggregated for the attached policy as a whole based on the individual +-- policy-class instance counts. + +-- General Notes: + +-- 1) All objects of this MIB are prefixed with 'agentDiffServ' followed by the name of the +-- object with the first letter in uppercase. + +-- 2) All counter tables like Policy-Class Inbound Performance Table, Policy-Class Outbound +-- Performance Table and Service Performance Table contain both 32-bit and 64-bit (high- +-- capacity) counters. + + +FASTPATH-QOS-DIFFSERV-PRIVATE-MIB DEFINITIONS ::= BEGIN + +-- Broadcom Corporation FASTPATH DiffServ MIB +-- Copyright Broadcom Corporation (2002-2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, IpAddress, + Integer32, Unsigned32, Counter32, Counter64 + FROM SNMPv2-SMI + + InetPortNumber FROM INET-ADDRESS-MIB + + TEXTUAL-CONVENTION,RowStatus, + RowPointer,MacAddress, + StorageType,TruthValue FROM SNMPv2-TC + + fastPathQOS FROM FASTPATH-QOS-MIB + TimeTicks FROM RFC1155-SMI + DisplayString,PhysAddress FROM RFC1213-MIB + IANAifType FROM IANAifType-MIB + ifIndex,InterfaceIndex FROM IF-MIB; + + fastPathQOSDiffServPrivate MODULE-IDENTITY + LAST-UPDATED "200711120000Z" -- 12 Nov 2007 12:00:00 GMT + ORGANIZATION "Netgear" + CONTACT-INFO + "" + DESCRIPTION + "The Netgear Private MIB for FASTPATH DiffServ" + + -- Revision history. + REVISION + "200711120000Z" -- 12 Nov 2007 12:00:00 GMT + DESCRIPTION + "Deprecated outbound policy instance performance counters, added new ones." + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Netgear branding related changes." + REVISION + "200506230000Z" -- 23 Jun 2005 12:00:00 GMT + DESCRIPTION + "Added mirror policy attribute." + REVISION + "200410060000Z" -- 06 Oct 2004 12:00:00 GMT + DESCRIPTION + "DiffServ enhancements for Netgear 7.3.0." + REVISION + "200311210000Z" -- 21 Nov 2003 12:00:00 GMT + DESCRIPTION + "Revisions made for new release." + + ::= { fastPathQOS 7 } + + QosBurstSize ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "The number of kilobytes (Kbytes) in a packet that may be sent in a + traffic stream without regard for other traffic streams." + SYNTAX Unsigned32 (1..128) + + IntfDirection ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "IntfDirection specifies a direction of data travel on an + interface. 'inbound' traffic is operated on during reception from + the interface, while 'outbound' traffic is operated on prior to + transmission on the interface." + + SYNTAX INTEGER { + in(1), -- ingress interface + out(2) -- egress interface + } + + EtypeValue ::= TEXTUAL-CONVENTION + DISPLAY-HINT "x" + STATUS current + DESCRIPTION + "Ethertype value of a packet. The allowed value is 0x0600 to 0xFFFF." + SYNTAX Unsigned32 (1536..65535) -- hex value 0x0600 to 0xFFFF + + Ipv6AddressPrefix ::= TEXTUAL-CONVENTION + DISPLAY-HINT "2x:" + STATUS current + DESCRIPTION + "This data type is used to model IPv6 address prefixes. This is a binary + string of up to 16 octets in network byte-order." + SYNTAX OCTET STRING (SIZE (0..16)) + +--************************************************************************************** +-- agentDiffServGenStatusGroup +--************************************************************************************** + + agentDiffServGenStatusGroup OBJECT IDENTIFIER ::= { fastPathQOSDiffServPrivate 1 } + + agentDiffServGenStatusAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " DiffServ Admin Mode" + DEFVAL { disable } + ::= { agentDiffServGenStatusGroup 1 } + + agentDiffServGenStatusClassTableSize OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Current size of the Class Table" + ::= { agentDiffServGenStatusGroup 2 } + + agentDiffServGenStatusClassTableMax OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Max size of the Class Table" + ::= { agentDiffServGenStatusGroup 3 } + + agentDiffServGenStatusClassRuleTableSize OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Current size of Class Rule Table" + ::= { agentDiffServGenStatusGroup 4 } + + agentDiffServGenStatusClassRuleTableMax OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Max size of the Class Rule Table." + ::= { agentDiffServGenStatusGroup 5 } + + agentDiffServGenStatusPolicyTableSize OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Current Size of the Policy Table." + ::= { agentDiffServGenStatusGroup 6 } + + agentDiffServGenStatusPolicyTableMax OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Max size of the Policy Table" + ::= { agentDiffServGenStatusGroup 7 } + + agentDiffServGenStatusPolicyInstTableSize OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Current size of the Policy-Class Instance Table" + ::= { agentDiffServGenStatusGroup 8 } + + agentDiffServGenStatusPolicyInstTableMax OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Max size of the Policy-Class Instance Table" + ::= { agentDiffServGenStatusGroup 9 } + + agentDiffServGenStatusPolicyAttrTableSize OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Current size of the Policy Attribute Table" + ::= { agentDiffServGenStatusGroup 10 } + + agentDiffServGenStatusPolicyAttrTableMax OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Max size of the Policy Attribute Table" + ::= { agentDiffServGenStatusGroup 11 } + + agentDiffServGenStatusServiceTableSize OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Current size of the Service Table" + ::= { agentDiffServGenStatusGroup 12 } + + agentDiffServGenStatusServiceTableMax OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Max size of the Service Table" + ::= { agentDiffServGenStatusGroup 13 } + +--********************************************************************************** +-- agentDiffServClassGroup +-- +--********************************************************************************** + + agentDiffServClassGroup OBJECT IDENTIFIER ::= { fastPathQOSDiffServPrivate 2 } + --*********************** classTable *********************** + + agentDiffServClassIndexNextFree OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains an unused value for classIndex, or a + zero to indicate that none exists." + ::= { agentDiffServClassGroup 1 } + + agentDiffServClassTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDiffServClassEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the DiffServ class entries" + ::= { agentDiffServClassGroup 2 } + + agentDiffServClassEntry OBJECT-TYPE + SYNTAX AgentDiffServClassEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for a DiffServ traffic class" + INDEX { agentDiffServClassIndex } + ::= { agentDiffServClassTable 1 } + + AgentDiffServClassEntry ::= SEQUENCE { + agentDiffServClassIndex + Unsigned32, + agentDiffServClassName + DisplayString, + agentDiffServClassType + INTEGER, + agentDiffServClassAclNum + Unsigned32, + agentDiffServClassRuleIndexNextFree + Unsigned32, + agentDiffServClassStorageType + StorageType, + agentDiffServClassRowStatus + RowStatus, + agentDiffServClassAclType + INTEGER, + agentDiffServClassProtoType + INTEGER + } + + agentDiffServClassIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The identifier for DiffServ Class entry " + ::= { agentDiffServClassEntry 1 } + + agentDiffServClassName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Name of the DiffServ traffic class" + ::= { agentDiffServClassEntry 2 } + + agentDiffServClassType OBJECT-TYPE + SYNTAX INTEGER { + all(1), + any(2), + acl(3) + } + + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The class type indicates how the individual class match + criteria are evaluated. For type all, all of the + individual match conditions must be true for a packet to + be considered a member of the class. For types any and + acl, only one of the match criteria must be true for a + packet to belong to the class; multiple matching criteria + are evaluated in a sequential order, with the highest + precedence awarded to the first criterion defined for the + class. An acl class type copies its set of match criteria + from the current rule definition of the specified + ACL number." + ::= { agentDiffServClassEntry 3 } + + agentDiffServClassAclNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The access list number used to define the match conditions for the + DiffServ class. + This attribute is only valid if the value of agentDiffServClassType + is set to acl(3). Match conditions are copied from the ACL definition + at the time the class is created and do not reflect subsequent + changes to the ACL definition. + + This attribute requires that the agentDiffServClassAclType object + also be set so that the ACL number can be interpreted relative to + ip(1) or mac(2) ACLs. The objects may be set in either order. + The FASTPATH-QOS-ACL-MIB defines an aclIndex for IP ACLs and an + aclMacIndex for MAC ACLs. Setting this object to one of these + values per the agentDiffServClassAclType causes the corresponding + ACL rules to be used for creating the DiffServ class." + ::= { agentDiffServClassEntry 4 } + + agentDiffServClassRuleIndexNextFree OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains an unused value for classRuleIndex, or a + zero to indicate that none exists. This index is maintained + on a per-class basis." + ::= { agentDiffServClassEntry 5 } + + agentDiffServClassStorageType OBJECT-TYPE + SYNTAX StorageType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Storage-type for this conceptual row" + DEFVAL { nonVolatile } + ::= { agentDiffServClassEntry 6 } + + agentDiffServClassRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. + + All RowStatus operations are permitted. + + Other columns in this row may be modified when the status is 'active'. + + Entries can not be deleted until all rows in agentDiffServClassRuleTable + with corresponding values of agentDiffServClassIndex have been deleted." + + ::= { agentDiffServClassEntry 7 } + + agentDiffServClassAclType OBJECT-TYPE + SYNTAX INTEGER { + ip(1), + mac(2), + ipv6(3) + } + + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The access list type used to define the match conditions for the + DiffServ class. This attribute is only valid if the value of + agentDiffServClassType is set to acl(3). + + When this attribute is set to ip(1), the agentDiffServClassAclNum + object is interpreted as an IP ACL number per the aclIndex definition + from the FASTPATH-QOS-ACL-MIB. When set to mac(2), the agentDiffServClassAclNum + object is interpreted as a MAC ACL index per the aclMacIndex definition + in the FASTPATH-QOS-ACL-MIB. When set to ipv6(3), the agentDiffServClassAclNum + object is interpreted as a IPv6 ACL index per the aclIpv6Index definition + in the FASTPATH-QOS-ACL-MIB. All these objects and agentDiffServClassAclNum + must be set (in either order) for an agentDiffServClassType of acl(3)." + ::= { agentDiffServClassEntry 8 } + + agentDiffServClassProtoType OBJECT-TYPE + SYNTAX INTEGER { + ipv4(1), + ipv6(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The diffserv class protocol type used to indicate how to interpret any layer 3. + This attribute is only valid if the value of agentDiffServClassProtoType + is set to all(1) or any(2)." + ::= { agentDiffServClassEntry 9 } + + + --*********************** agentDiffServClassRuleTable *********************** + + agentDiffServClassRuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDiffServClassRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the DiffServ Class Rule entries" + ::= { agentDiffServClassGroup 3 } + + agentDiffServClassRuleEntry OBJECT-TYPE + SYNTAX AgentDiffServClassRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for a set of class-match rules" + INDEX { agentDiffServClassIndex,agentDiffServClassRuleIndex } + ::= { agentDiffServClassRuleTable 1 } + + AgentDiffServClassRuleEntry ::= SEQUENCE { + agentDiffServClassRuleIndex + Unsigned32, + agentDiffServClassRuleMatchEntryType + INTEGER, + agentDiffServClassRuleMatchCos + Unsigned32, + agentDiffServClassRuleMatchDstIpAddr + IpAddress, + agentDiffServClassRuleMatchDstIpMask + IpAddress, + agentDiffServClassRuleMatchDstL4PortStart + InetPortNumber, + agentDiffServClassRuleMatchDstL4PortEnd + InetPortNumber, + agentDiffServClassRuleMatchDstMacAddr + MacAddress, + agentDiffServClassRuleMatchDstMacMask + MacAddress, + agentDiffServClassRuleMatchEvery + TruthValue, + agentDiffServClassRuleMatchIpDscp + Unsigned32, + agentDiffServClassRuleMatchIpPrecedence + Unsigned32, + agentDiffServClassRuleMatchIpTosBits + OCTET STRING, + agentDiffServClassRuleMatchIpTosMask + OCTET STRING, + agentDiffServClassRuleMatchProtocolNum + Unsigned32, + agentDiffServClassRuleMatchRefClassIndex + Unsigned32, + agentDiffServClassRuleMatchSrcIpAddr + IpAddress, + agentDiffServClassRuleMatchSrcIpMask + IpAddress, + agentDiffServClassRuleMatchSrcL4PortStart + InetPortNumber, + agentDiffServClassRuleMatchSrcL4PortEnd + InetPortNumber, + agentDiffServClassRuleMatchSrcMacAddr + MacAddress, + agentDiffServClassRuleMatchSrcMacMask + MacAddress, + agentDiffServClassRuleMatchVlanId + Unsigned32, + agentDiffServClassRuleMatchExcludeFlag + TruthValue, + agentDiffServClassRuleStorageType + StorageType, + agentDiffServClassRuleRowStatus + RowStatus, + agentDiffServClassRuleMatchCos2 + Unsigned32, + agentDiffServClassRuleMatchEtypeKey + INTEGER, + agentDiffServClassRuleMatchEtypeValue + EtypeValue, + agentDiffServClassRuleMatchVlanIdStart + Unsigned32, + agentDiffServClassRuleMatchVlanIdEnd + Unsigned32, + agentDiffServClassRuleMatchVlanId2Start + Unsigned32, + agentDiffServClassRuleMatchVlanId2End + Unsigned32, + agentDiffServClassRuleMatchFlowLabel + Unsigned32, + agentDiffServClassRuleMatchDstIpv6Prefix + Ipv6AddressPrefix, + agentDiffServClassRuleMatchSrcIpv6Prefix + Ipv6AddressPrefix, + agentDiffServClassRuleMatchDstIpv6PrefixLength + Integer32, + agentDiffServClassRuleMatchSrcIpv6PrefixLength + Integer32 + } + + agentDiffServClassRuleIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The identifier for DiffServ Class Rule Table entry within a class" + ::= { agentDiffServClassRuleEntry 1 } + + agentDiffServClassRuleMatchEntryType OBJECT-TYPE + SYNTAX INTEGER { + cos(1), + dstip(2), + dstl4port(3), + dstmac(4), + every(5), + ipdscp(6), + ipprecedence(7), + iptos(8), + protocol(9), + refclass(10), + srcip(11), + srcl4port(12), + srcmac(13), + vlan(14), + cos2(15), + etype(16), + vlanid(17), + vlanid2(18), + flowLabel(19), + srcPrefix(20), + dstPrefix(21) + } + + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Class Rule match entry type, it determines which one of the individual + match conditions is defined for the present class rule. This object must + be created before any other match object in this row." + ::= { agentDiffServClassRuleEntry 2 } + + + agentDiffServClassRuleMatchCos OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Three-bit user priority field in the 802.1Q tag header of a tagged + Ethernet frame used as a class-match parameter - only valid if the + agentDiffServClassRuleMatchEntryType is set to cos(1). For frames + containing a double VLAN tag, this field is located in the first/outer + tag." + ::= { agentDiffServClassRuleEntry 3 } + + agentDiffServClassRuleMatchDstIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination IP address match value for the class - only valid if the + agentDiffServClassRuleMatchEntryType is set to dstip(2)." + ::= { agentDiffServClassRuleEntry 4 } + + agentDiffServClassRuleMatchDstIpMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination IP address mask match value for the class - only valid if the + agentDiffServClassRuleMatchEntryType is set to dstip(2). This mask value + identifies the portion of agentDiffServClassRuleMatchDstIpAddr that is + compared against a packet. A non-contiguous mask value is permitted." + ::= { agentDiffServClassRuleEntry 5 } + + agentDiffServClassRuleMatchDstL4PortStart OBJECT-TYPE + SYNTAX InetPortNumber + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination layer 4 port range start match value for the class - only + valid if the agentDiffServClassRuleMatchEntryType is set to dstl4port(3)." + ::= { agentDiffServClassRuleEntry 6 } + + agentDiffServClassRuleMatchDstL4PortEnd OBJECT-TYPE + SYNTAX InetPortNumber + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination layer 4 port range end match value for the class - only valid + if the agentDiffServClassRuleMatchEntryType is set to dstl4port(3)." + ::= { agentDiffServClassRuleEntry 7 } + + agentDiffServClassRuleMatchDstMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination MAC address match value for the class - only valid if the + agentDiffServClassRuleMatchEntryType is set to dstmac(4)." + ::= { agentDiffServClassRuleEntry 8 } + + agentDiffServClassRuleMatchDstMacMask OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination MAC address mask match value for the class - only valid if the + agentDiffServClassRuleMatchEntryType is set to dstmac(4). This mask value + identifies the portion of agentDiffServClassRuleMatchDstMacAddr that is + compared against a packet. A non-contiguous mask value is permitted." + ::= { agentDiffServClassRuleEntry 9 } + + agentDiffServClassRuleMatchEvery OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Flag to indicate that the class rule is defined to match on every packet, + regardless of content. - only valid if the + agentDiffServClassRuleMatchEntryType is set to every(5)." + ::= { agentDiffServClassRuleEntry 10 } + + agentDiffServClassRuleMatchIpDscp OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "IP DiffServ Code Point (DSCP) match value for the class - only valid if + the agentDiffServClassRuleMatchEntryType is set to ipdscp(6). The DSCP + is defined as the high-order six bits of the Service Type octet in the + IPv4 header." + ::= { agentDiffServClassRuleEntry 11 } + + agentDiffServClassRuleMatchIpPrecedence OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "IP Precedence match value for the class - only valid if the + agentDiffServClassRuleMatchEntryType is set to ipprecedence(7). + The Precedence bits are defined as the high-order three bits of + the Service Type octed in the IPv4 header." + ::= { agentDiffServClassRuleEntry 12 } + + agentDiffServClassRuleMatchIpTosBits OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "IP TOS bits match value for the class - only valid if the + agentDiffServClassRuleMatchEntryType is set to iptos(8). + The TOS bits are defined as all eight bits of the Service + Type octet in the IPv4 header." + ::= { agentDiffServClassRuleEntry 13 } + + agentDiffServClassRuleMatchIpTosMask OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "IP TOS bits mask match value for the class - only valid if the + agentDiffServClassRuleMatchEntryType is set to iptos(8). This mask value + identifies the portion of agentDiffServClassRuleMatchIpTosBits that + is compared against a packet. A non-contiguous mask value is permitted." + ::= { agentDiffServClassRuleEntry 14 } + + agentDiffServClassRuleMatchProtocolNum OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Protocol number match value for the class - only valid if the + agentDiffServClassRuleMatchEntryType is set to protocol(9)." + ::= { agentDiffServClassRuleEntry 15 } + + agentDiffServClassRuleMatchRefClassIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Index of the corresponding referenced class - only valid if the + agentDiffServClassRuleMatchEntryType is set to refclass(10). + The set of match conditions defined for the reference class + are directly inherited by the current class. + + Restrictions: 1) The class types of both, current class and + the reference class must be identical (i.e., any vs. any, + or all vs. all). + 2) Self-referencing of class-name is not allowed. + 3) Any attempt to delete the reference class while still + referenced by any class shall fail. + 4) The combined match criteria of classname and reference class + name must be an allowed combination based on the class type. + Any subsequent changes to the reference class name match + criteria must maintain this validity, or the change attempt + shall fail." + + ::= { agentDiffServClassRuleEntry 16 } + + agentDiffServClassRuleMatchSrcIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source IP address match value for the class - only valid if the + agentDiffServClassRuleMatchEntryType is set to srcip(11)." + ::= { agentDiffServClassRuleEntry 17 } + + agentDiffServClassRuleMatchSrcIpMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source IP address mask match value for the class - only valid if the + agentDiffServClassRuleMatchEntryType is set to srcip(11). This mask value + identifies the portion of agentDiffServClassRuleMatchSrcIpAddr that + is compared against a packet. A non-contiguous mask value is permitted." + ::= { agentDiffServClassRuleEntry 18 } + + agentDiffServClassRuleMatchSrcL4PortStart OBJECT-TYPE + SYNTAX InetPortNumber + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source layer 4 port range start match value for the class - only valid if + the agentDiffServClassRuleMatchEntryType is set to srcl4port(12)." + ::= { agentDiffServClassRuleEntry 19 } + + agentDiffServClassRuleMatchSrcL4PortEnd OBJECT-TYPE + SYNTAX InetPortNumber + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source layer 4 port range end match value for the class - only valid if + the agentDiffServClassRuleMatchEntryType is set to srcl4port(12)." + ::= { agentDiffServClassRuleEntry 20 } + + agentDiffServClassRuleMatchSrcMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source MAC address match value for the class - only valid if the + agentDiffServClassRuleMatchEntryType is set to srcmac(13)." + ::= { agentDiffServClassRuleEntry 21 } + + agentDiffServClassRuleMatchSrcMacMask OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source MAC address mask match value for the class - only valid if the + agentDiffServClassRuleMatchEntryType is set to srcmac(13). This mask value + identifies the portion of agentDiffServClassRuleMatchSrcMacAddr that + is compared against a packet. A non-contiguous mask value is permitted." + ::= { agentDiffServClassRuleEntry 22 } + + agentDiffServClassRuleMatchVlanId OBJECT-TYPE + SYNTAX Unsigned32 (1..4094) + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "VLAN ID match value for the class - only valid if the + agentDiffServClassRuleMatchEntryType is set to vlan(14). + This object is obsoleted by agentDiffServClassRuleMatchVlanIdStart + and agentDiffServClassRuleMatchVlanIdEnd." + ::= { agentDiffServClassRuleEntry 23 } + + agentDiffServClassRuleMatchExcludeFlag OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Class Rule exclude flag - when set to true(1), the match condition + identified by agentDiffServClassRuleMatchEntryType is negated. This means + that for a given field, every value is considered to be a match EXCEPT for + the value specified in the class rule. This flag must be false(2) for an + agendDiffServClassRuleMatchEntryType of refClass(10). + This object must be set after the agentDiffServClassRuleMatchEntryType + object, but before any other match object in this row" + ::= { agentDiffServClassRuleEntry 24 } + + agentDiffServClassRuleStorageType OBJECT-TYPE + SYNTAX StorageType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Storage-type for this conceptual row" + DEFVAL { nonVolatile } + ::= { agentDiffServClassRuleEntry 25 } + + agentDiffServClassRuleRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. + + All RowStatus operations are permitted. + + Other columns in this row may be modified when the status is 'active'." + + + ::= { agentDiffServClassRuleEntry 26 } + + agentDiffServClassRuleMatchCos2 OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Three-bit user priority field in the second/inner 802.1Q tag header of a + double VLAN tagged Ethernet frame used as a class-match parameter + - only valid if the agentDiffServClassRuleMatchEntryType is set to + cos2(15)." + ::= { agentDiffServClassRuleEntry 27 } + + agentDiffServClassRuleMatchEtypeKey OBJECT-TYPE + SYNTAX INTEGER { + custom(1), + appletalk(2), + arp(3), + ibmsna(4), + ipv4(5), + ipv6(6), + ipx(7), + mplsmcast(8), + mplsucast(9), + netbios(10), + novell(11), + pppoe(12), + rarp(13) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Ethertype keyword match value for the class - only valid if the + agentDiffServClassRuleMatchEntryType is set to etype(16). A keyword + of custom(1) requires that the agentDiffServClassRuleMatchEtypeValue + object also be set." + ::= { agentDiffServClassRuleEntry 28 } + + agentDiffServClassRuleMatchEtypeValue OBJECT-TYPE + SYNTAX EtypeValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Ethertype match value for the class - only valid if the + agentDiffServClassRuleMatchEntryType is set to etype(16) and + the agentDiffServClassRuleMatchEtypeKey is set to custom(1). + The allowed value for this object is 0x0600 to 0xFFFF." + ::= { agentDiffServClassRuleEntry 29 } + + agentDiffServClassRuleMatchVlanIdStart OBJECT-TYPE + SYNTAX Unsigned32 (0..4095) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "VLAN ID range start match value for the class - only valid if + the agentDiffServClassRuleMatchEntryType is set to vlanid(17). + The VLAN ID field is defined as the 12-bit VLAN identifier + in the 802.1Q tag header of a tagged Ethernet frame. This is + contained in the first/outer tag of a double VLAN tagged frame." + ::= { agentDiffServClassRuleEntry 30 } + + agentDiffServClassRuleMatchVlanIdEnd OBJECT-TYPE + SYNTAX Unsigned32 (0..4095) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "VLAN ID range end match value for the class - only valid if + the agentDiffServClassRuleMatchEntryType is set to vlanid(17). + The VLAN ID field is defined as the 12-bit VLAN identifier + in the 802.1Q tag header of a tagged Ethernet frame. This is + contained in the first/outer tag of a double VLAN tagged frame." + ::= { agentDiffServClassRuleEntry 31 } + + agentDiffServClassRuleMatchVlanId2Start OBJECT-TYPE + SYNTAX Unsigned32 (0..4095) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Secondary VLAN ID range start match value for the class - only valid if the + agentDiffServClassRuleMatchEntryType is set to vlanid2(18). + The Secondary VLAN ID field is defined as the 12-bit VLAN identifier + in the second/inner 802.1Q tag header of a double VLAN tagged Ethernet + frame." + ::= { agentDiffServClassRuleEntry 32 } + + agentDiffServClassRuleMatchVlanId2End OBJECT-TYPE + SYNTAX Unsigned32 (0..4095) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Secondary VLAN ID range end match value for the class - only valid if the + agentDiffServClassRuleMatchEntryType is set to vlanid2(18). + The Secondary VLAN ID field is defined as the 12-bit VLAN identifier + in the second/inner 802.1Q tag header of a double VLAN tagged Ethernet + frame." + ::= { agentDiffServClassRuleEntry 33 } + + agentDiffServClassRuleMatchFlowLabel OBJECT-TYPE + SYNTAX Unsigned32 (0..1048575) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Flow label is 20-bit number that is unique to an IPv6 packet, used by end + stations to signify quality-of-service handling in routers." + ::= { agentDiffServClassRuleEntry 34 } + + agentDiffServClassRuleMatchDstIpv6Prefix OBJECT-TYPE + SYNTAX Ipv6AddressPrefix + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Ipv6 Prefix Address configured on the Service Port." + ::= { agentDiffServClassRuleEntry 35 } + + agentDiffServClassRuleMatchSrcIpv6Prefix OBJECT-TYPE + SYNTAX Ipv6AddressPrefix + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Ipv6 Prefix Address configured on the Service Port." + ::= { agentDiffServClassRuleEntry 36 } + + agentDiffServClassRuleMatchDstIpv6PrefixLength OBJECT-TYPE + SYNTAX Integer32 (1..128) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Prefix Length." + ::= { agentDiffServClassRuleEntry 37 } + agentDiffServClassRuleMatchSrcIpv6PrefixLength OBJECT-TYPE + SYNTAX Integer32 (1..128) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Prefix Length." + ::= { agentDiffServClassRuleEntry 38 } + + --********************************************************************************** + -- agentDiffServPolicyGroup + -- + --********************************************************************************** + + + agentDiffServPolicyGroup OBJECT IDENTIFIER ::= { fastPathQOSDiffServPrivate 3 } + + --*********************** agentDiffServPolicyTable ************************ + + agentDiffServPolicyIndexNextFree OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains an unused value for agentDiffServPolicyIndex, or a + zero to indicate that none exists." + ::= { agentDiffServPolicyGroup 1 } + + agentDiffServPolicyTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDiffServPolicyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the DiffServ policy entries." + ::= { agentDiffServPolicyGroup 2 } + + agentDiffServPolicyEntry OBJECT-TYPE + SYNTAX AgentDiffServPolicyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for a DiffServ policy." + INDEX { agentDiffServPolicyIndex } + ::= { agentDiffServPolicyTable 1 } + + AgentDiffServPolicyEntry ::= SEQUENCE { + agentDiffServPolicyIndex + Unsigned32, + agentDiffServPolicyName + DisplayString, + agentDiffServPolicyType + IntfDirection, + agentDiffServPolicyInstIndexNextFree + Unsigned32, + agentDiffServPolicyStorageType + StorageType, + agentDiffServPolicyRowStatus + RowStatus + } + + + agentDiffServPolicyIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The identifier for DiffServ Policy table entry." + ::= { agentDiffServPolicyEntry 1 } + + agentDiffServPolicyName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Name of the policy" + ::= { agentDiffServPolicyEntry 2 } + + agentDiffServPolicyType OBJECT-TYPE + SYNTAX IntfDirection + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " The policy type dictates whether inbound or outbound policy + attribute statements are used in the policy definition." + ::= { agentDiffServPolicyEntry 3 } + + agentDiffServPolicyInstIndexNextFree OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains an unused value for agentDiffServPolicyInstIndex, or + a zero to indicate that none exists. This index is maintained on a + per-policy basis." + ::= { agentDiffServPolicyEntry 4 } + + agentDiffServPolicyStorageType OBJECT-TYPE + SYNTAX StorageType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Storage-type for this conceptual row" + DEFVAL { nonVolatile } + ::= { agentDiffServPolicyEntry 5 } + + agentDiffServPolicyRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. + + active(1) - this Diffserv Policy is active + createAndGo(4) - set to this value to create an instance + destroy(6) - set to this value to delete an instance + + All RowStatus operations are permitted. + + Other columns in this row may be modified when the status is 'active'. + + Entries can not be deleted until all rows in agentDiffServPolicyInstTable + with corresponding values of agentDiffServPolicyIndex have been deleted." + + + + ::= { agentDiffServPolicyEntry 6 } + + --*********************** agentDiffServPolicyInstTable ************************ + + agentDiffServPolicyInstTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDiffServPolicyInstEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the policy-class instance entries." + ::= { agentDiffServPolicyGroup 3 } + + agentDiffServPolicyInstEntry OBJECT-TYPE + SYNTAX AgentDiffServPolicyInstEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for a policy-class instance." + INDEX { agentDiffServPolicyIndex,agentDiffServPolicyInstIndex } + ::= { agentDiffServPolicyInstTable 1 } + + AgentDiffServPolicyInstEntry ::= SEQUENCE { + agentDiffServPolicyInstIndex + Unsigned32, + agentDiffServPolicyInstClassIndex + Unsigned32, + agentDiffServPolicyInstAttrIndexNextFree + Unsigned32, + agentDiffServPolicyInstStorageType + StorageType, + agentDiffServPolicyInstRowStatus + RowStatus + } + + + agentDiffServPolicyInstIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The identifier for policy-class Instance table entry within a policy." + ::= { agentDiffServPolicyInstEntry 1 } + + agentDiffServPolicyInstClassIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Index of the DiffServ Class Table row, whose class definition is used + as the policy class instance. The class index identifies the classifier + definition used by the policy to establish an instance of that class + (to which policy attributes can be attached). This is what connects a + class (instance) to a policy." + ::= { agentDiffServPolicyInstEntry 2 } + + agentDiffServPolicyInstAttrIndexNextFree OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains an unused value for agentDiffServPolicyAttrIndex, or + a zero to indicate that none exists. This index is maintained on a + per-policy-class-instance basis." + ::= { agentDiffServPolicyInstEntry 3 } + + agentDiffServPolicyInstStorageType OBJECT-TYPE + SYNTAX StorageType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Storage-type for this conceptual row." + DEFVAL { nonVolatile } + ::= { agentDiffServPolicyInstEntry 4 } + + agentDiffServPolicyInstRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. + + active(1) - this Diffserv Policy Instance is active + createAndGo(4) - set to this value to create an instance + destroy(6) - set to this value to delete an instance + + All RowStatus operations are permitted. + + Other columns in this row may be modified when the status is 'active'. + + Entries can not be deleted until all rows in agentDiffServPolicyAttrTable with + corresponding values of agentDiffServPolicyIndex and agentDiffServPolicyInstIndex + have been deleted." + + ::= { agentDiffServPolicyInstEntry 5 } + + + --*********************** agentDiffServPolicyAttrTable ************************ + + agentDiffServPolicyAttrTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDiffServPolicyAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of policy attribute entries" + ::= { agentDiffServPolicyGroup 4 } + + agentDiffServPolicyAttrEntry OBJECT-TYPE + SYNTAX AgentDiffServPolicyAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for policy attributes" + INDEX { agentDiffServPolicyIndex, agentDiffServPolicyInstIndex, + agentDiffServPolicyAttrIndex } + ::= { agentDiffServPolicyAttrTable 1 } + + AgentDiffServPolicyAttrEntry ::= SEQUENCE { + agentDiffServPolicyAttrIndex + Unsigned32, + agentDiffServPolicyAttrStmtEntryType + INTEGER, + agentDiffServPolicyAttrStmtBandwidthCrate + Unsigned32, + agentDiffServPolicyAttrStmtBandwidthCrateUnits + INTEGER, + agentDiffServPolicyAttrStmtExpediteCrate + Unsigned32, + agentDiffServPolicyAttrStmtExpediteCrateUnits + INTEGER, + agentDiffServPolicyAttrStmtExpediteCburst + QosBurstSize, + agentDiffServPolicyAttrStmtMarkCosVal + Unsigned32, + agentDiffServPolicyAttrStmtMarkIpDscpVal + Unsigned32, + agentDiffServPolicyAttrStmtMarkIpPrecedenceVal + Unsigned32, + agentDiffServPolicyAttrStmtPoliceConformAct + INTEGER, + agentDiffServPolicyAttrStmtPoliceConformVal + Unsigned32, + agentDiffServPolicyAttrStmtPoliceExceedAct + INTEGER, + agentDiffServPolicyAttrStmtPoliceExceedVal + Unsigned32, + agentDiffServPolicyAttrStmtPoliceNonconformAct + INTEGER, + agentDiffServPolicyAttrStmtPoliceNonconformVal + Unsigned32, + agentDiffServPolicyAttrStmtPoliceSimpleCrate + Unsigned32, + agentDiffServPolicyAttrStmtPoliceSimpleCburst + QosBurstSize, + agentDiffServPolicyAttrStmtPoliceSinglerateCrate + Unsigned32, + agentDiffServPolicyAttrStmtPoliceSinglerateCburst + QosBurstSize, + agentDiffServPolicyAttrStmtPoliceSinglerateEburst + QosBurstSize, + agentDiffServPolicyAttrStmtPoliceTworateCrate + Unsigned32, + agentDiffServPolicyAttrStmtPoliceTworateCburst + QosBurstSize, + agentDiffServPolicyAttrStmtPoliceTworatePrate + Unsigned32, + agentDiffServPolicyAttrStmtPoliceTworatePburst + QosBurstSize, + agentDiffServPolicyAttrStmtRandomdropMinThresh + Unsigned32, + agentDiffServPolicyAttrStmtRandomdropMaxThresh + Unsigned32, + agentDiffServPolicyAttrStmtRandomdropMaxDropProb + Unsigned32, + agentDiffServPolicyAttrStmtRandomdropSamplingRate + Unsigned32, + agentDiffServPolicyAttrStmtRandomdropDecayExponent + Unsigned32, + agentDiffServPolicyAttrStmtShapeAverageCrate + Unsigned32, + agentDiffServPolicyAttrStmtShapePeakCrate + Unsigned32, + agentDiffServPolicyAttrStmtShapePeakPrate + Unsigned32, + agentDiffServPolicyAttrStorageType + StorageType, + agentDiffServPolicyAttrRowStatus + RowStatus, + agentDiffServPolicyAttrStmtAssignQueueId + Unsigned32, + agentDiffServPolicyAttrStmtDrop + TruthValue, + agentDiffServPolicyAttrStmtMarkCos2Val + Unsigned32, + agentDiffServPolicyAttrStmtPoliceColorConformIndex + Unsigned32, + agentDiffServPolicyAttrStmtPoliceColorConformMode + INTEGER, + agentDiffServPolicyAttrStmtPoliceColorConformVal + Unsigned32, + agentDiffServPolicyAttrStmtPoliceColorExceedIndex + Unsigned32, + agentDiffServPolicyAttrStmtPoliceColorExceedMode + INTEGER, + agentDiffServPolicyAttrStmtPoliceColorExceedVal + Unsigned32, + agentDiffServPolicyAttrStmtRedirectIntf + InterfaceIndex, + agentDiffServPolicyAttrStmtMirrorIntf + InterfaceIndex + } + + agentDiffServPolicyAttrIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The identifier for policy-attribute entry " + ::= { agentDiffServPolicyAttrEntry 1 } + + + agentDiffServPolicyAttrStmtEntryType OBJECT-TYPE + SYNTAX INTEGER { + bandwidth(1), + expedite(2), + markCosVal(3), + markIpDscpVal(4), + markIpPrecedenceVal(5), + policeSimple(6), + policeSinglerate(7), + policeTworate(8), + randomdrop(9), + shapeAverage(10), + shapePeak(11), + assignQueue(12), + drop(13), + markCos2Val(14), + redirect(15), + mirror(16), + markCosAsSecCos(17) + } + + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Policy attribute statement entry type -- this entry type is + essential to determine which of the individual object(s) + is defined for this policy attribute statement. This object must be + created before any other policy attribute statement object in the row. + + The markIpDscpVal(4), markIpPrecedenceVal(5), policeSimple(6), + policeSinglerate(7) and policeTworate(8) values are only allowed for an + agentDiffServPolicyType of in(1). The remaining values are only allowed + for an agentDiffServPolicyType of out(2)." + ::= { agentDiffServPolicyAttrEntry 2 } + + agentDiffServPolicyAttrStmtBandwidthCrate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "Bandwidth committed rate attribute statement value -- identifies + the minimum amount of bandwidth to be reserved for the specified + class instance within the policy. This attribute is only valid if + the value of agentDiffServPolicyAttrStmtEntryType is set to bandwidth(1)." + ::= { agentDiffServPolicyAttrEntry 3 } + + agentDiffServPolicyAttrStmtBandwidthCrateUnits OBJECT-TYPE + SYNTAX INTEGER { + kbps(1), + percentage(2) + } + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "Bandwidth committed rate units attribute statement value -- this value + determines the interpretation of the + agentDiffServPolicyAttrStmtBandwidthCrate object as either + kilobits-per-second or as a percentage of interface link speed. This + attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is set to bandwidth(1)." + ::= { agentDiffServPolicyAttrEntry 4 } + + agentDiffServPolicyAttrStmtExpediteCrate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "Expedited (bandwidth) committed rate attribute statement value -- it + identifies the maximum guaranteed amount of bandwidth to be reserved for + the specified class instance within the policy. This attribute is only + valid if the value of agentDiffServPolicyAttrStmtEntryType is set to + expedite(2). " + ::= { agentDiffServPolicyAttrEntry 5 } + + agentDiffServPolicyAttrStmtExpediteCrateUnits OBJECT-TYPE + SYNTAX INTEGER { + kbps(1), + percentage(2) + } + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "Expedited (bandwidth) committed rate units attribute statement value + -- determines the interpretation of the + agentDiffServPolicyAttrStmtExpediteCrate object as either + kilobits-per-second or as a percentage of interface link speed. This + attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is set to expedite(2)." + ::= { agentDiffServPolicyAttrEntry 6 } + + agentDiffServPolicyAttrStmtExpediteCburst OBJECT-TYPE + SYNTAX QosBurstSize + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "Expedited (bandwidth) committed burst size attribute statement value, + specified in Kbytes. This attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is set to expedite(2)." + DEFVAL { 4 } + ::= { agentDiffServPolicyAttrEntry 7 } + + agentDiffServPolicyAttrStmtMarkCosVal OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Three-bit user priority field value in the 802.1Q tag header of a tagged + Ethernet frame, marked as part of the inbound policy for a class instance. + For frames containing a double VLAN tag, this field is located in the + first/outer tag. This attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is set to markCosVal(3)." + ::= { agentDiffServPolicyAttrEntry 8 } + + agentDiffServPolicyAttrStmtMarkIpDscpVal OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specified IP DSCP value to mark in all inbound packets belonging to the + class-instance. This attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is set to markIpDscpVal(4)." + ::= { agentDiffServPolicyAttrEntry 9 } + + agentDiffServPolicyAttrStmtMarkIpPrecedenceVal OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specified IP Precedence value to mark in all inbound packets belonging to + the class-instance. This attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is set to markIpPrecedenceVal(5)." + ::= { agentDiffServPolicyAttrEntry 10 } + + agentDiffServPolicyAttrStmtPoliceConformAct OBJECT-TYPE + SYNTAX INTEGER { + drop(1), + markdscp(2), + markprec(3), + send(4), + markcos(5), + markcos2(6), + markcosAsSecCos(7) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Policing conform action attribute statement value -- determines + the action taken on conforming traffic for the policing style + (simple,singlerate,tworate) currently configured for the specified + class instance within the policy. The default conform action is send(3). + This attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is policeSimple(6), + policeSinglerate(7), or policeTworate(8)." + DEFVAL { send } + ::= { agentDiffServPolicyAttrEntry 11 } + + agentDiffServPolicyAttrStmtPoliceConformVal OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Policing conform value attribute statement -- + used to mark conforming packets when the conform action + is one of the following: + markdscp(2) - mark IP DSCP field + markprec(3) - mark IP Precedence field + markcos(5) - mark 802.1p CoS field (first/only tag) + markcos2(6) - mark secondary 802.1p CoS field (inner tag) + markcosAsSecCos(7) - mark CoS as Secondary CoS value + This attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is policeSimple(6), + policeSinglerate(7), or policeTworate(8)." + ::= { agentDiffServPolicyAttrEntry 12 } + + agentDiffServPolicyAttrStmtPoliceExceedAct OBJECT-TYPE + SYNTAX INTEGER { + drop(1), + markdscp(2), + markprec(3), + send(4), + markcos(5), + markcos2(6), + markcosAsSecCos(7) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Policing exceed action attribute statement value -- determines + the action taken on excess traffic for the policing style (singlerate, + tworate) currently configured for the specified class instance within the + policy. The default exceed action is drop(1). This attribute is only + valid if the value of agentDiffServPolicyAttrStmtEntryType is + policeSinglerate(7) or policeTworate(8)." + DEFVAL { drop } + ::= { agentDiffServPolicyAttrEntry 13 } + + agentDiffServPolicyAttrStmtPoliceExceedVal OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Policing exceed value attribute statement -- + used to mark excess packets when the exceed action + is one of the following: + markdscp(2) - mark IP DSCP field + markprec(3) - mark IP Precedence field + markcos(5) - mark 802.1p CoS field (first/only tag) + markcos2(6) - mark secondary 802.1p CoS field (inner tag) + markcosAsSecCos(7) - mark CoS as Secondary CoS value + This is only valid if the value of agentDiffServPolicyAttrStmtEntryType is + policeSinglerate(7) or policeTworate(8)." + ::= { agentDiffServPolicyAttrEntry 14 } + + agentDiffServPolicyAttrStmtPoliceNonconformAct OBJECT-TYPE + SYNTAX INTEGER { + drop(1), + markdscp(2), + markprec(3), + send(4), + markcos(5), + markcos2(6), + markcosAsSecCos(7) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Policing non-conform action attribute statement value -- determines the + action taken on nonconforming traffic for the policing style (simple, + singlerate,tworate) currently configured for the specified class instance + within the policy. The default non-conform action is drop(1). This + attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is policeSimple(6), + policeSinglerate(7), or policeTworate(8)." + DEFVAL { drop } + ::= { agentDiffServPolicyAttrEntry 15 } + + agentDiffServPolicyAttrStmtPoliceNonconformVal OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Policing non-conform value attribute statement -- + used to mark nonconforming packets when the nonconform action + is one of the following: + markdscp(2) - mark IP DSCP field + markprec(3) - mark IP Precedence field + markcos(5) - mark 802.1p CoS field (first/only tag) + markcos2(6) - mark secondary 802.1p CoS field (inner tag) + markcosAsSecCos(7) - mark CoS as Secondary CoS value + This attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is policeSimple(6), + policeSinglerate(7), or policeTworate(8)." + ::= { agentDiffServPolicyAttrEntry 16 } + + agentDiffServPolicyAttrStmtPoliceSimpleCrate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Simple policing committed rate attribute statement value, specified in + kbps. This attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is set to policeSimple(6)." + ::= { agentDiffServPolicyAttrEntry 17 } + + agentDiffServPolicyAttrStmtPoliceSimpleCburst OBJECT-TYPE + SYNTAX QosBurstSize + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Simple policing committed burst size attribute statement value, specified + in Kbytes. This attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is set to policeSimple(6)." + ::= { agentDiffServPolicyAttrEntry 18 } + + agentDiffServPolicyAttrStmtPoliceSinglerateCrate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Single-rate policing committed rate attribute statement value, specified + in kbps. This attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is set to policeSinglerate(7)." + ::= { agentDiffServPolicyAttrEntry 19 } + + agentDiffServPolicyAttrStmtPoliceSinglerateCburst OBJECT-TYPE + SYNTAX QosBurstSize + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Single-rate policing committed burst size attribute statement value, + specified in Kbytes. This attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is set to policeSinglerate(7)." + ::= { agentDiffServPolicyAttrEntry 20 } + + agentDiffServPolicyAttrStmtPoliceSinglerateEburst OBJECT-TYPE + SYNTAX QosBurstSize + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Single-rate policing excess burst size attribute statement value, + specified in Kbytes. This attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is set to policeSinglerate(7)." + ::= { agentDiffServPolicyAttrEntry 21 } + + agentDiffServPolicyAttrStmtPoliceTworateCrate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Two-rate policing committed rate attribute statement value, specified in + kbps. This attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is set to policeTworate(8)." + ::= { agentDiffServPolicyAttrEntry 22 } + + agentDiffServPolicyAttrStmtPoliceTworateCburst OBJECT-TYPE + SYNTAX QosBurstSize + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Two-rate policing committed burst size attribute statement value, + specified in Kbytes. This attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is set to policeTworate(8)." + ::= { agentDiffServPolicyAttrEntry 23 } + + agentDiffServPolicyAttrStmtPoliceTworatePrate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Two-rate policing peak rate attribute statement value, specified in kbps. + This attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is set to policeTworate(8)." + ::= { agentDiffServPolicyAttrEntry 24 } + + agentDiffServPolicyAttrStmtPoliceTworatePburst OBJECT-TYPE + SYNTAX QosBurstSize + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Two-rate policing peak burst size attribute statement value, specified in + Kbytes. This attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is set to policeTworate(8)." + ::= { agentDiffServPolicyAttrEntry 25 } + + agentDiffServPolicyAttrStmtRandomdropMinThresh OBJECT-TYPE + SYNTAX Unsigned32 (1..250000) + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "Random drop minimum threshold attribute statement value -- the average + queue depth minimum threshold in bytes used by the WRED algorithm. This + attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is set to randomdrop(9)." + ::= { agentDiffServPolicyAttrEntry 26 } + + agentDiffServPolicyAttrStmtRandomdropMaxThresh OBJECT-TYPE + SYNTAX Unsigned32 (1..500000) + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "Random drop maximum threshold attribute statement value -- the average + queue depth maximum threshold in bytes used by the WRED algorithm. This + attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is set to randomdrop(9)." + ::= { agentDiffServPolicyAttrEntry 27 } + + agentDiffServPolicyAttrStmtRandomdropMaxDropProb OBJECT-TYPE + SYNTAX Unsigned32 (0..100) + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "Random drop maximum drop probability attribute statement value -- the + packet drop probability when the queue depth average reaches its maximum + threshold. It is expressed as a percentage, and is an integer from 0 to + 100. This attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is set to randomdrop(9)." + ::= { agentDiffServPolicyAttrEntry 28 } + + agentDiffServPolicyAttrStmtRandomdropSamplingRate OBJECT-TYPE + SYNTAX Unsigned32 (0..1000000) + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "Random drop sampling rate attribute statement value -- the period at which + the queue depth is sampled for computing an average, expressed in + microseconds. This value is an integer from 0 to 1000000, with a default + value of 0 (meaning per packet sampling). This attribute is only valid if + the value of agentDiffServPolicyAttrStmtEntryType is set to randomdrop(9)." + DEFVAL { 0 } + ::= { agentDiffServPolicyAttrEntry 29 } + + agentDiffServPolicyAttrStmtRandomdropDecayExponent OBJECT-TYPE + SYNTAX Unsigned32 (0..16) + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "Random drop decay exponent attribute statement value -- determines how + quickly the average queue length calculation decays over time, with a + higher number causing a slower decay. This value is an integer from 0 to + 16, with a default of 9. This attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is set to randomdrop(9)." + DEFVAL { 9 } + ::= { agentDiffServPolicyAttrEntry 30 } + + agentDiffServPolicyAttrStmtShapeAverageCrate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "Average-rate shaping committed rate attribute statement value, specified + in kbps -- used to establish average rate traffic shaping for the + specified class , which limits transmissions for the class to the + committed information rate, with any excess traffic delayed via queueing. + This attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is set to shapeAverage(10)." + ::= { agentDiffServPolicyAttrEntry 31 } + + agentDiffServPolicyAttrStmtShapePeakCrate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "Peak-rate shaping committed rate attribute statement value, specified in + kbps -- used to establish peak rate traffic shaping for the specified + class , which allows transmissions for the class to exceed the committed + information rate by sending excess traffic with the understanding that it + could be dropped by a downstream network element. This attribute is only + valid if the value of agentDiffServPolicyAttrStmtEntryType is set to + shapePeak(11)." + ::= { agentDiffServPolicyAttrEntry 32 } + + agentDiffServPolicyAttrStmtShapePeakPrate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "Peak-rate shaping peak rate attribute statement value, specified in kbps + -- used to establish peak rate traffic shaping for the specified class, + which allows transmissions for the class to exceed the committed + information rate by sending excess traffic with the understanding that it + could be dropped by a downstream network element. This attribute is only + valid if the value of agentDiffServPolicyAttrStmtEntryType is set to + shapePeak(11)." + ::= { agentDiffServPolicyAttrEntry 33 } + + agentDiffServPolicyAttrStorageType OBJECT-TYPE + SYNTAX StorageType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Storage-type for this conceptual row." + DEFVAL { nonVolatile } + ::= { agentDiffServPolicyAttrEntry 34 } + + agentDiffServPolicyAttrRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. + + active(1) - this Diffserv Policy Attribute is active + createAndGo(4) - set to this value to create an instance + destroy(6) - set to this value to delete an instance + + All RowStatus operations are permitted. + + Other columns in this row may be modified when the status is 'active'." + + + ::= { agentDiffServPolicyAttrEntry 35 } + + agentDiffServPolicyAttrStmtAssignQueueId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Queue identifier to which all inbound packets belonging to this + class-instance are directed. This attribute is only valid if the + value of agentDiffServPolicyAttrStmtEntryType is set to assignQueue(12)." + ::= { agentDiffServPolicyAttrEntry 36 } + + agentDiffServPolicyAttrStmtDrop OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Flag to indicate that all inbound packets belonging to this + class-instance are dropped at ingress. This attribute is + only valid if the agentDiffServPolicyAttrStmtEntryType is + set to drop(13)." + ::= { agentDiffServPolicyAttrEntry 37 } + + agentDiffServPolicyAttrStmtMarkCos2Val OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Three-bit user priority field value in the second/inner 802.1Q tag header of + a double VLAN tagged Ethernet frame, marked as part of the inbound policy + for a class instance. This attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is set to markCos2Val(14)." + ::= { agentDiffServPolicyAttrEntry 38 } + + agentDiffServPolicyAttrStmtPoliceColorConformIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Index of the DiffServ Class Table row whose class definition is used + to specify the policing color conform mode and value. This identifies + incoming traffic categorized as 'green' packets in the + network. This attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is policeSimple(6), + policeSinglerate(7), or policeTworate(8). + + The DiffServ class referred to by this object must comply with + the following restrictions: + + 1) Contains only a single, non-excluded match condition identifying + one of the following fields: COS, IP DSCP, IP Precedence, or + Secondary COS, in accordance with platform support capabilities. + This is represented by an agentDiffServClassRuleMatchEntryType value + of cos(1), ipdscp(6), ipprecedence(7), or cos2(15), respectively. + + 2) Must not conflict with any (non-excluded) match conditions in the + classifier used for this policy-class instance, as indicated by the + agentDiffServPolicyInstClassIndex object. + + 3) The color conform mode and value identified by this class index must + not be the same as an existing color-aware exceed mode and value + defined by the agentDiffServPolicyAttrStmtPoliceColorExceedIndex object. + + A class index value of 0 for this object indicates conform color awareness + is not being used (e.g. color-blind mode). Setting this object to 0 causes + the agentDiffServPolicyAttrStmtPoliceColorExceedIndex object to be set + to 0 as well." + DEFVAL { 0 } + ::= { agentDiffServPolicyAttrEntry 39 } + + agentDiffServPolicyAttrStmtPoliceColorConformMode OBJECT-TYPE + SYNTAX INTEGER { + blind(1), + cos(2), + cos2(3), + ipdscp(4), + ipprec(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Policing color conform mode -- indicates the color awareness + mode of conforming traffic for the policing style (simple, + singlerate, or tworate) currently configured for the specified + class instance within the policy. The default value is blind(1). + + Any value other than blind(1) denotes the packet field to + check for the existing conform color marking, which is compared to the + agentDiffServPolicyAttrStmtPoliceColorConformVal object value. Packets + matching this specification are considered to be colored 'green'. + + This read-only object reflects the DiffServ class definition as indicated by + agentDiffServPolicyAttrStmtPoliceColorConformIndex. This attribute + is only valid for agentDiffServPolicyAttrStmtEntryType values of + policeSimple(6), policeSinglerate(7), or policeTworate(8)." + DEFVAL { blind } + ::= { agentDiffServPolicyAttrEntry 40 } + + agentDiffServPolicyAttrStmtPoliceColorConformVal OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Policing color conform value -- indicates the color awareness + packet mark value of conforming traffic for the policing style + (simple, singlerate, or tworate) currently configured for the + specified class instance within the policy. + + For the color conform field indicated by + agentDiffServPolicyAttrStmtPoliceColorConformMode, packets containing + this value are considered to be colored 'green'. + + This read-only object reflects the DiffServ class definition as indicated by + agentDiffServPolicyAttrStmtPoliceColorConformIndex. This attribute + is only valid for agentDiffServPolicyAttrStmtEntryType values of + policeSimple(6), policeSinglerate(7), or policeTworate(8), and + agentDiffServPolicyAttrStmtPoliceColorConformMode values of + cos(2), cos2(3), ipdscp(4), or ipprec(5)." + ::= { agentDiffServPolicyAttrEntry 41 } + + agentDiffServPolicyAttrStmtPoliceColorExceedIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Index of the DiffServ Class Table row whose class definition is used + to specify the policing color exceed mode and value. This identifies + incoming traffic categorized as 'yellow' packets in the + network. This attribute is only valid if the value of + agentDiffServPolicyAttrStmtEntryType is policeSinglerate(7) or + policeTworate(8). + + The DiffServ class referred to by this object must comply with + the following restrictions: + + 1) Contains only a single, non-excluded match condition identifying + one of the following fields: COS, IP DSCP, IP Precedence, or + Secondary COS, in accordance with platform support capabilities. + This is represented by an agentDiffServClassRuleMatchEntryType value + of cos(1), ipdscp(6), ipprecedence(7), or cos2(15), respectively. + + 2) Must not conflict with any (non-excluded) match conditions in the + classifier used for this policy-class instance, as indicated by the + agentDiffServPolicyInstClassIndex object. + + 3) The color exceed mode and value identified by this class index must + not be the same as an existing color-aware exceed mode and value + defined by the agentDiffServPolicyAttrStmtPoliceColorConformIndex object. + + A class index value of 0 for this object indicates exceed color awareness + is not being used. When the agentDiffServPolicyAttrStmtPoliceColorConformIndex + object is 0, indicating color-blind operation, this object must also be 0. + When a non-0 value is used for the agentDiffServPolicyAttrStmtPoliceColorConformIndex + object, this object may remain set to 0 if exceed color awareness is not + desired, or may be set to an appropriate class index value to activate exceed + color aware mode." + DEFVAL { 0 } + ::= { agentDiffServPolicyAttrEntry 42 } + + agentDiffServPolicyAttrStmtPoliceColorExceedMode OBJECT-TYPE + SYNTAX INTEGER { + blind(1), + cos(2), + cos2(3), + ipdscp(4), + ipprec(5), + unused(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Policing color exceed mode -- indicates the color awareness + mode of exceeding traffic for the policing style (singlerate + or tworate) currently configured for the specified + class instance within the policy. The default value is blind(1). + + Any value other than blind(1) or unused(6) denotes the packet field to + check for the existing exceed color marking, which is compared to the + agentDiffServPolicyAttrStmtPoliceColorExceedVal object value. Packets + matching this specification are considered to be colored 'yellow'. + + Use of exceed color awareness is optional, and this field is set to + unused(6) when color conform aware policing is used but the color exceed + value is not used. When agentDiffServPolicyAttrStmtPoliceColorConformMode + value is blind(1), this object is blind(1) as well. + + This read-only object reflects the DiffServ class definition as indicated by + agentDiffServPolicyAttrStmtPoliceColorExceedIndex. This attribute + is only valid for agentDiffServPolicyAttrStmtEntryType values of + policeSinglerate(7) or policeTworate(8)." + DEFVAL { blind } + ::= { agentDiffServPolicyAttrEntry 43 } + + agentDiffServPolicyAttrStmtPoliceColorExceedVal OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Policing color exceed value -- indicates the color awareness + packet mark value of exceeding traffic for the policing style + (singlerate or tworate) currently configured for the + specified class instance within the policy. + + For the color exceed field indicated by + agentDiffServPolicyAttrStmtPoliceColorExceedMode, packets containing + this value are considered to be colored 'yellow'. + + This read-only object reflects the DiffServ class definition as indicated by + agentDiffServPolicyAttrStmtPoliceColorExceedIndex. This attribute + is only valid for agentDiffServPolicyAttrStmtEntryType values of + policeSinglerate(7) or policeTworate(8), and + agentDiffServPolicyAttrStmtPoliceColorExceedMode values of + cos(2), cos2(3), ipdscp(4), or ipprec(5)." + ::= { agentDiffServPolicyAttrEntry 44 } + + agentDiffServPolicyAttrStmtRedirectIntf OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "External interface number to which all inbound packets belonging to this + class-instance are redirected. This attribute is only valid if the + value of agentDiffServPolicyAttrStmtEntryType is set to redirect(15)." + ::= { agentDiffServPolicyAttrEntry 45 } + + agentDiffServPolicyAttrStmtMirrorIntf OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "External interface number to which all inbound packets belonging to this + class-instance are mirrored. This attribute is only valid if the + value of agentDiffServPolicyAttrStmtEntryType is set to mirror(16)." + ::= { agentDiffServPolicyAttrEntry 46 } + + agentDiffServPolicyAttrStmtMarkCosAsSecCos OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Flag to indicate that all inbound packets belonging to this + class-instance are marked with secondary cos at ingress. This attribute is + only valid if the agentDiffServPolicyAttrStmtEntryType is + set to markCosAsSecCos(17)." + ::= { agentDiffServPolicyAttrEntry 47 } + + + --*********************** agentDiffServPolicyPerfInTable ************************ + + agentDiffServPolicyPerfInTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDiffServPolicyPerfInEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of inbound policy-class performance entries" + ::= { agentDiffServPolicyGroup 5 } + + agentDiffServPolicyPerfInEntry OBJECT-TYPE + SYNTAX AgentDiffServPolicyPerfInEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for the performance attributes of the associated inbound + policy-class instance" + + INDEX { agentDiffServPolicyIndex,agentDiffServPolicyInstIndex,ifIndex } + ::= { agentDiffServPolicyPerfInTable 1 } + + AgentDiffServPolicyPerfInEntry ::= SEQUENCE { + agentDiffServPolicyPerfInOfferedOctets + Counter32, + agentDiffServPolicyPerfInOfferedPackets + Counter32, + agentDiffServPolicyPerfInDiscardedOctets + Counter32, + agentDiffServPolicyPerfInDiscardedPackets + Counter32, + agentDiffServPolicyPerfInHCOfferedOctets + Counter64, + agentDiffServPolicyPerfInHCOfferedPackets + Counter64, + agentDiffServPolicyPerfInHCDiscardedOctets + Counter64, + agentDiffServPolicyPerfInHCDiscardedPackets + Counter64, + agentDiffServPolicyPerfInStorageType + StorageType, + agentDiffServPolicyPerfInRowStatus + RowStatus + } + + agentDiffServPolicyPerfInOfferedOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Offered octets count for the inbound policy-class instance performance + entry." + ::= { agentDiffServPolicyPerfInEntry 1 } + + agentDiffServPolicyPerfInOfferedPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Offered packets count for the inbound policy-class instance performance + entry." + ::= { agentDiffServPolicyPerfInEntry 2 } + + agentDiffServPolicyPerfInDiscardedOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Discarded octets count for the inbound policy-class instance performance + entry." + ::= { agentDiffServPolicyPerfInEntry 3 } + + agentDiffServPolicyPerfInDiscardedPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Discarded packets count for the inbound policy-class instance performance + entry." + ::= { agentDiffServPolicyPerfInEntry 4 } + + agentDiffServPolicyPerfInHCOfferedOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Offered octets high capacity count for the inbound policy-class instance + performance entry." + ::= { agentDiffServPolicyPerfInEntry 5 } + + agentDiffServPolicyPerfInHCOfferedPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Offered packets high capacity count for the inbound policy-class instance + performance entry." + ::= { agentDiffServPolicyPerfInEntry 6 } + + agentDiffServPolicyPerfInHCDiscardedOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Discarded octets high capacity count for the inbound policy-class instance + performance entry." + ::= { agentDiffServPolicyPerfInEntry 7 } + + agentDiffServPolicyPerfInHCDiscardedPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Discarded packets high capacity count for the inbound policy-class + instance performance entry." + ::= { agentDiffServPolicyPerfInEntry 8 } + + agentDiffServPolicyPerfInStorageType OBJECT-TYPE + SYNTAX StorageType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Storage-type for this conceptual row." + DEFVAL { nonVolatile } + ::= { agentDiffServPolicyPerfInEntry 9 } + + agentDiffServPolicyPerfInRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this conceptual row." + ::= { agentDiffServPolicyPerfInEntry 10 } + + + + + --*********************** agentDiffServPolicyPerfOutTable ************************ + + agentDiffServPolicyPerfOutTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDiffServPolicyPerfOutEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of outbound policy-class performance entries" + ::= { agentDiffServPolicyGroup 6 } + + agentDiffServPolicyPerfOutEntry OBJECT-TYPE + SYNTAX AgentDiffServPolicyPerfOutEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for the performance attributes of the associated outbound + policy-class instance" + + INDEX { agentDiffServPolicyIndex,agentDiffServPolicyInstIndex,ifIndex } + ::= { agentDiffServPolicyPerfOutTable 1 } + + AgentDiffServPolicyPerfOutEntry ::= SEQUENCE { + agentDiffServPolicyPerfOutTailDroppedOctets + Counter32, + agentDiffServPolicyPerfOutTailDroppedPackets + Counter32, + agentDiffServPolicyPerfOutRandomDroppedOctets + Counter32, + agentDiffServPolicyPerfOutRandomDroppedPackets + Counter32, + agentDiffServPolicyPerfOutShapeDelayedOctets + Counter32, + agentDiffServPolicyPerfOutShapeDelayedPackets + Counter32, + agentDiffServPolicyPerfOutSentOctets + Counter32, + agentDiffServPolicyPerfOutSentPackets + Counter32, + agentDiffServPolicyPerfOutHCTailDroppedOctets + Counter64, + agentDiffServPolicyPerfOutHCTailDroppedPackets + Counter64, + agentDiffServPolicyPerfOutHCRandomDroppedOctets + Counter64, + agentDiffServPolicyPerfOutHCRandomDroppedPackets + Counter64, + agentDiffServPolicyPerfOutHCShapeDelayedOctets + Counter64, + agentDiffServPolicyPerfOutHCShapeDelayedPackets + Counter64, + agentDiffServPolicyPerfOutHCSentOctets + Counter64, + agentDiffServPolicyPerfOutHCSentPackets + Counter64, + agentDiffServPolicyPerfOutStorageType + StorageType, + agentDiffServPolicyPerfOutRowStatus + RowStatus, + agentDiffServPolicyPerfOutOfferedOctets + Counter32, + agentDiffServPolicyPerfOutOfferedPackets + Counter32, + agentDiffServPolicyPerfOutDiscardedOctets + Counter32, + agentDiffServPolicyPerfOutDiscardedPackets + Counter32, + agentDiffServPolicyPerfOutHCOfferedOctets + Counter64, + agentDiffServPolicyPerfOutHCOfferedPackets + Counter64, + agentDiffServPolicyPerfOutHCDiscardedOctets + Counter64, + agentDiffServPolicyPerfOutHCDiscardedPackets + Counter64 + } + + agentDiffServPolicyPerfOutTailDroppedOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Tail-dropped octets count for the outbound policy-class instance + performance entry." + ::= { agentDiffServPolicyPerfOutEntry 1 } + + agentDiffServPolicyPerfOutTailDroppedPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Tail-dropped packets count for the outbound policy-class instance + performance entry." + ::= { agentDiffServPolicyPerfOutEntry 2 } + + agentDiffServPolicyPerfOutRandomDroppedOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Random-dropped octets count for the outbound policy-class instance + performance entry." + ::= { agentDiffServPolicyPerfOutEntry 3 } + + agentDiffServPolicyPerfOutRandomDroppedPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Random-dropped packets count for the outbound policy-class instance + performance entry." + ::= { agentDiffServPolicyPerfOutEntry 4 } + + agentDiffServPolicyPerfOutShapeDelayedOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Shape-delayed octets count for the outbound policy-class instance + performance entry." + ::= { agentDiffServPolicyPerfOutEntry 5 } + + agentDiffServPolicyPerfOutShapeDelayedPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Shape-delayed packets count for the outbound policy-class instance + performance entry." + ::= { agentDiffServPolicyPerfOutEntry 6 } + + agentDiffServPolicyPerfOutSentOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Sent octets count for the outbound policy-class instance performance + entry." + ::= { agentDiffServPolicyPerfOutEntry 7 } + + agentDiffServPolicyPerfOutSentPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Sent packets count for the outbound policy-class instance performance + entry." + ::= { agentDiffServPolicyPerfOutEntry 8 } + + agentDiffServPolicyPerfOutHCTailDroppedOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Tail-dropped octets high capacity count for the outbound policy-class + instance performance entry." + ::= { agentDiffServPolicyPerfOutEntry 9 } + + agentDiffServPolicyPerfOutHCTailDroppedPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Tail-dropped packets high capacity count for the outbound policy-class + instance performance entry." + ::= { agentDiffServPolicyPerfOutEntry 10 } + + agentDiffServPolicyPerfOutHCRandomDroppedOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Random-dropped octets high capacity count for the outbound policy-class + instance performance entry." + ::= { agentDiffServPolicyPerfOutEntry 11 } + + agentDiffServPolicyPerfOutHCRandomDroppedPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Random-dropped packets high capacity count for the outbound policy-class + instance performance entry." + ::= { agentDiffServPolicyPerfOutEntry 12 } + + agentDiffServPolicyPerfOutHCShapeDelayedOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Shape-delayed octets high capacity count for the outbound policy-class + instance performance entry." + ::= { agentDiffServPolicyPerfOutEntry 13 } + + agentDiffServPolicyPerfOutHCShapeDelayedPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Shape-delayed packets high capacity count for the outbound policy-class + instance performance entry." + ::= { agentDiffServPolicyPerfOutEntry 14 } + + agentDiffServPolicyPerfOutHCSentOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Sent octets high capacity count for the outbound policy-class instance + performance entry." + ::= { agentDiffServPolicyPerfOutEntry 15 } + + agentDiffServPolicyPerfOutHCSentPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Sent packets high capacity count for the outbound policy-class instance + performance entry." + ::= { agentDiffServPolicyPerfOutEntry 16 } + + agentDiffServPolicyPerfOutStorageType OBJECT-TYPE + SYNTAX StorageType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Storage-type for this conceptual row." + DEFVAL { nonVolatile } + ::= { agentDiffServPolicyPerfOutEntry 17 } + + agentDiffServPolicyPerfOutRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this conceptual row." + ::= { agentDiffServPolicyPerfOutEntry 18 } + + agentDiffServPolicyPerfOutOfferedOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Offered octets count for the outbound policy-class instance performance + entry." + ::= { agentDiffServPolicyPerfOutEntry 19 } + + agentDiffServPolicyPerfOutOfferedPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Offered packets count for the outbound policy-class instance performance + entry." + ::= { agentDiffServPolicyPerfOutEntry 20 } + + agentDiffServPolicyPerfOutDiscardedOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Discarded octets count for the outbound policy-class instance performance + entry." + ::= { agentDiffServPolicyPerfOutEntry 21 } + + agentDiffServPolicyPerfOutDiscardedPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Discarded packets count for the outbound policy-class instance performance + entry." + ::= { agentDiffServPolicyPerfOutEntry 22 } + + agentDiffServPolicyPerfOutHCOfferedOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Offered octets high capacity count for the outbound policy-class instance + performance entry." + ::= { agentDiffServPolicyPerfOutEntry 23 } + + agentDiffServPolicyPerfOutHCOfferedPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Offered packets high capacity count for the outbound policy-class instance + performance entry." + ::= { agentDiffServPolicyPerfOutEntry 24 } + + agentDiffServPolicyPerfOutHCDiscardedOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Discarded octets high capacity count for the outbound policy-class instance + performance entry." + ::= { agentDiffServPolicyPerfOutEntry 25 } + + agentDiffServPolicyPerfOutHCDiscardedPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Discarded packets high capacity count for the outbound policy-class + instance performance entry." + ::= { agentDiffServPolicyPerfOutEntry 26 } + + + --********************************************************************************** + -- agentDiffServService Group + -- + --********************************************************************************** + + --*********************** agentDiffServServiceTable ************************ + + + agentDiffServServiceGroup OBJECT IDENTIFIER ::= { fastPathQOSDiffServPrivate 4 } + + agentDiffServServiceTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDiffServServiceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the service entries." + ::= { agentDiffServServiceGroup 1 } + + agentDiffServServiceEntry OBJECT-TYPE + SYNTAX AgentDiffServServiceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for policy assigned to an interface in a particular + direction." + INDEX { agentDiffServServiceIfIndex,agentDiffServServiceIfDirection } + ::= { agentDiffServServiceTable 1 } + + AgentDiffServServiceEntry ::= SEQUENCE { + agentDiffServServiceIfIndex + InterfaceIndex, + agentDiffServServiceIfDirection + IntfDirection, + agentDiffServServicePolicyIndex + Unsigned32, + agentDiffServServiceIfOperStatus + INTEGER, + agentDiffServServiceStorageType + StorageType, + agentDiffServServiceRowStatus + RowStatus + } + + + agentDiffServServiceIfIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "External interface number of the interface to which policy is assigned." + ::= { agentDiffServServiceEntry 1 } + + agentDiffServServiceIfDirection OBJECT-TYPE + SYNTAX IntfDirection + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Interface direction to which the policy is assigned." + ::= { agentDiffServServiceEntry 2 } + + agentDiffServServicePolicyIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Index of the Policy Table row whose policy definition is attached to the + interface in the specified direction." + ::= { agentDiffServServiceEntry 3 } + + agentDiffServServiceIfOperStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), -- ready for DiffServ operation + down(2) + } + + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current operational state of the DiffServ service + interface. If agentDiffServGenStatusAdminMode is + disable(2) then agentDiffServServiceIfOperStatus should + be down(2). If agentDiffServServiceGenStatusAdminMode + is changed to enable(1) then agentDiffServServiceIfOperStatus + should change to up(1) if the service interface is ready + to send and receive DiffServ traffic; it should remain + in the down(2) state if the underlying interface hardware + is not in a link up condition, if the policy definition + represented by agentDiffServServicePolicyIndex is incompatible + with the interface (e.g., requires more bandwidth than the + current capacity of the interface), or if the policy definition + is considered to be incomplete (e.g., one or more composite + rows is not in the active(1) state)." + ::= { agentDiffServServiceEntry 4 } + + agentDiffServServiceStorageType OBJECT-TYPE + SYNTAX StorageType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Storage-type for this conceptual row" + DEFVAL { nonVolatile } + ::= { agentDiffServServiceEntry 5 } + + agentDiffServServiceRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. + + active(1) - Diffserv is active + createAndGo(4) - set to this value to create an instance + destroy(6) - set to this value to delete an instance + + All RowStatus operations are permitted. + + Other columns in this row may be modified when the status is 'active'." + + ::= { agentDiffServServiceEntry 6 } + + + --*********************** agentDiffServServicePerfTable ************************ + + + agentDiffServServicePerfTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDiffServServicePerfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of service performance entries." + ::= { agentDiffServServiceGroup 2 } + + agentDiffServServicePerfEntry OBJECT-TYPE + SYNTAX AgentDiffServServicePerfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents a service performance entry." + + AUGMENTS { agentDiffServServiceEntry } + ::= { agentDiffServServicePerfTable 1 } + + AgentDiffServServicePerfEntry ::= SEQUENCE { + agentDiffServServicePerfOfferedOctets + Counter32, + agentDiffServServicePerfOfferedPackets + Counter32, + agentDiffServServicePerfDiscardedOctets + Counter32, + agentDiffServServicePerfDiscardedPackets + Counter32, + agentDiffServServicePerfSentOctets + Counter32, + agentDiffServServicePerfSentPackets + Counter32, + agentDiffServServicePerfHCOfferedOctets + Counter64, + agentDiffServServicePerfHCOfferedPackets + Counter64, + agentDiffServServicePerfHCDiscardedOctets + Counter64, + agentDiffServServicePerfHCDiscardedPackets + Counter64, + agentDiffServServicePerfHCSentOctets + Counter64, + agentDiffServServicePerfHCSentPackets + Counter64 + } + + + agentDiffServServicePerfOfferedOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Offered octets count for the specified service interface and direction" + ::= { agentDiffServServicePerfEntry 1 } + + agentDiffServServicePerfOfferedPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Offered packets count for specified service interface and direction" + ::= { agentDiffServServicePerfEntry 2 } + + agentDiffServServicePerfDiscardedOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Discarded octets count for the specified service interface and direction" + ::= { agentDiffServServicePerfEntry 3 } + + agentDiffServServicePerfDiscardedPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Discarded packets count for the specified service interface and direction" + ::= { agentDiffServServicePerfEntry 4 } + + agentDiffServServicePerfSentOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Sent octets count for the specified service interface and direction" + ::= { agentDiffServServicePerfEntry 5 } + + agentDiffServServicePerfSentPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Sent packets count for the specified service interface and direction" + ::= { agentDiffServServicePerfEntry 6 } + + agentDiffServServicePerfHCOfferedOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Offered octets high capacity count for the specified service interface + and direction" + ::= { agentDiffServServicePerfEntry 7 } + + agentDiffServServicePerfHCOfferedPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Offered packets high capacity count for the specified service interface + and direction" + ::= { agentDiffServServicePerfEntry 8 } + + agentDiffServServicePerfHCDiscardedOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Discarded octets high capacity count for the specified service interface + and direction" + ::= { agentDiffServServicePerfEntry 9 } + + agentDiffServServicePerfHCDiscardedPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Discarded packets high capacity count for the specified service interface + and direction" + ::= { agentDiffServServicePerfEntry 10 } + + agentDiffServServicePerfHCSentOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Sent octets high capacity count for the specified service interface and + direction" + ::= { agentDiffServServicePerfEntry 11 } + + agentDiffServServicePerfHCSentPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Sent packets high capacity count for the specified service interface and + direction" + ::= { agentDiffServServicePerfEntry 12 } + +END diff --git a/mibs/FASTPATH-QOS-ISCSI-MIB.mib b/mibs/FASTPATH-QOS-ISCSI-MIB.mib new file mode 100644 index 0000000..d1992da --- /dev/null +++ b/mibs/FASTPATH-QOS-ISCSI-MIB.mib @@ -0,0 +1,336 @@ +FASTPATH-QOS-ISCSI-MIB DEFINITIONS ::= BEGIN + +IMPORTS + + TEXTUAL-CONVENTION, + RowStatus, DisplayString, DateAndTime, TruthValue FROM SNMPv2-TC + NOTIFICATION-TYPE, MODULE-IDENTITY, OBJECT-TYPE, + Unsigned32, TimeTicks, IpAddress FROM SNMPv2-SMI + fastPathQOS FROM FASTPATH-QOS-MIB; + + fastPathIscsiFlowAcceleration MODULE-IDENTITY + LAST-UPDATED "200904300000Z" -- 30 April 2009 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 100 Perimeter Park Drive + Suite H + Morrisville, NC 27560 + Tel: +1 919 865 2700" + DESCRIPTION + "The MIB definitions for Quality of Service - iSCSI Flow Acceleration Flex package." + + -- Revision history. + REVISION + "200904300000Z" -- 30 April 2009 12:00:00 GMT + DESCRIPTION + "Initial revision." + + ::= { fastPathQOS 5 } + +------------------------------------------------------------------------------- + +agentIscsiFlowAccelerationGlobalConfigGroup OBJECT IDENTIFIER ::= { fastPathIscsiFlowAcceleration 1 } + +agentIscsiFlowAccelerationEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/Disable iSCSI Flow Acceleration globally on the system." + ::= { agentIscsiFlowAccelerationGlobalConfigGroup 1 } + + +------------------------------------------------------------------------------- +agentIscsiFlowAccelerationAgingTimeOut OBJECT-TYPE + SYNTAX INTEGER (60..2592000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The time in seconds that should pass before session is aged out + after the last frame detected for the session." + ::= { agentIscsiFlowAccelerationGlobalConfigGroup 2 } + + +------------------------------------------------------------------------------- +QosType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Type of QoS: VPT or DSCP." + SYNTAX INTEGER { + vpt(0), + dscp(1) +} + +agentIscsiFlowAccelerationQosType OBJECT-TYPE + SYNTAX QosType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Current type of QoS for iSCSI packets" + ::= { agentIscsiFlowAccelerationGlobalConfigGroup 3 } + +agentIscsiFlowAccelerationQosVptValue OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of VPT or DSCP, depends on agentIscsiFlowAccelerationQosType, that will be assigned to each iSCSI packet. + The range of VPT value is 0..7" + ::= { agentIscsiFlowAccelerationGlobalConfigGroup 4 } + +agentIscsiFlowAccelerationQosDscpValue OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of VPT or DSCP, depends on agentIscsiFlowAccelerationQosType, that will be assigned to each iSCSI packet. + The range of DSCP value is 0..63" + ::= { agentIscsiFlowAccelerationGlobalConfigGroup 5 } + +agentIscsiFlowAccelerationQosRemark OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Whether iSCSI frames with the configured VPT or DSCP when egressing the switch." + ::= { agentIscsiFlowAccelerationGlobalConfigGroup 6 } + +------------------------------------------------------------------------------- +agentIscsiFlowAccelerationTargetConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentIscsiFlowAccelerationTargetConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table for configuration of iSCSI target TCP port number, + IP address, and name. It is indexed by + agentIscsiFlowAccelerationTargetConfigTcpPort and + agentIscsiFlowAccelerationTargetConfigAddr." + ::= { fastPathIscsiFlowAcceleration 2 } + +agentIscsiFlowAccelerationTargetConfigEntry OBJECT-TYPE + SYNTAX AgentIscsiFlowAccelerationTargetConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Row in the iSCSI Target configuration table." + INDEX { agentIscsiFlowAccelerationTargetConfigTcpPort, + agentIscsiFlowAccelerationTargetConfigAddr} + ::= { agentIscsiFlowAccelerationTargetConfigTable 1 } + +AgentIscsiFlowAccelerationTargetConfigEntry::= SEQUENCE { + agentIscsiFlowAccelerationTargetConfigTcpPort Unsigned32, + agentIscsiFlowAccelerationTargetConfigAddr IpAddress, + agentIscsiFlowAccelerationTargetConfigName DisplayString, + agentIscsiFlowAccelerationTargetConfigStatus RowStatus +} + +agentIscsiFlowAccelerationTargetConfigTcpPort OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The TCP port of configured target." + ::= { agentIscsiFlowAccelerationTargetConfigEntry 1} + +agentIscsiFlowAccelerationTargetConfigAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Specifies the target address. If the target + address is to be ignored the address should be 0.0.0.0." + + ::= { agentIscsiFlowAccelerationTargetConfigEntry 2 } + +agentIscsiFlowAccelerationTargetConfigName OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..223)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The target IQN name. This text is not used to match + on network traffic. It serves as an identifying comment + for administrative convenience." + DEFVAL {""} + ::= { agentIscsiFlowAccelerationTargetConfigEntry 3 } + +agentIscsiFlowAccelerationTargetConfigStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of the target. It's used to add/delete a target. + + active(1) - this ACL instance is active + createAndGo(4) - set to this value to create an instance + destroy(6) - set to this value to delete an instance" + ::= { agentIscsiFlowAccelerationTargetConfigEntry 4} + +------------------------------------------------------------------------------- +agentIscsiFlowAccelerationSessionTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentIscsiFlowAccelerationSessionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains iSCSI sessions. + It is indexed as assigned by system." + ::= { fastPathIscsiFlowAcceleration 3 } + +agentIscsiFlowAccelerationSessionEntry OBJECT-TYPE + SYNTAX AgentIscsiFlowAccelerationSessionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the agentIscsiFlowAccelerationSessionTable." + INDEX { agentIscsiFlowAccelerationSessionIndex } + ::= { agentIscsiFlowAccelerationSessionTable 1 } + +AgentIscsiFlowAccelerationSessionEntry ::= SEQUENCE { + agentIscsiFlowAccelerationSessionIndex Unsigned32, + agentIscsiFlowAccelerationTargetName DisplayString, + agentIscsiFlowAccelerationInitiatorName DisplayString, + agentIscsiFlowAccelerationSessionISID OCTET STRING, + agentIscsiFlowAccelerationSessAgingTime Unsigned32, + agentIscsiFlowAccelerationSessionUpTime Unsigned32 +} + +agentIscsiFlowAccelerationSessionIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Numerical index of session table entry assigned by system. " + ::= { agentIscsiFlowAccelerationSessionEntry 1 } + +agentIscsiFlowAccelerationTargetName OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..223)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The target name" + ::= { agentIscsiFlowAccelerationSessionEntry 2 } + +agentIscsiFlowAccelerationInitiatorName OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..223)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The initiator name" + ::= { agentIscsiFlowAccelerationSessionEntry 3 } + +agentIscsiFlowAccelerationSessionISID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(6)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ISID of current session." + ::= { agentIscsiFlowAccelerationSessionEntry 4 } + +agentIscsiFlowAccelerationSessAgingTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The elapsed time in seconds since the traffic was detected + on any connections associated with this session." + ::= { agentIscsiFlowAccelerationSessionEntry 5 } + +agentIscsiFlowAccelerationSessionUpTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time elapsed since the session was detected, in seconds." + ::= { agentIscsiFlowAccelerationSessionEntry 6 } + +------------------------------------------------------------------------------- +agentIscsiFlowAccelerationConnectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentIscsiFlowAccelerationConnectionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains iSCSI connections. + It is indexed as assigned by system." + ::= { fastPathIscsiFlowAcceleration 4 } + + +agentIscsiFlowAccelerationConnectionEntry OBJECT-TYPE + SYNTAX AgentIscsiFlowAccelerationConnectionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the agentIscsiFlowAccelerationConnectionTable." + INDEX { agentIscsiFlowAccelerationConnectionIndex } + ::= { agentIscsiFlowAccelerationConnectionTable 1 } + +AgentIscsiFlowAccelerationConnectionEntry ::= SEQUENCE { + agentIscsiFlowAccelerationConnectionIndex Unsigned32, + agentIscsiFlowAccelerationConnectionTargetAddr IpAddress, + agentIscsiFlowAccelerationConnectionTargetPort Unsigned32, + agentIscsiFlowAccelerationConnectionInitiatorAddr IpAddress, + agentIscsiFlowAccelerationConnectionInitiatorPort Unsigned32, + agentIscsiFlowAccelerationConnectionCID Unsigned32, + agentIscsiFlowAccelerationConnectionSessionIndex Unsigned32 +} + +agentIscsiFlowAccelerationConnectionIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Numerical index of connection table entry assigned by system. " + ::= { agentIscsiFlowAccelerationConnectionEntry 1 } + + agentIscsiFlowAccelerationConnectionTargetAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The connection target address." + ::= { agentIscsiFlowAccelerationConnectionEntry 2 } + +agentIscsiFlowAccelerationConnectionTargetPort OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The TCP port of connection target." + ::= { agentIscsiFlowAccelerationConnectionEntry 3 } + + agentIscsiFlowAccelerationConnectionInitiatorAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The connection initiator address." + ::= { agentIscsiFlowAccelerationConnectionEntry 4 } + +agentIscsiFlowAccelerationConnectionInitiatorPort OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The TCP port of connection initiator." + ::= { agentIscsiFlowAccelerationConnectionEntry 5 } + +agentIscsiFlowAccelerationConnectionCID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The iSCSI CID for this connection." + ::= { agentIscsiFlowAccelerationConnectionEntry 6 } + +agentIscsiFlowAccelerationConnectionSessionIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of the session associated with this connection. + Refers to the index of agentIscsiFlowAccelerationSessionIndex in + agentIscsiFlowAccelerationSessionTable." + ::= { agentIscsiFlowAccelerationConnectionEntry 7 } + +END + diff --git a/mibs/FASTPATH-QOS-MIB.mib b/mibs/FASTPATH-QOS-MIB.mib new file mode 100644 index 0000000..08f575f --- /dev/null +++ b/mibs/FASTPATH-QOS-MIB.mib @@ -0,0 +1,52 @@ +FASTPATH-QOS-MIB DEFINITIONS ::= BEGIN + +-- Broadcom Corporation Quality of Service Package MIB +-- Copyright Broadcom Corporation (2001-2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, Integer32, Gauge32 + FROM SNMPv2-SMI + RowStatus FROM SNMPv2-TC + fastPath FROM BROADCOM-REF-MIB + DisplayString FROM RFC1213-MIB; + + fastPathQOS MODULE-IDENTITY + LAST-UPDATED "200705230000Z" -- 23 May 2007 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 100, Perimeter Park Drive + Morrisville, NC 27560 + Tel: +1 919 865 2700" + DESCRIPTION + "The MIB definitaions for Quality of Service Flex package." + + -- Revision history. + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Broadcom branding related changes." + REVISION + "200311210000Z" -- 21 Nov 2003 12:00:00 GMT + DESCRIPTION + "Revisions made for new release." + REVISION + "200201301544Z" + DESCRIPTION + "Initial revision." + + ::= { fastPath 3 } + +END diff --git a/mibs/FASTPATH-RADIUS-AUTH-CLIENT-MIB.mib b/mibs/FASTPATH-RADIUS-AUTH-CLIENT-MIB.mib new file mode 100644 index 0000000..919e9f6 --- /dev/null +++ b/mibs/FASTPATH-RADIUS-AUTH-CLIENT-MIB.mib @@ -0,0 +1,551 @@ +FASTPATH-RADIUS-AUTH-CLIENT-MIB DEFINITIONS ::= BEGIN + +-- Broadcom Corporation FastPath Radius Authentication Client MIB +-- Copyright Broadcom Corporation (2003-2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, + IpAddress, Integer32, Counter32, Unsigned32 + FROM SNMPv2-SMI + RowStatus FROM SNMPv2-TC + fastPath FROM BROADCOM-REF-MIB + InetAddress,InetAddressType FROM INET-ADDRESS-MIB + DisplayString FROM RFC1213-MIB; + + fastPathRadius MODULE-IDENTITY + LAST-UPDATED "200705230000Z" -- 23 May 2007 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 100, Perimeter Park Drive + Morrisville, NC 27560 + Tel: +1 919 865 2700" + DESCRIPTION + "The Broadcom Private MIB for FastPath Radius Authentication Client" + + -- Revision history. + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Broadcom branding related changes." + REVISION + "200311210000Z" -- 21 Nov 2003 12:00:00 GMT + DESCRIPTION + "Revisions made for new release." + REVISION + "200305070000Z" + DESCRIPTION + "Initial version." + + ::= { fastPath 8 } + + + --************************************************************************************** + -- agentRadiusConfigGroup + -- + --************************************************************************************** + + agentRadiusConfigGroup OBJECT IDENTIFIER ::= { fastPathRadius 1 } + + agentRadiusRetransmit OBJECT-TYPE + SYNTAX Unsigned32 (1..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum number of retransmissions of a RADIUS request packet" + DEFVAL { 4 } + ::= { agentRadiusConfigGroup 1 } + + agentRadiusTimeout OBJECT-TYPE + SYNTAX Unsigned32 (1..30) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Time out duration (in seconds) before packets are retransmitted" + DEFVAL { 15 } + ::= { agentRadiusConfigGroup 2 } + + agentRadiusDeadTime OBJECT-TYPE + SYNTAX Unsigned32 (0..2000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Length of time (in minutes) for which a RADIUS server is skipped over by transaction requests." + DEFVAL { 0 } + ::= { agentRadiusConfigGroup 3 } + + agentRadiusServerKey OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..128)) + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "RADIUS Server key specifies the authentication and encryption key for all RADIUS communications + between the switch and the RADIUS server. This key must match the encryption used on the RADIUS + daemon." + ::= { agentRadiusConfigGroup 4 } + + agentRadiusSourceIPAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Source IP address that will be used for the communication with RADIUS servers." + ::= { agentRadiusConfigGroup 5 } + + agentRadiusServerIndexNextValid OBJECT-TYPE + SYNTAX Integer32 (0|1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the next valid index into the agentRadiusServerConfigTable + for creation. If no additional entries are allowed, this will be 0." + ::= { agentRadiusConfigGroup 6 } + + --************************************************************************************** + -- agentRadiusServerConfigTable + -- + --************************************************************************************** + + agentRadiusServerConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentRadiusServerConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table with information about Radius Authentication Server IP + Addresses, port numbers and shared secret" + ::= { agentRadiusConfigGroup 7 } + + agentRadiusServerConfigEntry OBJECT-TYPE + SYNTAX AgentRadiusServerConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry consisting of configuration data for a Radius + Authentication Server." + INDEX { agentRadiusServerIndex } + ::= { agentRadiusServerConfigTable 1 } + + AgentRadiusServerConfigEntry ::= + SEQUENCE { + agentRadiusServerIndex + Integer32, + agentRadiusServerAddress + InetAddress, + agentRadiusServerAddressType + InetAddressType, + agentRadiusServerPort + Unsigned32, + agentRadiusServerSecret + DisplayString, + agentRadiusServerPrimaryMode + INTEGER, + agentRadiusServerCurrentMode + INTEGER, + agentRadiusServerMsgAuth + INTEGER, + agentRadiusServerAddressRowStatus + RowStatus, + agentRadiusServerName + DisplayString, + agentRadiusServerInetAddress + InetAddress, + agentRadiusServerTimeout + Unsigned32, + agentRadiusServerRetransmit + Unsigned32, + agentRadiusServerDeadtime + Unsigned32, + agentRadiusServerSourceIPAddr + IpAddress, + agentRadiusServerPriority + Unsigned32, + agentRadiusServerUsageType + INTEGER + } + + agentRadiusServerIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique index of the configured RADIUS server" + ::= { agentRadiusServerConfigEntry 1 } + + agentRadiusServerAddress OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "IP Address of the configured RADIUS server. + This object cannot be changed after creation." + ::= { agentRadiusServerConfigEntry 2 } + + agentRadiusServerPort OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Port number for the RADIUS server." + DEFVAL { 1812 } + ::= { agentRadiusServerConfigEntry 3 } + + agentRadiusServerTimeout OBJECT-TYPE + SYNTAX Unsigned32 (1..30) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Time out duration (in seconds) before packets are retransmitted" + DEFVAL { 3 } + ::= { agentRadiusServerConfigEntry 4 } + + agentRadiusServerRetransmit OBJECT-TYPE + SYNTAX Unsigned32 (1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum number of retransmissions of a RADIUS request packet" + DEFVAL { 3 } + ::= { agentRadiusServerConfigEntry 5 } + + agentRadiusServerDeadtime OBJECT-TYPE + SYNTAX Unsigned32 (0..2000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Length of time (in minutes) for which a RADIUS server is skipped over by transaction requests." + DEFVAL { 0 } + ::= { agentRadiusServerConfigEntry 6 } + + agentRadiusServerSourceIPAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Source IP address that will be used for the communication with RADIUS servers." + ::= { agentRadiusServerConfigEntry 7 } + + agentRadiusServerSecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured shared sercret for the RADIUS server." + ::= { agentRadiusServerConfigEntry 8 } + + agentRadiusServerPriority OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Priority specifies the order in which the servers will be used, where 0 is the highest + priority in radius server config mode." + DEFVAL { 0 } + ::= { agentRadiusServerConfigEntry 9 } + + agentRadiusServerUsageType OBJECT-TYPE + SYNTAX INTEGER { + all(1), + login(2), + dot1x(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify the usage type of the server." + DEFVAL { all } + ::= { agentRadiusServerConfigEntry 10 } + + agentRadiusServerAddressRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Creates or destroys a RADIUS Authentication server entry. + During creation, the next available index is specified by the + agentRadiusServerIndexNextValid object. Rows creation using + a different value for agentRadiusServerIndex will fail. + + active(1) - This entry is active. + createAndGo(4) - Creates a new entry. + destroy(6) - Deletes an entry." + ::= { agentRadiusServerConfigEntry 11 } + + agentRadiusServerPrimaryMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure the RADIUS server to be the primary server. If there is any + other server that is configured to be primary, that server is set to be + a seconday server and this entry is set Primary." + ::= { agentRadiusServerConfigEntry 12 } + + agentRadiusServerCurrentMode OBJECT-TYPE + SYNTAX INTEGER { + yes(1), + no(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate if the RADIUS server is the current server in user for + authentication." + ::= { agentRadiusServerConfigEntry 13 } + + agentRadiusServerMsgAuth OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable the message authenticator attribute for this + RADIUS server." + ::= { agentRadiusServerConfigEntry 14 } + + agentRadiusServerName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..32)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Configured identification name for the RADIUS server." + ::= { agentRadiusServerConfigEntry 15 } + + agentRadiusServerInetAddress OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "IP Address of the configured RADIUS server. + This object cannot be changed after creation." + ::= { agentRadiusServerConfigEntry 16 } + + agentRadiusServerAddressType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "IP Address Type of the configured RADIUS server. + This object cannot be changed after creation." + ::= { agentRadiusServerConfigEntry 17 } + + --************************************************************************************** + + agentRadiusNasIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Used to set the NAS-IP address for the radius server." + ::= { agentRadiusConfigGroup 8 } + + agentAuthorizationNetworkRadiusMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(0) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Used to enable/disable Vlan assignment mode." + ::= { agentRadiusConfigGroup 9 } + + agentRadiusAccountingIndexNextValid OBJECT-TYPE + SYNTAX Integer32 (0|1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the next valid index into the agentRadiusAccountingConfigTable + for creation. If no additional entries are allowed, this will be 0." + ::= { agentRadiusConfigGroup 10 } + + --************************************************************************************** + -- agentRadiusAccountingConfigTable + -- + --************************************************************************************** + + agentRadiusAccountingConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentRadiusAccountingConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table with information about Radius Accounting Server IP + Addresses, port numbers and shared secret. Only one entry is + supported at this time." + ::= { agentRadiusConfigGroup 11 } + + agentRadiusAccountingConfigEntry OBJECT-TYPE + SYNTAX AgentRadiusAccountingConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry consisting of configuration data for a Radius Accounting Server." + INDEX { agentRadiusAccountingServerIndex } + ::= { agentRadiusAccountingConfigTable 1 } + + AgentRadiusAccountingConfigEntry ::= + SEQUENCE { + agentRadiusAccountingServerIndex + Integer32, + agentRadiusAccountingServerAddress + InetAddress, + agentRadiusAccountingServerAddressType + InetAddressType, + agentRadiusAccountingPort + Unsigned32, + agentRadiusAccountingSecret + DisplayString, + agentRadiusAccountingStatus + RowStatus, + agentRadiusAccountingServerName + DisplayString + } + + agentRadiusAccountingServerIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique index of the configured RADIUS accounting server. The next valid + value of this object for creation is specified by + agentRadiusAccountingIndexNextValid. + " + ::= { agentRadiusAccountingConfigEntry 1 } + + agentRadiusAccountingServerAddress OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "IP Address of the configured RADIUS accounting server. + This object cannot be changed after creation." + ::= { agentRadiusAccountingConfigEntry 2 } + + agentRadiusAccountingServerAddressType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "IP Address Type of the configured RADIUS accounting server. + This object cannot be changed after creation." + ::= { agentRadiusAccountingConfigEntry 3 } + + agentRadiusAccountingPort OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Port number for the RADIUS accounting server." + DEFVAL { 1813 } + ::= { agentRadiusAccountingConfigEntry 4 } + + agentRadiusAccountingSecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configured shared sercret for the RADIUS accounting server." + ::= { agentRadiusAccountingConfigEntry 5 } + + agentRadiusAccountingStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Creates or destroys a RADIUS accounting server entry. + During creation, the next available index is specified by the + agentRadiusAccountingIndexNextValid object. Rows creation using + a different value for agentRadiusAccountingServerIndex will fail. + + active(1) - This entry is active. + createAndGo(4) - Creates a new entry. + destroy(6) - Deletes an entry." + ::= { agentRadiusAccountingConfigEntry 6 } + + agentRadiusAccountingServerName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..32)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Configured identification name for the RADIUS Accounting + server." + ::= { agentRadiusAccountingConfigEntry 7 } + + + --************************************************************************************** + + agentRadiusAccountingMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Identifies if RADIUS Accounting has been enabled or not" + DEFVAL { disable } + ::= { agentRadiusConfigGroup 12 } + + agentRadiusStatsClear OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "When set to enable(1), all Radius statistics will be reset." + DEFVAL { disable } + ::= { agentRadiusConfigGroup 13 } + + agentRadiusAuthenticationServers OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of RADIUS Authentication Servers that have been configured." + ::= { agentRadiusConfigGroup 14 } + + agentRadiusAccountingServers OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of RADIUS Accounting Servers that have been configured." + ::= { agentRadiusConfigGroup 15 } + + agentRadiusNamedAuthenticationServerGroups OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of configured RADIUS named Authentication Server groups." + ::= { agentRadiusConfigGroup 16 } + + agentRadiusNamedAccountingServerGroups OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of configured RADIUS named Accounting Server groups." + ::= { agentRadiusConfigGroup 17 } + + --************************************************************************************** + +END diff --git a/mibs/FASTPATH-ROUTING-MIB.mib b/mibs/FASTPATH-ROUTING-MIB.mib new file mode 100644 index 0000000..57b7cfc --- /dev/null +++ b/mibs/FASTPATH-ROUTING-MIB.mib @@ -0,0 +1,2887 @@ +FASTPATH-ROUTING-MIB DEFINITIONS ::= BEGIN + +-- Broadcom Corporation FastPath Routing MIB +-- Copyright Broadcom Corporation (2001-2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, IpAddress, + Integer32, TimeTicks, Gauge32, Unsigned32, Counter32 + FROM SNMPv2-SMI + RowStatus, TruthValue, TEXTUAL-CONVENTION + FROM SNMPv2-TC + fastPath FROM BROADCOM-REF-MIB + DisplayString,PhysAddress FROM RFC1213-MIB + ospfIfEntry, ospfVirtIfEntry, + ospfAreaEntry FROM OSPF-MIB + RouterID FROM OSPF-MIB + rip2IfConfEntry FROM RIPv2-MIB + vrrpOperVrId FROM VRRP-MIB + ifIndex, InterfaceIndex, InterfaceIndexOrZero + FROM IF-MIB + InterfaceIndexOrZero FROM IF-MIB; + fastPathRouting MODULE-IDENTITY + LAST-UPDATED "200705230000Z" -- 23 May 2007 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 100, Perimeter Park Drive + Morrisville, NC 27560 + Tel: +1 919 865 2700" + DESCRIPTION + "The Broadcom Private MIB for FastPath Routing" + + -- Revision history. + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Broadcom branding related changes." + REVISION + "200311210000Z" -- 21 Nov 2003 12:00:00 GMT + DESCRIPTION + "Revisions made for new release." + REVISION + "200304021700Z" -- 2 April 2003 12:00 PM EST + DESCRIPTION + "Updated for release" + + ::= { fastPath 2 } + + SpfTimerRange ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The range of intervals on which Spf timers can be configured." + SYNTAX Integer32 (0..65535) + + AutoCostRefBw ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The value of reference bandwidth from which ospf calculates metric cost." + SYNTAX Unsigned32 (1..4294967) + --************************************************************************************** + -- agentSwitchArpGroup + -- + + --************************************************************************************** + agentSwitchArpGroup OBJECT IDENTIFIER ::= { fastPathRouting 1 } + + agentSwitchArpAgeoutTime OBJECT-TYPE + SYNTAX Integer32 (15..21600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the ARP entry ageout time in seconds. + Allowable range: 15-21600" + DEFVAL { 1200 } + + ::= { agentSwitchArpGroup 1 } + + agentSwitchArpResponseTime OBJECT-TYPE + SYNTAX Integer32 (1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the ARP request response timeout in seconds. + Allowable range: 1-10" + ::= { agentSwitchArpGroup 2 } + + agentSwitchArpMaxRetries OBJECT-TYPE + SYNTAX Integer32 (0..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the ARP count of maximum request for retries. + Allowable range: 0-10" + ::= { agentSwitchArpGroup 3 } + + agentSwitchArpCacheSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the ARP maximum number of entries in the cache. + Allowable range is platform-specific." + ::= { agentSwitchArpGroup 4 } + + agentSwitchArpDynamicRenew OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This indicates the current setting of ARP dynamic renew mode. " + DEFVAL { enable } + ::= { agentSwitchArpGroup 5 } + + agentSwitchArpTotalEntryCountCurrent OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current number of entries in the ARP cache." + ::= { agentSwitchArpGroup 6 } + + agentSwitchArpTotalEntryCountPeak OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Peak number of entries recorded in the ARP cache over + time. This value is restarted whenever the ARP cache + size is changed." + ::= { agentSwitchArpGroup 7 } + + agentSwitchArpStaticEntryCountCurrent OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current number of configured static ARP entries." + ::= { agentSwitchArpGroup 8 } + + agentSwitchArpStaticEntryCountMax OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum number of configurable static ARP entries." + ::= { agentSwitchArpGroup 9 } + + --************************************************************************************** + + agentSwitchArpTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchArpEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "This table augments the MIB-II ipNetToMediaTable by providing + per-interface ARP entry information." + ::= { agentSwitchArpGroup 10 } + + agentSwitchArpEntry OBJECT-TYPE + SYNTAX AgentSwitchArpEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "" + INDEX { agentSwitchArpIpAddress } + ::= { agentSwitchArpTable 1 } + + AgentSwitchArpEntry ::= SEQUENCE { + agentSwitchArpAge + TimeTicks, + agentSwitchArpIpAddress + IpAddress, + agentSwitchArpMacAddress + PhysAddress, + agentSwitchArpInterface + Integer32, + agentSwitchArpType + INTEGER, + agentSwitchArpStatus + RowStatus + } + + agentSwitchArpAge OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "This defines the time (in seconds) since the ARP entry + was last refreshed. This value is 0 for ARP entries of + type local(1) or static(3), since these entries are + not subject to aging." + ::= { agentSwitchArpEntry 1 } + + agentSwitchArpIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The IP Address assigned to each interface." + ::= { agentSwitchArpEntry 2 } + + agentSwitchArpMacAddress OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "The hardware MAX Address that each interface maps to." + ::= { agentSwitchArpEntry 3 } + + agentSwitchArpInterface OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "The Associated IfIndex which identified the ARP Entry." + ::= { agentSwitchArpEntry 4 } + + agentSwitchArpType OBJECT-TYPE + SYNTAX INTEGER { + local(1), + gateway(2), + static(3), + dynamic(4) + } + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The type of ARP entry." + ::= { agentSwitchArpEntry 5 } + + agentSwitchArpStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "The status of this ARP entry. Setting this object destroy will remove the entry." + ::= { agentSwitchArpEntry 6 } + +--************************************************************************* + + agentSwitchLocalProxyArpTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchLocalProxyArpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains the per-interface configuration + parameters for Local Proxy Arp." + ::= { agentSwitchArpGroup 11 } + + agentSwitchLocalProxyArpEntry OBJECT-TYPE + SYNTAX AgentSwitchLocalProxyArpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents a logical row in the + agentSwitchLocalProxyArpTable" + INDEX { ifIndex } + ::= { agentSwitchLocalProxyArpTable 1 } + + AgentSwitchLocalProxyArpEntry ::= SEQUENCE { + agentSwitchLocalProxyArpMode + INTEGER + } + + agentSwitchLocalProxyArpMode OBJECT-TYPE + SYNTAX INTEGER{ + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Local Proxy Arp Mode for the interface." + ::= { agentSwitchLocalProxyArpEntry 1 } + +--************************************************************************* + + agentSwitchIntfArpTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchIntfArpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table augments the MIB-II ipNetToMediaTable by providing + per-interface ARP entry information." + ::= { agentSwitchArpGroup 12 } + + agentSwitchIntfArpEntry OBJECT-TYPE + SYNTAX AgentSwitchIntfArpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { agentSwitchIntfArpIpAddress, + agentSwitchIntfArpIfIndex} + ::= { agentSwitchIntfArpTable 1 } + + AgentSwitchIntfArpEntry ::= SEQUENCE { + agentSwitchIntfArpIpAddress + IpAddress, + agentSwitchIntfArpIfIndex + InterfaceIndex, + agentSwitchIntfArpAge + TimeTicks, + agentSwitchIntfArpMacAddress + PhysAddress, + agentSwitchIntfArpType + INTEGER, + agentSwitchIntfArpStatus + RowStatus + } + + agentSwitchIntfArpIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Type of Address assigned to this interface." + ::= { agentSwitchIntfArpEntry 1 } + + agentSwitchIntfArpIfIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Associated IfIndex which identified the ARP Entry. + This value must be specified for static ARP entries on an + unnumbered interface" + ::= { agentSwitchIntfArpEntry 2 } + + agentSwitchIntfArpAge OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This defines the time (in seconds) since the ARP entry + was last refreshed. This value is 0 for ARP entries of + type local(1) or static(3), since these entries are + not subject to aging." + ::= { agentSwitchIntfArpEntry 3 } + + agentSwitchIntfArpMacAddress OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The hardware MAX Address that each interface maps to." + ::= { agentSwitchIntfArpEntry 4 } + + agentSwitchIntfArpType OBJECT-TYPE + SYNTAX INTEGER { + local(1), + gateway(2), + static(3), + dynamic(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of ARP entry." + ::= { agentSwitchIntfArpEntry 5 } + + agentSwitchIntfArpStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this ARP entry. Setting this object destroy will remove the entry." + ::= { agentSwitchIntfArpEntry 6 } + + --************************************************************************************** + -- agentSwitchIpGroup + -- + --************************************************************************************** + + agentSwitchIpGroup OBJECT IDENTIFIER ::= { fastPathRouting 2 } + + agentSwitchIpRoutingMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Administratively enables/disables routing on the switch." + ::= { agentSwitchIpGroup 1 } + + --************************************************************************************** + -- agentSwitchIpInterfaceTable + -- + --************************************************************************************** + + agentSwitchIpInterfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchIpInterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { agentSwitchIpGroup 3 } + + agentSwitchIpInterfaceEntry OBJECT-TYPE + SYNTAX AgentSwitchIpInterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { agentSwitchIpInterfaceIfIndex } + ::= { agentSwitchIpInterfaceTable 1 } + + AgentSwitchIpInterfaceEntry ::= SEQUENCE { + agentSwitchIpInterfaceIfIndex + Integer32, + agentSwitchIpInterfaceIpAddress + IpAddress, + agentSwitchIpInterfaceNetMask + IpAddress, + agentSwitchIpInterfaceClearIp + INTEGER, + agentSwitchIpInterfaceRoutingMode + INTEGER, + agentSwitchIpInterfaceProxyARPMode + INTEGER, + agentSwitchIpInterfaceMtuValue + Unsigned32, + agentSwitchIpInterfaceBandwidth + Unsigned32, + agentSwitchIpInterfaceUnnumberedIfIndex + InterfaceIndexOrZero, + agentSwitchIpInterfaceIcmpUnreachables + INTEGER, + agentSwitchIpInterfaceIcmpRedirects + INTEGER + } + + agentSwitchIpInterfaceIfIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IfIndex associated with this instance." + ::= { agentSwitchIpInterfaceEntry 1 } + + agentSwitchIpInterfaceIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IpAddress assigned to this interface. When setting this value, + the value of agentSwitchIpInterfaceNetMask must be set at the same time." + ::= { agentSwitchIpInterfaceEntry 2 } + + agentSwitchIpInterfaceNetMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The NetMask assigned to this interface. When setting this value, the + value of agentSwitchIpInterfaceIpAddress must be set at the same time." + ::= { agentSwitchIpInterfaceEntry 3 } + + agentSwitchIpInterfaceClearIp OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Sets the interfaces IpAddress and NetMask back to 0.0.0.0" + ::= { agentSwitchIpInterfaceEntry 4 } + + agentSwitchIpInterfaceRoutingMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or disables routing for this interface." + ::= { agentSwitchIpInterfaceEntry 5 } + + agentSwitchIpInterfaceProxyARPMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or disables Proxy ARP for this interface." + ::= { agentSwitchIpInterfaceEntry 6 } + + agentSwitchIpInterfaceMtuValue OBJECT-TYPE + SYNTAX Unsigned32 (0|128..1500) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the MTU value for this interface. If the value returned is 0 + this interface is not enabled for routing. It is not valid to set this + value to 0 if routing is enabled." + ::= { agentSwitchIpInterfaceEntry 7 } + agentSwitchIpInterfaceBandwidth OBJECT-TYPE + SYNTAX Unsigned32 (0|1..10000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the Bandwidth value for this interface. If the value returned is 0 + bandwidth for this interface is not Configured." + ::= { agentSwitchIpInterfaceEntry 8 } + + agentSwitchIpInterfaceUnnumberedIfIndex OBJECT-TYPE + SYNTAX InterfaceIndexOrZero + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If this object is non-zero, it indicates that the interface is unnumbered, + and specifies which interface the address is borrowed from." + ::= { agentSwitchIpInterfaceEntry 9 } + + agentSwitchIpInterfaceIcmpUnreachables OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If this object is enable, it indicates that ICMP unreachables can be sent on this + interface." + ::= { agentSwitchIpInterfaceEntry 10 } + + agentSwitchIpInterfaceIcmpRedirects OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If this object is enable and agentSwitchIpIcmpRedirectsMode is also enable ICMP Redirects + can be sent on this interface." + ::= { agentSwitchIpInterfaceEntry 11 } + + --************************************************************************************** + -- agentSwitchIpRouterDiscoveryTable + -- + --************************************************************************************** + + agentSwitchIpRouterDiscoveryTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchIpRouterDiscoveryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "There is no global administrative flag for router discovery. The global + routing flag (agentSwitchIpRoutingMode) will be used for this purpose. If routing + is disabled, router discovery is disabled as well." + ::= { agentSwitchIpGroup 4 } + + agentSwitchIpRouterDiscoveryEntry OBJECT-TYPE + SYNTAX AgentSwitchIpRouterDiscoveryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { agentSwitchIpRouterDiscoveryIfIndex } + ::= { agentSwitchIpRouterDiscoveryTable 1 } + + AgentSwitchIpRouterDiscoveryEntry ::= SEQUENCE { + agentSwitchIpRouterDiscoveryIfIndex + Integer32, + agentSwitchIpRouterDiscoveryAdvertiseMode + INTEGER, + agentSwitchIpRouterDiscoveryMaxAdvertisementInterval + Integer32, + agentSwitchIpRouterDiscoveryMinAdvertisementInterval + Integer32, + agentSwitchIpRouterDiscoveryAdvertisementLifetime + Integer32, + agentSwitchIpRouterDiscoveryPreferenceLevel + Integer32, + agentSwitchIpRouterDiscoveryAdvertisementAddress + IpAddress + } + + agentSwitchIpRouterDiscoveryIfIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface Number to configure Router Discovery on." + ::= { agentSwitchIpRouterDiscoveryEntry 1 } + + agentSwitchIpRouterDiscoveryAdvertiseMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable router discovery on the interface." + DEFVAL { disable } + ::= { agentSwitchIpRouterDiscoveryEntry 2 } + + agentSwitchIpRouterDiscoveryMaxAdvertisementInterval OBJECT-TYPE + SYNTAX Integer32 (4..1800) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum time allowed between sending router advertisements + from the interface." + DEFVAL { 600 } + ::= { agentSwitchIpRouterDiscoveryEntry 3 } + + agentSwitchIpRouterDiscoveryMinAdvertisementInterval OBJECT-TYPE + SYNTAX Integer32 (3..1800) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Minimum time allowed between sending router advertisements from the interface. + + This value must be less than or equal to + agentSwitchIpRouterDiscoveryMaxAdvertisementInterval." + DEFVAL { 450 } + ::= { agentSwitchIpRouterDiscoveryEntry 4 } + + agentSwitchIpRouterDiscoveryAdvertisementLifetime OBJECT-TYPE + SYNTAX Integer32 (4..9000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Value of lifetime field of router advertsisement sent from + the interface. + + This value must be greater than or equal to + agentSwitchIpRouterDiscoveryMaxAdvertisementInterval." + DEFVAL { 1800 } + ::= { agentSwitchIpRouterDiscoveryEntry 5 } + + agentSwitchIpRouterDiscoveryPreferenceLevel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Preferability of the address as a default router address, + related to other addresses on the same subnet. This is defined + as the larger the number, the higher the preference." + DEFVAL { 0 } + ::= { agentSwitchIpRouterDiscoveryEntry 6 } + + agentSwitchIpRouterDiscoveryAdvertisementAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Address used when sending router advertisements from the interface." + DEFVAL { 'E0000001'H } -- 224.0.0.1 + ::= { agentSwitchIpRouterDiscoveryEntry 7 } + + --************************************************************************************** + -- agentSwitchIpVlanTable + -- + --************************************************************************************** + + agentSwitchIpVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchIpVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { agentSwitchIpGroup 5 } + + agentSwitchIpVlanEntry OBJECT-TYPE + SYNTAX AgentSwitchIpVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Static VLAN for which routing can be enabled/disabled" + INDEX { agentSwitchIpVlanId } + ::= { agentSwitchIpVlanTable 1 } + + AgentSwitchIpVlanEntry ::= SEQUENCE { + agentSwitchIpVlanId + Integer32, + agentSwitchIpVlanIfIndex + Integer32, + agentSwitchIpVlanRoutingStatus + RowStatus + } + + agentSwitchIpVlanId OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Vlan's Id." + ::= { agentSwitchIpVlanEntry 1 } + + agentSwitchIpVlanIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IfIndex associated with this VLAN." + ::= { agentSwitchIpVlanEntry 2 } + + agentSwitchIpVlanRoutingStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of Routing mode per Vlan. + active(1) - Vlan is enabled for routing + createAndGo(4) - Adds Vlan entry for routing + destroy(6) - Removes Vlan from routing" + ::= { agentSwitchIpVlanEntry 3 } + + --************************************************************************************** + -- agentSwitchSecondaryAddressTable + -- + --************************************************************************************** + + agentSwitchSecondaryAddressTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchSecondaryAddressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Contains a list of secondary IP Addresses associated with an interface." + ::= { agentSwitchIpGroup 6 } + + agentSwitchSecondaryAddressEntry OBJECT-TYPE + SYNTAX AgentSwitchSecondaryAddressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A secondary IP Address for a given interface. This IP Address must not + conflict with the IP Address configured in the agentSwitchIpInterfaceTable." + INDEX { agentSwitchIpInterfaceIfIndex, agentSwitchSecondaryIpAddress } + ::= { agentSwitchSecondaryAddressTable 1 } + + AgentSwitchSecondaryAddressEntry ::= SEQUENCE { + agentSwitchSecondaryIpAddress + IpAddress, + agentSwitchSecondaryNetMask + IpAddress, + agentSwitchSecondaryStatus + RowStatus + } + + agentSwitchSecondaryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Secondary IP Address assigned to this interface." + ::= { agentSwitchSecondaryAddressEntry 1 } + + agentSwitchSecondaryNetMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Secondary Net Mask assigned to this interface. This value must be + set during creation, and can not be changed." + ::= { agentSwitchSecondaryAddressEntry 2 } + + agentSwitchSecondaryStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Creates a new entry in the Secondary Address table. + Allowed values are: + + createAndGo(4) - Creates an entry in this table, associating the address + with a given interface. The agentSwitchSecondaryNetMask + object must be set during creation. + + destroy(6) - Removes the associated address from the interface." + ::= { agentSwitchSecondaryAddressEntry 3 } + + --************************************************************************************** + -- agentSwitchHelperAddressTable + -- + --************************************************************************************** + agentSwitchHelperAddressTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchHelperAddressEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "Replaced by agentSwitchIntfIpHelperAddressTable." + ::= { agentSwitchIpGroup 7} + + agentSwitchHelperAddressEntry OBJECT-TYPE + SYNTAX AgentSwitchHelperAddressEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "A Helper IP Address for a given interface." + INDEX { agentSwitchIpInterfaceIfIndex, agentSwitchHelperIpAddress } + ::= { agentSwitchHelperAddressTable 1 } + + AgentSwitchHelperAddressEntry ::= SEQUENCE { + agentSwitchHelperIpAddress + IpAddress, + agentSwitchHelperStatus + RowStatus + } + + agentSwitchHelperIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "The Helper IP Address assigned to this interface." + ::= { agentSwitchHelperAddressEntry 1 } + + agentSwitchHelperStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "Creates a new entry in the Helper Address table. + Allowed values are: + + createAndGo(4) - Creates an entry in this table, associating the address + with a given interface. The agentSwitchHelperNetMask + object must be set during creation. + + destroy(6) - Removes the associated address from the interface." + ::= { agentSwitchHelperAddressEntry 2 } + + + --************************************************************************************** + -- agentSwitchIpIcmpGroup + -- + --************************************************************************************** + agentSwitchIpIcmpControlGroup OBJECT IDENTIFIER ::= { agentSwitchIpGroup 8} + agentSwitchIpIcmpEchoReplyMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Sets the administrative Echo Reply Mode." + ::= { agentSwitchIpIcmpControlGroup 1 } + + agentSwitchIpIcmpRedirectsMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Sets the administrative Mode for sending Redirects. " + ::= { agentSwitchIpIcmpControlGroup 2 } + + agentSwitchIpIcmpRateLimitInterval OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specifies the time interval between tokens being placed in the bucket for + ICMP Ratelimit." + ::= { agentSwitchIpIcmpControlGroup 3 } + + agentSwitchIpIcmpRateLimitBurstSize OBJECT-TYPE + SYNTAX Integer32 (1..200) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specifies the number of tokens to be placed after timeout." + ::= { agentSwitchIpIcmpControlGroup 4 } + + --************************************************************************************** + -- agentSwitchIntfIpHelperAddressTable + -- + --************************************************************************************** + agentSwitchIntfIpHelperAddressTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchIntfIpHelperAddressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Contains a list of IP helper addresses associated with an interface." + ::= { agentSwitchIpGroup 10} + + agentSwitchIntfIpHelperAddressEntry OBJECT-TYPE + SYNTAX AgentSwitchIntfIpHelperAddressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An IP helper address for a given interface." + INDEX { agentSwitchIpInterfaceIfIndex, agentSwitchIntfIpHelperUdpPort, agentSwitchIntfIpHelperIpAddress } + ::= { agentSwitchIntfIpHelperAddressTable 1 } + + AgentSwitchIntfIpHelperAddressEntry ::= SEQUENCE { + agentSwitchIntfIpHelperIpAddress + IpAddress, + agentSwitchIntfIpHelperUdpPort + Unsigned32, + agentSwitchIntfIpHelperDiscard + TruthValue, + agentSwitchIntfIpHelperHitCount + Unsigned32, + agentSwitchIntfIpHelperStatus + RowStatus + } + + agentSwitchIntfIpHelperIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An IP helper address for packets received on this interface. + An address of 0.0.0.0 identifies the entry as a discard entry. + Packets that match a discard entry are dropped." + ::= { agentSwitchIntfIpHelperAddressEntry 1 } + + agentSwitchIntfIpHelperUdpPort OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "UDP port number. Received packets with this destination UDP port + number are forwarded to the helper address in this entry." + ::= { agentSwitchIntfIpHelperAddressEntry 2 } + + agentSwitchIntfIpHelperDiscard OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "Variable obsoleted. To create a discard entry, set the + helper address to 0.0.0.0." + ::= { agentSwitchIntfIpHelperAddressEntry 3 } + + agentSwitchIntfIpHelperHitCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times a packet has been forwarded or discarded according to this entry." + ::= { agentSwitchIntfIpHelperAddressEntry 4 } + + agentSwitchIntfIpHelperStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Creates a new entry in the Helper Address table. + Allowed values are: + + createAndGo(4) - Creates an IP helper entry in this table. + + destroy(6) - Removes the IP helper entry." + ::= { agentSwitchIntfIpHelperAddressEntry 5 } + + --************************************************************************************** + -- agentRouterRipConfigGroup + -- + --************************************************************************************** + + agentRouterRipConfigGroup OBJECT IDENTIFIER ::= { fastPathRouting 3 } + + agentRouterRipAdminState OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Sets the administrative mode of RIP in the router." + ::= { agentRouterRipConfigGroup 1 } + + agentRouterRipSplitHorizonMode OBJECT-TYPE + SYNTAX INTEGER { + none(1), + simple(2), + poisonReverse(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Sets the RIP split horizon operating mode in the router. + A value of none(1) means split horizon processing is + disabled. When set to simple(2), the simple split + horizon technique is used. When set to poisonReverse(3), + the split horizon with poison reverse technique is used. + The default split horizon mode is simple(2)." + DEFVAL { simple } + ::= { agentRouterRipConfigGroup 2 } + + agentRouterRipAutoSummaryMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Sets the RIP auto summarization mode in the router. + A value of enable(1) means that routes advertized by + this RIP router are combined, or summarized, whenever + possible into aggregates. When set to disable(2), + routes are not aggregated in RIP updates generated + by this router. The default auto summary mode is + enable(1)." + DEFVAL { enable } + ::= { agentRouterRipConfigGroup 3 } + + agentRouterRipHostRoutesAcceptMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Sets the RIP host route acceptance mode in the router. + A value of enable(1) means that host routes advertized + to this RIP router will be accepted (learned) into its + routing table. When set to disable(2), host routes + advertized in RIP updates from neighboring routers + are ignored. The default host routes accept mode is + enable(1)." + DEFVAL { enable } + ::= { agentRouterRipConfigGroup 4 } + + + --************************************************************************************ + agentRouterRipDefaultMetric OBJECT-TYPE + SYNTAX Integer32 (1..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Default metric of redistributed routes, when RIP redistributes + from other protocols." + ::= { agentRouterRipConfigGroup 5 } + + agentRouterRipDefaultMetricConfigured OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flag to determine whether RIP default-metric is configured or not." + ::= { agentRouterRipConfigGroup 6 } + + agentRouterRipDefaultInfoOriginate OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flag to determine, whether RIP can advertise a default-route learned + from another protocol." + DEFVAL { false } + ::= { agentRouterRipConfigGroup 7 } + + -- Agent RIP Route-redistribution table. This table contains, one entry per + -- source(bgp, ospf, static, connected) from which BGP redistributes routes. + + agentRipRouteRedistTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentRipRouteRedistEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains the MIB objects required to configure + route-redistribution for RIP. Here, RIP is the Destination + protocol and the source protocols can be any of : BGP, OSPF, + Static, Connected." + ::= { agentRouterRipConfigGroup 8 } + + agentRipRouteRedistEntry OBJECT-TYPE + SYNTAX AgentRipRouteRedistEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { agentRipRouteRedistSource } + ::= { agentRipRouteRedistTable 1 } + + AgentRipRouteRedistEntry ::= SEQUENCE { + agentRipRouteRedistSource + INTEGER, + agentRipRouteRedistMode + INTEGER, + agentRipRouteRedistMetric + Integer32, + agentRipRouteRedistMetricConfigured + TruthValue, + agentRipRouteRedistMatchInternal + INTEGER, + agentRipRouteRedistMatchExternal1 + INTEGER, + agentRipRouteRedistMatchExternal2 + INTEGER, + agentRipRouteRedistMatchNSSAExternal1 + INTEGER, + agentRipRouteRedistMatchNSSAExternal2 + INTEGER, + agentRipRouteRedistDistList + Unsigned32, + agentRipRouteRedistDistListConfigured + TruthValue + } + + agentRipRouteRedistSource OBJECT-TYPE + SYNTAX INTEGER{ + connected(1), + static(2), + ospf(3), + bgp(4) + } + + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Source route, from which RIP can redistribute routes. + This object also acts as the identifier for the + RIP redistribution Table entry." + ::= { agentRipRouteRedistEntry 1 } + + agentRipRouteRedistMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "User enabels/disables route-redistribution for a particular source + protocol." + DEFVAL { disable } + ::= { agentRipRouteRedistEntry 2 } + + agentRipRouteRedistMetric OBJECT-TYPE + SYNTAX Integer32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Metric used for redistributing a particular source protocol route + into RIP." + ::= { agentRipRouteRedistEntry 3 } + + agentRipRouteRedistMetricConfigured OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flag to determine whether RIP redistribute-metric is configured or not." + ::= { agentRipRouteRedistEntry 4 } + + + agentRipRouteRedistMatchInternal OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2), + not-applicable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If this flag is true, RIP redistributes OSPF internal routes. + It will be non-applicable, when source protocol is other than ospf." + ::= { agentRipRouteRedistEntry 5 } + + agentRipRouteRedistMatchExternal1 OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2), + not-applicable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If this flag is true, RIP redistributes OSPF External1 routes. + It will be non-applicable, when source protocol is other than ospf." + ::= { agentRipRouteRedistEntry 6 } + + agentRipRouteRedistMatchExternal2 OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2), + not-applicable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If this flag is true, RIP redistributes OSPF External2 routes. + It will be non-applicable, when source protocol is other than ospf." + ::= { agentRipRouteRedistEntry 7 } + + agentRipRouteRedistMatchNSSAExternal1 OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2), + not-applicable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If this flag is true, RIP redistributes OSPF NSSA-External1 routes. + It will be non-applicable, when source protocol is other than ospf." + ::= { agentRipRouteRedistEntry 8 } + + agentRipRouteRedistMatchNSSAExternal2 OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2), + not-applicable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If this flag is true, RIP redistributes OSPF NSSA-External2 routes. + It will be non-applicable, when source protocol is other than ospf." + ::= { agentRipRouteRedistEntry 9 } + + agentRipRouteRedistDistList OBJECT-TYPE + SYNTAX Unsigned32 (1..199) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Access-list number of the access-list, which filters routes received + from a source-protocol." + ::= { agentRipRouteRedistEntry 10 } + + agentRipRouteRedistDistListConfigured OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flag to determine whether Access-list is configured or not." + ::= { agentRipRouteRedistEntry 11 } + + + + + -- The RIP Interface Configuration Table (augmented information). + + agentRip2IfConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentRip2IfConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of subnets which require separate + configuration in RIP. Augments rip2IfConfTable + in the RIPv2-MIB." + ::= { agentRouterRipConfigGroup 9 } + + agentRip2IfConfEntry OBJECT-TYPE + SYNTAX AgentRip2IfConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Single Routing Domain in a single Subnet. + Augments rip2IfConfEntry in RIPv2-MIB." + AUGMENTS { rip2IfConfEntry } + ::= { agentRip2IfConfTable 1 } + + AgentRip2IfConfEntry ::= + SEQUENCE { + agentRip2IfConfAuthKeyId + INTEGER + } + + agentRip2IfConfAuthKeyId OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The identifier for the authentication key used + on this interface. This field is only meaningful + when the RIPv2-MIB rip2IfConfAuthType is md5(3); + otherwise, the value is not used." + ::= { agentRip2IfConfEntry 1 } + + agentRouterRipRoutePref OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The route preference, sometimes called administrative distance, for RIP routes. + A route with a preference of 255 is considered unreachable." + DEFVAL { 120 } + ::= { agentRouterRipConfigGroup 10 } + + + --************************************************************************************** + -- agentRouterOspfConfigGroup + -- + --************************************************************************************** + + agentRouterOspfConfigGroup OBJECT IDENTIFIER ::= { fastPathRouting 4 } + + --*********************************************************************** + agentOspfDefaultMetric OBJECT-TYPE + SYNTAX Integer32 (1..16777214) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Default metric of redistributed routes, when OSPF redistributes + from other protocols." + ::= { agentRouterOspfConfigGroup 1 } + + agentOspfDefaultMetricConfigured OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flag to determine whether OSPF default-metric is configured or not." + ::= { agentRouterOspfConfigGroup 2 } + + + agentOspfDefaultInfoOriginate OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flag to determine, whether OSPF can advertise a default-route learned + from another protocol." + DEFVAL { false } + ::= { agentRouterOspfConfigGroup 3 } + + agentOspfDefaultInfoOriginateAlways OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "When this flag is true, the router advertises 0.0.0.0/0.0.0.0 always. + Without this option, OSPF will only advertise 0.0.0.0/0.0.0.0 if the + router's forwarding table contains a default route." + DEFVAL { false } + ::= { agentRouterOspfConfigGroup 4 } + + agentOspfDefaultInfoOriginateMetric OBJECT-TYPE + SYNTAX Integer32 (0|1..16777214) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Metric of the default route, which OSPF advertises when learned from + other protocol. + (0) indicates that the parameter is not configured, this value should not be set. + Valid range for set is (1..16777214)." + DEFVAL { 10 } + ::= { agentRouterOspfConfigGroup 5 } + + agentOspfDefaultInfoOriginateMetricConfigured OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flag to determine whether OSPF default-info originate metric + is configured or not." + ::= { agentRouterOspfConfigGroup 6 } + + agentOspfDefaultInfoOriginateMetricType OBJECT-TYPE + SYNTAX INTEGER { + externalType1(1), + externalType2(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Metric Type of the default route,which OSPF advertises when learned from + other protocol. It can be 1(external type 1) or 2(external type 2)." + DEFVAL { 2 } + ::= { agentRouterOspfConfigGroup 7 } + + -- Agent OSPF Route-redistribution table. This table contains, one entry per + -- source(bgp, rip, static, connected) from which OSPF redistributes routes. + + agentOspfRouteRedistTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentOspfRouteRedistEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains the MIB objects required to configure + route-redistribution for OSPF. Here, OSPF is the Destination + protocol and the source protocols can be any of : BGP, RIP, + Static, Connected." + ::= { agentRouterOspfConfigGroup 8 } + + agentOspfRouteRedistEntry OBJECT-TYPE + SYNTAX AgentOspfRouteRedistEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { agentOspfRouteRedistSource } + ::= { agentOspfRouteRedistTable 1 } + + AgentOspfRouteRedistEntry ::= SEQUENCE { + + agentOspfRouteRedistSource + INTEGER, + agentOspfRouteRedistMode + INTEGER, + agentOspfRouteRedistMetric + Integer32, + agentOspfRouteRedistMetricConfigured + TruthValue, + agentOspfRouteRedistMetricType + INTEGER, + agentOspfRouteRedistTag + Unsigned32, + agentOspfRouteRedistSubnets + TruthValue, + agentOspfRouteRedistDistList + Unsigned32, + agentOspfRouteRedistDistListConfigured + TruthValue + } + + agentOspfRouteRedistSource OBJECT-TYPE + SYNTAX INTEGER{ + connected(1), + static(2), + rip(3), + bgp(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Source protocol, from which OSPF can redistribute routes. + This object also acts as the identifier for the + OSPF redistribution Table entry." + ::= { agentOspfRouteRedistEntry 1 } + + agentOspfRouteRedistMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "User enabels/disables route-redistribution for a particular source + protocol." + DEFVAL { disable } + ::= { agentOspfRouteRedistEntry 2 } + + agentOspfRouteRedistMetric OBJECT-TYPE + SYNTAX Integer32 (0..16777214) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Metric used for redistributing a particular source protocol route + into OSPF." + ::= { agentOspfRouteRedistEntry 3 } + + agentOspfRouteRedistMetricConfigured OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flag to determine whether OSPF redistribute-metric is configured or not." + ::= { agentOspfRouteRedistEntry 4 } + + + agentOspfRouteRedistMetricType OBJECT-TYPE + SYNTAX INTEGER { + externalType1(1), + externalType2(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Metric Type of routes,which OSPF redistributes from other source protocols. + It can be 1(external type 1) or 2(external type 2)." + DEFVAL { externalType2 } + ::= { agentOspfRouteRedistEntry 5 } + + agentOspfRouteRedistTag OBJECT-TYPE + SYNTAX Unsigned32(0..4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "It specifies the tag field in routes redistributed by OSPF." + ::= { agentOspfRouteRedistEntry 6 } + + agentOspfRouteRedistSubnets OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If this value is false, then OSPF will not redistribute subnetted routes." + DEFVAL { false } + ::= { agentOspfRouteRedistEntry 7 } + + agentOspfRouteRedistDistList OBJECT-TYPE + SYNTAX Unsigned32 (1..199) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Access-list number of the access-list, which filters routes received + from a source-protocol." + ::= { agentOspfRouteRedistEntry 8 } + + agentOspfRouteRedistDistListConfigured OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flag to determine whether Access-list is configured or not." + ::= { agentOspfRouteRedistEntry 9 } + + + -- OSPF Interface Table (augmented information) + + agentOspfIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentOspfIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The OSPF Interface Table describes the inter- + faces from the viewpoint of OSPF. Augments + ospfIfTable from the OSPF-MIB." + ::= { agentRouterOspfConfigGroup 9 } + + agentOspfIfEntry OBJECT-TYPE + SYNTAX AgentOspfIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The OSPF Interface Entry describes one inter- + face from the viewpoint of OSPF. Augments + ospfIfEntry in OSPF-MIB." + AUGMENTS { ospfIfEntry } + ::= { agentOspfIfTable 1 } + + AgentOspfIfEntry ::= + SEQUENCE { + agentOspfIfAuthKeyId + INTEGER, + agentOspfIfIpMtuIgnoreFlag + INTEGER, + agentOspfIfPassiveMode + TruthValue, + agentOspfIfAdvertiseSecondaries + INTEGER + } + + agentOspfIfAuthKeyId OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The identifier for the authentication key used + on this interface. This field is only meaningful + when the OSPF-MIB ospfIfAuthType is md5(2); + otherwise, the value is not used." + ::= { agentOspfIfEntry 1 } + + agentOspfIfIpMtuIgnoreFlag OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the IP MTU Ignore Flag value for this OSPF interface." + ::= { agentOspfIfEntry 2 } + + agentOspfIfPassiveMode OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flag to determine whether the interface is passive. + A passive interface will not participate in the OSPF + adjacency formation." + DEFVAL { false } + ::= { agentOspfIfEntry 3 } + + agentOspfIfAdvertiseSecondaries OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the advertisability of the secondary addresses + configured on this interface." + ::= { agentOspfIfEntry 4 } + + -- OSPF Virtual Interface Table (augmented information) + + agentOspfVirtIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentOspfVirtIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about this router's virtual inter- + faces. Augments ospfVirtIfTable from the OSPF-MIB." + ::= { agentRouterOspfConfigGroup 10 } + + agentOspfVirtIfEntry OBJECT-TYPE + SYNTAX AgentOspfVirtIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a single Virtual Interface. + Augments ospfVirtIfEntry in OSPF-MIB." + AUGMENTS { ospfVirtIfEntry } + ::= { agentOspfVirtIfTable 1 } + + AgentOspfVirtIfEntry ::= + SEQUENCE { + agentOspfVirtIfAuthKeyId + INTEGER + } + + agentOspfVirtIfAuthKeyId OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The identifier for the authentication key used + on this virtual interface. This field is only meaningful + when the OSPF-MIB ospfVirtIfAuthType is md5(2); + otherwise, the value is not used." + ::= { agentOspfVirtIfEntry 1 } + + + --************************************************************************************** + + agentRouterOspfRFC1583CompatibilityMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "From RFC2328: + Controls the preference rules used in Section 16.4 when + choosing among multiple AS-external-LSAs advertising the + same destination. When set to 'enabled', the preference + rules remain those specified by RFC 1583 ([Ref9]). When set + to 'disabled', the preference rules are those stated in + + Section 16.4.1, which prevent routing loops when AS- + external-LSAs for the same destination have been originated + from different areas. Set to 'enabled' by default. + + In order to minimize the chance of routing loops, all OSPF + routers in an OSPF routing domain should have + RFC1583Compatibility set identically. When there are routers + present that have not been updated with the functionality + specified in Section 16.4.1 of this memo, all routers should + have RFC1583Compatibility set to 'enabled'. Otherwise, all + routers should have RFC1583Compatibility set to 'disabled', + preventing all routing loops." + DEFVAL { enable } + ::= { agentRouterOspfConfigGroup 11 } + + agentOspfSpfDelayTime OBJECT-TYPE + SYNTAX SpfTimerRange + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Delay time (in seconds) between when OSPF + receives a topology change and when it + starts an SPF calculation. It can be an + integer from 0 to 65535. The default + time is 5 seconds. A value of 0 means + that there is no delay; that is, the + SPF calculation is started immediately." + DEFVAL { 5 } + ::= { agentRouterOspfConfigGroup 12 } + + agentOspfSpfHoldTime OBJECT-TYPE + SYNTAX SpfTimerRange + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Minimum time (in seconds) between two + consecutive SPF calculations. It can + be an integer from 0 to 65535. The + default time is 10 seconds. A value + of 0 means that there is no delay; + that is, two SPF calculations can + be done, one immediately after the + other." + DEFVAL { 10 } + ::= { agentRouterOspfConfigGroup 13 } + + agentOspfAutoCostRefBw OBJECT-TYPE + SYNTAX AutoCostRefBw + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Auto cost refernece bandwidth of the + router interafaces for ospf metric calculations. + It can be an integer from 1 to 4294967. The + default reference bandwidth is 100 Mbps." + DEFVAL { 100 } + ::= { agentRouterOspfConfigGroup 14 } + + --************************************************************************************** + -- Following OSPF MIB general group objects/tables are added . + -- These contain opaque related tables and scalars. + --************************************************************************************** + agentOspfOpaqueLsaSupport OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The router's support for Opaque LSA types. + This object is persistent and when written + the entity SHOULD save the change to non-volatile + storage." + REFERENCE + "The OSPF Opaque LSA Option" + ::= { agentRouterOspfConfigGroup 15 } + + + -- OSPF Type10 (Area Opaque) Link State Database + + agentOspfAreaOpaqueLsdbTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentOspfAreaOpaqueLsdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The OSPF Process's Area Link State Database (LSDB). + The LSDB contains type-10 Link State Advertisements + from throughout the areas that the device is attached to." + REFERENCE + "OSPF Version 2, Section 12 Link State Advertisements" + ::= { agentRouterOspfConfigGroup 16 } + + agentOspfAreaOpaqueLsdbEntry OBJECT-TYPE + SYNTAX AgentOspfAreaOpaqueLsdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A single AreaOpaque Link State Advertisement." + INDEX { agentOspfAreaOpaqueLsdbAreaId, agentOspfAreaOpaqueLsdbType, + agentOspfAreaOpaqueLsdbLsid, agentOspfAreaOpaqueLsdbRouterId } + ::= { agentOspfAreaOpaqueLsdbTable 1 } + + AgentOspfAreaOpaqueLsdbEntry ::= + SEQUENCE { + agentOspfAreaOpaqueLsdbAreaId + IpAddress, + agentOspfAreaOpaqueLsdbType + INTEGER, + agentOspfAreaOpaqueLsdbLsid + IpAddress, + agentOspfAreaOpaqueLsdbRouterId + IpAddress, + agentOspfAreaOpaqueLsdbSequence + Integer32, + agentOspfAreaOpaqueLsdbAge + Integer32, + agentOspfAreaOpaqueLsdbChecksum + Integer32, + agentOspfAreaOpaqueLsdbAdvertisement + OCTET STRING + } + + agentOspfAreaOpaqueLsdbAreaId OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 32 bit identifier of the Area from which + the LSA was received." + REFERENCE + "OSPF Version 2, Appendix C.2 Area parameters" + ::= { agentOspfAreaOpaqueLsdbEntry 1 } + + agentOspfAreaOpaqueLsdbType OBJECT-TYPE + SYNTAX INTEGER { + areaOpaqueLink (10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the link state advertisement. + Each link state type has a separate advertisement + format." + REFERENCE + "OSPF Version 2, Appendix A.4.1 The Link State + Advertisement header" + ::= { agentOspfAreaOpaqueLsdbEntry 2 } + + agentOspfAreaOpaqueLsdbLsid OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Link State ID is an LS Type Specific field + containing either a Router ID or an IP Address; + it identifies the piece of the routing domain + that is being described by the advertisement." + REFERENCE + "OSPF Version 2, Section 12.1.4 Link State ID" + ::= { agentOspfAreaOpaqueLsdbEntry 3 } + + agentOspfAreaOpaqueLsdbRouterId OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 32 bit number that uniquely identifies the + originating router in the Autonomous System." + REFERENCE + "OSPF Version 2, Appendix C.1 Global parameters" + ::= { agentOspfAreaOpaqueLsdbEntry 4 } + + agentOspfAreaOpaqueLsdbSequence OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sequence number field is a signed 32-bit + integer. It starts with the value '80000001'h, + or -'7FFFFFFF'h, and increments until '7FFFFFFF'h. + Thus, a typical sequence number will be very negative. + It is used to detect old and duplicate link state + advertisements. The space of sequence numbers is linearly + ordered. The larger the sequence number the more recent + the advertisement." + REFERENCE + "OSPF Version 2, Section 12.1.6 LS sequence + number" + ::= { agentOspfAreaOpaqueLsdbEntry 5 } + + agentOspfAreaOpaqueLsdbAge OBJECT-TYPE + SYNTAX Integer32 -- Should be 0..MaxAge, except when + -- doNotAge bit is set + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This field is the age of the link state advertisement + in seconds." + REFERENCE + "OSPF Version 2, Section 12.1.1 LS age" + ::= { agentOspfAreaOpaqueLsdbEntry 6 } + + agentOspfAreaOpaqueLsdbChecksum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This field is the checksum of the complete contents of + the advertisement, excepting the age field. The age field + is excepted so that an advertisement's age can be + incremented without updating the checksum. The checksum + used is the same that is used for ISO connectionless + datagrams; it is commonly referred to as the Fletcher + checksum." + REFERENCE + "OSPF Version 2, Section 12.1.7 LS checksum" + ::= { agentOspfAreaOpaqueLsdbEntry 7 } + + agentOspfAreaOpaqueLsdbAdvertisement OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..65535)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The entire Link State Advertisement, including + its header. + Note that for variable length LSAs, SNMP agents + may not be able to return the largest string size" + REFERENCE + "OSPF Version 2, Section 12 Link State Advertisements" + ::= { agentOspfAreaOpaqueLsdbEntry 8 } + + -- OSPF Link State Database, Link-Local for non-virtual links + + + agentOspfLocalLsdbTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentOspfLocalLsdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The OSPF Process's Link-Local Link State Database + for non-virtual links. + This table is identical to the OSPF LSDB Table + in format, but contains only Link-Local Link State + Advertisements for non-virtual links. The purpose is + to allow Link-Local LSAs to be displayed for each + non-virtual interface. This table is implemented to + support type-9 LSAs which are defined + in 'The OSPF Opaque LSA Option'." + REFERENCE + "OSPF Version 2, Section 12 Link State + Advertisements and The OSPF Opaque LSA Option" + ::= { agentRouterOspfConfigGroup 17 } + + agentOspfLocalLsdbEntry OBJECT-TYPE + SYNTAX AgentOspfLocalLsdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A single Link State Advertisement." + INDEX { agentOspfLocalLsdbIpAddress, agentOspfLocalLsdbAddressLessIf, + agentOspfLocalLsdbType, agentOspfLocalLsdbLsid, agentOspfLocalLsdbRouterId + } + ::= { agentOspfLocalLsdbTable 1 } + + AgentOspfLocalLsdbEntry ::= + SEQUENCE { + agentOspfLocalLsdbIpAddress + IpAddress, + agentOspfLocalLsdbAddressLessIf + InterfaceIndexOrZero, + agentOspfLocalLsdbType + INTEGER, + agentOspfLocalLsdbLsid + IpAddress, + agentOspfLocalLsdbRouterId + RouterID, + agentOspfLocalLsdbSequence + Integer32, + agentOspfLocalLsdbAge + Integer32, + agentOspfLocalLsdbChecksum + Integer32, + agentOspfLocalLsdbAdvertisement + OCTET STRING + } + + agentOspfLocalLsdbIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP Address of the interface from + which the LSA was received if the interface is + numbered." + REFERENCE + "OSPF Version 2, Appendix C.3 Interface parameters" + ::= { agentOspfLocalLsdbEntry 1 } + + agentOspfLocalLsdbAddressLessIf OBJECT-TYPE + SYNTAX InterfaceIndexOrZero + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Interface Index of the interface from + which the LSA was received if the interface is + unnumbered." + REFERENCE + "OSPF Version 2, Appendix C.3 Interface parameters" + ::= { agentOspfLocalLsdbEntry 2 } + + agentOspfLocalLsdbType OBJECT-TYPE + SYNTAX INTEGER { localOpaqueLink (9) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the link state advertisement. + Each link state type has a separate advertise- + ment format." + REFERENCE + "OSPF Version 2, Appendix A.4.1 The Link State + Advertisement header and " + ::= { agentOspfLocalLsdbEntry 3 } + + agentOspfLocalLsdbLsid OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Link State ID is an LS Type Specific field + containing a 32 bit identifier in IP address format; + it identifies the piece of the routing domain + that is being described by the advertisement." + REFERENCE + "OSPF Version 2, Section 12.1.4 Link State ID" + ::= { agentOspfLocalLsdbEntry 4 } + + agentOspfLocalLsdbRouterId OBJECT-TYPE + SYNTAX RouterID + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 32 bit number that uniquely identifies the + originating router in the Autonomous System." + REFERENCE + "OSPF Version 2, Appendix C.1 Global parameters" + ::= { agentOspfLocalLsdbEntry 5 } + + agentOspfLocalLsdbSequence OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sequence number field is a signed 32-bit + integer. It starts with the value '80000001'h, + or -'7FFFFFFF'h, and increments until '7FFFFFFF'h. + Thus, a typical sequence number will be very negative. + It is used to detect old and duplicate link state + advertisements. The space of sequence numbers is linearly + ordered. The larger the sequence number the more recent + the advertisement." + REFERENCE + "OSPF Version 2, Section 12.1.6 LS sequence + number" + ::= { agentOspfLocalLsdbEntry 6 } + + agentOspfLocalLsdbAge OBJECT-TYPE + SYNTAX Integer32 -- Should be 0..MaxAge, except when + -- doNotAge bit is set + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This field is the age of the link state adver- + tisement in seconds." + REFERENCE + "OSPF Version 2, Section 12.1.1 LS age" + ::= { agentOspfLocalLsdbEntry 7 } + + agentOspfLocalLsdbChecksum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This field is the checksum of the complete + contents of the advertisement, excepting the + age field. The age field is excepted so that + an advertisement's age can be incremented + without updating the checksum. The checksum + used is the same that is used for ISO connec- + tionless datagrams; it is commonly referred to + as the Fletcher checksum." + REFERENCE + "OSPF Version 2, Section 12.1.7 LS checksum" + ::= { agentOspfLocalLsdbEntry 8 } + + agentOspfLocalLsdbAdvertisement OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..65535)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The entire Link State Advertisement, including + its header. + + Note that for variable length LSAs, SNMP agents + may not be able to return the largest string size." + REFERENCE + "OSPF Version 2, Section 12 Link State Adver- + tisements" + ::= { agentOspfLocalLsdbEntry 9 } + + -- OSPF Link State Database, AS-scope + + agentOspfAsLsdbTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentOspfAsLsdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The OSPF Process's AS-scope LSA Link State Database. + The Database contains the AS-scope Link State + Advertisements from throughout the areas that + the device is attached to. + + This table is identical to the OSPF LSDB Table + in format, but contains only AS-scope Link State + Advertisements. The purpose is to allow AS-scope + LSAs to be displayed once for the router rather + than once in each non-stub area." + REFERENCE + "OSPF Version 2, Section 12 Link State Adver- + tisements" + ::= { agentRouterOspfConfigGroup 18 } + + agentOspfAsLsdbEntry OBJECT-TYPE + SYNTAX AgentOspfAsLsdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A single Link State Advertisement." + INDEX { agentOspfAsLsdbType, agentOspfAsLsdbLsid, agentOspfAsLsdbRouterId } + ::= { agentOspfAsLsdbTable 1 } + + AgentOspfAsLsdbEntry ::= + SEQUENCE { + agentOspfAsLsdbType + INTEGER, + agentOspfAsLsdbLsid + IpAddress, + agentOspfAsLsdbRouterId + RouterID, + agentOspfAsLsdbSequence + Integer32, + agentOspfAsLsdbAge + Integer32, + agentOspfAsLsdbChecksum + Integer32, + agentOspfAsLsdbAdvertisement + OCTET STRING + } + + agentOspfAsLsdbType OBJECT-TYPE + SYNTAX INTEGER { + asOpaqueLink (11) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the link state advertisement. + Each link state type has a separate advertise- + ment format." + REFERENCE + "OSPF Version 2, Appendix A.4.1 The Link State + Advertisement header" + ::= { agentOspfAsLsdbEntry 1 } + + agentOspfAsLsdbLsid OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Link State ID is an LS Type Specific field + containing either a Router ID or an IP Address; + it identifies the piece of the routing domain + that is being described by the advertisement." + REFERENCE + "OSPF Version 2, Section 12.1.4 Link State ID" + ::= { agentOspfAsLsdbEntry 2 } + + agentOspfAsLsdbRouterId OBJECT-TYPE + SYNTAX RouterID + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 32 bit number that uniquely identifies the + originating router in the Autonomous System." + REFERENCE + "OSPF Version 2, Appendix C.1 Global parameters" + ::= { agentOspfAsLsdbEntry 3 } + + agentOspfAsLsdbSequence OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sequence number field is a signed 32-bit + integer. It starts with the value '80000001'h, + or -'7FFFFFFF'h, and increments until '7FFFFFFF'h. + Thus, a typical sequence number will be very negative. + It is used to detect old and duplicate link state + advertisements. The space of sequence numbers is linearly + ordered. The larger the sequence number the more recent + the advertisement." + REFERENCE + "OSPF Version 2, Section 12.1.6 LS sequence + number" + ::= { agentOspfAsLsdbEntry 4 } + + agentOspfAsLsdbAge OBJECT-TYPE + SYNTAX Integer32 -- Should be 0..MaxAge, except when + -- doNotAge bit is set + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This field is the age of the link state adver- + tisement in seconds." + REFERENCE + "OSPF Version 2, Section 12.1.1 LS age" + ::= { agentOspfAsLsdbEntry 5 } + + agentOspfAsLsdbChecksum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This field is the checksum of the complete + contents of the advertisement, excepting the + age field. The age field is excepted so that + an advertisement's age can be incremented + without updating the checksum. The checksum + used is the same that is used for ISO connec- + tionless datagrams; it is commonly referred to + as the Fletcher checksum." + REFERENCE + "OSPF Version 2, Section 12.1.7 LS checksum" + ::= { agentOspfAsLsdbEntry 6 } + + agentOspfAsLsdbAdvertisement OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..65535)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The entire Link State Advertisement, including + its header." + REFERENCE + "OSPF Version 2, Section 12 Link State Adver- + tisements. + Note that for variable length LSAs, SNMP agents + may not be able to return the largest string size." + ::= { agentOspfAsLsdbEntry 7 } + + agentOspfDefaultPassiveMode OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Flag to determine, whether all the interfaces are passive interfaces + by default. A passive interface will not participate in the OSPF + adjacency formation." + DEFVAL { false } + ::= { agentRouterOspfConfigGroup 19 } + + agentOspfRoutePrefIntraArea OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The route preference, sometimes called administrative distance, for intra-area OSPFv2 routes. + A route with a preference of 255 is considered unreachable." + DEFVAL { 110 } + ::= { agentRouterOspfConfigGroup 20 } + + agentOspfRoutePrefInterArea OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The route preference, sometimes called administrative distance, for inter-area OSPFv2 routes. + A route with a preference of 255 is considered unreachable." + DEFVAL { 110 } + ::= { agentRouterOspfConfigGroup 21 } + + agentOspfRoutePrefExternal OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The route preference, sometimes called administrative distance, for external OSPFv2 routes. + A route with a preference of 255 is considered unreachable." + DEFVAL { 110 } + ::= { agentRouterOspfConfigGroup 22 } + + + --************************************************************************************** + -- agentSnmpTrapFlagsConfigGroupLayer3 + -- + --************************************************************************************** + agentSnmpTrapFlagsConfigGroupLayer3 OBJECT IDENTIFIER ::= { fastPathRouting 5 } + + agentSnmpVRRPNewMasterTrapFlag OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This flag enables the sending of VRRP new master notification + traps." + ::= { agentSnmpTrapFlagsConfigGroupLayer3 1 } + + agentSnmpVRRPAuthFailureTrapFlag OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This flag enables the sending of VRRP authentication failure + notification traps." + ::= { agentSnmpTrapFlagsConfigGroupLayer3 2 } + --************************************************************************************** + -- agentBootpDhcpRelayGroup + -- + --************************************************************************************** + + agentBootpDhcpRelayGroup OBJECT IDENTIFIER ::= { fastPathRouting 6 } + + agentBootpDhcpRelayMaxHopCount OBJECT-TYPE + SYNTAX Integer32 (1..16) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The BOOTP/DHCP Max Hop Count. + The relay agent silently discards BOOTREQUEST messages whose hops field exceeds the value 16 + assuming that the request is looped through the intermediate agents. The default value is 4." + DEFVAL { 4 } + ::= { agentBootpDhcpRelayGroup 1 } + + agentBootpDhcpRelayForwardingIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "DHCP server addresses are now configured through IP helper." + ::= { agentBootpDhcpRelayGroup 2 } + + agentBootpDhcpRelayForwardMode OBJECT-TYPE + SYNTAX INTEGER { enable(1), disable(2) } + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "The DHCP relay admin mode is replaced by the IP helper admin mode." + ::= { agentBootpDhcpRelayGroup 3 } + + agentBootpDhcpRelayMinWaitTime OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The BOOTP/DHCP Minimum Wait Time. + When the BOOTP relay agent receives a BOOTREQUEST message, it MAY use the value of the 'secs' + (seconds since client began booting) field of the request as a factor in deciding whether to + relay the request or not." + ::= { agentBootpDhcpRelayGroup 4 } + + + agentBootpDhcpRelayCircuitIdOptionMode OBJECT-TYPE + SYNTAX INTEGER { enable(1), disable(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The BOOTP/DHCP Circuit ID Option Mode. + This flag is set to enable/disable the network element to add/remove the DHCP Relay agent + Circuit ID sub-options." + ::= { agentBootpDhcpRelayGroup 5 } + + agentBootpDhcpRelayNumOfRequestsReceived OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Replaced by IP helper statistics." + ::= { agentBootpDhcpRelayGroup 6 } + + + agentBootpDhcpRelayNumOfRequestsForwarded OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Replaced by IP helper statistics." + ::= { agentBootpDhcpRelayGroup 7 } + + + agentBootpDhcpRelayNumOfDiscards OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Replaced by IP helper statistics." + ::= { agentBootpDhcpRelayGroup 8 } + + + + --************************************************************************************** + -- agentECMPGroup + -- + --************************************************************************************** + + agentECMPGroup OBJECT IDENTIFIER ::= { fastPathRouting 7 } + agentECMPOspfMaxPaths OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "It sets the number of paths that OSPF can report for a given destination + where maxpaths is platform-dependent." + DEFVAL { 4 } + ::= { agentECMPGroup 1 } + + --************************************************************************************** + -- agentRouterVrrpConfigGroup + -- + --************************************************************************************** + + agentRouterVrrpConfigGroup OBJECT IDENTIFIER ::= { fastPathRouting 8 } + + agentRouterVrrpAdminState OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Sets the administrative mode of VRRP in the router." + ::= { agentRouterVrrpConfigGroup 1 } + +--************************************************************************************** +-- agentRouterVrrpConfiguredTable +-- +--************************************************************************************** + agentRouterVrrpConfiguredTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentRouterVrrpConfiguredEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Operations table for a VRRP router which consists of a + sequence (i.e., one or more conceptual rows) of + `agentRouterVrrpConfiguredEntry' items." + ::= { agentRouterVrrpConfigGroup 2 } + + agentRouterVrrpConfiguredEntry OBJECT-TYPE + SYNTAX AgentRouterVrrpConfiguredEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the table contains operational priority that is + associated with a virtual router." + INDEX { ifIndex, vrrpOperVrId } + ::= { agentRouterVrrpConfiguredTable 1 } + + AgentRouterVrrpConfiguredEntry ::= + SEQUENCE { + agentRouterVrrpConfiguredPriority + Integer32 + } + + agentRouterVrrpConfiguredPriority OBJECT-TYPE + SYNTAX Integer32 (1..254) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object specifies the value set by the vrrpOperPriority object. + The GET operation on 'vrrpOperPriority' will be affected by both the + tracking process and the configured priority set by the vrrpOperPriority object." + ::= { agentRouterVrrpConfiguredEntry 1 } + + +--************************************************************************************** +-- agentRouterVrrpOperTable +-- +--************************************************************************************** + agentVrrpOperations OBJECT IDENTIFIER ::= { fastPathRouting 9 } + agentRouterVrrpOperTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentRouterVrrpOperEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "Operations table for a VRRP router which consists of a + sequence (i.e., one or more conceptual rows) of + `agentRouterVrrpOperEntry' items." + ::= { agentVrrpOperations 1 } + + agentRouterVrrpOperEntry OBJECT-TYPE + SYNTAX AgentRouterVrrpOperEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "An entry in the table contains operational priority that is + associated with a virtual router." + INDEX { ifIndex, vrrpOperVrId } + ::= { agentRouterVrrpOperTable 1 } + + AgentRouterVrrpOperEntry ::= + SEQUENCE { + agentRouterVrrpOperPriority + Integer32 + } + + agentRouterVrrpOperPriority OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "This object specifies the operational priority of the VRRP router. + This value will be afftected by both the tracking process and the + configured priority set by the vrrpOperPriority object." + ::= { agentRouterVrrpOperEntry 1 } + + + --********************************************************************** + -- agentRouterVrrpTrackGroup + --********************************************************************** + + agentRouterVrrpTrackGroup OBJECT IDENTIFIER ::= { fastPathRouting 10 } + + --********************************************************************** + -- agentRouterVrrpTrackIntfTable + --********************************************************************** + + agentRouterVrrpTrackIntfTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentRouterVrrpTrackIntfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Tracking table for a VRRP router which consists of + agentRouterVrrpTrackIntfEntry items." + ::= { agentRouterVrrpTrackGroup 1 } + + agentRouterVrrpTrackIntfEntry OBJECT-TYPE + SYNTAX AgentRouterVrrpTrackIntfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the table contains tracked IP interfaces + associated with a virtual router." + INDEX { ifIndex, vrrpOperVrId, agentRouterVrrpTrackIntf } + ::= { agentRouterVrrpTrackIntfTable 1 } + + AgentRouterVrrpTrackIntfEntry ::= + SEQUENCE { + agentRouterVrrpTrackIntf + InterfaceIndex, + agentRouterVrrpTrackIfPrioDec + Integer32, + agentRouterVrrpTrackIfState + TruthValue, + agentRouterVrrpTrackIfStatus + RowStatus + } + + agentRouterVrrpTrackIntf OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the interface to be tracked." + ::= { agentRouterVrrpTrackIntfEntry 1 } + + agentRouterVrrpTrackIfPrioDec OBJECT-TYPE + SYNTAX Integer32 (1..254) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the decrement priority of the + VRRP router." + DEFVAL { 10 } + ::= { agentRouterVrrpTrackIntfEntry 2 } + + agentRouterVrrpTrackIfState OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object specifies the IP state of the tracked interface + for the virtual router. " + ::= { agentRouterVrrpTrackIntfEntry 3 } + + agentRouterVrrpTrackIfStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status variable, used in accordance to installation + and removal conventions for conceptual rows. To create a row in + this table, a manager sets this object to either createAndGo(4) + or createAndWait(5). The newly created row will be in active state later. + To destroy the row set this object to destroy." + ::= { agentRouterVrrpTrackIntfEntry 4 } + + + --********************************************************************** + -- agentRouterVrrpTrackRouteTable + --********************************************************************** + + agentRouterVrrpTrackRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentRouterVrrpTrackRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Tracking table for a VRRP router which consists of a + 'agentRouterVrrpTrackRouteEntry' items." + ::= { agentRouterVrrpTrackGroup 2 } + + agentRouterVrrpTrackRouteEntry OBJECT-TYPE + SYNTAX AgentRouterVrrpTrackRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the table contains tracked Routes + associated with a virtual router." + INDEX { ifIndex, vrrpOperVrId, agentRouterVrrpTrackRtPfx, + agentRouterVrrpTrackRtPfxLen } + ::= { agentRouterVrrpTrackRouteTable 1 } + + AgentRouterVrrpTrackRouteEntry ::= + SEQUENCE { + agentRouterVrrpTrackRtPfx + IpAddress, + agentRouterVrrpTrackRtPfxLen + Integer32, + agentRouterVrrpTrackRtPrioDec + Integer32, + agentRouterVrrpTrackRtReachable + TruthValue, + agentRouterVrrpTrackRtStatus + RowStatus + } + + agentRouterVrrpTrackRtPfx OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the prefix of the route to be tracked." + ::= { agentRouterVrrpTrackRouteEntry 1 } + + agentRouterVrrpTrackRtPfxLen OBJECT-TYPE + SYNTAX Integer32 (0..32) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies prefix length of the route to be tracked." + ::= { agentRouterVrrpTrackRouteEntry 2 } + + agentRouterVrrpTrackRtPrioDec OBJECT-TYPE + SYNTAX Integer32 (1..254) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the decrement priority of the + VRRP router." + DEFVAL { 10 } + ::= { agentRouterVrrpTrackRouteEntry 3 } + + agentRouterVrrpTrackRtReachable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object specifies the reachability of the + tracked route." + ::= { agentRouterVrrpTrackRouteEntry 4 } + + agentRouterVrrpTrackRtStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status variable, used in accordance to installation + and removal conventions for conceptual rows. To create a row in + this table, a manager sets this object to either createAndGo(4) + or createAndWait(5). The newly created row will be in active state later. + To delete the tracked route set this object to destroy." + ::= { agentRouterVrrpTrackRouteEntry 5 } + + + + --************************************************************************************** + -- ipHelperGroup + -- + --************************************************************************************** + + agentIpHelperGroup OBJECT IDENTIFIER ::= { fastPathRouting 11 } + + agentIpHelperAdminMode OBJECT-TYPE + SYNTAX INTEGER { enable(1), disable(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Administratively enable or disable IP helper." + ::= { agentIpHelperGroup 1 } + + agentDhcpClientMsgsReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Number of DHCP Requests Received. + Total number of DHCP requests received from all clients." + ::= { agentIpHelperGroup 2 } + + agentDhcpClientMsgsRelayed OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Number of DHCP Requests Forwarded. + Total number of DHCP requests relayed to a server." + ::= { agentIpHelperGroup 3 } + + agentDhcpServerMsgsReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of DHCP messages received from a server." + ::= { agentIpHelperGroup 4 } + + agentDhcpServerMsgsRelayed OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of DHCP messages relayed to a server." + ::= { agentIpHelperGroup 5 } + + agentUdpClientMsgsReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of UDP messages received from all clients." + ::= { agentIpHelperGroup 6 } + + agentUdpClientMsgsRelayed OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of UDP messages relayed to a server." + ::= { agentIpHelperGroup 7 } + + --************************************************************************************** + -- agentSwitchIpHelperAddressTable + -- + --************************************************************************************** + agentSwitchIpHelperAddressTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchIpHelperAddressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Contains a list of IP helper addresses configured globally." + ::= { agentIpHelperGroup 8} + + agentSwitchIpHelperAddressEntry OBJECT-TYPE + SYNTAX AgentSwitchIpHelperAddressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An IP Helper address that applies to packets received on any interface." + INDEX { agentSwitchIpHelperAddress, agentSwitchIpHelperUdpPort } + ::= { agentSwitchIpHelperAddressTable 1 } + + AgentSwitchIpHelperAddressEntry ::= SEQUENCE { + agentSwitchIpHelperAddress + IpAddress, + agentSwitchIpHelperUdpPort + Unsigned32, + agentSwitchIpHelperHitCount + Unsigned32, + agentSwitchIpHelperStatus + RowStatus + } + + agentSwitchIpHelperAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP Helper address assigned to this interface." + ::= { agentSwitchIpHelperAddressEntry 1 } + + agentSwitchIpHelperUdpPort OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "UDP port number." + ::= { agentSwitchIpHelperAddressEntry 2 } + + agentSwitchIpHelperHitCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times a packet has been forwarded or discarded according to this entry." + ::= { agentSwitchIpHelperAddressEntry 3 } + + agentSwitchIpHelperStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Creates a new entry in the global IP Helper address table. + Allowed values are: + + createAndGo(4) - Creates an IP helper entry in this table. + + destroy(6) - Removes the IP helper entry." + ::= { agentSwitchIpHelperAddressEntry 4 } + + agentUdpClientMsgsTtlExpired OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of UDP messages received with an expired TTL." + ::= { agentIpHelperGroup 9 } + + agentUdpClientMsgsDiscarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of UDP messages that matched a discard entry." + ::= { agentIpHelperGroup 10 } + + --************************************************************************************** + -- agentInternalVlanGroup + -- + --************************************************************************************** + + agentInternalVlanGroup OBJECT IDENTIFIER ::= { fastPathRouting 12 } + agentInternalVlanBase OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The VLAN ID internally assigned to the first port-based routing interface." + DEFVAL { 4093 } + ::= { agentInternalVlanGroup 1 } + + agentInternalVlanPolicy OBJECT-TYPE + SYNTAX INTEGER { + ascending (0), + descending (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Whether to search up or down from the base VLAN ID for a free VLAN ID to + assign to a port-based routing interface." + DEFVAL { descending } + ::= { agentInternalVlanGroup 2 } + + --**************************************************************************** + -- agentSwitchInternalVlanTable + -- + --***************************************************************************** + agentSwitchInternalVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchInternalVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Contains a list of VLAN IDs used internally for port-based routing interfaces." + ::= { agentInternalVlanGroup 3} + + agentSwitchInternalVlanEntry OBJECT-TYPE + SYNTAX AgentSwitchInternalVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A VLAN ID internally assigned to a port-based routing interface." + INDEX { agentSwitchInternalVlanId } + ::= { agentSwitchInternalVlanTable 1 } + + AgentSwitchInternalVlanEntry ::= SEQUENCE { + agentSwitchInternalVlanId + Integer32, + agentSwitchInternalVlanIfIndex + Integer32 + } + + agentSwitchInternalVlanId OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A VLAN ID internally assigned to a port-based routing interface." + ::= { agentSwitchInternalVlanEntry 1 } + + agentSwitchInternalVlanIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface index of port-based routing interface using this VLAN ID." + ::= { agentSwitchInternalVlanEntry 2 } + +END + diff --git a/mibs/FASTPATH-ROUTING6-MIB.mib b/mibs/FASTPATH-ROUTING6-MIB.mib new file mode 100644 index 0000000..c10768a --- /dev/null +++ b/mibs/FASTPATH-ROUTING6-MIB.mib @@ -0,0 +1,811 @@ +FASTPATH-ROUTING6-MIB DEFINITIONS ::= BEGIN + +-- Broadcom Corporation FastPath Routing MIB +-- Copyright Broadcom Corporation (2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, + Counter32, Unsigned32, Integer32, + Gauge32 FROM SNMPv2-SMI + DisplayString, PhysAddress, TruthValue, TimeStamp, + VariablePointer, RowPointer, RowStatus, MacAddress + FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP, + NOTIFICATION-GROUP FROM SNMPv2-CONF + Ipv6IfIndex, Ipv6Address, Ipv6AddressPrefix, + Ipv6AddressIfIdentifier, + Ipv6IfIndexOrZero FROM IPV6-TC + fastPath FROM BROADCOM-REF-MIB; + + fastPathRoutingIpv6 MODULE-IDENTITY + LAST-UPDATED "200705230000Z" -- 23 May 2007 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 100, Perimeter Park Drive + Morrisville, NC 27560 + Tel: +1 919 865 2700" + DESCRIPTION + "The Broadcom Private MIB for FastPath Ipv6 Routing" + + -- Revision history. + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Broadcom branding related changes." + REVISION + "200509211700Z" -- 21 Sept 2005 12:00 PM EST + DESCRIPTION + "Updated for release" + + ::= { fastPath 30 } + + + --************************************************************************************** + -- agentIpv6Group + -- + --************************************************************************************** + + agentIpv6Group OBJECT IDENTIFIER ::= { fastPathRoutingIpv6 1 } + + agentIpv6RoutingMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Administratively enables/disables ipv6 unicast routing on the switch." + ::= { agentIpv6Group 1 } + + --************************************************************************************** + -- agentIpv6InterfaceTable + -- + --************************************************************************************** + + agentIpv6InterfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentIpv6InterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { agentIpv6Group 2 } + + agentIpv6InterfaceEntry OBJECT-TYPE + SYNTAX AgentIpv6InterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { agentIpv6InterfaceIfIndex } + ::= { agentIpv6InterfaceTable 1 } + + AgentIpv6InterfaceEntry ::= SEQUENCE { + agentIpv6InterfaceIfIndex + Integer32, + agentIpv6InterfaceMtuValue + Unsigned32, + agentIpv6InterfaceDadTransmits + Integer32, + agentIpv6InterfaceLinkLocalOnly + INTEGER, + agentIpv6InterfaceIcmpUnreachables + INTEGER + + } + + agentIpv6InterfaceIfIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IfIndex associated with this instance." + ::= { agentIpv6InterfaceEntry 1 } + + agentIpv6InterfaceMtuValue OBJECT-TYPE + SYNTAX Unsigned32 (0|1280..1500) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the MTU value for this interface.If it is not yet configured, + retrieving the value of this object results in a zero value. + Setting the value zero to this object effectively un-configures the MTU." + ::= { agentIpv6InterfaceEntry 2 } + + agentIpv6InterfaceDadTransmits OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the dad transmits value for this interface." + ::= { agentIpv6InterfaceEntry 3 } + + agentIpv6InterfaceLinkLocalOnly OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "When enabled, interface is capable of ipv6 operation without a global address. + In this case, an eui-64 based link-local address is used. " + DEFVAL { disable } + ::= { agentIpv6InterfaceEntry 4 } + + agentIpv6InterfaceIcmpUnreachables OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If this object is enable, it indicates that ICMPv6 unreachables can be sent on this + interface." + ::= { agentIpv6InterfaceEntry 5 } + + --************************************************************************************** + -- agentIpv6RouterAdvertisementTable + -- + --************************************************************************************** + + agentIpv6RouterAdvertisementTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentIpv6RouterAdvertisementEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "There is no global administrative flag for router advertisement. The global + routing flag (agentIpv6RoutingMode) will be used for this purpose. If routing + is disabled, router advertisement is disabled as well." + ::= { agentIpv6Group 3 } + + agentIpv6RouterAdvertisementEntry OBJECT-TYPE + SYNTAX AgentIpv6RouterAdvertisementEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { agentIpv6RouterAdvertisementIfIndex } + ::= { agentIpv6RouterAdvertisementTable 1 } + + AgentIpv6RouterAdvertisementEntry ::= SEQUENCE { + agentIpv6RouterAdvertisementIfIndex + Integer32, + agentIpv6RouterAdvertisementSuppressMode + INTEGER, + agentIpv6RouterAdvertisementMaxAdvertisementInterval + Integer32, + agentIpv6RouterAdvertisementAdvertisementLifetime + Integer32, + agentIpv6RouterAdvertisementNbrSolicitInterval + Integer32, + agentIpv6RouterAdvertisementReachableTime + Integer32, + agentIpv6RouterAdvertisementManagedFlag + INTEGER, + agentIpv6RouterAdvertisementOtherFlag + INTEGER + } + + agentIpv6RouterAdvertisementIfIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface Number to configure Router Advertisement on." + ::= { agentIpv6RouterAdvertisementEntry 1 } + + agentIpv6RouterAdvertisementSuppressMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable router advertisement suppression on the interface." + DEFVAL { disable } + ::= { agentIpv6RouterAdvertisementEntry 2 } + + agentIpv6RouterAdvertisementMaxAdvertisementInterval OBJECT-TYPE + SYNTAX Integer32 (4..1800) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum time allowed between sending router advertisements + from the interface." + DEFVAL { 600 } + ::= { agentIpv6RouterAdvertisementEntry 3 } + + agentIpv6RouterAdvertisementAdvertisementLifetime OBJECT-TYPE + SYNTAX Integer32 (4..65520) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Value of lifetime field of router advertisement sent from + the interface. + + This value must be greater than or equal to + agentIpv6RouterAdvertisementMaxAdvertisementInterval." + DEFVAL { 1800 } + ::= { agentIpv6RouterAdvertisementEntry 4 } + + agentIpv6RouterAdvertisementNbrSolicitInterval OBJECT-TYPE + SYNTAX Integer32 (0..3600000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Value of retrans time field of router advertisement sent from + the interface. A value of 0 means this router does not specifiy + the interval." + + DEFVAL { 0 } + ::= { agentIpv6RouterAdvertisementEntry 5 } + + agentIpv6RouterAdvertisementReachableTime OBJECT-TYPE + SYNTAX Integer32 (0..3600000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Value of reachable time field of router advertisement sent from + the interface. A value of 0 means this router does not specifiy + the interval." + + DEFVAL { 0 } + ::= { agentIpv6RouterAdvertisementEntry 6 } + + agentIpv6RouterAdvertisementManagedFlag OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Value of managed config field of router advertisement sent from + the interface." + DEFVAL { disable } + ::= { agentIpv6RouterAdvertisementEntry 7 } + + agentIpv6RouterAdvertisementOtherFlag OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Value of other config field of router advertisement sent from + the interface." + DEFVAL { disable } + ::= { agentIpv6RouterAdvertisementEntry 8 } + + + + -- Address Prefix table + + -- The IPv6 Address Prefix table contains information on + -- the entity's IPv6 Address Prefixes that are associated + -- with IPv6 interfaces. + + agentIpv6AddrPrefixTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentIpv6AddrPrefixEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The list of IPv6 address prefixes of + IPv6 interfaces." + ::= { agentIpv6Group 4 } + + agentIpv6AddrPrefixEntry OBJECT-TYPE + SYNTAX AgentIpv6AddrPrefixEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An interface entry containing objects of + a particular IPv6 address prefix." + INDEX { agentIpv6InterfaceIfIndex, + agentIpv6AddrPrefix, + agentIpv6AddrPrefixLength } + ::= { agentIpv6AddrPrefixTable 1 } + + AgentIpv6AddrPrefixEntry ::= SEQUENCE { + agentIpv6AddrPrefix Ipv6AddressPrefix, + agentIpv6AddrPrefixLength INTEGER, + agentIpv6AddrPrefixOnLinkFlag TruthValue, + agentIpv6AddrPrefixAutonomousFlag TruthValue, + agentIpv6AddrPrefixAdvPreferredLifetime Unsigned32, + agentIpv6AddrPrefixAdvValidLifetime Unsigned32 + } + + agentIpv6AddrPrefix OBJECT-TYPE + SYNTAX Ipv6AddressPrefix + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The prefix associated with the this interface." + ::= { agentIpv6AddrPrefixEntry 1 } + + agentIpv6AddrPrefixLength OBJECT-TYPE + SYNTAX INTEGER (0..128) + UNITS "bits" + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The length of the prefix (in bits)." + ::= { agentIpv6AddrPrefixEntry 2 } + + agentIpv6AddrPrefixOnLinkFlag OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object has the value 'true(1)', if this + prefix can be used for on-link determination + and the value 'false(2)' otherwise." + ::= { agentIpv6AddrPrefixEntry 3 } + + agentIpv6AddrPrefixAutonomousFlag OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Autonomous address configuration flag. When + true(1), indicates that this prefix can be used + for autonomous address configuration (i.e. can + be used to form a local interface address). + If false(2), it is not used to autoconfigure + a local interface address." + ::= { agentIpv6AddrPrefixEntry 4 } + + + + + + + agentIpv6AddrPrefixAdvPreferredLifetime OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "It is the length of time in seconds that this + prefix will remain preferred, i.e. time until + deprecation. A value of 4,294,967,295 represents + infinity. + + The address generated from a deprecated prefix + should no longer be used as a source address in + new communications, but packets received on such + an interface are processed as expected." + ::= { agentIpv6AddrPrefixEntry 5 } + + agentIpv6AddrPrefixAdvValidLifetime OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "It is the length of time in seconds that this + prefix will remain valid, i.e. time until + invalidation. A value of 4,294,967,295 represents + infinity. + + The address generated from an invalidated prefix + should not appear as the destination or source + address of a packet." + ::= { agentIpv6AddrPrefixEntry 6 } + + + + + -- the IPv6 Address table + + -- The IPv6 address table contains this node's IPv6 + -- addressing information. + + agentIpv6AddrTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentIpv6AddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table of addressing information relevant to + this node's interface addresses." + ::= { agentIpv6Group 5 } + + + agentIpv6AddrEntry OBJECT-TYPE + SYNTAX AgentIpv6AddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The addressing information for one of this + node's interface addresses." + INDEX { agentIpv6InterfaceIfIndex, agentIpv6AddrAddress } + ::= { agentIpv6AddrTable 1 } + + AgentIpv6AddrEntry ::= + SEQUENCE { + agentIpv6AddrAddress Ipv6Address, + agentIpv6AddrPfxLength INTEGER, + agentIpv6AddrEui64Flag TruthValue, + agentIpv6AddrStatus RowStatus + } + + agentIpv6AddrAddress OBJECT-TYPE + SYNTAX Ipv6Address + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The IPv6 address to which this entry's addressing + information pertains." + ::= { agentIpv6AddrEntry 1 } + + agentIpv6AddrPfxLength OBJECT-TYPE + SYNTAX INTEGER(0..128) + UNITS "bits" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The length of the prefix (in bits) associated with + the IPv6 address of this entry." + ::= { agentIpv6AddrEntry 2 } + + agentIpv6AddrEui64Flag OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object has the value 'true(1)', if this + address uses and eui-64 generated interface identifier and the value + 'false(2)' otherwise." + ::= { agentIpv6AddrEntry 3 } + + agentIpv6AddrStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Creates a new entry in the Address table. + Allowed values are: + + createAndGo(4) - Creates an entry in this table, associating the address + with a given interface. The agentIpv6NetMask + object must be set during creation. + + destroy(6) - Removes the associated address from the interface." + ::= { agentIpv6AddrEntry 4 } + + + + -- IPv6 Static Routing table + + agentIpv6StaticRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentIpv6StaticRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IPv6 Static Routing table. This table contains + an entry for each valid IPv6 static unicast route + that can be used for packet forwarding + determination." + ::= { agentIpv6Group 6 } + + agentIpv6StaticRouteEntry OBJECT-TYPE + SYNTAX AgentIpv6StaticRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A routing entry." + INDEX { agentIpv6StaticRouteDest, + agentIpv6StaticRoutePfxLength, + agentIpv6StaticRouteIfIndex, + agentIpv6StaticRouteNextHop } + ::= { agentIpv6StaticRouteTable 1 } + + AgentIpv6StaticRouteEntry ::= SEQUENCE { + agentIpv6StaticRouteDest Ipv6AddressPrefix, + agentIpv6StaticRoutePfxLength INTEGER, + agentIpv6StaticRouteIfIndex Ipv6IfIndexOrZero, + agentIpv6StaticRouteNextHop Ipv6Address, + agentIpv6StaticRoutePreference INTEGER, + agentIpv6StaticRouteStatus RowStatus + } + + agentIpv6StaticRouteDest OBJECT-TYPE + SYNTAX Ipv6AddressPrefix + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The destination IPv6 address of this route. + This object may not take a Multicast address + value." + ::= { agentIpv6StaticRouteEntry 1 } + + agentIpv6StaticRoutePfxLength OBJECT-TYPE + SYNTAX INTEGER(0..128) + UNITS "bits" + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Indicates the prefix length of the destination + address." + ::= { agentIpv6StaticRouteEntry 2 } + + agentIpv6StaticRouteIfIndex OBJECT-TYPE + SYNTAX Ipv6IfIndexOrZero + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index value which uniquely identifies the local + interface through which the next hop of this + route should be reached. The interface identified + by a particular value of this index is the same + interface as identified by the same value of + ipv6IfIndex. For routes with global address next hop this + value can be zero." + ::= { agentIpv6StaticRouteEntry 3 } + + agentIpv6StaticRouteNextHop OBJECT-TYPE + SYNTAX Ipv6Address + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The address of the next + system en route. " + ::= { agentIpv6StaticRouteEntry 4 } + + + agentIpv6StaticRoutePreference OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The routing preference metric for this route. A lower + value is more preferred." + DEFVAL { 1 } + ::= { agentIpv6StaticRouteEntry 5 } + + agentIpv6StaticRouteStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Creates a new entry in the Address table. + Allowed values are: + + createAndGo(4) - Creates an entry in this table. + + destroy(6) - Removes the associated route from the interface." + ::= { agentIpv6StaticRouteEntry 6 } + + + --************************************************************************************** + -- agentIpv6ServicePortGroup + -- + --************************************************************************************** + + agentIpv6ServicePortGroup OBJECT IDENTIFIER ::= { agentIpv6Group 7 } + + -- IPv6 Service Port Prefix Table + + agentIpv6ServicePortPrefixTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentIpv6ServicePortPrefixEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IPv6 Service Port Prefix Table. This table contains + an entry for each valid IPv6 prefix configured on the + Service Port." + ::= { agentIpv6ServicePortGroup 1 } + + agentIpv6ServicePortPrefixEntry OBJECT-TYPE + SYNTAX AgentIpv6ServicePortPrefixEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An IPv6 Service Port Prefix entry." + INDEX { agentIpv6ServicePortPrefixIndex } + ::= { agentIpv6ServicePortPrefixTable 1 } + + AgentIpv6ServicePortPrefixEntry ::= SEQUENCE { + agentIpv6ServicePortPrefixIndex Unsigned32, + agentIpv6ServicePortPrefix Ipv6Address, + agentIpv6ServicePortPrefixLength Unsigned32 + } + + agentIpv6ServicePortPrefixIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of the Ipv6 Prefix Address configured on the + Service Port. Removal of a row will cause index values + to be reassigned." + ::= { agentIpv6ServicePortPrefixEntry 1 } + + agentIpv6ServicePortPrefix OBJECT-TYPE + SYNTAX Ipv6Address + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Ipv6 Prefix Address configured on the Service Port." + ::= { agentIpv6ServicePortPrefixEntry 2 } + + agentIpv6ServicePortPrefixLength OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The length of the IPv6 Prefix Address." + ::= { agentIpv6ServicePortPrefixEntry 3 } + + -- IPv6 Service Port Default Router Table + + agentIpv6ServicePortDefaultRouterTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentIpv6ServicePortDefaultRouterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IPv6 Service Port Default Router Table. This table contains + an entry for each valid IPv6 Default Router configured on the + Service Port." + ::= { agentIpv6ServicePortGroup 2 } + + agentIpv6ServicePortDefaultRouterEntry OBJECT-TYPE + SYNTAX AgentIpv6ServicePortDefaultRouterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An IPv6 Service Port Default Router entry." + INDEX { agentIpv6ServicePortDefaultRouterIndex } + ::= { agentIpv6ServicePortDefaultRouterTable 1 } + + AgentIpv6ServicePortDefaultRouterEntry ::= SEQUENCE { + agentIpv6ServicePortDefaultRouterIndex Unsigned32, + agentIpv6ServicePortDefaultRouter Ipv6Address + } + + agentIpv6ServicePortDefaultRouterIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of the IPv6 Default Router Address + configured on the Service Port. Removal of a + row will cause index values to be reassigned." + ::= { agentIpv6ServicePortDefaultRouterEntry 1 } + + agentIpv6ServicePortDefaultRouter OBJECT-TYPE + SYNTAX Ipv6Address + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Address of the IPv6 Default Router configured + on the Service Port." + ::= { agentIpv6ServicePortDefaultRouterEntry 2 } + + + -- IPv6 Service Port Neighbor Table + + agentIpv6ServicePortNbrTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentIpv6ServicePortNbrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IPv6 Service Port Neighbor Table. This table contains + an entry for each valid IPv6 Neighbor configured on the + Service Port." + ::= { agentIpv6ServicePortGroup 3 } + + agentIpv6ServicePortNbrEntry OBJECT-TYPE + SYNTAX AgentIpv6ServicePortNbrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An IPv6 Service Port Neighbor entry." + INDEX { agentIpv6ServicePortNbrAddr } + ::= { agentIpv6ServicePortNbrTable 1 } + + AgentIpv6ServicePortNbrEntry ::= SEQUENCE { + agentIpv6ServicePortNbrAddr Ipv6Address, + agentIpv6ServicePortNbrPhysAddr MacAddress, + agentIpv6ServicePortNbrState INTEGER, + agentIpv6ServicePortNbrUpdated TimeStamp, + agentIpv6ServicePortNbrIsRouter TruthValue + + } + + agentIpv6ServicePortNbrAddr OBJECT-TYPE + SYNTAX Ipv6Address + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Ipv6 Address of a neighbor switch visible to the Service Port." + ::= { agentIpv6ServicePortNbrEntry 1 } + + agentIpv6ServicePortNbrPhysAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MacAddress of the neighboring switch." + ::= { agentIpv6ServicePortNbrEntry 2 } + + agentIpv6ServicePortNbrState OBJECT-TYPE + SYNTAX INTEGER { reachable(1), + stale(2), + delay(3), + probe(4), + unknown(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of the neighboring switch: + reachable(1) - The neighbor is reachable by this switch. + stale(2) - Information about the neighbor is scheduled for deletion. + delay(3) - No information has been received from neighbor during delay period. + probe(4) - Switch is attempting to probe for this neighbor. + unknown(6) - Unknown status." + ::= { agentIpv6ServicePortNbrEntry 3 } + + agentIpv6ServicePortNbrUpdated OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The last sysUpTime that this neighbor has been updated." + ::= { agentIpv6ServicePortNbrEntry 4 } + + agentIpv6ServicePortNbrIsRouter OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Returns true(1) if the neighbor machine is a router, + false(2) otherwise." + ::= { agentIpv6ServicePortNbrEntry 5 } + + + --************************************************************************************** + -- agentIpv6IcmpGroup + -- + --************************************************************************************** + + agentIpv6IcmpControlGroup OBJECT IDENTIFIER ::= { agentIpv6Group 8 } + + agentIpv6IcmpRateLimitInterval OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specifies the time interval between tokens being placed in the bucket for + ICMP Ratelimit." + ::= { agentIpv6IcmpControlGroup 1 } + + agentIpv6IcmpRateLimitBurstSize OBJECT-TYPE + SYNTAX Integer32 (1..200) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specifies the number of tokens to be placed after timeout." + ::= { agentIpv6IcmpControlGroup 2 } + +END + diff --git a/mibs/FASTPATH-SNTP-CLIENT-MIB.mib b/mibs/FASTPATH-SNTP-CLIENT-MIB.mib new file mode 100644 index 0000000..a267a9b --- /dev/null +++ b/mibs/FASTPATH-SNTP-CLIENT-MIB.mib @@ -0,0 +1,758 @@ + +FASTPATH-SNTP-CLIENT-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, Unsigned32, Counter32, Gauge32 + FROM SNMPv2-SMI + TEXTUAL-CONVENTION, RowStatus, DateAndTime FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + InetAddressType, InetAddress, InetPortNumber FROM INET-ADDRESS-MIB + fastPath FROM BROADCOM-REF-MIB; + +agentSntpClientMIB MODULE-IDENTITY + LAST-UPDATED "200705230000Z" -- 23 May 2007 12:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + "Postal: Broadcom Corporation + 100 Perimeter Park, Dr., Suite H + Morrisville, NC 27560 + USA + Phone: +1 919 865 2700" + + DESCRIPTION + "This MIB module defines a portion of the SNMP MIB under + the Broadcom Corporation enterprise OID pertaining to + SNTP client configuration and statistical collection." + + -- Revision history. + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Broadcom branding related changes." + REVISION + "200312181629Z" -- Fri Dec 18 16:29 GMT 2003 + DESCRIPTION + "Initial version of this MIB module." + ::= { fastPath 17 } + +-- ------------------------------------------------------------- +-- Textual Conventions +-- ------------------------------------------------------------- + +SntpClientAdminMode ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "An SNTP client may operate in any of several modes. + At least one mode other than disabled must be supported + by a client. + + disabled + - SNTP is not administrative. No SNTP requests are sent + from the client nor are any received SNTP messages + processed. + + unicast + - SNTP operates in a point-to-point fashion. A unicast + client sends a request to a designated server + at its unicast address and expects a reply from which + it can determine the time and, optionally, the + round-trip delay and local clock offset relative to the + server. + + broadcast + - SNTP operates using the local broadcast address. + The broadcast address has a single subnet scope. + The SNTP server uses a broadcast address to send + unsolicited SNTP messages to clients. The client + listens on this address and sends no requests for + updates. The broadcast address is determined + by the address and netmask of the service port over + which the SNTP client is operating. + + multicast + - SNTP operates in a point-to-multipoint fashion. A + multicast client listens on the dedicated broadcast + address or multicast group address." + + REFERENCE + "RFC 2030 - Simple Network Time Protocol (SNTP) Version 4 + for IPv4, IPv6 and OSI; Section 2." + SYNTAX BITS { + disabled(0), + unicast(1), + broadcast(2), + multicast(3) + } + +SntpClientUpdateStatus ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The status of the last received response or broadcast from a + configured server. These values are appropriate for all + administrative modes. + + other + - None of the following enumeration values. + + success + - The SNTP operation was successful and the system time + was updated. + + requestTimedOut + - An SNTP poll request timed out without receiving a + response from the SNTP server. + + badDateEncoded + - The time provided by the SNTP server was not valid. + + versionNotSupported + - The SNTP version supported by the server is not compatible + with the version supported by the client. This is indicated + by the server returning a version later than the version + configured for that server or a version of '0'. + + serverUnsychronized + - The SNTP server is not synchronized with its peers. This + is indicated via the 'leap indicator' field on the SNTP + message. + + serverKissOfDeath + - The SNTP server indicated that no further polls are to be + sent to this server. This is indicated by a stratum field + field equal to 0 in a message received from a server." + + REFERENCE + "RFC 2030 - Simple Network Time Protocol (SNTP) Version 4 + for IPv4, IPv6 and OSI; Section 4." + SYNTAX INTEGER { + other(1), + success(2), + requestTimedOut(3), + badDateEncoded(4), + versionNotSupported(5), + serverUnsychronized(6), + serverKissOfDeath(7) + } + +-- ------------------------------------------------------------- +-- MIB Objects +-- ------------------------------------------------------------- + +agentSntpClientObjects OBJECT IDENTIFIER ::= { agentSntpClientMIB 1 } + +agentSntpClient OBJECT IDENTIFIER + ::= { agentSntpClientObjects 1 } + +agentSntpClientUnicast OBJECT IDENTIFIER + ::= { agentSntpClientObjects 2 } + +agentSntpClientBroadcast OBJECT IDENTIFIER + ::= { agentSntpClientObjects 3 } + + +-- ------------------------------------------------------------- +-- SNTP Client Group +-- ------------------------------------------------------------- + +agentSntpClientVersion OBJECT-TYPE + SYNTAX INTEGER { + version1(1), + version2(2), + version3(3), + version4(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The highest SNTP version this client supports. Per + RFC 2030, higher versions are required to be backwards + compatible with all lower versions with the exception of + version 0." + REFERENCE + "RFC 2030 - Simple Network Time Protocol (SNTP) Version 4 + for IPv4, IPv6 and OSI; Section 5." + ::= { agentSntpClient 1 } + +agentSntpClientSupportedMode OBJECT-TYPE + SYNTAX SntpClientAdminMode + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SNTP client administrative modes that this device supports. + A client may support more than one administrative mode." + ::= { agentSntpClient 2 } + +agentSntpClientMode OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + unicast(1), + broadcast(2), + multicast(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The current administrative mode of the SNTP client. A SET + of this object will cause the SNTP client to change + administrative modes. A SET request MUST have only 1 bit + set since is not possible to operate in multiple modes + simultaneously. SETs of this object are limited + to values supported by the device as specified by + agentSntpClientSupportedMode." + DEFVAL { disabled } + ::= { agentSntpClient 3 } + +agentSntpClientPort OBJECT-TYPE + SYNTAX InetPortNumber (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The local port number used to listen for broadcasts and + responses from servers." + DEFVAL { 123 } + ::= { agentSntpClient 4 } + +agentSntpClientLastUpdateTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The local date and time that the SNTP client last updated the + system time on the device since agent reboot. This time is + updated for all non-disabled administrative modes of the SNTP + client. If the SNTP client has not updated the time then + the client MUST return '00000000'H." + DEFVAL { '00000000'H } + ::= { agentSntpClient 5 } + +agentSntpClientLastAttemptTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The local date and time of the last SNTP request or + unsolicited SNTP message for this SNTP client since agent + reboot. This value is a timestamp for the + agentSntpClientLastAttemptStatus object. When the + agentSntpClientLastAttemptStatus has a value of success(2), + this object's value should be equal to the value returned by + agentSntpClientLastUpdateTime. If no SNTP frames have been + processed by the SNTP client then the client MUST return + '00000000'H. This object is updated for all non-disabled + administrative modes of the SNTP client." + DEFVAL { '00000000'H } + ::= { agentSntpClient 6 } + +agentSntpClientLastAttemptStatus OBJECT-TYPE + SYNTAX SntpClientUpdateStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the last SNTP request or unsolicited SNTP + message for this SNTP client since agent reboot. The status is + updated for all non-disabled administrative modes of the SNTP + client." + DEFVAL { other } + ::= { agentSntpClient 7 } + +agentSntpClientServerAddressType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The address type of the SNTP server as identified + by the last received packet. Support for all address + types is NOT REQUIRED." + ::= { agentSntpClient 8 } + +agentSntpClientServerAddress OBJECT-TYPE + SYNTAX InetAddress (SIZE(1..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The encoded address of the SNTP server as identified + by the last received packet." + ::= { agentSntpClient 9 } + +agentSntpClientServerMode OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a 3-bit integer identifying the mode of the server as + indicated in the last received packet with values defined as + follows: + + Mode Meaning + ------------------------------------ + 0 reserved + 1 symmetric active + 2 symmetric passive + 3 client + 4 server + 5 broadcast + 6 reserved for NTP control message + 7 reserved for private use " + + ::= { agentSntpClient 10 } + +agentSntpClientServerStratum OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is an 8-bit integer identifying the stratum of the server as + indicated in the last received packet with values defined as + follows: + + Stratum Meaning + ------------------------------------ + 0 unspecified + 1 primary reference + 2-15 secondary reference + 16-255 reserved" + + ::= { agentSntpClient 11 } + +agentSntpClientServerRefClkId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(4)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the value of the Reference Identifier in the last + received packet defined as follows. + Reference Identifier: This is a 32-bit bitstring identifying + the particular reference source. In the case of NTP Version 3 or + Version 4 stratum-0 (unspecified) or stratum-1 (primary) servers, + this is a four-character ASCII string, left justified and zero + padded to 32 bits. In NTP Version 3 secondary servers, this is the + 32-bit IPv4 address of the reference source. In NTP Version 4 + secondary servers, this is the low order 32 bits of the latest + transmit timestamp of the reference source." + + ::= { agentSntpClient 12 } + +agentSntpClientPollInterval OBJECT-TYPE + SYNTAX Unsigned32 (6..10) + UNITS "seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The minimum number of seconds between successive SNTP polls + of the server in seconds as a power of two. This + polling interval is used for SNTP requests in + unicast(1) or broadcast(2) administrative mode." + DEFVAL { 6 } + + ::= { agentSntpClient 13 } + +-- ------------------------------------------------------------- +-- SNTP Client Unicast Group +-- ------------------------------------------------------------- + +agentSntpClientUnicastPollInterval OBJECT-TYPE + SYNTAX Unsigned32 (6..10) + UNITS "seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The minimum number of seconds between successive SNTP polls + of the server in seconds as a power of two. This + polling interval is used for SNTP requests in + unicast(1) administrative mode." + DEFVAL { 6 } + ::= { agentSntpClientUnicast 1 } + +agentSntpClientUnicastPollTimeout OBJECT-TYPE + SYNTAX Unsigned32 (1..30) + UNITS "seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The number of seconds to wait for a response from a SNTP + server before considering the attempt to have 'timed out'. + This timeout is used for SNTP requests in unicast(1) + administrative mode." + DEFVAL { 5 } + ::= { agentSntpClientUnicast 2 } + +agentSntpClientUnicastPollRetry OBJECT-TYPE + SYNTAX Unsigned32 (0..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The number of times to retry a request to the same SNTP server + that has 'timed out.'. This retry count is + used for directed SNTP requests in unicast(1) administrative mode. + For example, assume this object has been SET to a value of 2. + When the SNTP client queries a given server it will send 1 SNTP + request frame. If that original attempt fails, the client will + retry up to a maximum of 2 more times before declaring the unicast + poll unsuccessful and attempting the next server." + DEFVAL { 1 } + ::= { agentSntpClientUnicast 3 } + +agentSntpClientUcastServerMaxEntries OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of server entries that are allowed in the + agentSntpClientUcastServerTable." + ::= { agentSntpClientUnicast 4 } + +agentSntpClientUcastServerCurrEntries OBJECT-TYPE + SYNTAX Gauge32 (0..3) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of server entries in the + agentSntpClientUcastServerTable." + ::= { agentSntpClientUnicast 5 } + +-- ------------------------------------------------------------- +-- SNTP Client Unicast Server Table +-- ------------------------------------------------------------- + +agentSntpClientUcastServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSntpClientUcastServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing configuration and statistical + information for unicast SNTP servers. Each server + entry is represented by single conceptual row in this + table." + ::= { agentSntpClientUnicast 6 } + +agentSntpClientUcastServerEntry OBJECT-TYPE + SYNTAX AgentSntpClientUcastServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information for a particular unicast SNTP server." + INDEX { agentSntpClientUcastServerIndex } + ::= { agentSntpClientUcastServerTable 1 } + +AgentSntpClientUcastServerEntry ::= + SEQUENCE { + agentSntpClientUcastServerIndex + Unsigned32, + agentSntpClientUcastServerAddressType + InetAddressType, + agentSntpClientUcastServerAddress + InetAddress, + agentSntpClientUcastServerPort + InetPortNumber, + agentSntpClientUcastServerVersion + INTEGER, + agentSntpClientUcastServerPrecedence + Unsigned32, + agentSntpClientUcastServerLastUpdateTime + DateAndTime, + agentSntpClientUcastServerLastAttemptTime + DateAndTime, + agentSntpClientUcastServerLastAttemptStatus + SntpClientUpdateStatus, + agentSntpClientUcastServerNumRequests + Counter32, + agentSntpClientUcastServerNumFailedRequests + Counter32, + agentSntpClientUcastServerRowStatus + RowStatus + } + +agentSntpClientUcastServerIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object uniquely identifies the entry in the table." + ::= { agentSntpClientUcastServerEntry 1 } + +agentSntpClientUcastServerAddressType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies how agentSntpClientUcastServerAddr is + encoded. Support for all possible enumerations defined by + InetAddressType is NOT REQUIRED." + ::= { agentSntpClientUcastServerEntry 2 } + +agentSntpClientUcastServerAddress OBJECT-TYPE + SYNTAX InetAddress (SIZE(1..64)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The encoded internet address of an SNTP server. + Unicast SNTP requests will be sent to this address. If this + address is a DNS hostname, then that hostname SHOULD be + resolved into an IP address each time a SNTP request is sent + to it." + ::= { agentSntpClientUcastServerEntry 3 } + +agentSntpClientUcastServerPort OBJECT-TYPE + SYNTAX InetPortNumber (1..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The port number on the server to which poll requests are sent. + A set request MUST NOT use a value of 0 for this object." + DEFVAL { 123 } + ::= { agentSntpClientUcastServerEntry 4 } + +agentSntpClientUcastServerVersion OBJECT-TYPE + SYNTAX INTEGER { + version1(1), + version2(2), + version3(3), + version4(4) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The SNTP version this server supports. This is the value + that will be encoded in NTP polls when operating in unicast(1) + administrative mode." + REFERENCE + "RFC 2030 - Simple Network Time Protocol (SNTP) Version 4 + for IPv4, IPv6 and OSI; Section 5." +::= { agentSntpClientUcastServerEntry 5} + +agentSntpClientUcastServerPrecedence OBJECT-TYPE + SYNTAX Unsigned32 (1..8) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The precedence that this server has in relation to its peers + in the determining the sequence of servers to which SNTP requests + will be sent. The client continues sending requests to + different servers until a successful response is received or + all servers are exhausted. This object indicates the order in + which to query the servers. A server entry with a precedence + of 1 will be queried before a server with a precedence of 2, + and so forth. If more than one server has the same precedence + then the request order will follow the lexicographical + ordering of the entries in this table." + DEFVAL { 1 } + ::= { agentSntpClientUcastServerEntry 6 } + +agentSntpClientUcastServerLastUpdateTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The local date and time that the response from this server was + used to update the system time on the device since agent + reboot. If the SNTP client has not updated the time using + a response from this server then this object MUST return + '00000000'H." + DEFVAL { '00000000'H } + ::= { agentSntpClientUcastServerEntry 7 } + +agentSntpClientUcastServerLastAttemptTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The local date and time that this SNTP server was last queried + since agent reboot. Essentially, this value is a + timestamp for the agentSntpClientUcastServerLastAttemptStatus + object. If this server has not been queried then this object + MUST return '00000000'H." + DEFVAL { '00000000'H } + ::= { agentSntpClientUcastServerEntry 8 } + +agentSntpClientUcastServerLastAttemptStatus OBJECT-TYPE + SYNTAX SntpClientUpdateStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the last SNTP request to this server since + agent reboot. If no requests have been made then this object + should return 'other'." + DEFVAL { other } + ::= { agentSntpClientUcastServerEntry 9 } + +agentSntpClientUcastServerNumRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SNTP requests made to this server since + the last agent reboot. This includes retry attempts to + the server." + ::= { agentSntpClientUcastServerEntry 10 } + +agentSntpClientUcastServerNumFailedRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SNTP requests made to this server that did + not result in a successful response since the last agent + reboot. This includes retry attempts to the server." + ::= { agentSntpClientUcastServerEntry 11 } + +agentSntpClientUcastServerRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The row status of this conceptual row in the table. + + active + - The server is available for use in SNTP client operations. + Other writable leaves in this table MAY be modified while + the row is in the active state. + + notInService + - The entry is fully configured but is not available for + use in SNTP client operations. The agent MAY transition + a row from the active to notInService upon + receipt of a kiss of death packet from the server. + + createAndGo + - This is the preferred mechanism for creating conceptual + rows in this table. This value can never be read as + the row will always transition immediately to either active + or notInService. + + destroy + - This will remove the conceptual row from the table and + make it unavailable for SNTP client operations. " + + ::= { agentSntpClientUcastServerEntry 12 } + + +-- ------------------------------------------------------------- +-- SNTP Client Broadcast Group +-- ------------------------------------------------------------- + +agentSntpClientBroadcastCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of unsolicited broadcast SNTP messages that have + been received and processed by the SNTP client. Unsolicited + SNTP broadcast frames will not be counted unless the SNTP + agent is operating in broadcast(3) mode, as specified by + agentSntpClientMode." + ::= { agentSntpClientBroadcast 1 } + +agentSntpClientBroadcastInterval OBJECT-TYPE + SYNTAX Unsigned32 (6..10) + UNITS "seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The number of seconds the client will wait before + processing another broadcast packet expressed as a + power of two. Packets received during the wait interval + are silently discarded." + DEFVAL { 6 } + ::= { agentSntpClientBroadcast 2} + + +-- ------------------------------------------------------------- +-- Conformance Information +-- ------------------------------------------------------------- + +agentSntpClientConformance OBJECT IDENTIFIER + ::= { agentSntpClientMIB 2 } + +agentSntpClientGroups OBJECT IDENTIFIER + ::= { agentSntpClientConformance 1 } + +agentSntpClientCompliances OBJECT IDENTIFIER + ::= { agentSntpClientConformance 2 } + +-- ------------------------------------------------------------- +-- Units of conformance +-- ------------------------------------------------------------- + +agentSntpClientDeviceGroup OBJECT-GROUP + OBJECTS { + agentSntpClientVersion, + agentSntpClientSupportedMode, + agentSntpClientMode, + agentSntpClientLastUpdateTime, + agentSntpClientLastAttemptTime, + agentSntpClientLastAttemptStatus, + agentSntpClientServerAddressType, + agentSntpClientServerAddress, + agentSntpClientServerMode, + agentSntpClientServerStratum, + agentSntpClientServerRefClkId + } + STATUS current + DESCRIPTION + "A collection of objects providing device level control of + an SNTP client on FASTPATH enabled devices." + ::= { agentSntpClientGroups 1 } + +agentSntpClientUnicastGroup OBJECT-GROUP + OBJECTS { + agentSntpClientUnicastPollInterval, + agentSntpClientUnicastPollTimeout, + agentSntpClientUnicastPollRetry, + agentSntpClientUcastServerMaxEntries, + agentSntpClientUcastServerCurrEntries, + agentSntpClientUcastServerAddress, + agentSntpClientUcastServerAddressType, + agentSntpClientUcastServerPrecedence, + agentSntpClientUcastServerLastUpdateTime, + agentSntpClientUcastServerLastAttemptTime, + agentSntpClientUcastServerLastAttemptStatus, + agentSntpClientUcastServerNumRequests, + agentSntpClientUcastServerNumFailedRequests, + agentSntpClientUcastServerRowStatus + } + STATUS current + DESCRIPTION + "A collection of objects providing control and statistics for + an SNTP client capable of operating in unicast mode." + ::= { agentSntpClientGroups 2 } + + +agentSntpClientBroadcastGroup OBJECT-GROUP + OBJECTS { + agentSntpClientBroadcastCount, + agentSntpClientBroadcastInterval + } + STATUS current + DESCRIPTION + "A collection of objects providing control and statistics for + an SNTP client capable of operating in broadcast mode." + ::= { agentSntpClientGroups 3 } + + +-- ------------------------------------------------------------- +-- Compliance statements +-- ------------------------------------------------------------- + +agentSntpClientCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for devices that support + agentSntpClient." + + MODULE + MANDATORY-GROUPS { agentSntpClientDeviceGroup } + + GROUP agentSntpClientUnicastGroup + DESCRIPTION + "This group is REQUIRED for devices supporting operation + of an SNTP client in unicast mode." + + GROUP agentSntpClientBroadcastGroup + DESCRIPTION + "This group is REQUIRED for devices supporting operation + of a SNTP client in broadcast mode." + + + ::= { agentSntpClientCompliances 1 } + +END diff --git a/mibs/FASTPATH-SWITCHING-MIB.mib b/mibs/FASTPATH-SWITCHING-MIB.mib new file mode 100644 index 0000000..8cb5ebf --- /dev/null +++ b/mibs/FASTPATH-SWITCHING-MIB.mib @@ -0,0 +1,8605 @@ +FASTPATH-SWITCHING-MIB DEFINITIONS ::= BEGIN + +-- Broadcom Corporation FastPath Switching MIB +-- Copyright Broadcom Corporation (2003-2007) All rights reserved. + +-- This SNMP Management Information Specification +-- embodies Broadcom Corporation's confidential and proprietary +-- intellectual property. Broadcom Corporation retains all title +-- and ownership in the Specification including any revisions. + +-- This Specification is supplied "AS IS", Broadcom Corporation +-- makes no warranty, either expressed or implied, +-- as to the use, operation, condition, or performance of the +-- Specification. + + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, IpAddress, + Integer32, Unsigned32, Counter32, Gauge32, TimeTicks + FROM SNMPv2-SMI + RowStatus,TruthValue,MacAddress,DateAndTime FROM SNMPv2-TC + ng7000managedswitch,AgentPortMask FROM BROADCOM-REF-MIB + DisplayString,PhysAddress FROM RFC1213-MIB + VlanIndex,dot1qVlanIndex,dot1qFdbId FROM Q-BRIDGE-MIB + IANAifType FROM IANAifType-MIB + ifIndex, InterfaceIndex FROM IF-MIB + InetAddressType, InetAddress FROM INET-ADDRESS-MIB; + + fastPathSwitching MODULE-IDENTITY + LAST-UPDATED "200705230000Z" -- 23 May 2007 12:00:00 GMT + ORGANIZATION "Netgear" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 100, Perimeter Park Drive + Morrisville, NC 27560 + Tel: +1 919 865 2700" + DESCRIPTION + "The Netgear Private MIB for FastPath Switching" + + -- Revision history. + REVISION + "200907070000Z" -- 07 Jul 2009 12:00:00 GMT + DESCRIPTION + "DVLAN changes" + REVISION + "200902110000Z" -- 11 Feb 2009 12:00:00 GMT + DESCRIPTION + "User can be created with user name extending upto 64 characters" + REVISION + "200705230000Z" -- 23 May 2007 12:00:00 GMT + DESCRIPTION + "Netgear branding related changes." + REVISION + "200311210000Z" -- 21 Nov 2003 12:00:00 GMT + DESCRIPTION + "Revisions made for new release." + REVISION + "200302061835Z" + DESCRIPTION + "Updated for release." + + ::= { ng7000managedswitch 1 } + +PortList ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Each octet within this value specifies a set of eight + ports, with the first octet specifying ports 1 through + 8, the second octet specifying ports 9 through 16, etc. + Within each octet, the most significant bit represents + the lowest numbered port, and the least significant bit + represents the highest numbered port. Thus, each port + of the bridge is represented by a single bit within the + value of this object. If that bit has a value of '1' + then that port is included in the set of ports; the port + is not included if its bit has a value of '0'." + SYNTAX OCTET STRING + +VlanList ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Each octet within this value specifies a set of eight + vlans, with the first octet specifying vlans 1 through + 8, the second octet specifying vlans 9 through 16, etc. + Within each octet, the most significant bit represents + the lowest numbered vlan, and the least significant bit + represents the highest numbered vlan. Thus, each vlan + supported is represented by a single bit within the + value of this object. If that bit has a value of '1' + then the associated port is in that vlan; the port is + not included if the vlans bit has a value of '0'." + SYNTAX OCTET STRING + + + + Ipv6Address ::= TEXTUAL-CONVENTION + DISPLAY-HINT "2x:" + STATUS current + DESCRIPTION + "This data type is used to model IPv6 addresses. + This is a binary string of 16 octets in network + byte-order." + SYNTAX OCTET STRING (SIZE (16)) + + Ipv6AddressPrefix ::= TEXTUAL-CONVENTION + DISPLAY-HINT "2x:" + STATUS current + DESCRIPTION + "This data type is used to model IPv6 address + prefixes. This is a binary string of up to 16 + octets in network byte-order." + SYNTAX OCTET STRING (SIZE (0..16)) + + Ipv6AddressIfIdentifier ::= TEXTUAL-CONVENTION + DISPLAY-HINT "2x:" + STATUS current + DESCRIPTION + "This data type is used to model IPv6 address + interface identifiers. This is a binary string + of up to 8 octets in network byte-order." + SYNTAX OCTET STRING (SIZE (0..8)) + + Ipv6IfIndex ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "A unique value, greater than zero for each + internetwork-layer interface in the managed + system. It is recommended that values are assigned + contiguously starting from 1. The value for each + internetwork-layer interface must remain constant + at least from one re-initialization of the entity's + network management system to the next + + + + + re-initialization." + SYNTAX Integer32 (1..2147483647) + + Ipv6IfIndexOrZero ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "This textual convention is an extension of the + Ipv6IfIndex convention. The latter defines + a greater than zero value used to identify an IPv6 + interface in the managed system. This extension + permits the additional value of zero. The value + zero is object-specific and must therefore be + defined as part of the description of any object + which uses this syntax. Examples of the usage of + zero might include situations where interface was + unknown, or when none or all interfaces need to be + referenced." + SYNTAX Integer32 (0..2147483647) + + + + +--************************************************************************************** +-- agentInfoGroup +--************************************************************************************** + +agentInfoGroup OBJECT IDENTIFIER ::= { fastPathSwitching 1 } + + + --************************************************************************************** + -- agentInventoryGroup + -- + --************************************************************************************** + + + agentInventoryGroup OBJECT IDENTIFIER ::= { agentInfoGroup 1 } + + + agentInventorySysDescription OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The switch's Inventory system description. " + ::= { agentInventoryGroup 1 } + + agentInventoryMachineType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of the Machine used in the Switch " + ::= { agentInventoryGroup 2 } + + agentInventoryMachineModel OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The switch's Machine Model. " + ::= { agentInventoryGroup 3 } + + agentInventorySerialNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Serial number of the switch." + ::= { agentInventoryGroup 4 } + + agentInventoryFRUNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "FRU Number of the switch" + ::= { agentInventoryGroup 5 } + + agentInventoryMaintenanceLevel OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The switch's Inventory Maintenance Level" + ::= { agentInventoryGroup 6 } + + agentInventoryPartNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The switch's Inventory Part Number" + ::= { agentInventoryGroup 7 } + + agentInventoryManufacturer OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of the Manufacturer of this unit" + ::= { agentInventoryGroup 8 } + + agentInventoryBurnedInMacAddress OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Burned-In MAC Address" + + ::= { agentInventoryGroup 9 } + + agentInventoryOperatingSystem OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Operating System running on this unit" + ::= { agentInventoryGroup 10 } + + agentInventoryNetworkProcessingDevice OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Network Processing Device for this unit" + ::= { agentInventoryGroup 11 } + + agentInventoryAdditionalPackages OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lists additional functional packages available on this unit." + ::= { agentInventoryGroup 12 } + + agentInventorySoftwareVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lists the version of software loaded on this unit." + ::= { agentInventoryGroup 13 } + + agentInventoryHardwareVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lists the version of hardware of this unit. This is a + platform dependant string." + ::= { agentInventoryGroup 14 } + + + --************************************************************************************** + -- agentTrapLogGroup + -- + --************************************************************************************** + + agentTrapLogGroup OBJECT IDENTIFIER ::= { agentInfoGroup 2} + + agentTrapLogTotal OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of traps sent since last reset." + ::= { agentTrapLogGroup 1 } + + agentTrapLogTotalSinceLastViewed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of traps sent since last viewed." + ::= { agentTrapLogGroup 3 } + + --************************************************************************************** + -- agentTrapLogTable + + agentTrapLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentTrapLogEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Agent Trap Log" + ::= { agentTrapLogGroup 4 } + + agentTrapLogEntry OBJECT-TYPE + SYNTAX AgentTrapLogEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Agent trap log entry" + INDEX { agentTrapLogIndex } + ::= { agentTrapLogTable 1 } + + AgentTrapLogEntry ::= SEQUENCE { + agentTrapLogIndex + Integer32, + agentTrapLogSystemTime + DisplayString, + agentTrapLogTrap + DisplayString + } + + agentTrapLogIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique index of trap entry" + ::= { agentTrapLogEntry 1 } + + agentTrapLogSystemTime OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "System uptime when trap was sent. + This entry shows how long the system has been up when the trap occurred." + ::= { agentTrapLogEntry 2 } + + agentTrapLogTrap OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..512)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description of the trap sent." + ::= { agentTrapLogEntry 3 } + + --************************************************************************************** + -- agentSupportedMibTable + --************************************************************************************** + + agentSupportedMibTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSupportedMibEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Supported MIB table" + ::= { agentInfoGroup 3 } + + agentSupportedMibEntry OBJECT-TYPE + SYNTAX AgentSupportedMibEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Supported MIB entry" + INDEX { agentSupportedMibIndex } + ::= { agentSupportedMibTable 1 } + + AgentSupportedMibEntry ::= SEQUENCE { + agentSupportedMibIndex + Integer32, + agentSupportedMibName + DisplayString, + agentSupportedMibDescription + DisplayString + } + + agentSupportedMibIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique index of the Supported MIB entry" + ::= { agentSupportedMibEntry 1 } + + agentSupportedMibName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the MIB (RFC or IEEE) that is supported." + ::= { agentSupportedMibEntry 2 } + + agentSupportedMibDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..512)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description of the MIB (RFC or IEEE) that is supported." + ::= { agentSupportedMibEntry 3 } + + --************************************************************************************** + -- agentSwitchCpuMBufGroup -> contains MIB objects displaying various values used in mbuffer allocations + -- + --************************************************************************************** + + agentSwitchCpuMBufGroup OBJECT IDENTIFIER ::= { agentInfoGroup 4 } + + agentSwitchCpuMBufSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The total number of mbuffers size." + ::= { agentSwitchCpuMBufGroup 1 } + + + agentSwitchCpuMBufFree OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The total number of mbuffers Free." + DEFVAL { 2 } + ::= { agentSwitchCpuMBufGroup 2 } + + agentSwitchCpuMBufRxUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The total number of Rx Mbuffers used." + + ::= { agentSwitchCpuMBufGroup 3 } + + + agentSwitchCpuMBufRxUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The total number of Rx Mbuffers used." + + ::= { agentSwitchCpuMBufGroup 3 } + + + agentSwitchCpuMBufRxNormAllocAttempts OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The total number of Rx Mbuffers allocation attempts used with normal prioriry." + + ::= { agentSwitchCpuMBufGroup 4 } + + + agentSwitchCpuMBufRxNormAllocFailures OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The total number of Rx Mbuffers allocations failed used with normal prioriry." + + ::= { agentSwitchCpuMBufGroup 5 } + + agentSwitchCpuMBufRxMid2AllocAttempts OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The total number of Rx Mbuffers allocation attempts used with Mid2 prioriry." + + ::= { agentSwitchCpuMBufGroup 6 } + + + agentSwitchCpuMBufRxMid2AllocFailures OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The total number of Rx Mbuffers allocations failed used with Mid2 prioriry." + + ::= { agentSwitchCpuMBufGroup 7 } + + + + agentSwitchCpuMBufRxMid1AllocAttempts OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The total number of Rx Mbuffers allocation attempts used with Mid1 prioriry." + + ::= { agentSwitchCpuMBufGroup 8 } + + + agentSwitchCpuMBufRxMid1AllocFailures OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The total number of Rx Mbuffers allocations failed used with Mid1 prioriry." + + ::= { agentSwitchCpuMBufGroup 9 } + + + + agentSwitchCpuMBufRxHighAllocAttempts OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The total number of Rx Mbuffers allocation attempts used with High prioriry." + + ::= { agentSwitchCpuMBufGroup 10 } + + + agentSwitchCpuMBufRxHighAllocFailures OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The total number of Rx Mbuffers allocations failed used with High prioriry." + + ::= { agentSwitchCpuMBufGroup 11 } + + + + agentSwitchCpuMBufTxAllocAttempts OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The total number of Tx Mbuffers allocation attempts ." + + ::= { agentSwitchCpuMBufGroup 12 } + + + agentSwitchCpuMBufTxAllocFailures OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The total number of Tx Mbuffers allocations failed ." + + ::= { agentSwitchCpuMBufGroup 13 } + + --************************************************************************************** + -- agentSwitchCpuProcessGroup -> contains MIB objects displaying various values used in Processfer + --allocations + -- + --************************************************************************************** + + agentSwitchCpuProcessGroup OBJECT IDENTIFIER ::= { agentInfoGroup 5 } + + agentSwitchCpuProcessMemFree OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The total memory Freed for utilization." + ::= { agentSwitchCpuProcessGroup 1 } + + + agentSwitchCpuProcessMemAvailable OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The total Memory allocated for the tasks." + DEFVAL { 2 } + ::= { agentSwitchCpuProcessGroup 2 } + + --************************************************************************************** + -- agentSwitchCpuProcessTable + + agentSwitchCpuProcessTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchCpuProcessEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " A table of Task and cpu utilization." + + ::= { agentSwitchCpuProcessGroup 3 } + + + agentSwitchCpuProcessEntry OBJECT-TYPE + + SYNTAX AgentSwitchCpuProcessEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for a Task Table." + INDEX { agentSwitchCpuProcessIndex } + ::= { agentSwitchCpuProcessTable 1 } + + + AgentSwitchCpuProcessEntry ::= SEQUENCE { + agentSwitchCpuProcessIndex + Integer32, + agentSwitchCpuProcessName + DisplayString, + agentSwitchCpuProcessPercentageUtilization + DisplayString + } + + agentSwitchCpuProcessIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique index of process table" + ::= { agentSwitchCpuProcessEntry 1 } + + agentSwitchCpuProcessName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of the process" + ::= { agentSwitchCpuProcessEntry 2 } + + agentSwitchCpuProcessPercentageUtilization OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Percentage of CPU Utilized by corresponding task" + ::= { agentSwitchCpuProcessEntry 3 } + + + --************************************************************************************** + -- agentConfigGroup + -- + --************************************************************************************** + + agentConfigGroup OBJECT IDENTIFIER ::= { fastPathSwitching 2 } + + agentCLIConfigGroup OBJECT IDENTIFIER ::= { agentConfigGroup 1 } + + --************************************************************************************** + -- agentLoginSessionTable + -- + --************************************************************************************** + + agentLoginSessionTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentLoginSessionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the switch's login session" + ::= { agentCLIConfigGroup 1 } + + agentLoginSessionEntry OBJECT-TYPE + SYNTAX AgentLoginSessionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Login Session Entry" + INDEX { agentLoginSessionIndex } + ::= { agentLoginSessionTable 1 } + + AgentLoginSessionEntry ::= SEQUENCE { + agentLoginSessionIndex + Integer32, + agentLoginSessionUserName + DisplayString, + agentLoginSessionIPAddress + IpAddress, + agentLoginSessionConnectionType + INTEGER, + agentLoginSessionIdleTime + TimeTicks, + agentLoginSessionSessionTime + TimeTicks, + agentLoginSessionStatus + RowStatus, + agentLoginSessionInetAddressType + InetAddressType, + agentLoginSessionInetAddress + InetAddress + } + + agentLoginSessionIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Agent Login Session Index of the switch" + ::= { agentLoginSessionEntry 1 } + + agentLoginSessionUserName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Agent Login Session UserName of the switch" + ::= { agentLoginSessionEntry 2 } + + agentLoginSessionIPAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Agent Login Session IP Address of the switch" + ::= { agentLoginSessionEntry 3 } + + agentLoginSessionConnectionType OBJECT-TYPE + SYNTAX INTEGER { + serial(1), + telnet(2), + ssh(3), + http(4), + https(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Agent Login Session Connection Type of the switch" + ::= { agentLoginSessionEntry 4 } + + agentLoginSessionIdleTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Agent Login Session Idle Time of the switch" + ::= { agentLoginSessionEntry 5 } + + agentLoginSessionSessionTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Agent Login Session Time of the switch" + ::= { agentLoginSessionEntry 6 } + + agentLoginSessionStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Status of the user. + active(1) - This connection is active. + destroy(6) - Set to this value to disconnect this user." + ::= { agentLoginSessionEntry 7 } + + agentLoginSessionInetAddressType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of address agentLoginSessionInetAddress is returning. + Can be either unknown(0), ipv4(1), or ipv6 (2). Will return + unknown(0) in the case of a serial login." + ::= { agentLoginSessionEntry 8 } + + agentLoginSessionInetAddress OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Inet Address of the connecting the user is logging in with. + Will return a zero-length string in the case of a serial login." + ::= { agentLoginSessionEntry 9 } + + --************************************************************************************** + -- agentTelnetConfigGroup + -- + --************************************************************************************** + + agentTelnetConfigGroup OBJECT IDENTIFIER ::= { agentCLIConfigGroup 2 } + + agentTelnetLoginTimeout OBJECT-TYPE + SYNTAX Integer32 (1..160) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Telnet login timeout (minutes) + + Config telnet timeout will set the telnet session timeout value. + A session is active as long as the session has not remained idle for + the value set. Specify a value from 1 to 160. + Note: Changing the timeout value for active + sessions does not become effective until the session is reaccessed. + Any keystroke will also activate the new timeout duration." + ::= { agentTelnetConfigGroup 1 } + + agentTelnetMaxSessions OBJECT-TYPE + SYNTAX Integer32 (0..5) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum number of Telnet Sessions + Config telnet maxsessions is an integer value from 0 to 5 that specifies the + maximum number of telnet sessions that can be established. + If the value is 0, no Telnet session can be established. + " + ::= { agentTelnetConfigGroup 2 } + + agentTelnetAllowNewMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Allow new telnet sessions (enable or disable) + Config telnet disable means that no new Telnet sessions are to be + established. Any already established session remains active until + the session is ended or an abnormal network error ends it. + " + ::= { agentTelnetConfigGroup 3 } + + --************************************************************************************** + -- agentUserConfigGroup + -- + --************************************************************************************** + + agentUserConfigGroup OBJECT IDENTIFIER ::= { agentCLIConfigGroup 3 } + + + agentUserConfigCreate OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Create a new user. + When set with a non-empty string, a new user with that name will be created. + This object will only return an empty string. + This string is limited to alpha-numeric strings (uncluding the '-' and '_' characters)." + ::= { agentUserConfigGroup 1 } + + --************************************************************************************** + + agentUserConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentUserConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "User Config Table" + ::= { agentUserConfigGroup 2 } + + agentUserConfigEntry OBJECT-TYPE + SYNTAX AgentUserConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "User Config Entry" + INDEX { agentUserIndex } + ::= { agentUserConfigTable 1 } + + AgentUserConfigEntry ::= SEQUENCE { + agentUserIndex + Integer32, + agentUserName + DisplayString, + agentUserPassword + DisplayString, + agentUserAccessMode + INTEGER, + agentUserStatus + RowStatus, + agentUserAuthenticationType + INTEGER, + agentUserEncryptionType + INTEGER, + agentUserEncryptionPassword + DisplayString, + agentUserLockoutStatus + INTEGER, + agentUserPasswordExpireTime + DateAndTime + } + + agentUserIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Agent User Config Index" + ::= { agentUserConfigEntry 1 } + + agentUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Agent User Name. + This string is limited to alpha-numeric strings (including the '-' and '_' characters)." + ::= { agentUserConfigEntry 2 } + + agentUserPassword OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Agent User Password + This object will return an empty string even if a password is set." + ::= { agentUserConfigEntry 3 } + + agentUserAccessMode OBJECT-TYPE + SYNTAX INTEGER { + read(1), + write(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Agent User Access Mode" + ::= { agentUserConfigEntry 4 } + + agentUserStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Agent User Status. + active(1) - This user account is active. + destroy(6) - Set to this value to remove this user account." + ::= { agentUserConfigEntry 5 } + + agentUserAuthenticationType OBJECT-TYPE + SYNTAX INTEGER { + none(1), + hmacmd5(2), + hmacsha(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "SNMPv3 User Authentication. The user passsword must be set + to a string greater than or equal to 8 characters for this to be + set to anything but none(1). + + none(1) - no authentication used + hmacmd5(1) - Use HMAC-MD5 authentication + hmacsha(1) - Use HMAC-SHA authentication" + ::= { agentUserConfigEntry 6 } + + agentUserEncryptionType OBJECT-TYPE + SYNTAX INTEGER { + none(1), + des(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "SNMPv3 User Encryption + Can not be set to des(2) if agentUserAuthenticationType is set to + none(1). + + none(1) - no encryption used + des(2) - DES encryption used" + ::= { agentUserConfigEntry 7 } + + agentUserEncryptionPassword OBJECT-TYPE + SYNTAX DisplayString (SIZE(8..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "SNMPv3 User Encryption Password + This object will return an empty string even if a password is + set. agentUserEncryptionType must be set to des(2) before this + object can be configured. + This object will return an empty string even if a password is set." + ::= { agentUserConfigEntry 8 } + + agentUserLockoutStatus OBJECT-TYPE + SYNTAX INTEGER { + false(0), + true(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays whether the user account is locked due to excessive failed login attempts." + ::= { agentUserConfigEntry 9 } + + agentUserPasswordExpireTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Date and time when the user's password expires (past or present). Only valid when + password aging is enabled." + ::= { agentUserConfigEntry 10 } + + + + + --************************************************************************************** + -- agentSerialGroup + -- + --************************************************************************************** + + agentSerialGroup OBJECT IDENTIFIER ::= { agentCLIConfigGroup 5 } + + agentSerialTimeout OBJECT-TYPE + SYNTAX Integer32 (0..160) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "agentSerialTimeout specifies the maximum connect time(in minutes) + without console activity. A value of 0 indicates that a console can + be connected indefinitely. The time range is 0 to 160. " + ::= { agentSerialGroup 1 } + + agentSerialBaudrate OBJECT-TYPE + SYNTAX INTEGER { + baud-1200(1), + baud-2400(2), + baud-4800(3), + baud-9600(4), + baud-19200(5), + baud-38400(6), + baud-57600(7), + baud-115200(8) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " agentSerialBaudrate specifies the current baud rate at which + the serial port will try to connect. The available values + are 1200, 2400, 4800, 9600, 19200, 38400,57600, and 115200 baud. " + ::= { agentSerialGroup 2 } + + agentSerialCharacterSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "agentSerialCharacterSize specifies the number of bits in + a character. The number of bits is always 8." + ::= { agentSerialGroup 3 } + + agentSerialHWFlowControlMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "agentSerialHardwareFlowControl specifies whether hardware + flow-control is enabled or disabled. Hardware Flow Control is + always disabled." + ::= { agentSerialGroup 4 } + + agentSerialStopBits OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " agentSerialStopBits specifies the number of Stop bits per + character. The number of Stop bits is always 1." + ::= { agentSerialGroup 5 } + + agentSerialParityType OBJECT-TYPE + SYNTAX INTEGER { + even(1), + odd(2), + none(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " agentSerialParityType specifies the Parity Method used on + the Serial Port. The Parity Method is always None. " + ::= { agentSerialGroup 6 } + + --************************************************************************************** + -- agentPasswordManagementConfigGroup + -- + --************************************************************************************** + + agentPasswordManagementConfigGroup OBJECT IDENTIFIER ::= { agentCLIConfigGroup 6 } + + agentPasswordManagementMinLength OBJECT-TYPE + SYNTAX Integer32 (8..64) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Minimum length for user passwords + All new local user passwords must be at least this many characters in length. + " + ::= { agentPasswordManagementConfigGroup 1 } + + agentPasswordManagementHistory OBJECT-TYPE + SYNTAX Integer32 (0..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The number of previous passwords to store for prevention of password reuse. + This ensures that each user does not reuse passwords often. A value of 0 + indicates that no previous passwords will be stored. + " + ::= { agentPasswordManagementConfigGroup 2 } + + agentPasswordManagementAging OBJECT-TYPE + SYNTAX Integer32 (1..365) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum time that user passwords are valid, in days, from the time the + password is set. Once a password expires, the user will be required to enter + a new password following the first login after password expiration. + A value of 0 indicates that passwords never expire. + " + ::= { agentPasswordManagementConfigGroup 3 } + + agentPasswordManagementLockAttempts OBJECT-TYPE + SYNTAX Integer32 (1..5) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The number of allowable failed local authentication attempts before the user's + account is locked. A value of 0 indicates that user accounts will never be locked. + " + ::= { agentPasswordManagementConfigGroup 4 } + + --************************************************************************************** + -- agentLagConfigGroup + -- + --************************************************************************************** + agentLagConfigGroup OBJECT IDENTIFIER ::= { agentConfigGroup 2 } + + agentLagConfigCreate OBJECT-TYPE + SYNTAX DisplayString (SIZE(0|1..15)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Agent LAG Create. + When this object is set with a non-empty string, a new LAG + will be created if possible, with the entered string as its + name. + Get operation on this MIB object returns a null-value, as + for the purpose of viewing the LAG name, the user should + perform the traversal of agentLagSummaryConfigTable. For + this reason the get operation on this object + agentLagConfigCreate becomes insignificant. +" + ::= { agentLagConfigGroup 1 } + + agentLagSummaryConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentLagSummaryConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A summary table of the switch's LAG config entries" + ::= { agentLagConfigGroup 2 } + + agentLagSummaryConfigEntry OBJECT-TYPE + SYNTAX AgentLagSummaryConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Switch's LAG config entry" + INDEX { agentLagSummaryLagIndex } + ::= { agentLagSummaryConfigTable 1 } + + AgentLagSummaryConfigEntry ::= SEQUENCE { + agentLagSummaryLagIndex + Integer32, + agentLagSummaryName + DisplayString, + agentLagSummaryFlushTimer + Integer32, + agentLagSummaryLinkTrap + INTEGER, + agentLagSummaryAdminMode + INTEGER, + agentLagSummaryStpMode + INTEGER, + agentLagSummaryAddPort + Integer32, + agentLagSummaryDeletePort + Integer32, + agentLagSummaryStatus + RowStatus, + agentLagSummaryType + INTEGER, + agentLagSummaryStaticCapability + INTEGER, + agentLagSummaryHashOption + Integer32 + } + + agentLagSummaryLagIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Agent LAG IfIndex. + + This value corresponds with the LAG interface in the ifTable." + ::= { agentLagSummaryConfigEntry 1 } + + agentLagSummaryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..15)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Agent LAG Name. + + The associated name of the LAG used during creation." + ::= { agentLagSummaryConfigEntry 2 } + + agentLagSummaryFlushTimer OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "Agent LAG FlushTimer." + ::= { agentLagSummaryConfigEntry 3 } + + agentLagSummaryLinkTrap OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Agent LAG LinkTrap. + + Configures sending Link Up/Down traps when the LAG interface goes Up or Down." + ::= { agentLagSummaryConfigEntry 4 } + + agentLagSummaryAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Agent LAG AdminMode. + + Administratively enables or disables this LAG interface." + ::= { agentLagSummaryConfigEntry 5 } + + agentLagSummaryStpMode OBJECT-TYPE + SYNTAX INTEGER { + dot1d(1), + fast(2), + off(3), + dot1s(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Agent LAG StpMode + + If Dot1d is enabled, the valid values are: + dot1d(1), fast(2), and off(3) + + If Dot1s is enabled, the valid values are: + off(3) and dot1s(4)" + + ::= { agentLagSummaryConfigEntry 6 } + + agentLagSummaryAddPort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Agent LAG AddPort. + + Set to a non 0 value to add a port to the LAG. Values correspond to + ifIndex values in the ifTable. + + Note: agentPortType for the port to be added must be full duplex + and the same speed as previously added port(s), if any." + ::= { agentLagSummaryConfigEntry 7 } + + agentLagSummaryDeletePort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Agent LAG DeletePort. + + Set to a non 0 value to remove a port from the LAG. Values correspond to + ifIndex values in the ifTable." + ::= { agentLagSummaryConfigEntry 8 } + + agentLagSummaryStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Agent LAG Status. + + active(1) - This LAG is enabled. + destroy(6) - Set to this value to remove the LAG." + ::= { agentLagSummaryConfigEntry 9 } + + agentLagSummaryType OBJECT-TYPE + SYNTAX INTEGER { + static(1), + dynamic(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Agent LAG Type. + + static(1) - This LAG is staticly maintained. + dynamic(2) - This LAG is dynamicly maintained." + ::= { agentLagSummaryConfigEntry 10 } + + agentLagSummaryStaticCapability OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Agent LAG Static Capability + + enable(1) - Static capability is enabled for this LAG interface + disable(2) - Static capability is disabled for this LAG interface" + DEFVAL { disable } + ::= { agentLagSummaryConfigEntry 11 } + + agentLagSummaryHashOption OBJECT-TYPE + SYNTAX Integer32 (1..6) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "LAG Hashing Option. + + Valid values correspond to + + 1 (=Source MAC, VLAN, EtherType, and incoming port + associated with the packet) + 2 (=Destination MAC, VLAN, EtherType, and incoming port + associated with the packet) + 3 (=Source/Destination MAC, VLAN, EtherType, and incoming + port associated with the packet) + 4 (=Source IP and Source TCP/UDP fields of the packet) + 5 (=Destination IP and Destination TCP/UDP Port fields + of the packet) + 6 (=Source/Destination IP and source/destination TCP/UDP + Port fields of the packet) + + Support for particular options may vary by device." + ::= { agentLagSummaryConfigEntry 12 } + + --************************************************************************************** + + agentLagDetailedConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentLagDetailedConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A detailed table of the switch's LAG config entries" + ::= { agentLagConfigGroup 3 } + + agentLagDetailedConfigEntry OBJECT-TYPE + SYNTAX AgentLagDetailedConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Switch's LAG config entry" + INDEX { agentLagDetailedLagIndex, agentLagDetailedIfIndex } + ::= { agentLagDetailedConfigTable 1 } + + AgentLagDetailedConfigEntry ::= SEQUENCE { + agentLagDetailedLagIndex + Integer32, + agentLagDetailedIfIndex + Integer32, + agentLagDetailedPortSpeed + OBJECT IDENTIFIER, + agentLagDetailedPortStatus + INTEGER + } + + agentLagDetailedLagIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LAG index" + ::= { agentLagDetailedConfigEntry 1 } + + agentLagDetailedIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LAG port index" + ::= { agentLagDetailedConfigEntry 2 } + + agentLagDetailedPortSpeed OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LAG port speed. See agentPortType for a description and list + of valid values." + ::= { agentLagDetailedConfigEntry 3 } + + agentLagDetailedPortStatus OBJECT-TYPE + SYNTAX INTEGER { + active(1), + inactive(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LAG port status. + + active(1) - Actively participating in the LAG. + inactive(2) - Not participating in the LAG." + ::= { agentLagDetailedConfigEntry 4 } + + --************************************************************************************** + + agentLagConfigStaticCapability OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "Agent LAG Static Capability. + Configures whether Static LAGs are supported on this device." + ::= { agentLagConfigGroup 4 } + agentLagConfigGroupHashOption OBJECT-TYPE + SYNTAX Integer32 (1..6) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "LAG Hashing Option. + + Valid values correspond to + + 1 (=Source MAC, VLAN, EtherType, and incoming port + associated with the packet) + 2 (=Destination MAC, VLAN, EtherType, and incoming port + associated with the packet) + 3 (=Source/Destination MAC, VLAN, EtherType, and incoming + port associated with the packet) + 4 (=Source IP and Source TCP/UDP fields of the packet) + 5 (=Destination IP and Destination TCP/UDP Port fields + of the packet) + 6 (=Source/Destination IP and source/destination TCP/UDP + Port fields of the packet) + + Support for particular options may vary by device. + + In BCM 53115 device only options 1 to 3 are support and only + MAC address associated with the packet is used. " + ::= { agentLagConfigGroup 5 } + + --************************************************************************************** + -- agentNetworkConfigGroup + -- + --************************************************************************************** + + agentNetworkConfigGroup OBJECT IDENTIFIER ::= { agentConfigGroup 3 } + + agentNetworkIPAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The switch's network ip address" + ::= { agentNetworkConfigGroup 1 } + + agentNetworkSubnetMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The switch's network subnet mask" + ::= { agentNetworkConfigGroup 2 } + + agentNetworkDefaultGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The switch's network default gateway" + ::= { agentNetworkConfigGroup 3 } + + agentNetworkBurnedInMacAddress OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The switch's network Burned-In MAC address" + ::= { agentNetworkConfigGroup 4 } + + agentNetworkLocalAdminMacAddress OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The switch's network locally administered MAC address" + ::= { agentNetworkConfigGroup 5 } + + agentNetworkMacAddressType OBJECT-TYPE + SYNTAX INTEGER { + burned-in(1), + local(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The switch's network Mac Address Type" + ::= { agentNetworkConfigGroup 6 } + + agentNetworkConfigProtocol OBJECT-TYPE + SYNTAX INTEGER { + none(1), + bootp(2), + dhcp(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The switch's network config protocol" + ::= { agentNetworkConfigGroup 7 } + + agentNetworkWebMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "The switch's network config protocol on next bootup + + This object has been obsoleted by agentHTTPWebMode." + + ::= { agentNetworkConfigGroup 8 } + + agentNetworkJavaMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "Configures the use of the Java interface through the Web. + + This object has been obsoleted by agentHTTPJavaMode." + + ::= { agentNetworkConfigGroup 9 } + + agentNetworkMgmtVlan OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The VLAN ID through which the switch can be managed using the + agentNetworkIPAddress" + ::= { agentNetworkConfigGroup 10 } + + + + + --************************************************************************************** + -- ipv6 agentNetworkPortConfigGroup + -- + --************************************************************************************** + + agentNetworkIpv6AdminMode OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The network port IPv6 administrative state" + ::= { agentNetworkConfigGroup 11 } + + agentNetworkIpv6Gateway OBJECT-TYPE + SYNTAX Ipv6AddressPrefix + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The network port IPv6 Gateway Address" + ::= { agentNetworkConfigGroup 12 } + + agentNetworkIpv6AddrTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentNetworkIpv6AddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The list of IPv6 address prefixes + for the network port." + ::= { agentNetworkConfigGroup 13 } + + agentNetworkIpv6AddrEntry OBJECT-TYPE + SYNTAX AgentNetworkIpv6AddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An interface entry containing objects of + a particular IPv6 address prefix" + INDEX { + agentNetworkIpv6AddrPrefix + } + ::= { agentNetworkIpv6AddrTable 1 } + AgentNetworkIpv6AddrEntry ::= SEQUENCE { + agentNetworkIpv6AddrPrefix + Ipv6AddressPrefix, + agentNetworkIpv6AddrPrefixLength + INTEGER, + agentNetworkIpv6AddrEuiFlag + INTEGER, + agentNetworkIpv6AddrStatus + RowStatus + } + + agentNetworkIpv6AddrPrefix OBJECT-TYPE + SYNTAX Ipv6AddressPrefix + MAX-ACCESS not-accessible --read-write + STATUS current + DESCRIPTION + "The service port IPv6 Address Prefix" + ::= { agentNetworkIpv6AddrEntry 1 } + + agentNetworkIpv6AddrPrefixLength OBJECT-TYPE + SYNTAX INTEGER (0..128) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The service port IPv6 Address Prefix Length" + ::= { agentNetworkIpv6AddrEntry 2 } + + agentNetworkIpv6AddrEuiFlag OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The service port IPv6 Eui Flag" + ::= { agentNetworkIpv6AddrEntry 3 } + + agentNetworkIpv6AddrStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "" + ::= { agentNetworkIpv6AddrEntry 4} + + agentNetworkIpv6AddressAutoConfig OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ipv6 address autoconfig allows the device to perform IPv6 + stateless address auto-configuration to discover prefixes on the + link and then to add the eui-64 based addresses to the network interface." + DEFVAL { disable } + ::= { agentNetworkConfigGroup 14 } + + agentNetworkIpv6ConfigProtocol OBJECT-TYPE + SYNTAX INTEGER { + none(1), + dhcp(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The switch's network IPv6 config protocol" + ::= { agentNetworkConfigGroup 15 } + + agentNetworkDhcp6ClientDuid OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The DHCPv6 Client unique DUID. This value cannot be modified" + ::= { agentNetworkConfigGroup 16 } + + --************************************************************************************** + -- ipv6 agentNetworkStatsGroup + -- + --************************************************************************************** + + agentNetworkStatsGroup OBJECT IDENTIFIER ::= { agentNetworkConfigGroup 17 } + + agentNetworkDhcp6ADVERTISEMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type ADVERTISE that have been received by the DHCPv6 + client on the network port." + ::= { agentNetworkStatsGroup 1 } + + agentNetworkDhcp6REPLYMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type REPLY that have been received by the DHCPv6 + client on the network port." + ::= { agentNetworkStatsGroup 2 } + + agentNetworkDhcp6ADVERTISEMessagesDiscarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type ADVERTISE that have been discarded by the DHCPv6 + client on the network port." + ::= { agentNetworkStatsGroup 3 } + + agentNetworkDhcp6REPLYMessagesDiscarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type REPLY that have been discarded by the DHCPv6 + client on the network port." + ::= { agentNetworkStatsGroup 4 } + + agentNetworkDhcp6MalformedMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages received malformed by the DHCPv6 client on the network port." + ::= { agentNetworkStatsGroup 5 } + agentNetworkDhcp6SOLICITMessagesSent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type SOLICIT that have been sent by the DHCPv6 + client on the network port." + ::= { agentNetworkStatsGroup 6 } + + agentNetworkDhcp6REQUESTMessagesSent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type REQUEST that have been sent by the DHCPv6 + client on the network port." + ::= { agentNetworkStatsGroup 7 } + + agentNetworkDhcp6RENEWMessagesSent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type RENEW that have been sent by the DHCPv6 + client on the network port." + ::= { agentNetworkStatsGroup 8 } + + agentNetworkDhcp6REBINDMessagesSent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type REBIND that have been sent by the DHCPv6 + client on the network port." + ::= { agentNetworkStatsGroup 9 } + + agentNetworkDhcp6RELEASEMessagesSent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type RELEASE that have been sent by the DHCPv6 + client on the network port." + ::= { agentNetworkStatsGroup 10 } + + agentNetworkDhcp6StatsReset OBJECT-TYPE + SYNTAX INTEGER { + none(0), + reset(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Clear the DHCPv6 Client statistics on the network port. A value of reset(1) + is used to reset the statistics. A read on this object will + always return the value none(0). The value none(0) cannot + be forcibly set by the administrator." + ::= { agentNetworkStatsGroup 11 } + + --************************************************************************************** + -- agentServicePortConfigGroup + -- + --************************************************************************************** + + agentServicePortConfigGroup OBJECT IDENTIFIER ::= { agentConfigGroup 4 } + + agentServicePortIPAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The switch's ServicePort ip address" + ::= { agentServicePortConfigGroup 1 } + + agentServicePortSubnetMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The switch's ServicePort subnet mask" + ::= { agentServicePortConfigGroup 2 } + + agentServicePortDefaultGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The switch's ServicePort default gateway" + ::= { agentServicePortConfigGroup 3 } + + agentServicePortBurnedInMacAddress OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The switch's ServicePort Burned-In MAC address" + ::= { agentServicePortConfigGroup 4 } + + agentServicePortConfigProtocol OBJECT-TYPE + SYNTAX INTEGER { + none(1), + bootp(2), + dhcp(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The switch's ServicePort config protocol" + ::= { agentServicePortConfigGroup 5 } + + --************************************************************************************** + -- ipv6 mgmt on serviceport + -- + --************************************************************************************** + agentServicePortIpv6AdminMode OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The service port IPv6 administrative state" + ::= { agentServicePortConfigGroup 6 } + + agentServicePortIpv6Gateway OBJECT-TYPE + SYNTAX Ipv6AddressPrefix + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The service port IPv6 Gateway Address" + ::= { agentServicePortConfigGroup 7 } + + agentServicePortIpv6AddrTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentServicePortIpv6AddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The list of IPv6 address prefixes for the + service port." + ::= { agentServicePortConfigGroup 8 } + + agentServicePortIpv6AddrEntry OBJECT-TYPE + SYNTAX AgentServicePortIpv6AddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An interface entry containing objects of + a particular IPv6 address prefix" + INDEX { agentServicePortIpv6AddrPrefix } + ::= { agentServicePortIpv6AddrTable 1 } + + AgentServicePortIpv6AddrEntry ::= SEQUENCE { + agentServicePortIpv6AddrPrefix + Ipv6AddressPrefix, + agentServicePortIpv6AddrPrefixLength + INTEGER, + agentServicePortIpv6AddrEuiFlag + INTEGER, + agentServicePortIpv6AddrStatus + RowStatus + } + + agentServicePortIpv6AddrPrefix OBJECT-TYPE + SYNTAX Ipv6AddressPrefix + MAX-ACCESS not-accessible --read-write + STATUS current + DESCRIPTION + "The service port IPv6 Address Prefix" + ::= { agentServicePortIpv6AddrEntry 1 } + + agentServicePortIpv6AddrPrefixLength OBJECT-TYPE + SYNTAX INTEGER (0..128) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The service port IPv6 Address Prefix Length" + ::= { agentServicePortIpv6AddrEntry 2 } + + agentServicePortIpv6AddrEuiFlag OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The service port IPv6 Eui Flag" + ::= { agentServicePortIpv6AddrEntry 3 } + + agentServicePortIpv6AddrStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "" + ::= { agentServicePortIpv6AddrEntry 4} + + agentServicePortIpv6AddressAutoConfig OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ipv6 address autoconfig allows the device to perform IPv6 + stateless address auto-configuration to discover prefixes on the + link and then to add the eui-64 based addresses to the serviceport interface." + DEFVAL { enable } + ::= { agentServicePortConfigGroup 9 } + + agentServicePortIpv6ConfigProtocol OBJECT-TYPE + SYNTAX INTEGER { + none(1), + dhcp(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Service Port.s IPv6 protocol configured on the switch." + ::= { agentServicePortConfigGroup 10 } + + agentServicePortDhcp6ClientDuid OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The DHCPv6 Client unique DUID. This value cannot be modified" + ::= { agentServicePortConfigGroup 11 } + + --************************************************************************************** + -- ipv6 agentServicePortStatsGroup + -- + --************************************************************************************** + + agentServicePortStatsGroup OBJECT IDENTIFIER ::= {agentServicePortConfigGroup 12 } + + agentServicePortDhcp6ADVERTISEMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type ADVERTISE that have been received by the DHCPv6 client on the service port." + ::= { agentServicePortStatsGroup 1 } + + agentServicePortDhcp6REPLYMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type REPLY that have been received by the DHCPv6 client on the service port." + ::= { agentServicePortStatsGroup 2 } + + agentServicePortDhcp6ADVERTISEMessagesDiscarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type ADVERTISE that have been discarded by the DHCPv6 client on the service port." + ::= { agentServicePortStatsGroup 3 } + + agentServicePortDhcp6REPLYMessagesDiscarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type REPLY that have been discarded by the DHCPv6 client on the service port." + ::= { agentServicePortStatsGroup 4 } + + agentServicePortDhcp6MalformedMessagesReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages received malformed by the DHCPv6 client on the service port." + ::= { agentServicePortStatsGroup 5 } + agentServicePortDhcp6SOLICITMessagesSent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type SOLICIT that have been sent by the DHCPv6 client on the service port." + ::= { agentServicePortStatsGroup 6 } + + agentServicePortDhcp6REQUESTMessagesSent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type REQUEST that have been sent by the DHCPv6 client on the service port." + ::= { agentServicePortStatsGroup 7 } + + agentServicePortDhcp6RENEWMessagesSent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type RENEW that have been sent by the DHCPv6 + client on the service port." + ::= { agentServicePortStatsGroup 8 } + + agentServicePortDhcp6REBINDMessagesSent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type REBIND that have been sent by the DHCPv6 client on the service port." + ::= { agentServicePortStatsGroup 9 } + + agentServicePortDhcp6RELEASEMessagesSent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The no. of DHCPv6 messages of type RELEASE that have been sent by the DHCPv6 client on the service port." + ::= { agentServicePortStatsGroup 10 } + + agentServicePortDhcp6StatsReset OBJECT-TYPE + SYNTAX INTEGER { + none(0), + reset(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Clear the DHCPv6 Client statistics on the service port. A value of reset(1) + is used to reset the statistics. A read on this object will + always return the value none(0). The value none(0) cannot + be forcibly set by the administrator." + ::= { agentServicePortStatsGroup 11 } + +--************************************************************************************** + agentDhcpClientOptionsConfigGroup OBJECT IDENTIFIER ::= { agentConfigGroup 5 } +--************************************************************************************** +--************************************************************************************** + agentVendorClassOptionConfigGroup OBJECT IDENTIFIER ::= { agentDhcpClientOptionsConfigGroup 1 } +--************************************************************************************** + agentDhcpClientVendorClassIdMode OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether DHCP Vendor Classifier Id + Option (60) is enabled for DHCP Network Client. + + If this object is set to 'true', DHCP Vendor Classifier Id mode + is enabled globally. + + If this object is set to 'false', DHCP Vendor Classifier Id mode + is disabled globally." + DEFVAL { false } + ::= { agentVendorClassOptionConfigGroup 1 } + + agentDhcpClientVendorClassIdString OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..128)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "When this object is set with a non-empty string, the DHCP Vendor + Classifier Id Option (60) string is enabled for DHCP Network Client." + DEFVAL { false } + ::= { agentVendorClassOptionConfigGroup 2 } + + + + --************************************************************************************** + -- agentSnmpConfigGroup + -- + --************************************************************************************** + + agentSnmpConfigGroup OBJECT IDENTIFIER ::= {agentConfigGroup 6} + + agentSnmpCommunityCreate OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Creates a new SNMP Community entry. + Defaults: IPAddress 0.0.0.0 + IpMask 0.0.0.0 + AccessMode read-only + Status config" + ::= { agentSnmpConfigGroup 1 } + + agentSnmpCommunityConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSnmpCommunityConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the switch's SNMP Config entries" + ::= { agentSnmpConfigGroup 2 } + + agentSnmpCommunityConfigEntry OBJECT-TYPE + SYNTAX AgentSnmpCommunityConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Switch's SNMP Config entry" + INDEX {agentSnmpCommunityIndex } + ::= { agentSnmpCommunityConfigTable 1 } + + AgentSnmpCommunityConfigEntry ::= SEQUENCE { + agentSnmpCommunityIndex + Integer32, + agentSnmpCommunityName + DisplayString (SIZE(1..16)), + agentSnmpCommunityIPAddress + IpAddress, + agentSnmpCommunityIPMask + IpAddress, + agentSnmpCommunityAccessMode + INTEGER, + agentSnmpCommunityStatus + INTEGER + } + + agentSnmpCommunityIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The switch's Snmp Community Index" + ::= { agentSnmpCommunityConfigEntry 1 } + + agentSnmpCommunityName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The switch's Snmp Community Name + This name identifies each SNMP community; + the name can be up to 16 characters, and it is case-sensitive. + Community names in the SNMP community must be unique. + If you make multiple entries using the same community name, + the first entry is kept and processed and all duplicate entries are ignored. + " + ::= { agentSnmpCommunityConfigEntry 2 } + + agentSnmpCommunityIPAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The switch's Snmp Community IP Address + Client IP Address - This attribute is an IP address (or portion thereof) + from which this device will accept SNMP packets with the associated + community. The requesting entity's IP address is logical-ANDed with + the Client IP Mask and the result must match the Client IP Address. + Note: If the Client IP Mask is set + to 0.0.0.0, a Client IP Address of 0.0.0.0 matches all IP addresses. + " + ::= { agentSnmpCommunityConfigEntry 3 } + + agentSnmpCommunityIPMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The switch's Snmp Community IP Mask + Client IP Mask - This attribute is a mask to be logical-ANDed with the + requesting entity's IP address before comparison with the Client IP Address. + If the result matches with Client IP Address then the address is an + authenticated IP address. For example, if the Client IP Address + is 9.47.128.0 and the corresponding Client IP Mask is 255.255.255.0, + a range of incoming IP addresses would match, that is, the incoming IP + addresses could be a value in the following range: 9.47.128.0 to 9.47.128.255. + To have a specific IP address be the only authenticated IP address, set the + Client IP Address to the required IP address and set the Client IP Mask + to 255.255.255.255. + " + ::= { agentSnmpCommunityConfigEntry 4 } + + agentSnmpCommunityAccessMode OBJECT-TYPE + SYNTAX INTEGER { + read-only(1), + read-write(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The switch's Snmp Community Access Mode + Access Mode - This value can be read-only or read/write. + A community with a read-only access allows for switch information to be + displayed. A community with a read/write access allows for configuration + changes to be made and for information to be displayed. + " + ::= { agentSnmpCommunityConfigEntry 5 } + + agentSnmpCommunityStatus OBJECT-TYPE + SYNTAX INTEGER { + active(1), + notInService(2), + config(3), + destroy(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The switch's Snmp Community Status. + + active(1) - This community is active, allowing SNMP managers associated + with this community to manage the switch according to its + access right. + + notInService(2) - This community is not active; no SNMP requests using this + community will be accepted. In this case the SNMP manager + associated with this community cannot manage the switch until + the Status is changed back to active(1). + + config(3) - The community Status must be set to this value in order to + configure it. When creating a new community entry, initial + Status will be set to this value. + + destroy(4) - Set to this value to remove the community from the agent." + ::= { agentSnmpCommunityConfigEntry 6 } + + + --************************************************************************************** + -- agentSnmpTrapReceiverConfigTable + -- + --************************************************************************************** + + agentSnmpTrapReceiverCreate OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Creates a new trap receiver entry. + Defaults: IPAddress 0.0.0.0 + status config" + ::= { agentSnmpConfigGroup 3 } + + agentSnmpTrapReceiverConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSnmpTrapReceiverConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Trap messages are sent across a network to an SNMP Network Manager. + These messages alert the manager to events occurring within the switch + or on the network. Up to six simultaneous trap receivers are supported. + " + ::= { agentSnmpConfigGroup 4 } + + agentSnmpTrapReceiverConfigEntry OBJECT-TYPE + SYNTAX AgentSnmpTrapReceiverConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Switch's Snmp Trace Receiver Config entry" + INDEX { agentSnmpTrapReceiverIndex } + ::= { agentSnmpTrapReceiverConfigTable 1 } + + AgentSnmpTrapReceiverConfigEntry ::= SEQUENCE { + agentSnmpTrapReceiverIndex + Integer32, + agentSnmpTrapReceiverCommunityName + DisplayString (SIZE(1..16)), + agentSnmpTrapReceiverIPAddress + IpAddress, + agentSnmpTrapReceiverStatus + INTEGER, + agentSnmpTrapReceiverVersion + INTEGER, + agentSnmpTrapReceiverIpv6Address + Ipv6AddressPrefix + } + + agentSnmpTrapReceiverIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The switch's Snmp Trap Receiver Index" + ::= { agentSnmpTrapReceiverConfigEntry 1 } + + agentSnmpTrapReceiverCommunityName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The switch's Snmp Trap Receiver Community Name. + This is the SNMP community name of the remote network manager; + the name can be up to 16 characters, and is case-sensitive. + " + ::= { agentSnmpTrapReceiverConfigEntry 2 } + + agentSnmpTrapReceiverIPAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IP Address - Each IP address parameter is four integer numbers. + The numbers range from 0 to 255. + " + ::= { agentSnmpTrapReceiverConfigEntry 3 } + + agentSnmpTrapReceiverStatus OBJECT-TYPE + SYNTAX INTEGER { + active(1), + notInService(2), + config(3), + destroy(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The switch's Snmp Trap Reciever Status. + active(1) - This trap receiver is active, allowing SNMP Traps to + be sent to this receiver. + + notInService(2) - This trap reciever is not active; no SNMP Traps will + be sent to this reciever until it's set back to active(1). + + + config(3) - The trap reciever Status must be set to this value in order + to configure it. When creating a new trap receiver entry, + the Status will initially be set to this value. + Note: agentSnmpTrapReceiverIPAddress must be set to non-zero + before changing to active(1) or notInService(2). + + destroy(4) - Set to this value to remove the trap receiver entry from + the agent." + ::= { agentSnmpTrapReceiverConfigEntry 4 } + + agentSnmpTrapReceiverVersion OBJECT-TYPE + SYNTAX INTEGER { + snmpv1(1), + snmpv2c(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The version of trap sent to this Reciever. + + snmpv1(1) - This will send a SNMPv1 trap. + + snmpv2c(2) - This will send a SNMPv2c trap." + DEFVAL { snmpv2c } + ::= { agentSnmpTrapReceiverConfigEntry 5 } + + agentSnmpTrapReceiverIpv6Address OBJECT-TYPE + SYNTAX Ipv6AddressPrefix + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IPv6 Address for SNMP receiver." + ::= { agentSnmpTrapReceiverConfigEntry 6 } + + + --************************************************************************************** + -- agentSnmpTrapFlagsConfigGroup + -- + --************************************************************************************** + + agentSnmpTrapFlagsConfigGroup OBJECT IDENTIFIER ::= { agentSnmpConfigGroup 5 } + + agentSnmpAuthenticationTrapFlag OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Authentication Flag - Enable/Disable authentication Flag." + ::= { agentSnmpTrapFlagsConfigGroup 1 } + + agentSnmpLinkUpDownTrapFlag OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Link Up/Down Flag - Enable/Disable Link Up/Link Down traps for the + entire switch. When set to Enable, the Link Up/Down traps will be + sent only if the Link Trap flag setting associated with the port + (Port Configuration Menu) is set to Enable. + " + ::= { agentSnmpTrapFlagsConfigGroup 2 } + + agentSnmpMultipleUsersTrapFlag OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Multiple Users Flag - Enable/Disable Multiple User traps. When the value + is set to Enable, a Multiple User Trap is sent whenever someone logs in + to the terminal interface (EIA 232 or Telnet) and there is already an + existing terminal interface session. + " + ::= { agentSnmpTrapFlagsConfigGroup 3 } + + agentSnmpSpanningTreeTrapFlag OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Spanning Tree Flag - This flag enables the sending of new root traps and + topology change notification traps." + ::= { agentSnmpTrapFlagsConfigGroup 4 } + + agentSnmpBroadcastStormTrapFlag OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "Broadcast Storm Flag - This flag enables or disables the broadcast + storm trap. You must also enable Broadcast Storm Recovery Mode + (see the Switch Configuration Menu). When this + value is set to Enable and Broadcast Storm Recovery mode is set to Enable, + the Broadcast Storm Start/End traps are sent when the switch enters and + leaves Broadcast Storm Recovery. + " + ::= { agentSnmpTrapFlagsConfigGroup 5 } + + --************************************************************************************** + -- agentSpanningTreeConfigGroup + -- + --************************************************************************************** + agentSpanningTreeConfigGroup OBJECT IDENTIFIER ::= { agentConfigGroup 7 } + + + agentSpanningTreeMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "The switch's Spanning Tree Switch Status. This functionality is now + handled by agentStpAdminMode" + ::= { agentSpanningTreeConfigGroup 1 } + + + --************************************************************************************** + -- agentSwitchConfigGroup + -- + --************************************************************************************** + + agentSwitchConfigGroup OBJECT IDENTIFIER ::= { agentConfigGroup 8 } + + agentSwitchAddressAgingTimeoutTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchAddressAgingTimeoutEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The switch's address aging timeout table" + ::= { agentSwitchConfigGroup 4 } + + agentSwitchAddressAgingTimeoutEntry OBJECT-TYPE + SYNTAX AgentSwitchAddressAgingTimeoutEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Aging information about a specific Filtering Database." + INDEX { dot1qFdbId } + ::= { agentSwitchAddressAgingTimeoutTable 1 } + + AgentSwitchAddressAgingTimeoutEntry ::= + SEQUENCE { + agentSwitchAddressAgingTimeout + Integer32 + } + + agentSwitchAddressAgingTimeout OBJECT-TYPE + SYNTAX Integer32 (10..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The FDB entry's address aging timeout (in seconds)" + DEFVAL { 300 } + ::= { agentSwitchAddressAgingTimeoutEntry 1 } + + --************************************************************************************** + + agentSwitchStaticMacFilteringTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchStaticMacFilteringEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The switch's static Mac filtering table" + ::= { agentSwitchConfigGroup 5 } + + agentSwitchStaticMacFilteringEntry OBJECT-TYPE + SYNTAX AgentSwitchStaticMacFilteringEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Per-port ingress/egress filter configuration based on VLAN Id and MAC address." + INDEX { agentSwitchStaticMacFilteringVlanId, agentSwitchStaticMacFilteringAddress } + ::= { agentSwitchStaticMacFilteringTable 1 } + + AgentSwitchStaticMacFilteringEntry ::= + SEQUENCE { + agentSwitchStaticMacFilteringVlanId + Integer32, + agentSwitchStaticMacFilteringAddress + MacAddress, + agentSwitchStaticMacFilteringSourcePortMask + AgentPortMask, + agentSwitchStaticMacFilteringDestPortMask + AgentPortMask, + agentSwitchStaticMacFilteringStatus + RowStatus + } + + agentSwitchStaticMacFilteringVlanId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Static MAC Filter Vlan Id" + ::= { agentSwitchStaticMacFilteringEntry 1 } + + agentSwitchStaticMacFilteringAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Static MAC Filter MAC address" + ::= { agentSwitchStaticMacFilteringEntry 2 } + + agentSwitchStaticMacFilteringSourcePortMask OBJECT-TYPE + SYNTAX AgentPortMask + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Static MAC Filter source port mask. + + When setting this value, the system will ignore configuration for ports not + between the first and last valid ports. Configuration of any port numbers + between this range that are not valid ports return a failure message, but will + still apply configuration for valid ports. + + To obtain port numbers from interface numbers, use the objects + agentPortDot1dBasePort and agentPortIfIndex in the agentPortConfigTable + table." + + ::= { agentSwitchStaticMacFilteringEntry 3 } + + agentSwitchStaticMacFilteringDestPortMask OBJECT-TYPE + SYNTAX AgentPortMask + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Static MAC Filter destination port mask. + + When setting this value, the system will ignore configuration for ports not + between the first and last valid ports. Configuration of any port numbers + between this range that are not valid ports return a failure message, but will + still apply configuration for valid ports. + + To obtain port numbers from interface numbers, use the objects + agentPortDot1dBasePort and agentPortIfIndex in the agentPortConfigTable + table. + + Configuring destination port mask for a unicast MAC filter is not supported on some platforms." + ::= { agentSwitchStaticMacFilteringEntry 4 } + + agentSwitchStaticMacFilteringStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Static MAC Filter status. + + Supported values: + active(1) - valid entry + createAndGo(4) - used to create a new entry + destroy(6) - removes the entry" + ::= { agentSwitchStaticMacFilteringEntry 5 } + + --************************************************************************************** + -- agentSwitchStormControlGroup + -- + --************************************************************************************** + + agentSwitchStormControlGroup OBJECT IDENTIFIER ::= { agentSwitchConfigGroup 12 } + + + agentSwitchDot3FlowControlMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Config switchconfig flowcontrol allows you to enable or disable + 802.3x flow control for the switch. This value + applies to only full-duplex mode ports. " + DEFVAL { disable } + ::= { agentSwitchStormControlGroup 1 } + + agentSwitchBroadcastControlMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The switch config broadcast allows you to enable or disable + broadcast storm recovery mode. When you specify Enable for Broadcast + Storm Recovery and the broadcast traffic on any Ethernet port exceeds + the configured threshold, the switch blocks (discards) the broadcast + traffic." + DEFVAL { disable } + ::= { agentSwitchStormControlGroup 4 } + + agentSwitchBroadcastControlThreshold OBJECT-TYPE + SYNTAX Unsigned32(0..14880000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the broadcast storm recovery threshold for this port + as a percentage of port speed or as an absolute pps rate." + DEFVAL { 5 } + ::= { agentSwitchStormControlGroup 5 } + + agentSwitchBroadcastControlThresholdUnit OBJECT-TYPE + SYNTAX INTEGER { + percent(1), + pps(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the units of the threshold value to percentage of + port speed or absolute packets per second." + DEFVAL { percent } + ::= { agentSwitchStormControlGroup 10 } + + agentSwitchMulticastControlMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The switch config multicast allows you to enable or disable + multicast storm recovery mode. When you specify Enable for multicast + Storm Recovery and the multicast traffic on any Ethernet port exceeds + the configured threshold, the switch blocks (discards) the multicast + traffic." + DEFVAL { disable } + ::= { agentSwitchStormControlGroup 6 } + + agentSwitchMulticastControlThreshold OBJECT-TYPE + SYNTAX Unsigned32(0..14880000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the multicast storm recovery threshold for this port + as a percentage of port speed or as an absolute pps rate." + DEFVAL { 5 } + ::= { agentSwitchStormControlGroup 7 } + + agentSwitchMulticastControlThresholdUnit OBJECT-TYPE + SYNTAX INTEGER { + percent(1), + pps(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the units of the threshold value to percentage of + port speed or absolute packets per second." + DEFVAL { percent } + ::= { agentSwitchStormControlGroup 11 } + + agentSwitchUnicastControlMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The switch config unicast allows you to enable or disable + unicast storm recovery mode. When you specify Enable for unicast + Storm Recovery and the unknown unicast traffic on any Ethernet port exceeds + the configured threshold, the switch blocks (discards) the unknown unicast + traffic." + DEFVAL { disable } + ::= { agentSwitchStormControlGroup 8 } + + agentSwitchUnicastControlThreshold OBJECT-TYPE + SYNTAX Unsigned32(0..14880000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the unicast storm recovery threshold for this port + as a percentage of port speed or as an absolute pps rate." + DEFVAL { 5 } + ::= { agentSwitchStormControlGroup 9 } + + agentSwitchUnicastControlThresholdUnit OBJECT-TYPE + SYNTAX INTEGER { + percent(1), + pps(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the units of the threshold value to percentage of + port speed or absolute packets per second." + DEFVAL { percent } + ::= { agentSwitchStormControlGroup 12 } + + --************************************************************************************** + -- agentSwitchSnoopingGroup + -- + --************************************************************************************** + + agentSwitchSnoopingGroup OBJECT IDENTIFIER ::= { agentSwitchConfigGroup 6 } + + + agentSwitchSnoopingCfgTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchSnoopingCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the IGMP/MLD Snooping Global configuration entries." + ::= { agentSwitchSnoopingGroup 1 } + + agentSwitchSnoopingCfgEntry OBJECT-TYPE + SYNTAX AgentSwitchSnoopingCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for Snooping switch Configuration." + INDEX { agentSwitchSnoopingProtocol } + ::= { agentSwitchSnoopingCfgTable 1 } + + AgentSwitchSnoopingCfgEntry ::= SEQUENCE { + agentSwitchSnoopingProtocol + InetAddressType, + agentSwitchSnoopingAdminMode + INTEGER, + agentSwitchSnoopingPortMask + AgentPortMask, + agentSwitchSnoopingMulticastControlFramesProcessed + Counter32 + } + + agentSwitchSnoopingProtocol OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The protocol type of network protocol in use." + ::= { agentSwitchSnoopingCfgEntry 1 } + + agentSwitchSnoopingAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This enables or disables Snooping on the system. " + DEFVAL { disable } + ::= { agentSwitchSnoopingCfgEntry 2 } + + agentSwitchSnoopingPortMask OBJECT-TYPE + SYNTAX AgentPortMask + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IGMP/MLD Snooping Port Mask. + + This allows configuration of IGMP/MLD Snooping on selected ports. + IGMP Snooping cannot be enabled on an interface that has routing + enabled, or is a member of a LAG. If a port which has IGMP Snooping + enabled becomes enabled for routing, or is enlisted as a member of a + LAG, IGMP Snooping functionality will be disabled on that port. IGMP + Snooping functionality will be subsequently be reenabled if routing is + disabled or LAG membership is removed from an interface that had previously + had IGMP Snooping enabled. + + To obtain port numbers from interface numbers, use the objects + agentPortDot1dBasePort and agentPortIfIndex in the agentPortConfigTable + table." + DEFVAL { '000000000000'H } + ::= { agentSwitchSnoopingCfgEntry 3 } + + agentSwitchSnoopingMulticastControlFramesProcessed OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Multicast Control Frames Processed by CPU. + The number of multicast control frames that have been processed by the CPU." + ::= { agentSwitchSnoopingCfgEntry 4 } + + --************************************************************************************** + -- agentSwitchSnoopingIntfGroup + -- + --************************************************************************************** + + agentSwitchSnoopingIntfGroup OBJECT IDENTIFIER ::= { agentSwitchConfigGroup 7 } + + agentSwitchSnoopingIntfTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchSnoopingIntfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the IGMP Snooping Interface configuration entries." + ::= { agentSwitchSnoopingIntfGroup 1 } + + agentSwitchSnoopingIntfEntry OBJECT-TYPE + SYNTAX AgentSwitchSnoopingIntfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for a IGMP Snooping Interface." + INDEX { ifIndex, agentSwitchSnoopingProtocol } + ::= { agentSwitchSnoopingIntfTable 1 } + + AgentSwitchSnoopingIntfEntry ::= SEQUENCE { + agentSwitchSnoopingIntfIndex + Unsigned32, + agentSwitchSnoopingIntfAdminMode + INTEGER, + agentSwitchSnoopingIntfGroupMembershipInterval + Integer32, + agentSwitchSnoopingIntfMaxResponseTime + Integer32, + agentSwitchSnoopingIntfMRPExpirationTime + Integer32, + agentSwitchSnoopingIntfFastLeaveAdminMode + INTEGER, + agentSwitchSnoopingIntfMulticastRouterMode + INTEGER, + agentSwitchSnoopingIntfVlanIDs + VlanList + } + + agentSwitchSnoopingIntfIndex OBJECT-TYPE + SYNTAX Unsigned32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port number to be selected. Each port maps to an interface." + ::= { agentSwitchSnoopingIntfEntry 1 } + + agentSwitchSnoopingIntfAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This enables or disables IGMP Snooping on a selected interface." + DEFVAL { disable } + ::= { agentSwitchSnoopingIntfEntry 2 } + + agentSwitchSnoopingIntfGroupMembershipInterval OBJECT-TYPE + SYNTAX Integer32 (2..3600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The amount of time in seconds that a switch will wait for a report + from a particular group on the selected interface before deleting the + interface from the entry. This value must be greater than + agentSwitchIGMPSnoopingIntfMaxResponseTime." + DEFVAL { 260 } + ::= { agentSwitchSnoopingIntfEntry 3 } + + agentSwitchSnoopingIntfMaxResponseTime OBJECT-TYPE + SYNTAX Integer32 (1..3599) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The amount of time in seconds a switch will wait after sending + a query on the selected interface because it did not receive a report for + a particular group in that interface. This value must be less + than agentSwitchIGMPSnoopingIntfGroupMembershipInterval." + DEFVAL { 10 } + ::= { agentSwitchSnoopingIntfEntry 4 } + + agentSwitchSnoopingIntfMRPExpirationTime OBJECT-TYPE + SYNTAX Integer32 (0..3600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The amount of time in seconds that a switch will wait for a query to be + received on the selected interface before the interface is removed from + the list of interfaces with multicast routers attached." + DEFVAL { 0 } + ::= { agentSwitchSnoopingIntfEntry 5 } + + agentSwitchSnoopingIntfFastLeaveAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This enables or disables IGMP Snooping on the selected interface." + DEFVAL { disable } + ::= { agentSwitchSnoopingIntfEntry 6 } + + agentSwitchSnoopingIntfMulticastRouterMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This enables or disables Multicast Routing on the selected interface." + DEFVAL { disable } + ::= { agentSwitchSnoopingIntfEntry 7 } + + agentSwitchSnoopingIntfVlanIDs OBJECT-TYPE + SYNTAX VlanList + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This field lists all the VlanIDs which include the selected interface." + ::= { agentSwitchSnoopingIntfEntry 8 } + + + --************************************************************************************** + -- agentSwitchSnoopingVlanGroup + -- + --************************************************************************************** + + agentSwitchSnoopingVlanGroup OBJECT IDENTIFIER ::= { agentSwitchConfigGroup 8 } + + agentSwitchSnoopingVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchSnoopingVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the IGMP Snooping Vlan configuration entries." + ::= { agentSwitchSnoopingVlanGroup 1 } + + agentSwitchSnoopingVlanEntry OBJECT-TYPE + SYNTAX AgentSwitchSnoopingVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for a IGMP Snooping Vlan." + INDEX { dot1qVlanIndex, agentSwitchSnoopingProtocol } + ::= { agentSwitchSnoopingVlanTable 1 } + + AgentSwitchSnoopingVlanEntry ::= SEQUENCE { + agentSwitchSnoopingVlanAdminMode + INTEGER, + agentSwitchSnoopingVlanGroupMembershipInterval + Integer32, + agentSwitchSnoopingVlanMaxResponseTime + Integer32, + agentSwitchSnoopingVlanFastLeaveAdminMode + INTEGER, + agentSwitchSnoopingVlanMRPExpirationTime + Integer32 + } + + agentSwitchSnoopingVlanAdminMode OBJECT-TYPE + SYNTAX INTEGER { + disable(0), + enable(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This enables or disables IGMP Snooping on a selected Vlan interface." + DEFVAL { disable } + ::= { agentSwitchSnoopingVlanEntry 1 } + + agentSwitchSnoopingVlanGroupMembershipInterval OBJECT-TYPE + SYNTAX Integer32 (2..3600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The amount of time in seconds that a switch will wait for a report + from a particular group on the selected vlan before deleting the + interface participating in the vlan from the entry. This value must + be greater than agentSwitchIGMPSnoopingIntfMaxResponseTime." + DEFVAL { 260 } + ::= { agentSwitchSnoopingVlanEntry 2 } + + agentSwitchSnoopingVlanMaxResponseTime OBJECT-TYPE + SYNTAX Integer32 (1..3599) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The amount of time in seconds a switch will wait after sending + a query on the selected vlan because it did not receive a report for + a particular group in the interface participating in the vlan. + This value must be less than + agentSwitchIGMPSnoopingIntfGroupMembershipInterval." + DEFVAL { 10 } + ::= { agentSwitchSnoopingVlanEntry 3 } + + agentSwitchSnoopingVlanFastLeaveAdminMode OBJECT-TYPE + SYNTAX INTEGER { + disable(0), + enable(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This enables or disables IGMP Snooping on the selected vlan." + DEFVAL { disable } + ::= { agentSwitchSnoopingVlanEntry 4 } + + agentSwitchSnoopingVlanMRPExpirationTime OBJECT-TYPE + SYNTAX Integer32 (0..3600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The amount of time in seconds that a switch will wait for a query to be + received on the selected interface participating in the vlan before the + interface is removed from the list of interfaces with multicast routers + attached. This parameter is configurable only for exisiting Vlans." + DEFVAL { 0 } + ::= { agentSwitchSnoopingVlanEntry 5 } + + + --************************************************************************************** + -- agentSwitchVlanStaticMrouterGroup + -- + --************************************************************************************** + agentSwitchVlanStaticMrouterGroup OBJECT IDENTIFIER ::= { agentSwitchConfigGroup 9 } + + agentSwitchVlanStaticMrouterTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchVlanStaticMrouterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the IGMP Static Mrouter Configuration parameters." + ::= { agentSwitchVlanStaticMrouterGroup 1 } + + agentSwitchVlanStaticMrouterEntry OBJECT-TYPE + SYNTAX AgentSwitchVlanStaticMrouterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for a IGMP Static Mrouter." + INDEX { ifIndex, + dot1qVlanIndex, agentSwitchSnoopingProtocol } + ::= { agentSwitchVlanStaticMrouterTable 1 } + + AgentSwitchVlanStaticMrouterEntry ::= SEQUENCE { + agentSwitchVlanStaticMrouterAdminMode + INTEGER + } + + agentSwitchVlanStaticMrouterAdminMode OBJECT-TYPE + SYNTAX INTEGER { + disable(0), + enable(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This enables or disables IGMP Mrouter on a per-interface per-vlan basis." + DEFVAL { disable } + ::= { agentSwitchVlanStaticMrouterEntry 1 } + + + --************************************************************************************** + -- agentSwitchMFDBGroup + -- + --************************************************************************************** + agentSwitchMFDBGroup OBJECT IDENTIFIER ::= { agentSwitchConfigGroup 10 } + + agentSwitchMFDBTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchMFDBEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Multicast Forwarding Database table" + ::= { agentSwitchMFDBGroup 1 } + + agentSwitchMFDBEntry OBJECT-TYPE + SYNTAX AgentSwitchMFDBEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Contains Forwarding and Filtering information per Vlan Index, MAC Address, and + Component User." + INDEX { agentSwitchMFDBVlanId, agentSwitchMFDBMacAddress, agentSwitchMFDBProtocolType } + ::= { agentSwitchMFDBTable 1 } + + AgentSwitchMFDBEntry ::= + SEQUENCE { + agentSwitchMFDBVlanId + VlanIndex, + agentSwitchMFDBMacAddress + MacAddress, + agentSwitchMFDBProtocolType + INTEGER, + agentSwitchMFDBType + INTEGER, + agentSwitchMFDBDescription + DisplayString, + agentSwitchMFDBForwardingPortMask + AgentPortMask, + agentSwitchMFDBFilteringPortMask + AgentPortMask + } + + agentSwitchMFDBVlanId OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vlan Index for which this entry is associated with." + ::= { agentSwitchMFDBEntry 1 } + + agentSwitchMFDBMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A multicast MAC address for which the switch has forwarding and or + filtering information." + ::= { agentSwitchMFDBEntry 2 } + + agentSwitchMFDBProtocolType OBJECT-TYPE + SYNTAX INTEGER { + static(1), + gmrp(2), + igmp(3), + mld(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The component that is responsible for this entry in the Multicast + Forwarding Database." + ::= { agentSwitchMFDBEntry 3 } + + agentSwitchMFDBType OBJECT-TYPE + SYNTAX INTEGER { + static(1), + dynamic(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This displays the type of the entry. + + static(1) - Entries configured by the end user + dynamic(2) - Entries added as a result of a learning process or protocol" + ::= { agentSwitchMFDBEntry 4 } + + agentSwitchMFDBDescription OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Text description of this multicast table entry." + ::= { agentSwitchMFDBEntry 5 } + + agentSwitchMFDBForwardingPortMask OBJECT-TYPE + SYNTAX AgentPortMask + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "BitMask indicating which ports this entry indicates should be forwarded. + + To obtain port numbers from interface numbers, use the objects + agentPortDot1dBasePort and agentPortIfIndex in the agentPortConfigTable + table." + ::= { agentSwitchMFDBEntry 6 } + + agentSwitchMFDBFilteringPortMask OBJECT-TYPE + SYNTAX AgentPortMask + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "BitMask indicating which ports this entry indicates should be filtered. + + To obtain port numbers from interface numbers, use the objects + agentPortDot1dBasePort and agentPortIfIndex in the agentPortConfigTable + table." + ::= { agentSwitchMFDBEntry 7 } + + --************************************************************************************** + + agentSwitchMFDBSummaryTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchMFDBSummaryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Multicast Forwarding Database Summary table" + ::= { agentSwitchMFDBGroup 2 } + + agentSwitchMFDBSummaryEntry OBJECT-TYPE + SYNTAX AgentSwitchMFDBSummaryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Summarizes the forwarding ports for all components registered for all + MFDB table entries with the same Vlan Index and MAC Address." + INDEX { agentSwitchMFDBSummaryVlanId, agentSwitchMFDBSummaryMacAddress } + ::= { agentSwitchMFDBSummaryTable 1 } + + AgentSwitchMFDBSummaryEntry ::= + SEQUENCE { + agentSwitchMFDBSummaryVlanId + VlanIndex, + agentSwitchMFDBSummaryMacAddress + MacAddress, + agentSwitchMFDBSummaryForwardingPortMask + AgentPortMask + } + + agentSwitchMFDBSummaryVlanId OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vlan Index for which this entry is associated with." + ::= { agentSwitchMFDBSummaryEntry 1 } + + agentSwitchMFDBSummaryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A multicast MAC address for which the switch has forwarding and or + filtering information." + ::= { agentSwitchMFDBSummaryEntry 2 } + + agentSwitchMFDBSummaryForwardingPortMask OBJECT-TYPE + SYNTAX AgentPortMask + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Port Mask indicating which ports this entry indicates should be forwarded. + + To obtain port numbers from interface numbers, use the objects + agentPortDot1dBasePort and agentPortIfIndex in the agentPortConfigTable + table." + ::= { agentSwitchMFDBSummaryEntry 3 } + + --************************************************************************************** + + agentSwitchMFDBMaxTableEntries OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This displays the maximum number of entries that can possibly be in + the Multicast Forwarding Database table." + ::= { agentSwitchMFDBGroup 3 } + + agentSwitchMFDBMostEntriesUsed OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This displays the largest number of entries that have been present + in the Multicast Forwarding Database table. This value is also known + as the MFDB high-water mark." + ::= { agentSwitchMFDBGroup 4 } + + agentSwitchMFDBCurrentEntries OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This displays the current number of entries in the Multicast + Forwarding Database table." + ::= { agentSwitchMFDBGroup 5 } + + + --************************************************************************************** + -- agentSwitchDVlanTagGroup + -- + --************************************************************************************** + + agentSwitchDVlanTagGroup OBJECT IDENTIFIER ::= { agentSwitchConfigGroup 11 } + + agentSwitchDVlanTagEthertype OBJECT-TYPE + SYNTAX Integer32 (0..65535) -- 0x0000..0xFFFF + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the Double Vlan Tag Ethertype for the switch. + If this object is supported, ethertype cannot be configured per port. + Commonly used are the Ethertypes for vman tags (34984, or 0x88A8) + and dot1q tags (33024, or 0x8100)." + ::= { agentSwitchDVlanTagGroup 1 } + + agentSwitchDVlanTagTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchDVlanTagEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of entries specifying the ethertype (TPID) values. + This will let the user specify multiple ethertypes globally." + ::= { agentSwitchDVlanTagGroup 2 } + + agentSwitchDVlanTagEntry OBJECT-TYPE + SYNTAX AgentSwitchDVlanTagEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table entry specifying the ethertype (TPID) values. + Commonly used are the Ethertypes for vman tags (34984, or 0x88A8) + and dot1q tags (33024, or 0x8100)." + INDEX { agentSwitchDVlanTagTPid } + ::= { agentSwitchDVlanTagTable 1 } + + AgentSwitchDVlanTagEntry ::= + SEQUENCE { + agentSwitchDVlanTagTPid Integer32, + agentSwitchDVlanTagDefaultTPid INTEGER, + agentSwitchDVlanTagRowStatus RowStatus + } + + agentSwitchDVlanTagTPid OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Ethertype value to identify incoming double tagged frames" + ::= { agentSwitchDVlanTagEntry 1 } + + agentSwitchDVlanTagDefaultTPid OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies if this TPID is default TPID for the switch or not" + ::= { agentSwitchDVlanTagEntry 2} + + agentSwitchDVlanTagRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status" + ::= { agentSwitchDVlanTagEntry 3} + + agentSwitchPortDVlanTagTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchPortDVlanTagEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table entries specifying the ethertype (TPID) values per port." + ::= { agentSwitchDVlanTagGroup 3 } + + agentSwitchPortDVlanTagEntry OBJECT-TYPE + SYNTAX AgentSwitchPortDVlanTagEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table entry specifying the ethertype (TPID) value for a port." + INDEX { agentSwitchPortDVlanTagInterfaceIfIndex, + agentSwitchPortDVlanTagTPid + } + ::= { agentSwitchPortDVlanTagTable 2 } + + AgentSwitchPortDVlanTagEntry ::= + SEQUENCE { + agentSwitchPortDVlanTagInterfaceIfIndex Integer32, + agentSwitchPortDVlanTagTPid Integer32, + agentSwitchPortDVlanTagMode INTEGER, + agentSwitchPortDVlanTagCustomerId Integer32, + agentSwitchPortDVlanTagRowStatus RowStatus + } + + agentSwitchPortDVlanTagInterfaceIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Port Id on to which the Ethertype value is mapped" + ::= { agentSwitchPortDVlanTagEntry 1 } + + agentSwitchPortDVlanTagTPid OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Ethertype value to identify incoming double tagged frames" + ::= { agentSwitchPortDVlanTagEntry 2 } + + agentSwitchPortDVlanTagMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Controls the Double Vlan Tag mode on this port." + ::= { agentSwitchPortDVlanTagEntry 3} + + agentSwitchPortDVlanTagCustomerId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Configures the Customer ID for the Double Vlan Tag for this port." + ::= { agentSwitchPortDVlanTagEntry 4 } + + agentSwitchPortDVlanTagRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Row status" + ::= { agentSwitchPortDVlanTagEntry 5} + + + --************************************************************************************** + -- agentSwitchVlanMacAssociationGroup + -- + --************************************************************************************** + agentSwitchVlanMacAssociationGroup OBJECT IDENTIFIER ::= { agentSwitchConfigGroup 13 } + agentSwitchVlanMacAssociationTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchVlanMacAssociationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The switch's MAC To VLAN association table" + ::= { agentSwitchVlanMacAssociationGroup 1 } + + agentSwitchVlanMacAssociationEntry OBJECT-TYPE + SYNTAX AgentSwitchVlanMacAssociationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "VLAN to be assigned to untagged or priority tagged + packets based on MAC address." + INDEX { agentSwitchVlanMacAssociationMacAddress,agentSwitchVlanMacAssociationVlanId } + ::= { agentSwitchVlanMacAssociationTable 1 } + + AgentSwitchVlanMacAssociationEntry ::= + SEQUENCE { + agentSwitchVlanMacAssociationMacAddress + MacAddress, + agentSwitchVlanMacAssociationVlanId + VlanIndex, + agentSwitchVlanMacAssociationRowStatus + RowStatus + } + + agentSwitchVlanMacAssociationMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Mac address" + ::= { agentSwitchVlanMacAssociationEntry 1 } + + agentSwitchVlanMacAssociationVlanId OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The VLAN the Mac address assigned to" + ::= { agentSwitchVlanMacAssociationEntry 2 } + + agentSwitchVlanMacAssociationRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Mac to VLAN association row status. + + Supported values: + active(1) - valid entry + createAndGo(4) - used to create a new entry + destroy(6) - removes the entry" + ::= { agentSwitchVlanMacAssociationEntry 3 } + + + + --************************************************************************************** + -- agentSwitchProtectedPortGroup + -- + --************************************************************************************** + + agentSwitchProtectedPortConfigGroup OBJECT IDENTIFIER ::= { agentSwitchConfigGroup 18 } + agentSwitchProtectedPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchProtectedPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The switch's protected port mapping table" + ::= { agentSwitchProtectedPortConfigGroup 1 } + + agentSwitchProtectedPortEntry OBJECT-TYPE + SYNTAX AgentSwitchProtectedPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Protected ports assigned to groups." + INDEX { agentSwitchProtectedPortGroupId } + ::= { agentSwitchProtectedPortTable 1 } + + AgentSwitchProtectedPortEntry ::= + SEQUENCE { + agentSwitchProtectedPortGroupId + Integer32, + agentSwitchProtectedPortGroupName + DisplayString, + agentSwitchProtectedPortPortList + PortList + } + + agentSwitchProtectedPortGroupId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The group that this port belongs to" + ::= { agentSwitchProtectedPortEntry 1 } + + agentSwitchProtectedPortGroupName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The name of the group" + ::= { agentSwitchProtectedPortEntry 2 } + + agentSwitchProtectedPortPortList OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The set of ports that are protected in this group" + ::= { agentSwitchProtectedPortEntry 3 } + + --************************************************************************************** + -- agentSwitchPrivateGroup + -- + --************************************************************************************** + + agentSwitchPrivateGroupConfigGroup OBJECT IDENTIFIER ::= { agentSwitchConfigGroup 21 } + agentSwitchPrivateGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchPrivateGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The switch's private group mapping table" + ::= { agentSwitchPrivateGroupConfigGroup 1 } + + agentSwitchPrivateGroupEntry OBJECT-TYPE + SYNTAX AgentSwitchPrivateGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Private groups assigned to ports." + INDEX { agentSwitchPrivateGroupId } + ::= { agentSwitchPrivateGroupTable 1 } + + AgentSwitchPrivateGroupEntry ::= + SEQUENCE { + agentSwitchPrivateGroupId + Integer32, + agentSwitchPrivateGroupName + DisplayString, + agentSwitchPrivateGroupMode + INTEGER, + agentSwitchPrivateGroupRowStatus + RowStatus + } + + agentSwitchPrivateGroupId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The private group id that port belongs to" + ::= { agentSwitchPrivateGroupEntry 1 } + + agentSwitchPrivateGroupName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..24)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The name of the Private group" + ::= { agentSwitchPrivateGroupEntry 2 } + + agentSwitchPrivateGroupMode OBJECT-TYPE + SYNTAX INTEGER { + isolated(1), + community(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The mode of port in private group is either isloated or community" + ::= { agentSwitchPrivateGroupEntry 3 } + + agentSwitchPrivateGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Private Group VLAN can only be created through + multiple variable bindings taking all the objects of + of the AgentSwitchPrivateGroupEntry. + Supported values: + active(1) - valid entry + createAndGo(4) - used to create a new entry + destroy(6) - removes the entry " + ::= { agentSwitchPrivateGroupEntry 4 } + + --************************************************************************************** + -- agentSwitchPrivateGroup table 2 + --************************************************************************************** + agentSwitchPrivateGroupPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchPrivateGroupPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The switch's private group portlist mapping table" + ::= { agentSwitchPrivateGroupConfigGroup 2 } + + agentSwitchPrivateGroupPortEntry OBJECT-TYPE + SYNTAX AgentSwitchPrivateGroupPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "List of ports assigned to private groups." + INDEX { agentSwitchPrivateGroupPortGroupId } + ::= { agentSwitchPrivateGroupPortTable 1 } + + AgentSwitchPrivateGroupPortEntry ::= + SEQUENCE { + agentSwitchPrivateGroupPortGroupId + Integer32, + agentSwitchPrivateGroupPortGroupName + DisplayString, + agentSwitchPrivateGroupPortPortList + PortList + } + + agentSwitchPrivateGroupPortGroupId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The private group id that port belongs to" + ::= { agentSwitchPrivateGroupPortEntry 1 } + + agentSwitchPrivateGroupPortGroupName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..24)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the Private group " + ::= { agentSwitchPrivateGroupPortEntry 2 } + + agentSwitchPrivateGroupPortPortList OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The list of ports in private group" + ::= { agentSwitchPrivateGroupPortEntry 3 } + + + --************************************************************************************** + -- agentSwitchVlanSubnetAssociationGroup + -- + --************************************************************************************** + agentSwitchVlanSubnetAssociationGroup OBJECT IDENTIFIER ::= { agentSwitchConfigGroup 20 } + agentSwitchVlanSubnetAssociationTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchVlanSubnetAssociationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The switch's Subnet To VLAN association table" + ::= { agentSwitchVlanSubnetAssociationGroup 1 } + + agentSwitchVlanSubnetAssociationEntry OBJECT-TYPE + SYNTAX AgentSwitchVlanSubnetAssociationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "VLAN to be assigned to untagged or priority tagged + packets based on IP address and Subnet Mask." + INDEX { agentSwitchVlanSubnetAssociationIPAddress,agentSwitchVlanSubnetAssociationSubnetMask,agentSwitchVlanSubnetAssociationVlanId} + ::= { agentSwitchVlanSubnetAssociationTable 1 } + + AgentSwitchVlanSubnetAssociationEntry ::= + SEQUENCE { + agentSwitchVlanSubnetAssociationIPAddress + IpAddress, + agentSwitchVlanSubnetAssociationSubnetMask + IpAddress, + agentSwitchVlanSubnetAssociationVlanId + VlanIndex, + agentSwitchVlanSubnetAssociationRowStatus + RowStatus + } + + agentSwitchVlanSubnetAssociationIPAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The ip address" + ::= { agentSwitchVlanSubnetAssociationEntry 1 } + agentSwitchVlanSubnetAssociationSubnetMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The subnet mask" + ::= { agentSwitchVlanSubnetAssociationEntry 2 } + + agentSwitchVlanSubnetAssociationVlanId OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The VLAN that the IP address and subnet mask assigned to" + ::= { agentSwitchVlanSubnetAssociationEntry 3 } + + agentSwitchVlanSubnetAssociationRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Subnet to VLAN association row status. + + Supported values: + active(1) - valid entry + createAndGo(4) - used to create a new entry + destroy(6) - removes the entry" + ::= { agentSwitchVlanSubnetAssociationEntry 4 } + + + + --************************************************************************************** + -- agentSwitchSnoopingQuerierGroup + -- + --************************************************************************************** + agentSwitchSnoopingQuerierGroup OBJECT IDENTIFIER ::= { agentSwitchConfigGroup 3 } + + agentSwitchSnoopingQuerierCfgTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchSnoopingQuerierCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the IGMP/MLD Snooping Querier Global configuration entries." + ::= { agentSwitchSnoopingQuerierGroup 1 } + + agentSwitchSnoopingQuerierCfgEntry OBJECT-TYPE + SYNTAX AgentSwitchSnoopingQuerierCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for Snooping Querier Configuration." + INDEX { agentSwitchSnoopingProtocol } + ::= { agentSwitchSnoopingQuerierCfgTable 1 } + + AgentSwitchSnoopingQuerierCfgEntry ::= SEQUENCE { + agentSwitchSnoopingQuerierAdminMode + INTEGER, + agentSwitchSnoopingQuerierVersion + Integer32, + agentSwitchSnoopingQuerierAddress + InetAddress, + agentSwitchSnoopingQuerierQueryInterval + Integer32, + agentSwitchSnoopingQuerierExpiryInterval + Integer32 + } + + agentSwitchSnoopingQuerierAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This enables or disables Snooping Querier on the system. " + DEFVAL { disable } + ::= { agentSwitchSnoopingQuerierCfgEntry 1 } + + agentSwitchSnoopingQuerierVersion OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This specifies the multicast protocol versions that are + supported by the system." + ::= { agentSwitchSnoopingQuerierCfgEntry 2 } + + agentSwitchSnoopingQuerierAddress OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This specifies the default source ip address to be used + while generating general queries." + ::= { agentSwitchSnoopingQuerierCfgEntry 3 } + + agentSwitchSnoopingQuerierQueryInterval OBJECT-TYPE + SYNTAX Integer32 (1..1800) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This specified the timer interval after which the system + generates general queries." + DEFVAL { 60 } + ::= { agentSwitchSnoopingQuerierCfgEntry 4 } + + agentSwitchSnoopingQuerierExpiryInterval OBJECT-TYPE + SYNTAX Integer32 (60..300) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This specified the timer interval after which the detected + other querier information is no longer valid." + DEFVAL { 60 } + ::= { agentSwitchSnoopingQuerierCfgEntry 5 } + + + --************************************************************************************** + -- agentSwitchSnoopingQuerierVlanCfgTable + -- + --************************************************************************************** + agentSwitchSnoopingQuerierVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchSnoopingQuerierVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the Snooping Querier Vlan configuration entries." + ::= { agentSwitchSnoopingQuerierGroup 2 } + + agentSwitchSnoopingQuerierVlanEntry OBJECT-TYPE + SYNTAX AgentSwitchSnoopingQuerierVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for a Snooping Querier configurable Vlan." + INDEX { dot1qVlanIndex, agentSwitchSnoopingProtocol } + ::= { agentSwitchSnoopingQuerierVlanTable 1 } + + AgentSwitchSnoopingQuerierVlanEntry ::= SEQUENCE { + agentSwitchSnoopingQuerierVlanAdminMode + INTEGER, + agentSwitchSnoopingQuerierVlanOperMode + INTEGER, + agentSwitchSnoopingQuerierElectionParticipateMode + INTEGER, + agentSwitchSnoopingQuerierVlanAddress + InetAddress, + agentSwitchSnoopingQuerierOperVersion + Integer32, + agentSwitchSnoopingQuerierOperMaxResponseTime + Integer32, + agentSwitchSnoopingQuerierLastQuerierAddress + InetAddress, + agentSwitchSnoopingQuerierLastQuerierVersion + Integer32 + + } + + agentSwitchSnoopingQuerierVlanAdminMode OBJECT-TYPE + SYNTAX INTEGER { + disable(0), + enable(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This enables or disables Snooping Querier on a selected Vlan interface." + DEFVAL { disable } + ::= { agentSwitchSnoopingQuerierVlanEntry 1 } + + agentSwitchSnoopingQuerierVlanOperMode OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + querier(1), + non-querier(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the current state of the Snooping Querier on a selected vlan interface" + DEFVAL { disabled } + ::= { agentSwitchSnoopingQuerierVlanEntry 2 } + + agentSwitchSnoopingQuerierElectionParticipateMode OBJECT-TYPE + SYNTAX INTEGER { + disable(0), + enable(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This enables or disables the Snooping Querier Election Participation mode. When enabled + snooping querier switch will participate in querier election up on discovering another + querier in the specified vlan. When disabled, up on discovering another querier, snooping + querier moves to non-querier state." + DEFVAL { disable } + ::= { agentSwitchSnoopingQuerierVlanEntry 3 } + + agentSwitchSnoopingQuerierVlanAddress OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This specifies the default source ip address to be used while generating general queries on + the specified vlan." + ::= { agentSwitchSnoopingQuerierVlanEntry 4 } + + agentSwitchSnoopingQuerierOperVersion OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the multicast protocol version that is currently being used by the snooping + switch for the specified vlan while generating query messages." + ::= { agentSwitchSnoopingQuerierVlanEntry 5 } + + agentSwitchSnoopingQuerierOperMaxResponseTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The amount of time in seconds a switch will wait after sending + a query on the selected vlan because it did not receive a report for + a particular group in the interface participating in the vlan. This + object is valid only when agentSwitchSnoopingQuerierOperVersion object + is valid." + ::= { agentSwitchSnoopingQuerierVlanEntry 6 } + + agentSwitchSnoopingQuerierLastQuerierAddress OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the last querier's ip address for the specified vlan. + It represents the detected other multicast querier in the vlan. " + ::= { agentSwitchSnoopingQuerierVlanEntry 7 } + + agentSwitchSnoopingQuerierLastQuerierVersion OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the multicast protocol version that is currently being used + by the detected other multicast querier for the specified vlan." + ::= { agentSwitchSnoopingQuerierVlanEntry 8 } + + --************************************************************************************** + -- agentTransferConfigGroup + -- + --************************************************************************************** + + agentTransferConfigGroup OBJECT IDENTIFIER ::= { agentConfigGroup 9 } + + + --************************************************************************************** + -- agentTransferUploadGroup + -- + --************************************************************************************** + + agentTransferUploadGroup OBJECT IDENTIFIER ::= { agentTransferConfigGroup 1 } + + agentTransferUploadMode OBJECT-TYPE + SYNTAX INTEGER { + tftp(1), + xmodem(2), + ymodem(3), + zmodem(4), + sftp(5), + scp(6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Transfer upload mode configures the mode to use when uploading from the + switch. The mode is either X/Y/ZMODEM, TFTP, SFTP or SCP. X/Y/ZMODEM is + valid only when the file transfer is initiated by the serial EIA 232 port. + SFTP and SCP are only allowed if the SSH feature is present. + " + ::= { agentTransferUploadGroup 1 } + + agentTransferUploadServerIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION + "Transfer upload server IP configures the IP address of the server + where the file is located. It is valid only when the Transfer Mode is + TFTP, SFTP, or SCP. The address is 4 integer bytes ranging from 0 to 255. + + This object is deprecated in favour of agentTransferUploadServerAddress + and agentTransferUploadServerAddressType." + ::= { agentTransferUploadGroup 2 } + + agentTransferUploadPath OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Transfer upload path configures the directory path where the file + is to be uploaded to. The switch remembers the last file path used. + " + ::= { agentTransferUploadGroup 3 } + + agentTransferUploadFilename OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Transfer upload filename configures the file name for the file being + uploaded from the switch. It can be up to 32 alphanumeric characters. + The switch remembers the last file name used. + File path can be appended to the file name if the string is less than 17 + characters. Otherwise, the File Path field will need to be used and the + File Name will be appended to the File Path as is. An example would be + File Path set to c:\tftp\code\ and File Name set to e1r1v1.opr. + Note: File Name, File Path, and Server IP Address are applicable + only if the Transfer Mode is TFTP, SFTP or SCP." + ::= { agentTransferUploadGroup 4 } + + agentTransferUploadDataType OBJECT-TYPE + SYNTAX INTEGER { + config(2), + errorlog(3), + messagelog(4), + traplog(5), + clibanner(6), + code(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Transfer upload datatype configures the type of file to upload from the + switch. + The types for upload are: + - Configuration File + - Error log + - Message log + - Trap log + - Banner File + " + ::= { agentTransferUploadGroup 5 } + + + agentTransferUploadStart OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Transfer upload start will start an upload transfer. + The agentTransferUploadMode object must not be set to xmodem(2), + ymodem(3), or zmodem(4) to initiate a transfer via SNMP." + ::= { agentTransferUploadGroup 6 } + + agentTransferUploadStatus OBJECT-TYPE + SYNTAX INTEGER { + notInitiated(1), + transferStarting(2), + errorStarting(3), + wrongFileType(4), + updatingConfig(5), + invalidConfigFile(6), + writingToFlash(7), + failureWritingToFlash(8), + checkingCRC(9), + failedCRC(10), + unknownDirection(11), + transferSuccessful(12), + transferFailed(13) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current status of an upload transfer." + ::= { agentTransferUploadGroup 7 } + + agentTransferUploadServerAddressType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The type of the serverip address, as defined in the InetAddress MIB. + + The agentTransferUploadServerAddress object is intepreted within the + context of agentTransferUploadServerAddressType" + REFERENCE "RFC 3291" + ::= { agentTransferUploadGroup 8 } + + agentTransferUploadServerAddress OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Transfer upload serverip configures the IP address of the server + where the file is to be uploaded to.It is valid only when the + Transfer Mode is TFTP, SFTP or SCP. + The type of this address is determined by the value of the + agentTransferUploadServerAddressType object. + The values for agentTransferUploadServerAddressType and + agentTransferUploadServerAddress must be consistent." + REFERENCE "RFC 3291" + ::= { agentTransferUploadGroup 9 } + + agentTransferUploadImagename OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + image1(2), + image2(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Transfer upload image name. Sets the image to be uploaded as the specified + name + Note: Imagename, File Name, File Path, and Server IP Address are applicable + only if the Transfer Mode is TFTP, SFTP or SCP." + + ::= { agentTransferUploadGroup 10 } + + agentTransferUploadUsername OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Username applicable only to secure upload types, i.e., SFTP or SCP. + " + + ::= { agentTransferUploadGroup 11 } + + agentTransferUploadPassword OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Password applicable only to secure upload types, i.e. SFTP or SCP. + " + + ::= { agentTransferUploadGroup 12 } + + --************************************************************************************** + -- agentTransferDownloadGroup + -- + --************************************************************************************** + + agentTransferDownloadGroup OBJECT IDENTIFIER ::= { agentTransferConfigGroup 2 } + + agentTransferDownloadMode OBJECT-TYPE + SYNTAX INTEGER { + tftp(1), + xmodem(2), + ymodem(3), + zmodem(4), + sftp(5), + scp(6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Transfer download mode configures the mode to use when downloading + to the switch. The mode is either X/Y/ZMODEM, TFTP, SFTP or SCP. X/Y/ZMODEM is valid only + when the file transfer is initiated by the serial EIA 232 port. SFTP and SCP + are only allowed if the SSH feature is present. + " + ::= { agentTransferDownloadGroup 1 } + + agentTransferDownloadServerIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION + "Transfer download serverip configures the IP address of the server + where the file is located. It is valid only when the Transfer Mode is TFTP, SFTP or + SCP. + The address is 4 integer bytes ranging from 0 to 255. + + This object is deprecated in favour of agentTransferDownloadServerAddress + and agentTransferDownloadServerAddressType." + + ::= { agentTransferDownloadGroup 2 } + + agentTransferDownloadPath OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Transfer download path configures the directory path where the + file is located. The switch remembers the last file path used. + " + + ::= { agentTransferDownloadGroup 3 } + + agentTransferDownloadFilename OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Transfer download filename configures the file name for the file + being downloaded to the switch. It can be up to 32 alphanumeric characters. + The switch remembers the last file name used. + File path can be appended to the file name if the string is less than 33 + characters. Otherwise, the File Path field will need to be used and the + File Name will be appended to the File Path as is. An example would be + File Path set to c:\tftp\code\ and File Name set to e1r1v1.opr. + Note: Imagename, File Name, File Path, and Server IP Address are applicable + only if the Transfer Mode is TFTP, SFTP or SCP." + + ::= { agentTransferDownloadGroup 4 } + + agentTransferDownloadDataType OBJECT-TYPE + SYNTAX INTEGER { + code(2), + config(3), + sshkey-rsa1(4), + sshkey-rsa2(5), + sshkey-dsa(6), + sslpem-root(7), + sslpem-server(8), + sslpem-dhweak(9), + sslpem-dhstrong(10), + clibanner(11), + kernel(12), + tr069-acs-sslpem-root(13), + tr069-client-ssl-private-key(14), + tr069-client-ssl-cert(15) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Transfer download datatype configures the type of file to download to + the switch. + The types for download are: + + code - Code File + config - Configuration File + sshkey-rsa1 - SSH-1 RSA Key File + sshkey-rsa2 - SSH-2 RSA Key PEM File + sshkey-dsa - SSH-2 DSA Key PEM File + sslpem-root - SSL Trusted Root Certificate PEM File + sslpem-server - SSL Server Certificate PEM File + sslpem-dhweak - SSL DH Weak Encryption Parameter PEM File + sslpem-dhstrong - SSL DH Strong Encryption Parameter PEM File + cli-banner - CLI Banner File + kernel - Kernel File + + Note: SSH Key files can only be downloaded if SSH Server is administratively + disabled, and there are no active SSH sessions. + Kernel file can be downloaded only on raptor platform and linux operating system. + " + ::= { agentTransferDownloadGroup 5 } + + + agentTransferDownloadStart OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Transfer download start will start an download transfer. + The agentTransferDownloadMode object must not be set to xmodem(2), + ymodem(3), or zmodem(4) to initiate a transfer via SNMP." + ::= { agentTransferDownloadGroup 6 } + + agentTransferDownloadStatus OBJECT-TYPE + SYNTAX INTEGER { + notInitiated(1), + transferStarting(2), + errorStarting(3), + wrongFileType(4), + updatingConfig(5), + invalidConfigFile(6), + writingToFlash(7), + failureWritingToFlash(8), + checkingCRC(9), + failedCRC(10), + unknownDirection(11), + transferSuccessful(12), + transferFailed(13) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current status of an download transfer." + ::= { agentTransferDownloadGroup 7 } + + agentTransferDownloadServerAddressType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The type of the serverip address, as defined in the InetAddress MIB. + + The agentTransferDownloadServerAddress object is intepreted within the + context of agentTransferDownloadServerAddressType" + REFERENCE "RFC 3291" + ::= { agentTransferDownloadGroup 8 } + + agentTransferDownloadServerAddress OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Transfer download serverip configures the IP address of the server + where the file is to be downloaded from.It is valid only when the + Transfer Mode is TFTP, SFTP, or SCP. + The type of this address is determined by the value of the + agentTransferDownloadServerAddressType object. + The values for agentTransferDownloadServerAddressType and + agentTransferDownloadServerAddress must be consistent." + REFERENCE "RFC 3291" + ::= { agentTransferDownloadGroup 9 } + + agentTransferDownloadImagename OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + image1(2), + image2(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Transfer download image name. Sets the downloaded image as the specified + name + Note: Imagename, File Name, File Path, and Server IP Address are applicable + only if the Transfer Mode is TFTP, SFTP or SCP." + + ::= { agentTransferDownloadGroup 10 } + + agentTransferDownloadUsername OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Username applicable only to secure download types, i.e., SFTP or SCP. + " + + ::= { agentTransferDownloadGroup 11 } + + agentTransferDownloadPassword OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Password applicable only to secure download types, i.e. SFTP or SCP. + " + + ::= { agentTransferDownloadGroup 12 } + + + --*** switchimage starts *** + --************************************************************************************** + -- agentImageConfigGroup + -- + --************************************************************************************** + + agentImageConfigGroup OBJECT IDENTIFIER ::= { agentTransferConfigGroup 3 } + + agentImage1 OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The image1 software version ." + ::= { agentImageConfigGroup 1 } + agentImage2 OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The image2 software version." + ::= { agentImageConfigGroup 2 } + + agentActiveImage OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The active image name. image1 or image2. + " + ::= { agentImageConfigGroup 3 } + agentNextActiveImage OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The next active image name. + user assigns either image1 or image2. " + ::= { agentImageConfigGroup 4 } + --*** switchimage ends *** + + --************************************************************************************** + -- agentPortMirroringGroup + --************************************************************************************** + + agentPortMirroringGroup OBJECT IDENTIFIER ::= { agentConfigGroup 10 } + + agentMirroredPortIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "IfIndex of the mirrored port" + DEFVAL { 0 } + ::= { agentPortMirroringGroup 1 } + + agentProbePortIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "IfIndex of the probe port" + DEFVAL { 0 } + ::= { agentPortMirroringGroup 2 } + + agentPortMirroringMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2), + delete(3) + } + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "Port mirroring mode: + + enable - enable mirroring mode + disable - disable mirroring mode + delete - clear MirroredPort and Probe Port configuration" + DEFVAL { disable } + ::= { agentPortMirroringGroup 3 } + + --************************************************************************************** + -- agentPortMirroringGroup + --************************************************************************************** + + agentPortMirrorTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentPortMirrorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes entries for each Port Mirroring session." + ::= { agentPortMirroringGroup 4 } + + agentPortMirrorEntry OBJECT-TYPE + SYNTAX AgentPortMirrorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provides configuration of a Port Mirroring session specifying the + destination port, and the source Port Mask, providing a many-to-one + mapping." + INDEX { agentPortMirrorSessionNum } + ::= { agentPortMirrorTable 1 } + + AgentPortMirrorEntry ::= SEQUENCE { + agentPortMirrorSessionNum + Unsigned32, + agentPortMirrorDestinationPort + Unsigned32, + agentPortMirrorSourcePortMask + AgentPortMask, + agentPortMirrorAdminMode + INTEGER + } + + agentPortMirrorSessionNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Session number of this mirroring entry. The number of sessions is + fixed, and is platform dependant." + ::= { agentPortMirrorEntry 1 } + + agentPortMirrorDestinationPort OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port which traffic from the mirrored ports will be sent to." + ::= { agentPortMirrorEntry 2 } + + agentPortMirrorSourcePortMask OBJECT-TYPE + SYNTAX AgentPortMask + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ports from which traffic will be sent to the destination port. + The destination port can not be included in this list of ports." + ::= { agentPortMirrorEntry 3 } + + agentPortMirrorAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2), + delete(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The status of this port mirroring session. + + enable(1) - This session is active and all traffic from the source ports + will be mirrored to the destination port. + disable(2) - This session is not active. + delete(3) - Remove the configuration for this Session" + ::= { agentPortMirrorEntry 4 } + +agentPortMirrorTypeTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentPortMirrorTypeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table includes entries for each source port's direction of port mirroring." + ::= { agentPortMirroringGroup 5 } + + agentPortMirrorTypeEntry OBJECT-TYPE + SYNTAX AgentPortMirrorTypeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provides configuration of a Port Mirroring direction specifying the + session of the port mirroring and source port" + INDEX { agentPortMirrorSessionNum, agentPortMirrorTypeSourcePort } + ::= { agentPortMirrorTypeTable 1 } + AgentPortMirrorTypeEntry ::= SEQUENCE { + agentPortMirrorTypeSourcePort + Unsigned32, + agentPortMirrorTypeType + INTEGER + } + + agentPortMirrorTypeSourcePort OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The port from which traffic will be sent to the destination port. + This port should be a source port in the corresponding session" + ::= { agentPortMirrorTypeEntry 1 } + + agentPortMirrorTypeType OBJECT-TYPE + SYNTAX INTEGER { + tx(1), + rx(2), + txrx(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The direction of the data to be mirrored on this source port. + + tx(1) - The data that is transmitted from the source port. + rx(2) - The data that is received on the source port. + txrx(3) - The data that is transmitted/received from/on the source port" + DEFVAL { txrx } + ::= { agentPortMirrorTypeEntry 2 } + + + --************************************************************************************** + -- agentDot3adAggPortTable + --************************************************************************************** + + agentDot3adAggPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDot3adAggPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table provides 802.3ad link aggregation information for each + physical port that is not available through the standard MIB." + ::= { agentConfigGroup 12 } + + agentDot3adAggPortEntry OBJECT-TYPE + SYNTAX AgentDot3adAggPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a table entry. The agentDot3adAggPort identifies + the external interface number of the port." + INDEX { agentDot3adAggPort } + ::= { agentDot3adAggPortTable 1 } + + AgentDot3adAggPortEntry ::= SEQUENCE { + agentDot3adAggPort + Integer32, + agentDot3adAggPortLACPMode + INTEGER + } + + agentDot3adAggPort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ifIndex of this physical port" + ::= { agentDot3adAggPortEntry 1 } + + agentDot3adAggPortLACPMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable 802.3ad LACP on this port" + ::= { agentDot3adAggPortEntry 2 } + + --************************************************************************************** + -- agentPortConfigTable + -- + --************************************************************************************** + + agentPortConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentPortConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the switch's physical port config entries" + ::= { agentConfigGroup 13 } + + agentPortConfigEntry OBJECT-TYPE + SYNTAX AgentPortConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Switch's physical port config entry" + INDEX { agentPortDot1dBasePort } + ::= { agentPortConfigTable 1 } + + AgentPortConfigEntry ::= SEQUENCE { + agentPortDot1dBasePort + Integer32, + agentPortIfIndex + Integer32, + agentPortIanaType + IANAifType, + agentPortSTPMode + INTEGER, + agentPortSTPState + INTEGER, + agentPortAdminMode + INTEGER, + agentPortPhysicalMode + INTEGER, + agentPortPhysicalStatus + INTEGER, + agentPortLinkTrapMode + INTEGER, + agentPortClearStats + INTEGER, + agentPortDefaultType + OBJECT IDENTIFIER, + agentPortType + OBJECT IDENTIFIER, + agentPortAutoNegAdminStatus + INTEGER, + agentPortDot3FlowControlMode + INTEGER, + agentPortDVlanTagMode + INTEGER, + agentPortDVlanTagEthertype + Integer32, + agentPortDVlanTagCustomerId + Integer32, + agentPortMaxFrameSizeLimit + Integer32, + agentPortMaxFrameSize + Integer32, + agentPortBroadcastControlMode + INTEGER, + agentPortBroadcastControlThreshold + Integer32, + agentPortMulticastControlMode + INTEGER, + agentPortMulticastControlThreshold + Integer32, + agentPortUnicastControlMode + INTEGER, + agentPortUnicastControlThreshold + Integer32, + agentPortBroadcastControlThresholdUnit + INTEGER, + agentPortMulticastControlThresholdUnit + INTEGER, + agentPortUnicastControlThresholdUnit + INTEGER, + agentPortVoiceVlanMode + INTEGER, + agentPortVoiceVlanID + Integer32, + agentPortVoiceVlanPriority + INTEGER, + agentPortVoiceVlanDataPriorityMode + INTEGER, + agentPortVoiceVlanOperationalStatus + INTEGER, + agentPortVoiceVlanUntagged + INTEGER, + agentPortVoiceVlanNoneMode + INTEGER, + agentPortVoiceVlanDSCP + Integer32, + agentPortVoiceVlanAuthMode + INTEGER, + agentPortDot3FlowControlOperStatus + INTEGER + } + + agentPortDot1dBasePort OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port number of this port." + ::= { agentPortConfigEntry 1 } + + agentPortIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The switch's Port IfIndex" + ::= { agentPortConfigEntry 2 } + + agentPortIanaType OBJECT-TYPE + SYNTAX IANAifType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The switch's Port Type" + ::= { agentPortConfigEntry 3 } + + agentPortSTPMode OBJECT-TYPE + SYNTAX INTEGER { + dot1d(1), + fast(2), + off(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The switch's Port Spanning Tree Protocol Mode + STP mode values are: + + dot1d (the default) + fast, indicates you want to use the fast spanning tree mode + off, indicates the STP mode is turned off for a particular port + This object is only supported when the Dot1d Protocol is enabled." + ::= { agentPortConfigEntry 4 } + + agentPortSTPState OBJECT-TYPE + SYNTAX INTEGER { + blocking(1), + listening(2), + learning(3), + forwarding(4), + disabled(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The switch's Port Spanning Tree Protocol State. + This object is only supported when the Dot1d Protocol is enabled." + ::= { agentPortConfigEntry 5 } + + agentPortAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The switch's Port Admin Mode" + ::= { agentPortConfigEntry 6 } + + agentPortPhysicalMode OBJECT-TYPE + SYNTAX INTEGER { + auto-negotiate(1), + half-10(2), + full-10(3), + half-100(4), + full-100(5), + half-100fx(6), + full-100fx(7), + full-1000sx(8), + full-10gsx(9) + } + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "The switch's Port Speed Mode. This is the configured physical mode. + This object is read-only for gigabit ports" + ::= { agentPortConfigEntry 7 } + + agentPortPhysicalStatus OBJECT-TYPE + SYNTAX INTEGER { + auto-negotiate(1), + half-10(2), + full-10(3), + half-100(4), + full-100(5), + half-100fx(6), + full-100fx(7), + full-1000sx(8), + full-10gsx(9) + } + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The switch's Port Physical Speed Status. This is the current actual speed." + ::= { agentPortConfigEntry 8 } + + agentPortLinkTrapMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If enabled, link up and link down traps will be sent for this port." + ::= { agentPortConfigEntry 9 } + + agentPortClearStats OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "clear stats for this port only" + ::= { agentPortConfigEntry 10 } + + agentPortDefaultType OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object identifies the default administrative port type, + to be used in conjunction with the operational port type + denoted by agentPortType. + + This object represents the administratively-configured type of + the MAU. If auto-negotiation is not enabled or is not + implemented for this MAU, the value of this object determines + the operational type of the MAU. In this case, a set to this + object will force the MAU into the specified operating mode. + + If auto-negotiation is implemented and enabled for this MAU, + the operational type of the MAU is determined by auto-negotiation, + and the value of this object denotes the type to which the MAU + will automatically revert if/when auto-negotiation is later disabled. + + The valid values for this object are: + + dot3MauType10BaseTHD + dot3MauType10BaseTFD + dot3MauType100BaseTXHD + dot3MauType100BaseTXFD + dot3MauType100BaseFXFD" + REFERENCE "RFC 2668" + ::= { agentPortConfigEntry 11 } + + agentPortType OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies the port type. An initial set of MAU types + are defined in RFC 2668. The assignment of OBJECT IDENTIFIERs to + new types of MAUs is managed by the IANA. If the MAU type is + unknown, the object identifier + + unknownMauType OBJECT IDENTIFIER ::= { 0 0 } + + is returned. Note that unknownMauType is a syntactically valid + object identifier, and any conformant implementation of ASN.1 and + the BER must be able to generate and recognize this value. + + This object represents the operational type of the MAU, as determined + by either (1) the result of the auto-negotiation function or (2) if + auto-negotiation is not enabled or is not implemented for this MAU, + by the value of the object agentPortDefaultType, or (3) for the GigE card + a value determined by the GBIC connected to the card. In case (2), a + set to the object agentPortDefaultType will force the MAU into the + new operating mode. + + The valid values for this object are: + + dot3MauType10BaseTHD + dot3MauType10BaseTFD + dot3MauType100BaseTXHD + dot3MauType100BaseTXFD + dot3MauType100BaseFXFD + dot3MauType1000BaseSXFD + dot3MauType1000BaseTFD + dot3MauType1000BaseXFD + dot3MauType10GigBaseX" + REFERENCE "RFC 2668" + ::= { agentPortConfigEntry 12 } + + agentPortAutoNegAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object identifies the administration status of auto negotiation + for this port." + ::= { agentPortConfigEntry 13 } + + agentPortDot3FlowControlMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Config flowcontrol allows you to enable or disable + 802.3x flow control for this port. This value + applies to only full-duplex mode ports. " + ::= { agentPortConfigEntry 14 } + + agentPortDVlanTagMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Controls the Double Vlan Tag mode on this port." + ::= { agentPortConfigEntry 15 } + + agentPortDVlanTagEthertype OBJECT-TYPE + SYNTAX Integer32 (0..65535) -- 0x0000..0xFFFF + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the Double Vlan Tag Ethertype for this port. + If this object is supported, ethertype cannot be configured + globally for the switch. + + Commonly used are the Ethertypes for vman tags (34984, or 0x88A8) + and dot1q tags (33024, or 0x8100)." + ::= { agentPortConfigEntry 16 } + + agentPortDVlanTagCustomerId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the Customer ID for the Double Vlan Tag for this port." + ::= { agentPortConfigEntry 17 } + agentPortMaxFrameSizeLimit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies the largest value that can be + configured for agentPortMaxFrameSize" + ::= { agentPortConfigEntry 18 } + + agentPortMaxFrameSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object identifies the currently configured maximum frame size + value for this port. The maximmum value that this object can be set + to is the value of agentPortMaxFrameSizeLimit. For Ethernet ports + which support 802.1Q vlan tagging, the minimum value that this object + can be set to is 1522" + ::= { agentPortConfigEntry 19 } + + + agentPortBroadcastControlMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If enabled, broadcast storm recovery will function on this port. + When you specify Enable for Broadcast Storm Recovery and the broadcast + traffic on this Ethernet port exceeds the configured threshold, the + switch blocks (discards) the broadcast traffic." + ::= { agentPortConfigEntry 20 } + + agentPortBroadcastControlThreshold OBJECT-TYPE + SYNTAX Integer32 (0..14880000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the broadcast storm recovery threshold for this port + as a percentage of port speed or as an absolute pps rate." + ::= { agentPortConfigEntry 21 } + + agentPortMulticastControlMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If enabled, multicast storm recovery will function on this port. + When you specify Enable for Multicast Storm Recovery and the multicast + traffic on this Ethernet port exceeds the configured threshold, the + switch blocks (discards) the multicast traffic." + ::= { agentPortConfigEntry 22 } + + agentPortMulticastControlThreshold OBJECT-TYPE + SYNTAX Integer32 (0..14880000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the multicast storm recovery threshold for this port + as a percentage of port speed or as an absolute pps rate." + ::= { agentPortConfigEntry 23 } + + agentPortUnicastControlMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If enabled, unicast storm recovery will function on this port. + When you specify Enable for Unicast Storm Recovery and the unknown unicast + traffic on this Ethernet port exceeds the configured threshold, the + switch blocks (discards) the unknown unicast traffic." + ::= { agentPortConfigEntry 24 } + + agentPortUnicastControlThreshold OBJECT-TYPE + SYNTAX Integer32 (0..14880000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the unicast storm recovery threshold for this port + as a percentage of port speed or as an absolute pps rate." + ::= { agentPortConfigEntry 25 } + + agentPortBroadcastControlThresholdUnit OBJECT-TYPE + SYNTAX INTEGER { + percent(1), + pps(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the units of the threshold value to percentage of + port speed or absolute packets per second." + DEFVAL { percent } + ::= { agentPortConfigEntry 26 } + + agentPortMulticastControlThresholdUnit OBJECT-TYPE + SYNTAX INTEGER { + percent(1), + pps(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the units of the threshold value to percentage of + port speed or absolute packets per second." + DEFVAL { percent } + ::= { agentPortConfigEntry 27 } + + agentPortUnicastControlThresholdUnit OBJECT-TYPE + SYNTAX INTEGER { + percent(1), + pps(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the units of the threshold value to percentage of + port speed or absolute packets per second." + DEFVAL { percent } + ::= { agentPortConfigEntry 28 } + + agentPortVoiceVlanMode OBJECT-TYPE + SYNTAX INTEGER { + none(1), + vlanid(2), + dot1p(3), + untagged(4), + disable(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Describes and Configures the Port Voice VLAN Mode." + ::= { agentPortConfigEntry 29 } + + + agentPortVoiceVlanID OBJECT-TYPE + SYNTAX Integer32 (1..4093) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Describes and Configures the Port Voice VLAN ID + if the Voice Vlan Mode is Vlan ID." + ::= { agentPortConfigEntry 30 } + + agentPortVoiceVlanPriority OBJECT-TYPE + SYNTAX INTEGER (0..7|255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Describes and Configures the Port Voice VLAN Priority + if the Voice Vlan Mode is dot1p. A value of 255 indicates + that the priority is not configured." + ::= { agentPortConfigEntry 31 } + + agentPortVoiceVlanDataPriorityMode OBJECT-TYPE + SYNTAX INTEGER { + trust(1), + untrust(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Describes and Configures the Port Voice VLAN Data Priority Mode." + ::= { agentPortConfigEntry 32 } + + agentPortVoiceVlanOperationalStatus OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Describes the Port Voice VLAN Operational Status." + ::= { agentPortConfigEntry 33 } + + agentPortVoiceVlanUntagged OBJECT-TYPE + SYNTAX INTEGER{ + false(0), + true(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Describes and Configures the Port Voice VLAN tagging mode." + ::= { agentPortConfigEntry 34 } + + agentPortVoiceVlanNoneMode OBJECT-TYPE + SYNTAX INTEGER{ + false(0), + true(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Describes and Configures the Port Voice VLAN None mode." + ::= { agentPortConfigEntry 35 } + + agentPortVoiceVlanDSCP OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Describes and Configures the Port Voice VLAN DSCP value." + ::= { agentPortConfigEntry 36 } + + agentPortVoiceVlanAuthMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Describes and Configures the Port Voice VLAN Authentication mode. + Disable means authentication not required for voice devices when dot1x is enabled." + ::= { agentPortConfigEntry 37 } + + agentPortDot3FlowControlOperStatus OBJECT-TYPE + SYNTAX INTEGER { + active(1), + inactive(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies operational status of the flow control per port." + ::= { agentPortConfigEntry 38 } + + + + --************************************************************************************** + -- agentProtocolConfigGroup + --************************************************************************************** + + agentProtocolConfigGroup OBJECT IDENTIFIER ::= { agentConfigGroup 14 } + + agentProtocolGroupCreate OBJECT-TYPE + SYNTAX DisplayString (SIZE(0|1..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set to non-empty string to create a Protocol-Based VLAN group." + ::= { agentProtocolConfigGroup 1 } + + --************************************************************************************** + -- agentProtocolGroupTable + --************************************************************************************** + + agentProtocolGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentProtocolGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the switch's Protocol-based VLAN entries" + ::= { agentProtocolConfigGroup 2 } + + agentProtocolGroupEntry OBJECT-TYPE + SYNTAX AgentProtocolGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Switch's Protocol-based VLAN entry" + INDEX { agentProtocolGroupId } + ::= { agentProtocolGroupTable 1 } + + AgentProtocolGroupEntry ::= SEQUENCE { + agentProtocolGroupId + Integer32, + agentProtocolGroupName + DisplayString, + agentProtocolGroupVlanId + Integer32, + agentProtocolGroupProtocolIP + INTEGER, + agentProtocolGroupProtocolARP + INTEGER, + agentProtocolGroupProtocolIPX + INTEGER, + agentProtocolGroupStatus + RowStatus + } + + agentProtocolGroupId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Group identifier of the Protocol-based VLAN entry." + ::= { agentProtocolGroupEntry 1 } + + agentProtocolGroupName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Group name of the Protocol-based VLAN entry." + ::= { agentProtocolGroupEntry 2 } + + agentProtocolGroupVlanId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VLAN associated with the Protocol-based VLAN entry. Set to 0 to remove." + ::= { agentProtocolGroupEntry 3 } + + agentProtocolGroupProtocolIP OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The status of the IP protocol association with the Protocol-based VLAN entry." + ::= { agentProtocolGroupEntry 4 } + + agentProtocolGroupProtocolARP OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The status of the ARP protocol association with the Protocol-based VLAN entry." + ::= { agentProtocolGroupEntry 5 } + + agentProtocolGroupProtocolIPX OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The status of the IPX protocol association with the Protocol-based VLAN entry." + ::= { agentProtocolGroupEntry 6 } + + agentProtocolGroupStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The status of the Protocol-based VLAN entry. + + active(1) - this entry is active + destroy(6) - remove this entry" + ::= { agentProtocolGroupEntry 7 } + + --************************************************************************************** + -- agentProtocolGroupPortTable + --************************************************************************************** + + agentProtocolGroupPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentProtocolGroupPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the switch's physical port config entries" + ::= { agentProtocolConfigGroup 3 } + + agentProtocolGroupPortEntry OBJECT-TYPE + SYNTAX AgentProtocolGroupPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Switch's physical port config entry" + INDEX { agentProtocolGroupId, agentProtocolGroupPortIfIndex } + ::= { agentProtocolGroupPortTable 1 } + + AgentProtocolGroupPortEntry ::= SEQUENCE { + agentProtocolGroupPortIfIndex + Integer32, + agentProtocolGroupPortStatus + RowStatus + } + + agentProtocolGroupPortIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The interface number of this instance." + ::= { agentProtocolGroupPortEntry 1 } + + agentProtocolGroupPortStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this entry. + + active(1) - the port is associated with this group + createAndGo(4) - add the port to this group + createAndWait(5) - add the port to this group + destroy(6) - remove the port from this group" + ::= { agentProtocolGroupPortEntry 2 } + + --************************************************************************************** + -- agentStpSwitchConfigGroup + --************************************************************************************** + + agentStpSwitchConfigGroup OBJECT IDENTIFIER ::= { agentConfigGroup 15 } + + agentStpConfigDigestKey OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MST configuration digest key." + ::= { agentStpSwitchConfigGroup 1 } + + agentStpConfigFormatSelector OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MST configuration format selector. A value other than 0 (zero) + indicates non-support for the IEEE 802.1s standard." + ::= { agentStpSwitchConfigGroup 2 } + + agentStpConfigName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The MST configuration name of at most 32 characters." + ::= { agentStpSwitchConfigGroup 3 } + + agentStpConfigRevision OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The MST configuration revision. The default value is 1." + DEFVAL { 1 } + ::= { agentStpSwitchConfigGroup 4 } + + agentStpForceVersion OBJECT-TYPE + SYNTAX INTEGER { + dot1d(1), + dot1w(2), + dot1s(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The MST configuration force protocol version. The default version is dot1s." + ::= { agentStpSwitchConfigGroup 5 } + + agentStpAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The spanning tree operational status. + + enable(1) - enables spanning tree operational status on the switch. + disable(2) - disables spanning tree operational status on the switch. + + The default status is disabled." + ::= { agentStpSwitchConfigGroup 6 } + + --************************************************************************************** + -- agentStpPortTable + -- + --************************************************************************************** + + agentStpPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentStpPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "STP port table." + ::= { agentStpSwitchConfigGroup 7 } + + agentStpPortEntry OBJECT-TYPE + SYNTAX AgentStpPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "STP port entry." + INDEX { ifIndex } + ::= { agentStpPortTable 1 } + + AgentStpPortEntry ::= + SEQUENCE { + agentStpPortState + INTEGER, + agentStpPortStatsMstpBpduRx + Counter32, + agentStpPortStatsMstpBpduTx + Counter32, + agentStpPortStatsRstpBpduRx + Counter32, + agentStpPortStatsRstpBpduTx + Counter32, + agentStpPortStatsStpBpduRx + Counter32, + agentStpPortStatsStpBpduTx + Counter32, + agentStpPortUpTime + TimeTicks, + agentStpPortMigrationCheck + INTEGER + } + + agentStpPortState OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The administrative STP state for the port. + + enable(1) - enables STP on the port. + disable(2) - disables STP on the port. + + The default port STP state is enabled for the first 4095 + ports and disabled for any ports beyond." + ::= { agentStpPortEntry 1 } + + agentStpPortStatsMstpBpduRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP BPDUs received on a specific port." + ::= { agentStpPortEntry 2 } + + agentStpPortStatsMstpBpduTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP BPDUs sent from a specific port." + ::= { agentStpPortEntry 3 } + + agentStpPortStatsRstpBpduRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The RSTP BPDUs received on a specific port." + ::= { agentStpPortEntry 4 } + + agentStpPortStatsRstpBpduTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The RSTP BPDUs sent from a specific port." + ::= { agentStpPortEntry 5 } + + agentStpPortStatsStpBpduRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The STP BPDUs received on a specific port." + ::= { agentStpPortEntry 6 } + + agentStpPortStatsStpBpduTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The STP BPDUs sent from a specific port." + ::= { agentStpPortEntry 7 } + + agentStpPortUpTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time since port was reset. + It is displayed in days, hours, minutes, and seconds." + ::= { agentStpPortEntry 8 } + + agentStpPortMigrationCheck OBJECT-TYPE + SYNTAX INTEGER { + false(0), + true(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Force the specified port to transmit RSTP or MSTP BPDU's. + + Supported values: + false(0) - BPDUs are not to be transmitted. + true(1) - BPDUs are to be transmitted + + A non-zero value indicates that BPDUs are to be sent on the specified port." + ::= { agentStpPortEntry 9 } + + --************************************************************************************** + -- agentStpCstConfigGroup + -- + --************************************************************************************** + + agentStpCstConfigGroup OBJECT IDENTIFIER ::= { agentStpSwitchConfigGroup 8 } + + agentStpCstHelloTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP root port hello time for the CIST." + ::= { agentStpCstConfigGroup 1 } + + agentStpCstMaxAge OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP root port max age for the CIST." + ::= { agentStpCstConfigGroup 2 } + + agentStpCstRegionalRootId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP regional root identifier for the CIST." + ::= { agentStpCstConfigGroup 3 } + + agentStpCstRegionalRootPathCost OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP regional root path cost for the CIST." + ::= { agentStpCstConfigGroup 4 } + + agentStpCstRootFwdDelay OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP root port forward delay for the CIST." + ::= { agentStpCstConfigGroup 5 } + + agentStpCstBridgeFwdDelay OBJECT-TYPE + SYNTAX Unsigned32 (4..30) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The MSTP bridge forward delay for the CIST. The default value is 15." + DEFVAL { 15 } + ::= { agentStpCstConfigGroup 6 } + + agentStpCstBridgeHelloTime OBJECT-TYPE + SYNTAX Unsigned32 (1..10) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP bridge hello time for the CIST. The default + value is 2. According to IEEE 802.1Q-REV 2005 updating + hello time is disallowed" + DEFVAL { 2 } + ::= { agentStpCstConfigGroup 7 } + + agentStpCstBridgeHoldTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP bridge hold time for the CIST." + ::= { agentStpCstConfigGroup 8 } + + agentStpCstBridgeMaxAge OBJECT-TYPE + SYNTAX Unsigned32 (6..40) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The MSTP bridge max age for the CIST. The default value is 20." + DEFVAL { 20 } + ::= { agentStpCstConfigGroup 9 } + + agentStpCstBridgeMaxHops OBJECT-TYPE + SYNTAX Unsigned32 (6..40) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The MSTP bridge max hops for the CIST. The default value is 20." + DEFVAL { 20 } + ::= { agentStpCstConfigGroup 10 } + + agentStpCstBridgePriority OBJECT-TYPE + SYNTAX Unsigned32 (0..61440) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The MSTP bridge priority for the CIST. The default value is 32768." + DEFVAL { 32768 } + ::= { agentStpCstConfigGroup 11 } + + agentStpCstBridgeHoldCount OBJECT-TYPE + SYNTAX Unsigned32 (1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The MSTP bridge hold count for the CIST. This command sets the value of + maximum bpdus that a bridge is allowed to send within a hello time window. + The default value is 6." + DEFVAL { 6 } + ::= { agentStpCstConfigGroup 12 } + + --************************************************************************************** + -- agentStpCstPortTable + -- + --************************************************************************************** + + agentStpCstPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentStpCstPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "CIST port table." + ::= { agentStpSwitchConfigGroup 9 } + + agentStpCstPortEntry OBJECT-TYPE + SYNTAX AgentStpCstPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "CIST port entry." + INDEX { ifIndex } + ::= { agentStpCstPortTable 1 } + + AgentStpCstPortEntry ::= + SEQUENCE { + agentStpCstPortOperEdge + INTEGER, + agentStpCstPortOperPointToPoint + INTEGER, + agentStpCstPortTopologyChangeAck + INTEGER, + agentStpCstPortEdge + INTEGER, + agentStpCstPortForwardingState + INTEGER, + agentStpCstPortId + OCTET STRING, + agentStpCstPortPathCost + Unsigned32, + agentStpCstPortPriority + Unsigned32, + agentStpCstDesignatedBridgeId + OCTET STRING, + agentStpCstDesignatedCost + Unsigned32, + agentStpCstDesignatedPortId + OCTET STRING, + agentStpCstExtPortPathCost + Unsigned32, + agentStpCstPortBpduGuardEffect + INTEGER, + agentStpCstPortBpduFilter + INTEGER, + agentStpCstPortBpduFlood + INTEGER, + agentStpCstPortAutoEdge + INTEGER, + agentStpCstPortRootGuard + INTEGER, + agentStpCstPortTCNGuard + INTEGER, + agentStpCstPortLoopGuard + INTEGER + } + + agentStpCstPortOperEdge OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP operational status of a specific port for the CIST." + ::= { agentStpCstPortEntry 1 } + + agentStpCstPortOperPointToPoint OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP operational point to point mac of a specific port for the CIST." + ::= { agentStpCstPortEntry 2 } + + agentStpCstPortTopologyChangeAck OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP topology change acknowledge for a specific port in the CIST." + ::= { agentStpCstPortEntry 3 } + + agentStpCstPortEdge OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The administrative state of a specific port in CIST. + + enable(1) - enables the port. + disable(2) - disables the port. + + The default port state is disabled." + ::= { agentStpCstPortEntry 4 } + + agentStpCstPortForwardingState OBJECT-TYPE + SYNTAX INTEGER { + discarding(1), + learning(2), + forwarding(3), + disabled(4), + manualFwd(5), + notParticipate(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP forwarding state of a specific port in CIST." + ::= { agentStpCstPortEntry 5 } + + agentStpCstPortId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP port identifier of a specific port in CIST." + ::= { agentStpCstPortEntry 6 } + + agentStpCstPortPathCost OBJECT-TYPE + SYNTAX Unsigned32 (0..200000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The MSTP port path cost in CIST. The default value will + correspond to the recommendation specified in IEEE 802.1s Table 13-2 + which varies depending upon link speed." + ::= { agentStpCstPortEntry 7 } + + agentStpCstPortPriority OBJECT-TYPE + SYNTAX Unsigned32 (0..240) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The MSTP port priority in CIST. The priority is + in the increments of 16. The default value is 128." + DEFVAL { 128 } + ::= { agentStpCstPortEntry 8 } + + agentStpCstDesignatedBridgeId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP designated bridge ID of a specific port in CIST." + ::= { agentStpCstPortEntry 9 } + + agentStpCstDesignatedCost OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP designated cost of a specific port in CIST." + ::= { agentStpCstPortEntry 10 } + + agentStpCstDesignatedPortId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP designated port ID of a specific port in CIST." + ::= { agentStpCstPortEntry 11 } + + agentStpCstExtPortPathCost OBJECT-TYPE + SYNTAX Unsigned32 (0..200000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The MSTP external port path cost in CIST. The default value varies depending upon the link speed." + ::= { agentStpCstPortEntry 12 } + + agentStpCstPortBpduGuardEffect OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "BPDU Guard Mode effect on the port. + + enable(1) - BPDU Guard Mode is enabled on the port. + disable(2) - BPDU Guard Mode is disabled on the port." + ::= { agentStpCstPortEntry 13 } + + agentStpCstPortBpduFilter OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This command sets BPDU Filter mode on the port. + + enable(1) - BPDU Filter Mode is enabled on the port. + disable(2) - BPDU Filter Mode is disabled on the port." + ::= { agentStpCstPortEntry 14 } + + agentStpCstPortBpduFlood OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This command sets BPDU Flood mode on the port. + + enable(1) - BPDU Flood Mode is enabled on the port. + disable(2) - BPDU Flood Mode is disabled on the port." + ::= { agentStpCstPortEntry 15 } + + agentStpCstPortAutoEdge OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This command sets the auto-edge mode of the port which enables it + to become an edge port if it does not see BPDUs for some duration. + + enable(1) - enables the auto-edge mode for the port. + disable(2) - disables the auto-edge mode for the port. + + The default auto-edge mode is disabled." + ::= { agentStpCstPortEntry 16 } + + agentStpCstPortRootGuard OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This command sets a port to discard any superior information + received by the port and thus protect against root of the device + from changing.The port gets put into discarding state and does + not forward any packets. + + enable(1) - enables the root-guard mode for the port. + disable(2) - disables the root-guard mode for the port. + + The default root-guard mode is disabled." + ::= { agentStpCstPortEntry 17 } + + agentStpCstPortTCNGuard OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This command restricts the port from propagating any topology change + information received through that port. + + enable(1) - enables the tcn-guard mode for the port. + disable(2) - disables the tcn-guard mode for the port. + + The default tcn-guard mode is disabled." + ::= { agentStpCstPortEntry 18 } + + agentStpCstPortLoopGuard OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This command enables loop guard on this port. This setting applies + to all Spanning Tree instances of which this port is a member. + + enable(1) - enables the loop guard mode for the port. + disable(2) - disables the loop guard mode for the port. + + The default loop-guard mode is disabled." + ::= { agentStpCstPortEntry 19 } + + --************************************************************************************** + -- agentStpMstTable + -- + --************************************************************************************** + + agentStpMstTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentStpMstEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MST table." + ::= { agentStpSwitchConfigGroup 10 } + + agentStpMstEntry OBJECT-TYPE + SYNTAX AgentStpMstEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MST entry." + INDEX { agentStpMstId } + ::= { agentStpMstTable 1 } + + AgentStpMstEntry ::= + SEQUENCE { + agentStpMstId + Unsigned32, + agentStpMstBridgePriority + Unsigned32, + agentStpMstBridgeIdentifier + OCTET STRING, + agentStpMstDesignatedRootId + OCTET STRING, + agentStpMstRootPathCost + Unsigned32, + agentStpMstRootPortId + OCTET STRING, + agentStpMstTimeSinceTopologyChange + TimeTicks, + agentStpMstTopologyChangeCount + Counter32, + agentStpMstTopologyChangeParm + INTEGER, + agentStpMstRowStatus + RowStatus + } + + agentStpMstId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP instance ID." + ::= { agentStpMstEntry 1 } + + agentStpMstBridgePriority OBJECT-TYPE + SYNTAX Unsigned32 (0..61440) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The MSTP bridge priority in a specific instance. The priority is + in the increments of 4096. The recommended default value is 32768." + ::= { agentStpMstEntry 2 } + + agentStpMstBridgeIdentifier OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP bridge identifier in a specific instance." + ::= { agentStpMstEntry 3 } + + agentStpMstDesignatedRootId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP designated root bridge identifier in a specific instance." + ::= { agentStpMstEntry 4 } + + agentStpMstRootPathCost OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP root path cost in a specific instance." + ::= { agentStpMstEntry 5 } + + agentStpMstRootPortId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP root port ID in a specific instance." + ::= { agentStpMstEntry 6 } + + agentStpMstTimeSinceTopologyChange OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP time since the last topology change in a specific instance." + ::= { agentStpMstEntry 7 } + + agentStpMstTopologyChangeCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP count of topology changes in a specific instance." + ::= { agentStpMstEntry 8 } + + agentStpMstTopologyChangeParm OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP topology change parameter in a specific instance." + ::= { agentStpMstEntry 9 } + + agentStpMstRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The MSTP instance status. + + Supported values: + active(1) - valid instance. + createAndGo(4) - used to create a new instance. + destroy(6) - removes an instance." + ::= { agentStpMstEntry 10 } + + --************************************************************************************** + -- agentStpMstPortTable + -- + --************************************************************************************** + + agentStpMstPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentStpMstPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MST port table." + ::= { agentStpSwitchConfigGroup 11 } + + agentStpMstPortEntry OBJECT-TYPE + SYNTAX AgentStpMstPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MST port entry." + INDEX { agentStpMstId, ifIndex } + ::= { agentStpMstPortTable 1 } + + AgentStpMstPortEntry ::= + SEQUENCE { + agentStpMstPortForwardingState + INTEGER, + agentStpMstPortId + OCTET STRING, + agentStpMstPortPathCost + Unsigned32, + agentStpMstPortPriority + Unsigned32, + agentStpMstDesignatedBridgeId + OCTET STRING, + agentStpMstDesignatedCost + Unsigned32, + agentStpMstDesignatedPortId + OCTET STRING, + agentStpMstPortLoopInconsistentState + INTEGER, + agentStpMstPortTransitionsIntoLoopInconsistentState + Counter32, + agentStpMstPortTransitionsOutOfLoopInconsistentState + Counter32 + } + + agentStpMstPortForwardingState OBJECT-TYPE + SYNTAX INTEGER { + discarding(1), + learning(2), + forwarding(3), + disabled(4), + manualFwd(5), + notParticipate(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP forwarding state of a specific port in a specific instance." + ::= { agentStpMstPortEntry 1 } + + agentStpMstPortId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(4)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP port identifier of a specific port in a specific instance." + ::= { agentStpMstPortEntry 2 } + + agentStpMstPortPathCost OBJECT-TYPE + SYNTAX Unsigned32 (0..200000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The MSTP port path cost in a specific instance. The default value will + correspond to the recommendation specified in IEEE 802.1s Table 13-2 + which varies depending upon link speed." + ::= { agentStpMstPortEntry 3 } + + agentStpMstPortPriority OBJECT-TYPE + SYNTAX Unsigned32 (0..240) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The MSTP port priority in a specific instance. The priority is + in the increments of 16. The default value is 128." + DEFVAL { 128 } + ::= { agentStpMstPortEntry 4 } + + agentStpMstDesignatedBridgeId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP designated bridge ID of a specific port in a specific instance." + ::= { agentStpMstPortEntry 5 } + + agentStpMstDesignatedCost OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP designated cost of a specific port in a specific instance." + ::= { agentStpMstPortEntry 6 } + + agentStpMstDesignatedPortId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MSTP designated port ID of a specific port in a specific instance." + ::= { agentStpMstPortEntry 7 } + + agentStpMstPortLoopInconsistentState OBJECT-TYPE + SYNTAX INTEGER { + false(0), + true(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The loop inconsistent state of a specific port in a specific instance. + This value can only report as true(1) when loop guard is enabled on the port + and the port has transitioned from blocking state in this MST instance." + ::= { agentStpMstPortEntry 8 } + + agentStpMstPortTransitionsIntoLoopInconsistentState OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times this interface has transitioned into loop inconsistent state." + ::= { agentStpMstPortEntry 9 } + + agentStpMstPortTransitionsOutOfLoopInconsistentState OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times this interface has transitioned out of loop inconsistent state." + ::= { agentStpMstPortEntry 10 } + + --************************************************************************************** + -- agentStpMstVlanTable + -- + --************************************************************************************** + + agentStpMstVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentStpMstVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MST VLAN table." + ::= { agentStpSwitchConfigGroup 12 } + + agentStpMstVlanEntry OBJECT-TYPE + SYNTAX AgentStpMstVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MST VLAN entry." + INDEX { agentStpMstId, dot1qVlanIndex } + ::= { agentStpMstVlanTable 1 } + + AgentStpMstVlanEntry ::= + SEQUENCE { + agentStpMstVlanRowStatus + RowStatus + } + + agentStpMstVlanRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The association status of an MSTP instance and a VLAN. + + Supported values: + active(1) - valid association between an MSTP instance and a VLAN. + createAndGo(4) - used to create a new association between an MSTP instance and a VLAN. + destroy(6) - removes the association between an MSTP instance and a VLAN." + ::= { agentStpMstVlanEntry 1 } + + agentStpBpduGuardMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The spanning tree BPDU Guard Mode. + + enable(1) - enables BPDU Guard Mode on the switch. + disable(2) - disables BPDU Guard Mode on the switch. + + The default status is disabled." + ::= { agentStpSwitchConfigGroup 13 } + + + agentStpBpduFilterDefault OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The spanning tree BPDU Filter Mode, it enables BPDU Filter on all + edge ports. + + enable(1) - enables BPDU Filter Mode on the switch. + disable(2) - disables BPDU Filter Mode on the switch. + + The default status is disabled." + ::= { agentStpSwitchConfigGroup 14 } + +--************************************************************************************** +-- agentAuthenticationGroup +--************************************************************************************** + agentAuthenticationGroup OBJECT IDENTIFIER ::= { agentConfigGroup 16 } + + agentAuthenticationListCreate OBJECT-TYPE + SYNTAX DisplayString (SIZE(0|1..15)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Authentication List Create + If set to a non empty string, creates a new Authentication List for + configuration." + + ::= { agentAuthenticationGroup 1 } + + --************************************************************************************** + + agentAuthenticationListTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentAuthenticationListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MST VLAN table." + ::= { agentAuthenticationGroup 2 } + + agentAuthenticationListEntry OBJECT-TYPE + SYNTAX AgentAuthenticationListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MST VLAN entry." + INDEX { agentAuthenticationListIndex } + ::= { agentAuthenticationListTable 1 } + + AgentAuthenticationListEntry ::= + SEQUENCE { + agentAuthenticationListIndex + Unsigned32, + agentAuthenticationListName + DisplayString, + agentAuthenticationListMethod1 + INTEGER, + agentAuthenticationListMethod2 + INTEGER, + agentAuthenticationListMethod3 + INTEGER, + agentAuthenticationListStatus + RowStatus, + agentAuthenticationListMethod4 + INTEGER + } + + agentAuthenticationListIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Authenticaiton List Index + Unique number used for indexing into this table." + + ::= { agentAuthenticationListEntry 1 } + + agentAuthenticationListName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Authenticaiton List Name + Unique name used to identify the Authentication List from other tables." + + ::= { agentAuthenticationListEntry 2 } + + agentAuthenticationListMethod1 OBJECT-TYPE + SYNTAX INTEGER { + local(1), + radius(2), + reject(3), + tacacs(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Authenticion List Method 1 + Configures the first authentication method to use when this list is + specified." + + ::= { agentAuthenticationListEntry 3 } + + agentAuthenticationListMethod2 OBJECT-TYPE + SYNTAX INTEGER { + undefined(1), + local(2), + radius(3), + reject(4), + tacacs(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Authenticion List Method 2 + Configures the second authentication method to use when this list is + specified." + + ::= { agentAuthenticationListEntry 4 } + + agentAuthenticationListMethod3 OBJECT-TYPE + SYNTAX INTEGER { + undefined(1), + local(2), + radius(3), + reject(4), + tacacs(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Authenticion List Method 3 + Configures the third authentication method to use when this list is + specified." + + ::= { agentAuthenticationListEntry 5 } + + agentAuthenticationListStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The status of the Authentication List. + + Supported values: + active(1) - indicates a valid Authenticaiton List + destroy(6) - removes the Authentication List." + ::= { agentAuthenticationListEntry 6 } + + agentAuthenticationListMethod4 OBJECT-TYPE + SYNTAX INTEGER { + undefined(1), + local(2), + radius(3), + reject(4), + tacacs(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Authenticion List Method 4 + Configures the fourth authentication method to use when this list is + specified." + + ::= { agentAuthenticationListEntry 7 } + + --************************************************************************************** + + agentUserConfigDefaultAuthenticationList OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..15)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Default Authentication List + This object configures which authentication list to use for users + which do not have an Authentication List configured. The list + must be configured before setting." + ::= { agentAuthenticationGroup 3 } + + --************************************************************************************** + + agentUserAuthenticationConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentUserAuthenticationConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "User Authentication Config Table" + ::= { agentAuthenticationGroup 4 } + + agentUserAuthenticationConfigEntry OBJECT-TYPE + SYNTAX AgentUserAuthenticationConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "User Authentication Config Entry" + AUGMENTS { agentUserConfigEntry } + ::= { agentUserAuthenticationConfigTable 1 } + + AgentUserAuthenticationConfigEntry ::= SEQUENCE { + agentUserAuthenticationList + DisplayString + } + + agentUserAuthenticationList OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..15)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "User Authentication List + This object configures which authentication list to use for this + user. The list must be configured before setting." + ::= { agentUserAuthenticationConfigEntry 1 } + + --************************************************************************************** + + agentUserPortConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentUserPortConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "User Port Config Table" + ::= { agentAuthenticationGroup 5 } + + agentUserPortConfigEntry OBJECT-TYPE + SYNTAX AgentUserPortConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "User Port Config Entry" + AUGMENTS { agentUserConfigEntry } + ::= { agentUserPortConfigTable 1 } + + AgentUserPortConfigEntry ::= SEQUENCE { + agentUserPortSecurity + AgentPortMask + } + + agentUserPortSecurity OBJECT-TYPE + SYNTAX AgentPortMask + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "User Port Port Security + This object configures which ports the user has access to. + Ports are indexed based on dot1dBasePort entries in + dot1dBasePortTable." + ::= { agentUserPortConfigEntry 1 } + + +--************************************************************************************** +-- agentClassOfServiceGroup +--************************************************************************************** + agentClassOfServiceGroup OBJECT IDENTIFIER ::= { agentConfigGroup 17 } + + agentClassOfServicePortTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentClassOfServicePortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about the 802.1p priority + mapping to traffic class priority queue for every physical port." + ::= { agentClassOfServiceGroup 1 } + + agentClassOfServicePortEntry OBJECT-TYPE + SYNTAX AgentClassOfServicePortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A 802.1p priority mapped to a traffic class priority queue." + INDEX { ifIndex, agentClassOfServicePortPriority } + ::= { agentClassOfServicePortTable 1 } + + AgentClassOfServicePortEntry ::= SEQUENCE { + agentClassOfServicePortPriority + INTEGER, + agentClassOfServicePortClass + INTEGER + } + + agentClassOfServicePortPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Priority value determined for the received frame. + This value is equivalent to the priority indicated in + the tagged frame received, or one of the evaluated + priorities, determined according to the media-type. + + For untagged frames received from Ethernet media, this + value is equal to the dot1dPortDefaultUserPriority value + for the ingress port." + ::= { agentClassOfServicePortEntry 1 } + + agentClassOfServicePortClass OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Traffic class priority queue the received frame is mapped to." + ::= { agentClassOfServicePortEntry 2 } + + + --************************************************************************************** + -- agentHTTPConfigGroup + -- + --************************************************************************************** + + agentHTTPConfigGroup OBJECT IDENTIFIER ::= { agentConfigGroup 19 } + + agentHTTPWebMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the HTTP server admin mode" + ::= { agentHTTPConfigGroup 1 } + + agentHTTPJavaMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the use of the Java interface through Web connections." + ::= { agentHTTPConfigGroup 2 } + + agentHTTPMaxSessions OBJECT-TYPE + SYNTAX Integer32 (0..16) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the maximum number of allowable HTTP sessions. The default + value is 16." + ::= { agentHTTPConfigGroup 3 } + + agentHTTPHardTimeout OBJECT-TYPE + SYNTAX Integer32 (1..168) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the hard timeout for HTTP sessions in hours. The default + value is 24 hours." + ::= { agentHTTPConfigGroup 4 } + + agentHTTPSoftTimeout OBJECT-TYPE + SYNTAX Integer32 (1..60) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configures the soft (activity) timeout for HTTP sessions in minutes. + The default value is 5 minutes." + ::= { agentHTTPConfigGroup 5 } + + --************************************************************************************** + -- agentAutoInstallConfigGroup + -- + --************************************************************************************** + + agentAutoInstallConfigGroup OBJECT IDENTIFIER ::= { agentConfigGroup 20 } + + agentAutoinstallMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/Disable Autoinstall on device." + ::= { agentAutoInstallConfigGroup 1 } + + agentAutoinstallAutosaveMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/Disable Auto Save of downloaded configuration on device." + ::= { agentAutoInstallConfigGroup 2 } + + + agentAutoinstallUnicastRetryCount OBJECT-TYPE + SYNTAX Integer32 (1..6) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Sets number of unicast TFTP attempts for configuration file." + ::= { agentAutoInstallConfigGroup 3 } + + agentAutoinstallStatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display current Autoinstall status on device." + ::= { agentAutoInstallConfigGroup 4 } + +--************************************************************************************** +-- agentSystemGroup +--************************************************************************************** + +agentSystemGroup OBJECT IDENTIFIER ::= { fastPathSwitching 3 } + + agentSaveConfig OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "enable(1) will initiate an configuration save to nvram. + + Status is returned by the object agentSaveConfigStatus." + ::= { agentSystemGroup 1 } + + agentClearConfig OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "clear config to factory defaults" + ::= { agentSystemGroup 2 } + + agentClearLags OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "clear lag configuration" + ::= { agentSystemGroup 3 } + + agentClearLoginSessions OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "close all telnet sessions" + ::= { agentSystemGroup 4 } + + agentClearPasswords OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "reset passwords" + ::= { agentSystemGroup 5 } + + agentClearPortStats OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "clear all port statistics" + ::= { agentSystemGroup 6 } + + agentClearSwitchStats OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "clear all switch statistics" + ::= { agentSystemGroup 7 } + + agentClearTrapLog OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "clear trap log" + ::= { agentSystemGroup 8 } + + agentClearVlan OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "clear vlan entries" + ::= { agentSystemGroup 9 } + + agentResetSystem OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Resets the switch. + + This object is not valid for stacking platforms." + ::= { agentSystemGroup 10 } + + agentSaveConfigStatus OBJECT-TYPE + SYNTAX INTEGER { + notInitiated(1), + savingInProcess(2), + savingComplete(3), + savingFailed(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current status of an save configuration request." + ::= { agentSystemGroup 11 } + + agentStartupConfigErase OBJECT-TYPE + SYNTAX INTEGER { + erase(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Erase the text-based configuration file stored in + non-volatile memory.On read returns 0." + ::= { agentSystemGroup 12 } + +--************************************************************************************** +-- agentCableTesterGroup +-- +-- This group provides configuration and status of the Virtual Cable Tester +-- feature. This provides cable fault and length estimation on copper cables. +-- Once initiated, the test requires up to 2 seconds before results are obtained. +-- If the link specified to test is active, it will go down for the duration of +-- the test. +-- +--************************************************************************************** + +agentCableTesterGroup OBJECT IDENTIFIER ::= { fastPathSwitching 4 } + + agentCableTesterStatus OBJECT-TYPE + SYNTAX INTEGER { + active(1), + success(2), + failure(3), + uninitialized(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Status of the Virtual Cable Tester + active(1) - cable testing is in progress. Set to this value + to start the test. + success(2) - A successful test was performed. Cannot be set. + failure(3) - A failure was encountered during the test. + Cannot be set. + uninitialized(4) - No test has been performed yet. Cannot be set." + DEFVAL { uninitialized } + ::= { agentCableTesterGroup 1 } + + agentCableTesterIfIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Determines on which port to perform the cable test. Limited to + copper based ports." + DEFVAL { 0 } + ::= { agentCableTesterGroup 2 } + + agentCableTesterCableStatus OBJECT-TYPE + SYNTAX INTEGER { + normal(1), + open(2), + short(3), + unknown(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the results of the Cable Test. + + + normal(1) - The cable is working correctly. + open(2) - The cable is disconnected or there is a faulty + connector. + short(3) - There is an electrical short in the cable. + unknown(4) - No test has been performed yet, or a test is + currently in progress." + DEFVAL { unknown } + ::= { agentCableTesterGroup 3 } + + agentCableTesterMinimumCableLength OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The estimated length of the cable in meters. This value + indicates the shortest length estimated. This object will + return 0 if agentCableTesterStatus is not success(2) or the cable + length is unknown." + DEFVAL { 0 } + ::= { agentCableTesterGroup 4 } + + agentCableTesterMaximumCableLength OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The estimated length of the cable in meters. This value + indicates the longest length estimated. This object will + return 0 if agentCableTesterStatus is not success(2) or the cable + length is unknown." + DEFVAL { 0 } + ::= { agentCableTesterGroup 5 } + + agentCableTesterCableFailureLocation OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The estimated distance in meters from the end of the cable to + the failure location. This object will return 0 if + agentCableTesterStatus is not success(2)." + DEFVAL { 0 } + ::= { agentCableTesterGroup 6 } + + +--************************************************************************************** + agentDaiConfigGroup OBJECT IDENTIFIER ::= { agentSwitchConfigGroup 22 } +--************************************************************************************** +--************ The Dynamic ARP Inspection Global Config Table ******** + + agentDaiSrcMacValidate OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether Sender MAC validation in the ARP + packets is enabled. + + If this object is set to 'true', validation + is enabled. + + If this object is set to 'false', validation + is disabled." + DEFVAL { false } + ::= { agentDaiConfigGroup 1 } + + agentDaiDstMacValidate OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether Target MAC validation in the ARP + Response packets is enabled. + + If this object is set to 'true', validation + is enabled. + + If this object is set to 'false', validation + is disabled." + DEFVAL { false } + ::= { agentDaiConfigGroup 2 } + + agentDaiIPValidate OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether IP address validation in the ARP + packets is enabled. + + If this object is set to 'true', validation + is enabled. + + If this object is set to 'false', validation + is disabled." + DEFVAL { false } + ::= { agentDaiConfigGroup 3 } + + +--************ The Dynamic ARP Inspection VLAN Config Table ******** + + agentDaiVlanConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDaiVlanConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table provides the mechanism to control Dynamic ARP + Inspection per VLAN. When a VLAN is created in a device + supporting this table, a corresponding entry of this table + will be added." + ::= { agentDaiConfigGroup 4 } + + agentDaiVlanConfigEntry OBJECT-TYPE + SYNTAX AgentDaiVlanConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A row instance contains the configuration for Dynamic + ARP Inspection at each existing VLAN." + INDEX { agentDaiVlanIndex } + ::= { agentDaiVlanConfigTable 1 } + + AgentDaiVlanConfigEntry ::= SEQUENCE { + agentDaiVlanIndex VlanIndex, + agentDaiVlanDynArpInspEnable TruthValue, + agentDaiVlanLoggingEnable TruthValue, + agentDaiVlanArpAclName DisplayString, + agentDaiVlanArpAclStaticFlag TruthValue + } + + agentDaiVlanIndex OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the VLAN number on which Dynamic ARP + Inspection feature is configured." + ::= { agentDaiVlanConfigEntry 1 } + + agentDaiVlanDynArpInspEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether Dynamic ARP Inspection is + enabled in this VLAN. + + If this object is set to 'true', Dynamic ARP Inspection + is enabled. + + If this object is set to 'false', Dynamic ARP Inspection + is disabled." + DEFVAL { false } + ::= { agentDaiVlanConfigEntry 2 } + + agentDaiVlanLoggingEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether the Dynamic ARP Inspection + logging is enabled on this VlAN. + If this object is set to 'true', Dynamic ARP Inspection + logging is enabled. + If this object is set to 'false', Dynamic ARP Inspection + loging is disabled." + DEFVAL { true } + ::= { agentDaiVlanConfigEntry 3 } + + agentDaiVlanArpAclName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the ARP ACL name set for this VLAN." + ::= { agentDaiVlanConfigEntry 4 } + + agentDaiVlanArpAclStaticFlag OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether the ARP ACL set for this + VLAN has static flag set. + If this object is set to 'true', static flag is enabled. + If this object is set to 'false', static flag is disabled." + DEFVAL { false } + ::= { agentDaiVlanConfigEntry 5 } + +--************ The Dynamic ARP Inspection Vlan Statistics Table ******** + + agentDaiStatsReset OBJECT-TYPE + SYNTAX INTEGER { + none(0), + reset(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Clear the DAI statistics on all vlans. A value of reset(1) + is used to reset the statistics. A read on this object will + always return the value none(0). The value none(0) cannot + be forcibly set by the administrator." + ::= { agentDaiConfigGroup 5 } + + agentDaiVlanStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDaiVlanStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table provides the mechanism to control Dynamic ARP + Inspection per VLAN. When a VLAN is created in a device + supporting this table, a corresponding entry of this table + will be added." + ::= { agentDaiConfigGroup 6 } + + agentDaiVlanStatsEntry OBJECT-TYPE + SYNTAX AgentDaiVlanStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A row instance contains the Dynamic ARP Inspection + statistics per VLAN." + INDEX { agentDaiVlanStatsIndex } + ::= { agentDaiVlanStatsTable 1 } + + AgentDaiVlanStatsEntry ::= SEQUENCE { + agentDaiVlanStatsIndex VlanIndex, + agentDaiVlanPktsForwarded Counter32, + agentDaiVlanPktsDropped Counter32, + agentDaiVlanDhcpDrops Counter32, + agentDaiVlanDhcpPermits Counter32, + agentDaiVlanAclDrops Counter32, + agentDaiVlanAclPermits Counter32, + agentDaiVlanSrcMacFailures Counter32, + agentDaiVlanDstMacFailures Counter32, + agentDaiVlanIpValidFailures Counter32 + } + + agentDaiVlanStatsIndex OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the VLAN number on which Dynamic ARP + Inspection statistics are retrieved." + ::= { agentDaiVlanStatsEntry 1 } + + agentDaiVlanPktsForwarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of valid ARP packets forwarded by DAI." + ::= { agentDaiVlanStatsEntry 2 } + + agentDaiVlanPktsDropped OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of invalid ARP packets dropped by DAI." + ::= { agentDaiVlanStatsEntry 3 } + + agentDaiVlanDhcpDrops OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of ARP packets that were dropped by DAI as + there is no matching DHCP Snooping binding entry found." + ::= { agentDaiVlanStatsEntry 4 } + + agentDaiVlanDhcpPermits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of ARP packets that were forwarded by DAI as + there is a matching DHCP Snooping binding entry found." + ::= { agentDaiVlanStatsEntry 5 } + + agentDaiVlanAclDrops OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of ARP packets that were dropped by DAI as + there is no matching ARP ACL rule found for this Vlan and + the static flag is set on this vlan." + ::= { agentDaiVlanStatsEntry 6 } + + agentDaiVlanAclPermits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of ARP packets that were permitted by DAI as + there is a matching ARP ACL rule found for this Vlan." + ::= { agentDaiVlanStatsEntry 7 } + + agentDaiVlanSrcMacFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of ARP packets that were dropped by DAI as the + sender mac address in ARP packet didn't match the source + mac in ethernet header." + ::= { agentDaiVlanStatsEntry 8 } + + agentDaiVlanDstMacFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of ARP packets that were dropped by DAI as the + target mac address in ARP reply packet didn't match the + destination mac in ethernet header." + ::= { agentDaiVlanStatsEntry 9 } + + agentDaiVlanIpValidFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of ARP packets that were dropped by DAI as the + sender IP address in ARP packet or target IP address in + ARP reply packet is invalid. Invalid addresses include + 0.0.0.0, 255.255.255.255, IP multicast addresses, + class E addresses (240.0.0.0/4), loopback addresses (127.0.0.0/8)." + ::= { agentDaiVlanStatsEntry 10 } + +--************ The Dynamic ARP Inspection Interface Config Table ******** + + agentDaiIfConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDaiIfConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table provides the mechanism to configure the trust + state for Dynamic ARP Inspection purpose at each physical + interface capable of this feature." + ::= { agentDaiConfigGroup 7 } + + agentDaiIfConfigEntry OBJECT-TYPE + SYNTAX AgentDaiIfConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A row instance contains the configuration for + Dynamic ARP Inspection at each physical + interface capable of this feature." + INDEX { ifIndex } + ::= { agentDaiIfConfigTable 1 } + + AgentDaiIfConfigEntry ::= SEQUENCE { + agentDaiIfTrustEnable TruthValue, + agentDaiIfRateLimit Unsigned32, + agentDaiIfBurstInterval Unsigned32 + } + + agentDaiIfTrustEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether the interface is trusted for + Dynamic ARP Inspection purpose. + + If this object is set to 'true', the interface is trusted. + ARP packets coming to this interface will be forwarded + without checking. + + If this object is set to 'false', the interface is not + trusted. ARP packets coming to this interface will be + subjected to ARP inspection." + DEFVAL { false } + ::= { agentDaiIfConfigEntry 1 } + + agentDaiIfRateLimit OBJECT-TYPE + SYNTAX Unsigned32 (0..300) + UNITS "packets per second" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates rate limit value for Dynamic ARP + Inspection purpose. If the incoming rate of ARP packets + exceeds the value of this object for consecutively + burst interval seconds, ARP packets will be + dropped. " + DEFVAL { 15 } + ::= { agentDaiIfConfigEntry 2 } + + agentDaiIfBurstInterval OBJECT-TYPE + SYNTAX Unsigned32 (1..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the burst interval value + for rate limiting purpose on this interface." + DEFVAL { 1 } + ::= { agentDaiIfConfigEntry 3 } + + +--************************************************************************************** + + agentArpAclGroup OBJECT IDENTIFIER ::= { agentSwitchConfigGroup 23 } + +--************************************************************************************** + +--*********************** ARP ACL Config Table *********************** + + agentArpAclTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentArpAclEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the ARP ACL entries" + ::= { agentArpAclGroup 1 } + + agentArpAclEntry OBJECT-TYPE + SYNTAX AgentArpAclEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for an ARP ACL" + INDEX { agentArpAclName } + ::= { agentArpAclTable 1 } + + AgentArpAclEntry ::= SEQUENCE { + agentArpAclName + DisplayString, + agentArpAclRowStatus + RowStatus + } + + agentArpAclName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Name of the ARP ACL, which must consist of 1 to 31 alphanumeric + characters and uniquely identify this ARP ACL. This object must + be set to complete a new ARP ACL row instance." + ::= { agentArpAclEntry 1 } + + agentArpAclRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. Entries can not be deleted until all rows in + arpAclRuleTable with corresponding values of arpAclIndex have been deleted. + + active(1) - this ACL instance is active + createAndGo(4) - set to this value to create an instance + destroy(6) - set to this value to delete an instance" + ::= { agentArpAclEntry 2 } + + +--*********************** ARP ACL Rule Config Table *********************** + + agentArpAclRuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentArpAclRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the ARP ACL Rule entries" + ::= { agentArpAclGroup 2 } + + agentArpAclRuleEntry OBJECT-TYPE + SYNTAX AgentArpAclRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for a set of ARP ACL-match rules" + INDEX { agentArpAclName, agentArpAclRuleMatchSenderIpAddr, agentArpAclRuleMatchSenderMacAddr } + ::= { agentArpAclRuleTable 1 } + + AgentArpAclRuleEntry ::= SEQUENCE { + agentArpAclRuleMatchSenderIpAddr + IpAddress, + agentArpAclRuleMatchSenderMacAddr + MacAddress, + agentArpAclRuleRowStatus + RowStatus + } + + agentArpAclRuleMatchSenderIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Sender IP address match value for the ARP ACL." + ::= { agentArpAclRuleEntry 1 } + + agentArpAclRuleMatchSenderMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Sender MAC address match value for the ARP ACL." + ::= { agentArpAclRuleEntry 2 } + + agentArpAclRuleRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. + + active(1) - this ACL Rule is active + createAndGo(4) - set to this value to create an instance + destroy(6) - set to this value to delete an instance" + ::= { agentArpAclRuleEntry 3 } + + +--************************************************************************************** + agentDhcpSnoopingConfigGroup OBJECT IDENTIFIER ::= { agentSwitchConfigGroup 24 } +--************************************************************************************** +--************ The DHCP SNOOPING Global Config Table ******** + + agentDhcpSnoopingAdminMode OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether DHCP Snooping + is enabled globally. + + If this object is set to 'true',admin mode + is enabled globally. + + If this object is set to 'false',admin mode + is disabled globally." + DEFVAL { false } + ::= { agentDhcpSnoopingConfigGroup 1 } + + agentDhcpSnoopingVerifyMac OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether source Mac address + in the received DHCP Message needs to be verified or not. + + If this object is set to 'true',verifyMac + is enabled globally. + + If this object is set to 'false',verifyMac + is disabled globally." + DEFVAL { false } + ::= { agentDhcpSnoopingConfigGroup 2 } + + agentDhcpSnoopingVlanConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDhcpSnoopingVlanConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table provides the mechanism to control DHCP SNOOPING + per VLAN. When a VLAN is created in a device + supporting this table, a corresponding entry of this table + will be added." + ::= { agentDhcpSnoopingConfigGroup 3 } + + + agentDhcpSnoopingVlanConfigEntry OBJECT-TYPE + SYNTAX AgentDhcpSnoopingVlanConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A row instance contains the configuration for DHCP + SNOOPING at each existing VLAN." + INDEX { agentDhcpSnoopingVlanIndex } + ::= { agentDhcpSnoopingVlanConfigTable 1 } + + AgentDhcpSnoopingVlanConfigEntry ::= SEQUENCE { + agentDhcpSnoopingVlanIndex VlanIndex, + agentDhcpSnoopingVlanEnable TruthValue + } + + agentDhcpSnoopingVlanIndex OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the VLAN number on which DHCP SNOOPING + Inspection feature is configured." + ::= { agentDhcpSnoopingVlanConfigEntry 1 } + + agentDhcpSnoopingVlanEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether DHCP SNOOPING is + enabled in this VLAN. + + If this object is set to 'true', DHCP SNOOPING + is enabled. + + If this object is set to 'false', DHCP SNOOPING + is disabled." + DEFVAL { false } + ::= { agentDhcpSnoopingVlanConfigEntry 2 } + + +--************ The DHCP snooping Interface Config Table ******** + + agentDhcpSnoopingIfConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDhcpSnoopingIfConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table provides the mechanism to configure the trust + state for DHCP snooping purpose at each physical + interface capable of this feature." + ::= { agentDhcpSnoopingConfigGroup 4 } + + agentDhcpSnoopingIfConfigEntry OBJECT-TYPE + SYNTAX AgentDhcpSnoopingIfConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A row instance contains the configuration for + DHCP snooping at each physical interface capable of this feature." + INDEX { ifIndex } + ::= { agentDhcpSnoopingIfConfigTable 1 } + + AgentDhcpSnoopingIfConfigEntry ::= SEQUENCE { + agentDhcpSnoopingIfTrustEnable TruthValue, + agentDhcpSnoopingIfLogEnable TruthValue, + agentDhcpSnoopingIfRateLimit Unsigned32, + agentDhcpSnoopingIfBurstInterval Unsigned32 + } + + agentDhcpSnoopingIfTrustEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether the interface is trusted for + DHCP snooping purpose." + + DEFVAL { false } + ::= { agentDhcpSnoopingIfConfigEntry 1 } + + agentDhcpSnoopingIfLogEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether the Logging needs on DHCP snooping validations + or not" + + DEFVAL { false } + ::= { agentDhcpSnoopingIfConfigEntry 2 } + + agentDhcpSnoopingIfRateLimit OBJECT-TYPE + SYNTAX Unsigned32 (0..300) + UNITS "packets per second" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates rate limit value for DHCP + Snooping purpose. If the incoming rate of DHCP packets + exceeds the value of this object for consecutively + burst interval seconds, DHCP packets will be + dropped. " + DEFVAL { 15 } + ::= { agentDhcpSnoopingIfConfigEntry 3 } + + agentDhcpSnoopingIfBurstInterval OBJECT-TYPE + SYNTAX Unsigned32 (1..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the burst interval value + for rate limiting purpose on this interface." + DEFVAL { 1 } + ::= { agentDhcpSnoopingIfConfigEntry 4 } + +--************ The IPSG Interface Config Table ******** + + agentIpsgIfConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentIpsgIfConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table provides the mechanism to configure the IPSG + at each physical interface capable of this feature." + ::= { agentDhcpSnoopingConfigGroup 5 } + + agentIpsgIfConfigEntry OBJECT-TYPE + SYNTAX AgentIpsgIfConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A row instance contains the configuration for + IPSG at each physical interface capable of this feature." + INDEX { ifIndex } + ::= { agentIpsgIfConfigTable 1 } + + AgentIpsgIfConfigEntry ::= SEQUENCE { + agentIpsgIfVerifySource TruthValue, + agentIpsgIfPortSecurity TruthValue + } + + agentIpsgIfVerifySource OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether the interface is enabled for IPSG + to forward the data based up on source Ip address" + + DEFVAL { false } + ::= { agentIpsgIfConfigEntry 1 } + + agentIpsgIfPortSecurity OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether the interface is enabled for IPSG + to forward the data based up on source mac address in fdb table" + + DEFVAL { false } + ::= { agentIpsgIfConfigEntry 2 } + +--************ The DHCP snooping Statistics Table ******** + + agentDhcpSnoopingStatsReset OBJECT-TYPE + SYNTAX INTEGER { + none(0), + reset(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Clear the DHCP snooping statistics on all ports. A value of reset(1) + is used to reset the statistics. A read on this object will + always return the value none(0). The value none(0) cannot + be forcibly set by the administrator." + ::= { agentDhcpSnoopingConfigGroup 6 } + + agentDhcpSnoopingStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDhcpSnoopingStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table provides the mechanism for statics of DHCP snooping." + ::= { agentDhcpSnoopingConfigGroup 7 } + + agentDhcpSnoopingStatsEntry OBJECT-TYPE + SYNTAX AgentDhcpSnoopingStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A row instance contains the DHCP snooping statistics per VLAN." + INDEX { ifIndex } + ::= { agentDhcpSnoopingStatsTable 1 } + + AgentDhcpSnoopingStatsEntry ::= SEQUENCE { + + agentDhcpSnoopingMacVerifyFailures Counter32, + agentDhcpSnoopingInvalidClientMessages Counter32, + agentDhcpSnoopingInvalidServerMessages Counter32 + } + + agentDhcpSnoopingMacVerifyFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of failure verifications of client mac address with + source mac address" + ::= { agentDhcpSnoopingStatsEntry 1 } + + agentDhcpSnoopingInvalidClientMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of invalid DHCP releases and denay messages" + ::= { agentDhcpSnoopingStatsEntry 2 } + + agentDhcpSnoopingInvalidServerMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of invalid DHCP server mesaages" + ::= { agentDhcpSnoopingStatsEntry 3 } + +--*********************** IPSG static entries Config Table *********************** + + agentStaticIpsgBindingTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentStaticIpsgBinding + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the IPSG static entries" + ::= { agentDhcpSnoopingConfigGroup 8 } + + agentStaticIpsgBinding OBJECT-TYPE + SYNTAX AgentStaticIpsgBinding + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents a binding in IPSG table" + INDEX { agentStaticIpsgBindingIfIndex, agentStaticIpsgBindingVlanId, + agentStaticIpsgBindingMacAddr, agentStaticIpsgBindingIpAddr + } + ::= { agentStaticIpsgBindingTable 1 } + + AgentStaticIpsgBinding ::= SEQUENCE { + + agentStaticIpsgBindingIfIndex InterfaceIndex, + agentStaticIpsgBindingVlanId VlanIndex, + agentStaticIpsgBindingMacAddr MacAddress, + agentStaticIpsgBindingIpAddr IpAddress, + agentStaticIpsgBindingRowStatus RowStatus + } + + agentStaticIpsgBindingIfIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Interface on which this IPSG binding is going to be added." + ::= { agentStaticIpsgBinding 1 } + + agentStaticIpsgBindingVlanId OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " VLAN to whcig this IPSG binding is going to be added." + ::= { agentStaticIpsgBinding 2 } + + agentStaticIpsgBindingMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "MAC address match value for the IPSG Binding." + ::= { agentStaticIpsgBinding 3 } + + agentStaticIpsgBindingIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "IP address match value for the IPSG Binding." + ::= { agentStaticIpsgBinding 4 } + + agentStaticIpsgBindingRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. + + active(1) - this IPSG Binding is active + createAndGo(4) - set to this value to create an instance + destroy(6) - set to this value to delete an instance" + ::= { agentStaticIpsgBinding 5 } + +--*********************** IPSG dynamic entries Config ready only Table *********************** + + agentDynamicIpsgBindingTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDynamicIpsgBinding + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the IPSG dynamic entries" + ::= { agentDhcpSnoopingConfigGroup 9 } + + agentDynamicIpsgBinding OBJECT-TYPE + SYNTAX AgentDynamicIpsgBinding + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents a binding in IPSG table" + INDEX { agentDynamicIpsgBindingIfIndex, agentDynamicIpsgBindingVlanId, + agentDynamicIpsgBindingMacAddr, agentDynamicIpsgBindingIpAddr + } + ::= { agentDynamicIpsgBindingTable 1 } + + AgentDynamicIpsgBinding ::= SEQUENCE { + + agentDynamicIpsgBindingIfIndex InterfaceIndex, + agentDynamicIpsgBindingVlanId VlanIndex, + agentDynamicIpsgBindingMacAddr MacAddress, + agentDynamicIpsgBindingIpAddr IpAddress + } + + agentDynamicIpsgBindingIfIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface on which this IPSG binding is added." + ::= { agentDynamicIpsgBinding 1 } + + agentDynamicIpsgBindingVlanId OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " VLAN to whcig this IPSG binding is going to be added." + ::= { agentDynamicIpsgBinding 2 } + + agentDynamicIpsgBindingMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MAC address match value for the IPSG Binding." + ::= { agentDynamicIpsgBinding 3 } + + + agentDynamicIpsgBindingIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Sender IP address match value for the IPSG Binding." + ::= { agentDynamicIpsgBinding 4 } + +--*********************** DHCP SNOOPING static bindings Config Table *********************** + + agentStaticDsBindingTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentStaticDsBinding + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the DHCP SNOOPING static entries" + ::= { agentDhcpSnoopingConfigGroup 10 } + + agentStaticDsBinding OBJECT-TYPE + SYNTAX AgentStaticDsBinding + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents a binding in DHCP SNOOPING table" + INDEX { + agentStaticDsBindingMacAddr + } + ::= { agentStaticDsBindingTable 1 } + + AgentStaticDsBinding ::= SEQUENCE { + + agentStaticDsBindingIfIndex InterfaceIndex, + agentStaticDsBindingVlanId VlanIndex, + agentStaticDsBindingMacAddr MacAddress, + agentStaticDsBindingIpAddr IpAddress, + agentStaticDsBindingRowStatus RowStatus + } + + agentStaticDsBindingIfIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Interface on which this DHCP SNOOPING binding is going to be added." + ::= { agentStaticDsBinding 1 } + + agentStaticDsBindingVlanId OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " VLAN to whcig this DHCP SNOOPING binding is going to be added." + ::= { agentStaticDsBinding 2 } + agentStaticDsBindingMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "MAC address match value for the DHCP SNOOPING Binding." + ::= { agentStaticDsBinding 3 } + + agentStaticDsBindingIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "IP address match value for the DHCP SNOOPING Binding." + ::= { agentStaticDsBinding 4 } + + agentStaticDsBindingRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. + + active(1) - this DHCP SNOOPING Binding is active + createAndGo(4) - set to this value to create an instance + destroy(6) - set to this value to delete an instance" + ::= { agentStaticDsBinding 5 } + +--*********************** DHCP SNOOPING Dynamic bindings Config Table *********************** + + agentDynamicDsBindingTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDynamicDsBinding + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the DHCP SNOOPING Dynamic entries" + ::= { agentDhcpSnoopingConfigGroup 11 } + + agentDynamicDsBinding OBJECT-TYPE + SYNTAX AgentDynamicDsBinding + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents a binding in DHCP SNOOPING table" + INDEX { agentDynamicDsBindingMacAddr } + ::= { agentDynamicDsBindingTable 11 } + + AgentDynamicDsBinding ::= SEQUENCE { + + agentDynamicDsBindingIfIndex InterfaceIndex, + agentDynamicDsBindingVlanId VlanIndex, + agentDynamicDsBindingMacAddr MacAddress, + agentDynamicDsBindingIpAddr IpAddress, + agentDynamicDsBindingLeaseRemainingTime TimeTicks + } + + agentDynamicDsBindingIfIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface on which this DHCP SNOOPING binding is going to be added." + ::= { agentDynamicDsBinding 1 } + + agentDynamicDsBindingVlanId OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " VLAN to whcig this DHCP SNOOPING binding is going to be added." + ::= { agentDynamicDsBinding 2 } + agentDynamicDsBindingMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MAC address match value for the DHCP SNOOPING Binding." + ::= { agentDynamicDsBinding 3 } + + agentDynamicDsBindingIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP address match value for the DHCP SNOOPING Binding." + ::= { agentDynamicDsBinding 4 } + + agentDynamicDsBindingLeaseRemainingTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This specifies the period for which the DHCP SNOOPING Binding is valid." + ::= { agentDynamicDsBinding 5 } + + +--*********************** DHCP SNOOPING Remote Storage configurations ***********************a + + agentDhcpSnoopingRemoteFileName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the file name on the remote machine + to save the DHCP Snooping bindings. This will be set only + when we have a valid remote IP." + ::= { agentDhcpSnoopingConfigGroup 12 } + + agentDhcpSnoopingRemoteIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IP address of the remote machine + to save the DHCP Snooping bindings. This will be set only + when we have a valid file name." + ::= { agentDhcpSnoopingConfigGroup 13 } + + agentDhcpSnoopingStoreInterval OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the perodic time interval + to save the DHCP Snooping bindings." + ::= { agentDhcpSnoopingConfigGroup 14 } + + +--************************************************************************************** +-- agentDhcpL2RelayConfigGroup +--************************************************************************************** + + agentDhcpL2RelayConfigGroup OBJECT IDENTIFIER ::= { agentSwitchConfigGroup 25 } + +--************************************************************************************** + + agentDhcpL2RelayAdminMode OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether DHCP L2 Relay + is enabled globally. + + If this object is set to 'true',admin mode + is enabled globally. + + If this object is set to 'false',admin mode + is disabled globally." + DEFVAL { false } + ::= { agentDhcpL2RelayConfigGroup 1 } + + +--************ The DHCP L2Relay Interface Config Table ******** + + agentDhcpL2RelayIfConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDhcpL2RelayIfConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table provides the mechanism to enable/disable and configure + the trust state for DHCP L2Relay purpose at each physical + interface capable of this feature." + ::= { agentDhcpL2RelayConfigGroup 2 } + + agentDhcpL2RelayIfConfigEntry OBJECT-TYPE + SYNTAX AgentDhcpL2RelayIfConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A row instance contains the configuration for + DHCP L2 Relay at each physical interface capable of this feature." + INDEX { ifIndex } + ::= { agentDhcpL2RelayIfConfigTable 1 } + + AgentDhcpL2RelayIfConfigEntry ::= SEQUENCE { + agentDhcpL2RelayIfEnable TruthValue, + agentDhcpL2RelayIfTrustEnable TruthValue + } + + agentDhcpL2RelayIfEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether the DHCP L2Relay is enabled + or not" + + DEFVAL { false } + ::= { agentDhcpL2RelayIfConfigEntry 1 } + + agentDhcpL2RelayIfTrustEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether the interface is trusted for + DHCP L2 Relay purpose." + + DEFVAL { false } + ::= { agentDhcpL2RelayIfConfigEntry 2 } + +--************ The DHCP L2 Relay VLAN Config Table ******** + + agentDhcpL2RelayVlanConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDhcpL2RelayVlanConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table provides the mechanism to control DHCP L2 Relay + per VLAN. When a VLAN is created in a device + supporting this table, a corresponding entry of this table + will be added." + ::= { agentDhcpL2RelayConfigGroup 3 } + + + agentDhcpL2RelayVlanConfigEntry OBJECT-TYPE + SYNTAX AgentDhcpL2RelayVlanConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A row instance contains the configuration for DHCP + L2 Relay at each existing VLAN." + INDEX { agentDhcpL2RelayVlanIndex } + ::= { agentDhcpL2RelayVlanConfigTable 1 } + + AgentDhcpL2RelayVlanConfigEntry ::= SEQUENCE { + agentDhcpL2RelayVlanIndex VlanIndex, + agentDhcpL2RelayVlanEnable TruthValue, + agentDhcpL2RelayCircuitIdVlanEnable TruthValue, + agentDhcpL2RelayRemoteIdVlanEnable DisplayString + } + + agentDhcpL2RelayVlanIndex OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the VLAN number on which DHCP L2 Relay + feature is configured." + ::= { agentDhcpL2RelayVlanConfigEntry 1 } + + agentDhcpL2RelayVlanEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether DHCP L2 Relay is + enabled in this VLAN. + + If this object is set to 'true', DHCP L2 Relay + is enabled. + + If this object is set to 'false', DHCP L2 Relay + is disabled." + DEFVAL { false } + ::= { agentDhcpL2RelayVlanConfigEntry 2 } + + agentDhcpL2RelayCircuitIdVlanEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether DHCP CircuitId is + enabled for L2 relaying in this VLAN. + + If this object is set to 'true', DHCP CircuitId + is enabled. + + If this object is set to 'false', DHCP CircuitId + is disabled." + DEFVAL { false } + ::= { agentDhcpL2RelayVlanConfigEntry 3 } + + agentDhcpL2RelayRemoteIdVlanEnable OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..128)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "When this object is set with a non-empty string, DHCP RemoteId is + enabled for L2 relaying in this VLAN." + ::= { agentDhcpL2RelayVlanConfigEntry 4 } + +--************ The DHCP L2 Relay Statistics Table ******** + + agentDhcpL2RelayStatsReset OBJECT-TYPE + SYNTAX INTEGER { + none(0), + reset(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Clear the DHCP L2Relay statistics on all ports. A value of reset(1) + is used to reset the statistics. A read on this object will + always return the value none(0). The value none(0) cannot + be forcibly set by the administrator." + ::= { agentDhcpL2RelayConfigGroup 6 } + + agentDhcpL2RelayStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentDhcpL2RelayStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table provides the mechanism for statics of DHCP L2 Relay." + ::= { agentDhcpL2RelayConfigGroup 7 } + + agentDhcpL2RelayStatsEntry OBJECT-TYPE + SYNTAX AgentDhcpL2RelayStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A row instance contains the DHCP L2Relay statistics per interface." + INDEX { ifIndex } + ::= { agentDhcpL2RelayStatsTable 1 } + + AgentDhcpL2RelayStatsEntry ::= SEQUENCE { + + agentDhcpL2RelayUntrustedSrvrMsgsWithOptn82 Counter32, + agentDhcpL2RelayUntrustedClntMsgsWithOptn82 Counter32, + agentDhcpL2RelayTrustedSrvrMsgsWithoutOptn82 Counter32, + agentDhcpL2RelayTrustedClntMsgsWithoutOptn82 Counter32 + } + + agentDhcpL2RelayUntrustedSrvrMsgsWithOptn82 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of DHCP server messages received with Option-82 field + on the untrusted interface." + ::= { agentDhcpL2RelayStatsEntry 1 } + + agentDhcpL2RelayUntrustedClntMsgsWithOptn82 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of DHCP client messages received with Option-82 field + on the untrusted interface." + ::= { agentDhcpL2RelayStatsEntry 2 } + + agentDhcpL2RelayTrustedSrvrMsgsWithoutOptn82 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of DHCP server messages received without Option-82 field + on the trusted interface." + ::= { agentDhcpL2RelayStatsEntry 3 } + + agentDhcpL2RelayTrustedClntMsgsWithoutOptn82 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of DHCP client messages received without Option-82 field + on the trusted interface." + ::= { agentDhcpL2RelayStatsEntry 4 } +--************************************************************************************** + -- agentSwitchVoiceVLANGroup + -- + --************************************************************************************** + + agentSwitchVoiceVLANGroup OBJECT IDENTIFIER ::= { agentSwitchConfigGroup 26 } + + agentSwitchVoiceVLANAdminMode OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This enables or disables Voice VLAN on the system." + DEFVAL { disable } + ::= { agentSwitchVoiceVLANGroup 1 } + + agentSwitchVoiceVlanDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF AgentSwitchVoiceVlanDeviceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the Voice Vlan device entries." + ::= { agentSwitchVoiceVLANGroup 2 } + + agentSwitchVoiceVlanDeviceEntry OBJECT-TYPE + SYNTAX AgentSwitchVoiceVlanDeviceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Represents entry for a Voice Device on the interface." + INDEX { agentSwitchVoiceVlanInterfaceNum, agentSwitchVoiceVlanDeviceMacAddress } + ::= { agentSwitchVoiceVlanDeviceTable 1 } + + AgentSwitchVoiceVlanDeviceEntry ::= SEQUENCE { + agentSwitchVoiceVlanInterfaceNum + Integer32, + agentSwitchVoiceVlanDeviceMacAddress + MacAddress + } + + agentSwitchVoiceVlanInterfaceNum OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The interface number of this interface." + ::= {agentSwitchVoiceVlanDeviceEntry 1 } + + agentSwitchVoiceVlanDeviceMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Voice Device Mac address" + ::= { agentSwitchVoiceVlanDeviceEntry 2 } + + +--******************************************************************************************************************* +--************************************************************************************* +-- Traps +--************************************************************************************** + + fastPathSwitchingTraps OBJECT IDENTIFIER ::= { fastPathSwitching 0 } + + + multipleUsersTrap NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "This trap is sent when more than one user is logged in with + administrative access. Only applies to CLI interface." + ::= { fastPathSwitchingTraps 1 } + + broadcastStormStartTrap NOTIFICATION-TYPE + STATUS obsolete + DESCRIPTION + "This trap is sent when a broadcast storm is detected." + ::= { fastPathSwitchingTraps 2 } + + broadcastStormEndTrap NOTIFICATION-TYPE + STATUS obsolete + DESCRIPTION + "This trap is sent when a broadcast storm is no longer + detected." + ::= { fastPathSwitchingTraps 3 } + + linkFailureTrap NOTIFICATION-TYPE + STATUS obsolete + DESCRIPTION + "" + ::= { fastPathSwitchingTraps 4 } + + vlanRequestFailureTrap NOTIFICATION-TYPE + OBJECTS { + dot1qVlanIndex + } + STATUS obsolete + DESCRIPTION + "" + ::= { fastPathSwitchingTraps 5 } + + vlanDeleteLastTrap NOTIFICATION-TYPE + OBJECTS { + dot1qVlanIndex + } + STATUS current + DESCRIPTION + "Trap is sent when attempting to delete the last configured VLAN + or the Default VLAN." + ::= { fastPathSwitchingTraps 6 } + + vlanDefaultCfgFailureTrap NOTIFICATION-TYPE + OBJECTS { + dot1qVlanIndex + } + STATUS current + DESCRIPTION + "Trap is sent if there are failures in resetting VLAN + configuration to defaults." + ::= { fastPathSwitchingTraps 7 } + + vlanRestoreFailureTrap NOTIFICATION-TYPE + OBJECTS { + dot1qVlanIndex + } + STATUS obsolete + DESCRIPTION + "" + ::= { fastPathSwitchingTraps 8 } + + fanFailureTrap NOTIFICATION-TYPE + STATUS obsolete + DESCRIPTION + "" + ::= { fastPathSwitchingTraps 9 } + + stpInstanceNewRootTrap NOTIFICATION-TYPE + OBJECTS { + agentStpMstId + } + STATUS current + DESCRIPTION + "Trap is sent when this machine is a new STP Root when there is more + than one STP instance." + ::= { fastPathSwitchingTraps 10 } + + stpInstanceTopologyChangeTrap NOTIFICATION-TYPE + OBJECTS { + agentStpMstId + } + STATUS current + DESCRIPTION + "Trap is sent when there is a STP topology change when there is more + than one STP instance." + ::= { fastPathSwitchingTraps 11 } + + powerSupplyStatusChangeTrap NOTIFICATION-TYPE + STATUS obsolete + DESCRIPTION + "" + ::= { fastPathSwitchingTraps 12 } + + failedUserLoginTrap NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Trap is sent when a user fails to authenticate via the CLI or Web + interfaces." + ::= { fastPathSwitchingTraps 13 } + + userLockoutTrap NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Trap is sent when a user account is locked due to consecutive failed login attempts via the CLI or Web + interfaces beyond the allowed limit." + ::= { fastPathSwitchingTraps 14 } + + topologyChangeInitiatedTrap NOTIFICATION-TYPE + OBJECTS { + agentStpMstId, + ifIndex + } + STATUS current + DESCRIPTION + "Trap is sent once an interface gets a Topology change event + on a port." + ::= { fastPathSwitchingTraps 15 } + + stpInstanceLoopInconsistentStartTrap NOTIFICATION-TYPE + OBJECTS { + agentStpMstId, + ifIndex + } + STATUS current + DESCRIPTION + "Trap is sent when this port in this STP instance enters + loop inconsistent state upon failure to receive a BPDU." + ::= { fastPathSwitchingTraps 16 } + + stpInstanceLoopInconsistentEndTrap NOTIFICATION-TYPE + OBJECTS { + agentStpMstId, + ifIndex + } + STATUS current + DESCRIPTION + "Trap is sent when this port in this STP instance exits + loop inconsistent state upon reception of a BPDU." + ::= { fastPathSwitchingTraps 17 } + + + dhcpSnoopingIntfErrorDisabledTrap NOTIFICATION-TYPE + OBJECTS { + ifIndex + } + STATUS current + DESCRIPTION + "Trap is sent once an interface is error disabled by DHCP Snooping when the + incoming packet rate exceeded configured rate limit during a + burst-interval." + ::= { fastPathSwitchingTraps 18 } + + noStartupConfigTrap NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Trap is sent when startup-config file exists and SSH is enabled." + ::= { fastPathSwitchingTraps 19 } + + daiIntfErrorDisabledTrap NOTIFICATION-TYPE + OBJECTS { + ifIndex + } + STATUS current + DESCRIPTION + "Trap is sent once an interface is error disabled by DAI when the + incoming packet rate exceeded configured rate limit during a + burst-interval." + ::= { fastPathSwitchingTraps 20 } +END diff --git a/mibs/FASTPATH-TIMEZONE-PRIVATE-MIB.mib b/mibs/FASTPATH-TIMEZONE-PRIVATE-MIB.mib new file mode 100644 index 0000000..23f7590 --- /dev/null +++ b/mibs/FASTPATH-TIMEZONE-PRIVATE-MIB.mib @@ -0,0 +1,473 @@ +FASTPATH-TIMEZONE-PRIVATE-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32 FROM SNMPv2-SMI + DisplayString FROM RFC1213-MIB + fastPath FROM BROADCOM-REF-MIB; + + + fastPathTimeZonePrivate MODULE-IDENTITY + + LAST-UPDATED "200702280500Z" -- 28 Feb 2007 05:00:00 GMT + ORGANIZATION "Broadcom Corporation" + CONTACT-INFO + " Customer Support + Postal: Broadcom Corporation + 100, Perimeter Park Drive + Morrisville, NC 27560 + Tel: +1 919 865 2700" + DESCRIPTION + "The Broadcom Private MIB for FASTPATH for system time, timezone and summer-time settings" + + -- Revision history. + REVISION + "200702280500Z" -- 28 Feb 2007 05:00:00 GMT + DESCRIPTION + "Initial revision." + + ::= { fastPath 32 } + +agentSystemTimeGroup OBJECT IDENTIFIER ::={ fastPathTimeZonePrivate 1 } + +agentTimeZoneGroup OBJECT IDENTIFIER ::={ fastPathTimeZonePrivate 2 } + +agentSummerTimeGroup OBJECT IDENTIFIER ::={ fastPathTimeZonePrivate 3 } + +agentSummerTimeRecurringGroup OBJECT IDENTIFIER ::={ agentSummerTimeGroup 2 } + +agentSummerTimeNonRecurringGroup OBJECT IDENTIFIER ::={ agentSummerTimeGroup 3 } + + +-- +-- Agent system time mib object +-- + + + agentSystemTime OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "the current sytem time + (includes the TimeZone offset and summertime Offset)" + ::={ agentSystemTimeGroup 1} + + agentSystemDate OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "the current sytem date " + ::={ agentSystemTimeGroup 2} + + agentSystemTimeZoneAcronym OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "the zone acronym of summertime when summertime is in effect + If summer-time is not in effect or if there is no acronym for summer-time it defaults + To TimeZone acronym." + + ::={ agentSystemTimeGroup 3} + +agentSystemTimeSource OBJECT-TYPE + SYNTAX INTEGER { none(0), sntp(1) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "the time source from which the time update is taken." + ::={ agentSystemTimeGroup 4} + +agentSystemSummerTimeState OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(0) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "enabled : summer-time is in effect currently + disabled : summer-time is not in effect currently" + ::={ agentSystemTimeGroup 5} + + +-- +-- Agent timezone setting mib object +-- + + + agentTimeZoneHoursOffset OBJECT-TYPE + SYNTAX Integer32(-12..13) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "the hours to be added to the UTC time" + DEFVAL { 0 } + ::={ agentTimeZoneGroup 1 } + +agentTimeZoneMinutesOffset OBJECT-TYPE + SYNTAX Integer32(0..59) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "the minutes to be added to the UTC time." + DEFVAL { 0 } + ::={ agentTimeZoneGroup 2 } + +agentTimeZoneAcronym OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION "the acronym associated with the zone." + + ::={ agentTimeZoneGroup 3 } + + +-- +-- Agent summertime Group mib objects + +-- + +agentSummerTimeMode OBJECT-TYPE + SYNTAX INTEGER + { + noSummertime(0), + recurring(1), + recurringEu(2), + recurringUsa(3), + nonrecurring(4) + + } + MAX-ACCESS read-write + STATUS current + + DESCRIPTION "recurring- set the parameters for recurring summer-time + non-recurring- set the parameters for non-recurring summer-time + no-summertime- disable the summer-time " + DEFVAL { noSummertime } + ::={ agentSummerTimeGroup 1 } + + +-- +-- Agent summertime recurring mib objects + +-- +agentStRecurringStartingWeek OBJECT-TYPE + SYNTAX INTEGER + { + none(0), + first(1), + second(2), + third(3), + fourth(4), + last(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "the week of the month from which the summer-time should be effective." + DEFVAL { none } + ::={ agentSummerTimeRecurringGroup 1} + +agentStRecurringStartingDay OBJECT-TYPE + SYNTAX INTEGER + { + none(0), + sun(1), + mon(2), + tue(3), + wed(4), + thu(5), + fri(6), + sat(7) + } + + MAX-ACCESS read-write + STATUS current + DESCRIPTION "the day of the agentStRecurringStartingWeek from + which the summer-time should be effective." + DEFVAL { none } + ::={ agentSummerTimeRecurringGroup 2} + + +agentStRecurringStartingMonth OBJECT-TYPE + SYNTAX INTEGER + { + none(0), + 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 "the month of the year from which the + summer-time should be effective." + DEFVAL { none } + ::={ agentSummerTimeRecurringGroup 3} + + +agentStRecurringStartingTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..5)) + + MAX-ACCESS read-write + STATUS current + DESCRIPTION "the time in the hh:mm format from + which the summer-time should be effective. + range for hh: 0 to 23 + range for mm: 0 to 59 " + ::={ agentSummerTimeRecurringGroup 4} + + +agentStRecurringEndingWeek OBJECT-TYPE + SYNTAX INTEGER + { + none(0), + first(1), + second(2), + third(3), + fourth(4), + last(5) + } + + + MAX-ACCESS read-write + STATUS current + DESCRIPTION "the week of the Month in which the + summer-time should end." + DEFVAL { none } + ::={ agentSummerTimeRecurringGroup 5} + + +agentStRecurringEndingDay OBJECT-TYPE + SYNTAX INTEGER + { + none(0), + sun(1), + mon(2), + tue(3), + wed(4), + thu(5), + fri(6), + sat(7) + } + + + MAX-ACCESS read-write + STATUS current + DESCRIPTION "the day of the agentStRecurringStartingWeek on which the + summer-time should end." + DEFVAL { none } + ::={ agentSummerTimeRecurringGroup 6} + + +agentStRecurringEndingMonth OBJECT-TYPE + SYNTAX INTEGER + { + none(0), + 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 "the month of the year in which the summer-time should end." + DEFVAL { none } + ::={ agentSummerTimeRecurringGroup 7} + + +agentStRecurringEndingTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..5)) + + MAX-ACCESS read-write + STATUS current + DESCRIPTION "the time of the agentStRecurringEndingDay in hh:mm format + at which the summer-time should end. + range for hh: 0 to 23 + range for mm: 0 to 59" + + ::={ agentSummerTimeRecurringGroup 8} + + +agentStRecurringZoneAcronym OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..4)) + + MAX-ACCESS read-write + STATUS current + DESCRIPTION "the zone associated with the summer-time + recurring configuration. + the acronym maximum legth is 4 characters" + + ::={ agentSummerTimeRecurringGroup 9} + +agentStRecurringZoneOffset OBJECT-TYPE + SYNTAX Integer32(0 | 1..1440) + + MAX-ACCESS read-write + STATUS current + DESCRIPTION "the zone offset in minutes which will be added to the UTC time + during the summer-time of every year." + DEFVAL { 0 } + ::={ agentSummerTimeRecurringGroup 10} + + +-- +-- Agent summertime non-recurring mib objects +-- + + + +agentStNonRecurringStartingDay OBJECT-TYPE + SYNTAX Integer32(0 |1..31) + + MAX-ACCESS read-write + STATUS current + DESCRIPTION "the day of the agentStNonRecurringStartingMonth from + which the summer-time should be effective." + DEFVAL { 0 } + ::={ agentSummerTimeNonRecurringGroup 1 } + +agentStNonRecurringStartingMonth OBJECT-TYPE + SYNTAX INTEGER + { + none(0), + 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 "the Month of the agentStNonRecurringStartingYear from + which the summer-time should be effective." + DEFVAL { none } + ::={ agentSummerTimeNonRecurringGroup 2 } + +agentStNonRecurringStartingYear OBJECT-TYPE + SYNTAX Integer32(0 |2000..2097) + + MAX-ACCESS read-write + STATUS current + DESCRIPTION "the year from which the summer-time should be effective." + DEFVAL { 0 } + ::={ agentSummerTimeNonRecurringGroup 3 } + +agentStNonRecurringStartingTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..5)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "the time in the hh:mm format. The time of agentStNonRecurringStartingDay + from which the summer-time should be effective. + range for hh: 0 to 23 + range for mm: 0 to 59" + + ::={ agentSummerTimeNonRecurringGroup 4 } + +agentStNonRecurringEndingDay OBJECT-TYPE + SYNTAX Integer32(0 |1..31) + + MAX-ACCESS read-write + STATUS current + DESCRIPTION "the day of the agentStNonRecurringEndingMonth on + which the summer-time should end." + DEFVAL { 0 } + ::={ agentSummerTimeNonRecurringGroup 5} + +agentStNonRecurringEndingMonth OBJECT-TYPE + SYNTAX INTEGER + { + none(0), + 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 "the month of the agentStNonRecurringEndingYear in which + the summer-time should end." + DEFVAL { none } + ::={ agentSummerTimeNonRecurringGroup 6 } + +agentStNonRecurringEndingYear OBJECT-TYPE + SYNTAX Integer32(0 |2000..2097) + + MAX-ACCESS read-write + STATUS current + DESCRIPTION "the year in which the summer-time should end." + DEFVAL { 0 } + ::={ agentSummerTimeNonRecurringGroup 7 } + +agentStNonRecurringEndingTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..5)) + + MAX-ACCESS read-write + STATUS current + DESCRIPTION "the time on the agentStNonRecurringEndingDay in hh:mm format + at which the summer-time should end. + range for hh: 0 to 23 + range for mm: 0 to 59" + + ::={ agentSummerTimeNonRecurringGroup 8} + + +agentStNonRecurringZoneOffset OBJECT-TYPE + SYNTAX Integer32(0 |1..1440) + + MAX-ACCESS read-write + STATUS current + DESCRIPTION "the zone offset in minutes which will be added to + the UTC time during the summer-time." + DEFVAL { 0 } + ::={ agentSummerTimeNonRecurringGroup 9 } + + +agentStNonRecurringZoneAcronym OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..4)) + + MAX-ACCESS read-write + STATUS current + DESCRIPTION "the zone associated with the summer-time + non recurring configuration. + the acronym maximum legth is 4 characters" + + ::={ agentSummerTimeNonRecurringGroup 10 } + +END + + + + + + diff --git a/mibs/HCNUM-TC.mib b/mibs/HCNUM-TC.mib new file mode 100644 index 0000000..83f78d7 --- /dev/null +++ b/mibs/HCNUM-TC.mib @@ -0,0 +1,141 @@ +-- ***************************************************************** +-- HCNUM-TC.my: Textual conventions for High Capacity Data Types +-- +-- December 2000 +-- +-- Copyright (c) 2000-2001 by cisco Systems, Inc. +-- All rights reserved. +-- +-- ***************************************************************** + + 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/LCOS-MIB.mib b/mibs/LCOS-MIB.mib new file mode 100644 index 0000000..eda4d77 --- /dev/null +++ b/mibs/LCOS-MIB.mib @@ -0,0 +1,102723 @@ +LCOS-MIB DEFINITIONS ::= BEGIN + +IMPORTS + Integer32, OBJECT-TYPE, NOTIFICATION-TYPE, Counter32, + TimeTicks, Counter64, enterprises, MODULE-IDENTITY, + Gauge32, IpAddress + FROM SNMPv2-SMI + sysName, sysDescr + FROM RFC1213-MIB + DisplayString, MacAddress + FROM SNMPv2-TC + CounterBasedGauge64 + FROM HCNUM-TC; + +lcos MODULE-IDENTITY + LAST-UPDATED "201308261700Z" -- August 26, 2013 + ORGANIZATION + "LANCOM Systems GmbH" + CONTACT-INFO + "www.lancom.de" + DESCRIPTION + "Management information base definitions" + REVISION "201308261700Z" -- August 26, 2013 + DESCRIPTION + "First release update (8.82)" + ::= { enterprises lancom-systems(2356) 11 } + +-- +-- NODES +-- +-- {NODE} 1.3.6.1.4.1.2356.11.0 +lcsTrapGrp OBJECT IDENTIFIER ::= { lcos 0 } + +-- {NODE} 1.3.6.1.4.1.2356.11.0.0 +lcsTraps OBJECT IDENTIFIER ::= { lcsTrapGrp 0 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1 +lcsStatus OBJECT IDENTIFIER ::= { lcos 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.2 +lcsStatusOperatingTime OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatus 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.3 +lcsStatusWlan OBJECT IDENTIFIER ::= { lcsStatus 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.3.11 +lcsStatusWlanDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlan 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.32 +lcsStatusWlanStationTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanStationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlan 32 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.32.1 +lcsStatusWlanStationTableEntry OBJECT-TYPE + SYNTAX LcsStatusWlanStationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanStationTableEntryIndex + } + ::= { lcsStatusWlanStationTableTable 1 } + +LcsStatusWlanStationTableEntry ::= SEQUENCE { + lcsStatusWlanStationTableEntryIndex Integer32, + lcsStatusWlanStationTableEntryMacAddress MacAddress, + lcsStatusWlanStationTableEntryTxBytes Counter64, + lcsStatusWlanStationTableEntryRxBytes Counter64, + lcsStatusWlanStationTableEntryIdentification DisplayString, + lcsStatusWlanStationTableEntryState INTEGER, + lcsStatusWlanStationTableEntryRxRate INTEGER, + lcsStatusWlanStationTableEntryKeyType INTEGER, + lcsStatusWlanStationTableEntryInterface INTEGER, + lcsStatusWlanStationTableEntryPowerSaving INTEGER, + lcsStatusWlanStationTableEntryListenInterval Integer32, + lcsStatusWlanStationTableEntryConnectTime Integer32, + lcsStatusWlanStationTableEntryAid Integer32, + lcsStatusWlanStationTableEntryThroughput DisplayString, + lcsStatusWlanStationTableEntryShortSlotTime INTEGER, + lcsStatusWlanStationTableEntryShortPreamble INTEGER, + lcsStatusWlanStationTableEntryNetwork INTEGER, + lcsStatusWlanStationTableEntryPhySignal Integer32, + lcsStatusWlanStationTableEntryIpv4Address IpAddress, + lcsStatusWlanStationTableEntryTxRate INTEGER, + lcsStatusWlanStationTableEntryMaxThroughput DisplayString, + lcsStatusWlanStationTableEntryBytesThroughput Integer32, + lcsStatusWlanStationTableEntryBytesMaxThroughput Integer32, + lcsStatusWlanStationTableEntryClBrgSupport INTEGER, + lcsStatusWlanStationTableEntryWpaVersion INTEGER, + lcsStatusWlanStationTableEntryLastEvent INTEGER, + lcsStatusWlanStationTableEntryTxLimit Integer32, + lcsStatusWlanStationTableEntryRxLimit Integer32, + lcsStatusWlanStationTableEntryQos INTEGER, + lcsStatusWlanStationTableEntryVlanId Integer32, + lcsStatusWlanStationTableEntryUserName DisplayString, + lcsStatusWlanStationTableEntryMacCheck INTEGER, + lcsStatusWlanStationTableEntryTxPackets Counter32, + lcsStatusWlanStationTableEntryRxPackets Counter32, + lcsStatusWlanStationTableEntryIdleTimeout Integer32, + lcsStatusWlanStationTableEntryLastError INTEGER, + lcsStatusWlanStationTableEntryShortGuardInterval INTEGER, + lcsStatusWlanStationTableEntry40mhzMode INTEGER, + lcsStatusWlanStationTableEntry40mhzIntolerant INTEGER, + lcsStatusWlanStationTableEntryMaxAMsduLen Integer32, + lcsStatusWlanStationTableEntryMaxAMpduLen Integer32, + lcsStatusWlanStationTableEntryEffTxRate Integer32, + lcsStatusWlanStationTableEntryEffRxRate Integer32, + lcsStatusWlanStationTableEntryApsd BITS, + lcsStatusWlanStationTableEntryIpv6Address IpAddress, + lcsStatusWlanStationTableEntrySmPwrsave INTEGER, + lcsStatusWlanStationTableEntryTxErrors Integer32, + lcsStatusWlanStationTableEntryTotalRetries Integer32, + lcsStatusWlanStationTableEntryAlarmState INTEGER, + lcsStatusWlanStationTableEntry40mhzCoexistence INTEGER, + lcsStatusWlanStationTableEntry20mhzRequested INTEGER, + lcsStatusWlanStationTableEntryRxStbc INTEGER, + lcsStatusWlanStationTableEntryLdpc INTEGER, + lcsStatusWlanStationTableEntryAutowds INTEGER, + lcsStatusWlanStationTableEntryFastRoaming INTEGER, + lcsStatusWlanStationTableEntryWpa2KeyManagement INTEGER, + lcsStatusWlanStationTableEntrySGIMask BITS, + lcsStatusWlanStationTableEntryChannelBandwidths BITS, + lcsStatusWlanStationTableEntryProtMgmtFrames INTEGER, + lcsStatusWlanStationTableEntryRxStbcHt INTEGER, + lcsStatusWlanStationTableEntryRxStbcVht INTEGER, + lcsStatusWlanStationTableEntryLDPCMask BITS, + lcsStatusWlanStationTableEntryOperationMode INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.1 +lcsStatusWlanStationTableEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.4 +lcsStatusWlanStationTableEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.6 +lcsStatusWlanStationTableEntryTxBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.7 +lcsStatusWlanStationTableEntryRxBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.9 +lcsStatusWlanStationTableEntryIdentification OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..24)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.10 +lcsStatusWlanStationTableEntryState OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eAdhoc (1), + eAuthenticated (2), + eConnected (3), + eMacCheck (4), + eKeyHandshake (8), + eAssociated (9), + e1xNegotiation (10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.13 +lcsStatusWlanStationTableEntryRxRate OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e1M (1), + e2M (2), + e5M (3), + e5M5 (4), + e8M (5), + e11M (6), + e6M (8), + e9M (9), + e12M (10), + e18M (11), + e24M (12), + e36M (13), + e48M (14), + e54M (15), + eHT1S6M5 (28), + eHT1S13M (29), + eHT1S19M5 (30), + eHT1S26M (31), + eHT1S39M (32), + eHT1S52M (33), + eHT1S58M5 (34), + eHT1S65M (35), + eHT2S13M (36), + eHT2S26M (37), + eHT2S39M (38), + eHT2S52M (39), + eHT2S78M (40), + eHT2S104M (41), + eHT2S117M (42), + eHT2S130M (43), + eHT3S19M5 (44), + eHT3S39M (45), + eHT3S58M5 (46), + eHT3S78M (47), + eHT3S117M (48), + eHT3S156M (49), + eHT3S175M5 (50), + eHT3S195M (51) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.14 +lcsStatusWlanStationTableEntryKeyType OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eUnknown (1), + eWep40Bits (5), + eWep104Bits (13), + eWep128Bits (16), + eTkip (64), + eAesOcb (65), + eAesCcm (66), + eBip (68) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.15 +lcsStatusWlanStationTableEntryInterface OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (0), + eWlan2 (1), + eWlan3 (2), + eWlan4 (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.16 +lcsStatusWlanStationTableEntryPowerSaving OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eInactive (1), + eActive (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.17 +lcsStatusWlanStationTableEntryListenInterval OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.18 +lcsStatusWlanStationTableEntryConnectTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.19 +lcsStatusWlanStationTableEntryAid OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.20 +lcsStatusWlanStationTableEntryThroughput OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..14)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.21 +lcsStatusWlanStationTableEntryShortSlotTime OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.23 +lcsStatusWlanStationTableEntryShortPreamble OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.25 +lcsStatusWlanStationTableEntryNetwork OBJECT-TYPE + SYNTAX INTEGER { + e1 (0), + e2 (1), + e3 (2), + e4 (3), + e5 (4), + e6 (5), + e7 (6), + e8 (7), + e9 (8), + e10 (9), + e11 (10), + e12 (11), + e13 (12), + e14 (13), + e15 (14), + e16 (15) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 25 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.26 +lcsStatusWlanStationTableEntryPhySignal OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 26 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.27 +lcsStatusWlanStationTableEntryIpv4Address OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 27 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.28 +lcsStatusWlanStationTableEntryTxRate OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e1M (1), + e2M (2), + e5M (3), + e5M5 (4), + e8M (5), + e11M (6), + e6M (8), + e9M (9), + e12M (10), + e18M (11), + e24M (12), + e36M (13), + e48M (14), + e54M (15), + eHT1S6M5 (28), + eHT1S13M (29), + eHT1S19M5 (30), + eHT1S26M (31), + eHT1S39M (32), + eHT1S52M (33), + eHT1S58M5 (34), + eHT1S65M (35), + eHT2S13M (36), + eHT2S26M (37), + eHT2S39M (38), + eHT2S52M (39), + eHT2S78M (40), + eHT2S104M (41), + eHT2S117M (42), + eHT2S130M (43), + eHT3S19M5 (44), + eHT3S39M (45), + eHT3S58M5 (46), + eHT3S78M (47), + eHT3S117M (48), + eHT3S156M (49), + eHT3S175M5 (50), + eHT3S195M (51) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 28 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.29 +lcsStatusWlanStationTableEntryMaxThroughput OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..14)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 29 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.30 +lcsStatusWlanStationTableEntryBytesThroughput OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 30 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.31 +lcsStatusWlanStationTableEntryBytesMaxThroughput OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 31 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.32 +lcsStatusWlanStationTableEntryClBrgSupport OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 32 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.33 +lcsStatusWlanStationTableEntryWpaVersion OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eWpa1 (1), + eWpa2 (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 33 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.34 +lcsStatusWlanStationTableEntryLastEvent OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eAuthSuccess (1), + eDeauth (2), + eAssocSuccess (3), + eReassocSuccess (4), + eDisassoc (5), + eRadiusSuccess (6), + eAuthReject (7), + eAssocReject (8), + eKeyhandshakeSuccess (9), + eKeyhandshakeTimeout (10), + eKeyhandshakeFailure (11), + eRadiusReject (12), + eSupervision (13), + e8021xSuccess (14), + e8021xFailure (15), + eIdleTimeout (16), + eAdminDeassoc (17), + eRoamed (18) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 34 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.35 +lcsStatusWlanStationTableEntryTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 35 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.36 +lcsStatusWlanStationTableEntryRxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 36 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.37 +lcsStatusWlanStationTableEntryQos OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 37 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.38 +lcsStatusWlanStationTableEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 38 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.39 +lcsStatusWlanStationTableEntryUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 39 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.40 +lcsStatusWlanStationTableEntryMacCheck OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eLocal (1), + eRadius (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 40 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.41 +lcsStatusWlanStationTableEntryTxPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 41 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.42 +lcsStatusWlanStationTableEntryRxPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 42 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.43 +lcsStatusWlanStationTableEntryIdleTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 43 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.44 +lcsStatusWlanStationTableEntryLastError OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eAuthSuccess (1), + eDeauth (2), + eAssocSuccess (3), + eReassocSuccess (4), + eDisassoc (5), + eRadiusSuccess (6), + eAuthReject (7), + eAssocReject (8), + eKeyhandshakeSuccess (9), + eKeyhandshakeTimeout (10), + eKeyhandshakeFailure (11), + eRadiusReject (12), + eSupervision (13), + e8021xSuccess (14), + e8021xFailure (15), + eIdleTimeout (16), + eAdminDeassoc (17), + eRoamed (18) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 44 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.45 +lcsStatusWlanStationTableEntryShortGuardInterval OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + e20mhz (1), + e40mhz (2), + e2040mhz (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 45 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.46 +lcsStatusWlanStationTableEntry40mhzMode OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 46 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.47 +lcsStatusWlanStationTableEntry40mhzIntolerant OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 47 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.48 +lcsStatusWlanStationTableEntryMaxAMsduLen OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 48 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.49 +lcsStatusWlanStationTableEntryMaxAMpduLen OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 49 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.50 +lcsStatusWlanStationTableEntryEffTxRate OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 50 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.51 +lcsStatusWlanStationTableEntryEffRxRate OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 51 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.52 +lcsStatusWlanStationTableEntryApsd OBJECT-TYPE + SYNTAX BITS { + eNo (0), + eVo (4), + eVi (5), + eBk (6), + eBe (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 52 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.53 +lcsStatusWlanStationTableEntryIpv6Address OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 53 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.54 +lcsStatusWlanStationTableEntrySmPwrsave OBJECT-TYPE + SYNTAX INTEGER { + eInactive (0), + eStatic (1), + eDynamic (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 54 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.55 +lcsStatusWlanStationTableEntryTxErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 55 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.56 +lcsStatusWlanStationTableEntryTotalRetries OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 56 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.57 +lcsStatusWlanStationTableEntryAlarmState OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + ePhySignal (1), + eTotalRetries (2), + eTxErrors (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanStationTableEntry 57 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.58 +lcsStatusWlanStationTableEntry40mhzCoexistence OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanStationTableEntry 58 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.59 +lcsStatusWlanStationTableEntry20mhzRequested OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanStationTableEntry 59 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.60 +lcsStatusWlanStationTableEntryRxStbc OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eOne (1), + eTwo (2), + eThree (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanStationTableEntry 60 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.61 +lcsStatusWlanStationTableEntryLdpc OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanStationTableEntry 61 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.62 +lcsStatusWlanStationTableEntryAutowds OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eExpress (1), + ePreconfigured (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanStationTableEntry 62 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.63 +lcsStatusWlanStationTableEntryFastRoaming OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanStationTableEntry 63 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.64 +lcsStatusWlanStationTableEntryWpa2KeyManagement OBJECT-TYPE + SYNTAX INTEGER { + eStandard (0), + eFastRoaming (1), + eSha256 (2), + eNone (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanStationTableEntry 64 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.65 +lcsStatusWlanStationTableEntrySGIMask OBJECT-TYPE + SYNTAX BITS { + eNo (0), + e160mhz (28), + e80mhz (29), + e40mhz (30), + e20mhz (31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bit mask of short guard interval support per-CBW" + ::= { lcsStatusWlanStationTableEntry 65 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.66 +lcsStatusWlanStationTableEntryChannelBandwidths OBJECT-TYPE + SYNTAX BITS { + eT40mhz (26), + e80Plus80mhz (27), + e160mhz (28), + e80mhz (29), + e40mhz (30), + e20mhz (31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanStationTableEntry 66 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.67 +lcsStatusWlanStationTableEntryProtMgmtFrames OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanStationTableEntry 67 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.68 +lcsStatusWlanStationTableEntryRxStbcHt OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eOne (1), + eTwo (2), + eThree (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanStationTableEntry 68 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.69 +lcsStatusWlanStationTableEntryRxStbcVht OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eOne (1), + eTwo (2), + eThree (3), + eFour (4), + eFive (5), + eSix (6), + eSeven (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanStationTableEntry 69 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.70 +lcsStatusWlanStationTableEntryLDPCMask OBJECT-TYPE + SYNTAX BITS { + eVht (30), + eHt (31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bit mask of LDPC support per-PHY-Type" + ::= { lcsStatusWlanStationTableEntry 70 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.32.1.71 +lcsStatusWlanStationTableEntryOperationMode OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e11b (1), + e11g (2), + e11a (3), + e11n (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanStationTableEntry 71 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.34 +lcsStatusWlanScanResultsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanScanResultsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlan 34 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.34.1 +lcsStatusWlanScanResultsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanScanResultsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanScanResultsEntryBssid, + lcsStatusWlanScanResultsEntryInterface + } + ::= { lcsStatusWlanScanResultsTable 1 } + +LcsStatusWlanScanResultsEntry ::= SEQUENCE { + lcsStatusWlanScanResultsEntryBssid MacAddress, + lcsStatusWlanScanResultsEntryNetworkName DisplayString, + lcsStatusWlanScanResultsEntryOperationMode INTEGER, + lcsStatusWlanScanResultsEntryBeaconPeriod Integer32, + lcsStatusWlanScanResultsEntryDtimPeriod Integer32, + lcsStatusWlanScanResultsEntryRadioChannel Integer32, + lcsStatusWlanScanResultsEntryPhySignal Integer32, + lcsStatusWlanScanResultsEntryNoiseLevel Integer32, + lcsStatusWlanScanResultsEntryLoad DisplayString, + lcsStatusWlanScanResultsEntryEncryption INTEGER, + lcsStatusWlanScanResultsEntryShortPreamble INTEGER, + lcsStatusWlanScanResultsEntryInterface INTEGER, + lcsStatusWlanScanResultsEntryRadioBand INTEGER, + lcsStatusWlanScanResultsEntry108mbpsMode INTEGER, + lcsStatusWlanScanResultsEntryShortSlotTime INTEGER, + lcsStatusWlanScanResultsEntryRate INTEGER, + lcsStatusWlanScanResultsEntryNonerpPresent INTEGER, + lcsStatusWlanScanResultsEntryCompression INTEGER, + lcsStatusWlanScanResultsEntryPcfFunctionality INTEGER, + lcsStatusWlanScanResultsEntryIdentification DisplayString, + lcsStatusWlanScanResultsEntryQos INTEGER, + lcsStatusWlanScanResultsEntryAge Integer32, + lcsStatusWlanScanResultsEntrySignalLevel Integer32, + lcsStatusWlanScanResultsEntryShortGuardInterval INTEGER, + lcsStatusWlanScanResultsEntryExtChannel INTEGER, + lcsStatusWlanScanResultsEntry40mhzMode INTEGER, + lcsStatusWlanScanResultsEntry40mhzIntolerant INTEGER, + lcsStatusWlanScanResultsEntryInterpointPeerName DisplayString, + lcsStatusWlanScanResultsEntryMaxAMpduLen Integer32, + lcsStatusWlanScanResultsEntryMaxAMsduLen Integer32, + lcsStatusWlanScanResultsEntryVendor DisplayString, + lcsStatusWlanScanResultsEntryEffRate Integer32, + lcsStatusWlanScanResultsEntry40mhzCoexistence INTEGER, + lcsStatusWlanScanResultsEntryPreAuthentication INTEGER, + lcsStatusWlanScanResultsEntryTxStbc INTEGER, + lcsStatusWlanScanResultsEntryRxStbc INTEGER, + lcsStatusWlanScanResultsEntryEapolPreauthFailed INTEGER, + lcsStatusWlanScanResultsEntryLdpc INTEGER, + lcsStatusWlanScanResultsEntryAutowds INTEGER, + lcsStatusWlanScanResultsEntrySGIMask BITS, + lcsStatusWlanScanResultsEntryChannelBandwidths BITS, + lcsStatusWlanScanResultsEntryChannelBandwidth INTEGER, + lcsStatusWlanScanResultsEntryClBrgSupport INTEGER, + lcsStatusWlanScanResultsEntryProtMgmtFrames INTEGER, + lcsStatusWlanScanResultsEntryTxPowerLimit DisplayString, + lcsStatusWlanScanResultsEntryTxSTBCMask BITS, + lcsStatusWlanScanResultsEntryRxStbcHt INTEGER, + lcsStatusWlanScanResultsEntryRxStbcVht INTEGER, + lcsStatusWlanScanResultsEntryLDPCMask BITS + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.1 +lcsStatusWlanScanResultsEntryBssid OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.2 +lcsStatusWlanScanResultsEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.3 +lcsStatusWlanScanResultsEntryOperationMode OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eAdhoc (1), + eInfrastructure (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "lancom's description of operation mode" + ::= { lcsStatusWlanScanResultsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.6 +lcsStatusWlanScanResultsEntryBeaconPeriod OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.7 +lcsStatusWlanScanResultsEntryDtimPeriod OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.8 +lcsStatusWlanScanResultsEntryRadioChannel OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.10 +lcsStatusWlanScanResultsEntryPhySignal OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.11 +lcsStatusWlanScanResultsEntryNoiseLevel OBJECT-TYPE + SYNTAX Integer32 (-128..127) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.12 +lcsStatusWlanScanResultsEntryLoad OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.13 +lcsStatusWlanScanResultsEntryEncryption OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eWep (1), + eTkip (2), + eAes (3), + eAesPlusTkip (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.14 +lcsStatusWlanScanResultsEntryShortPreamble OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.15 +lcsStatusWlanScanResultsEntryInterface OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (0), + eWlan2 (1), + eWlan3 (2), + eWlan4 (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.16 +lcsStatusWlanScanResultsEntryRadioBand OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e24ghz (1), + e5ghz (2), + e24ghz5ghz (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.17 +lcsStatusWlanScanResultsEntry108mbpsMode OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.18 +lcsStatusWlanScanResultsEntryShortSlotTime OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.19 +lcsStatusWlanScanResultsEntryRate OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e1M (1), + e2M (2), + e5M (3), + e5M5 (4), + e8M (5), + e11M (6), + e6M (12), + e9M (13), + e12M (14), + e18M (15), + e24M (16), + e36M (17), + e48M (18), + e54M (19), + eT12M (20), + eT18M (21), + eT24M (22), + eT36M (23), + eT48M (24), + eT72M (25), + eT96M (26), + eT108M (27), + eHT1S6M5 (28), + eHT1S13M (29), + eHT1S19M5 (30), + eHT1S26M (31), + eHT1S39M (32), + eHT1S52M (33), + eHT1S58M5 (34), + eHT1S65M (35), + eHT2S13M (36), + eHT2S26M (37), + eHT2S39M (38), + eHT2S52M (39), + eHT2S78M (40), + eHT2S104M (41), + eHT2S117M (42), + eHT2S130M (43), + eHT3S19M5 (44), + eHT3S39M (45), + eHT3S58M5 (46), + eHT3S78M (47), + eHT3S117M (48), + eHT3S156M (49), + eHT3S175M5 (50), + eHT3S195M (51), + eHT4S26M (52), + eHT4S52M (53), + eHT4S78M (54), + eHT4S104M (55), + eHT4S156M (56), + eHT4S208M (57), + eHT4S234M (58), + eHT4S260M (59), + eHTDUP6M (60), + eHtMcs33 (61), + eHtMcs34 (62), + eHtMcs35 (63), + eHtMcs36 (64), + eHtMcs37 (65), + eHtMcs38 (66), + eHtMcs39 (67), + eHtMcs40 (68), + eHtMcs41 (69), + eHtMcs42 (70), + eHtMcs43 (71), + eHtMcs44 (72), + eHtMcs45 (73), + eHtMcs46 (74), + eHtMcs47 (75), + eHtMcs48 (76), + eHtMcs49 (77), + eHtMcs50 (78), + eHtMcs51 (79), + eHtMcs52 (80), + eHtMcs53 (81), + eHtMcs54 (82), + eHtMcs55 (83), + eHtMcs56 (84), + eHtMcs57 (85), + eHtMcs58 (86), + eHtMcs59 (87), + eHtMcs60 (88), + eHtMcs61 (89), + eHtMcs62 (90), + eHtMcs63 (91), + eHtMcs64 (92), + eHtMcs65 (93), + eHtMcs66 (94), + eHtMcs67 (95), + eHtMcs68 (96), + eHtMcs69 (97), + eHtMcs70 (98), + eHtMcs71 (99), + eHtMcs72 (100), + eHtMcs73 (101), + eHtMcs74 (102), + eHtMcs75 (103), + eHtMcs76 (104), + eVHT1S6M5 (105), + eVHT1S13M (106), + eVHT1S19M5 (107), + eVHT1S26M (108), + eVHT1S39M (109), + eVHT1S52M (110), + eVHT1S58M5 (111), + eVHT1S65M (112), + eVHT1S78M (113), + eVHT1S86M7 (114), + eVHT2S13M (115), + eVHT2S26M (116), + eVHT2S39M (117), + eVHT2S52M (118), + eVHT2S78M (119), + eVHT2S104M (120), + eVHT2S117M (121), + eVHT2S130M (122), + eVHT2S156M (123), + eVHT2S173M3 (124), + eVHT3S19M5 (125), + eVHT3S39M (126), + eVHT3S58M5 (127), + eVHT3S78M (128), + eVHT3S117M (129), + eVHT3S156M (130), + eVHT3S175M5 (131), + eVHT3S195M (132), + eVHT3S234M (133), + eVHT3S260M (134), + eVHT4S26M (135), + eVHT4S52M (136), + eVHT4S78M (137), + eVHT4S104M (138), + eVHT4S156M (139), + eVHT4S208M (140), + eVHT4S234M (141), + eVHT4S260M (142), + eVHT4S312M (143), + eVHT4S346M7 (144) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.20 +lcsStatusWlanScanResultsEntryNonerpPresent OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.21 +lcsStatusWlanScanResultsEntryCompression OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.22 +lcsStatusWlanScanResultsEntryPcfFunctionality OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eDelivery (1), + eDeliveryPlusPolling (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.23 +lcsStatusWlanScanResultsEntryIdentification OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.24 +lcsStatusWlanScanResultsEntryQos OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 24 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.25 +lcsStatusWlanScanResultsEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 25 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.26 +lcsStatusWlanScanResultsEntrySignalLevel OBJECT-TYPE + SYNTAX Integer32 (-32768..32767) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 26 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.27 +lcsStatusWlanScanResultsEntryShortGuardInterval OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + e20mhz (1), + e40mhz (2), + e2040mhz (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 27 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.28 +lcsStatusWlanScanResultsEntryExtChannel OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eAbove (1), + eBelow (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 28 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.29 +lcsStatusWlanScanResultsEntry40mhzMode OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 29 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.30 +lcsStatusWlanScanResultsEntry40mhzIntolerant OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 30 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.31 +lcsStatusWlanScanResultsEntryInterpointPeerName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..24)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 31 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.32 +lcsStatusWlanScanResultsEntryMaxAMpduLen OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 32 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.33 +lcsStatusWlanScanResultsEntryMaxAMsduLen OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 33 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.34 +lcsStatusWlanScanResultsEntryVendor OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 34 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.35 +lcsStatusWlanScanResultsEntryEffRate OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanScanResultsEntry 35 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.36 +lcsStatusWlanScanResultsEntry40mhzCoexistence OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanScanResultsEntry 36 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.37 +lcsStatusWlanScanResultsEntryPreAuthentication OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanScanResultsEntry 37 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.38 +lcsStatusWlanScanResultsEntryTxStbc OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanScanResultsEntry 38 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.39 +lcsStatusWlanScanResultsEntryRxStbc OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eOne (1), + eTwo (2), + eThree (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanScanResultsEntry 39 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.40 +lcsStatusWlanScanResultsEntryEapolPreauthFailed OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanScanResultsEntry 40 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.41 +lcsStatusWlanScanResultsEntryLdpc OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanScanResultsEntry 41 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.42 +lcsStatusWlanScanResultsEntryAutowds OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanScanResultsEntry 42 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.43 +lcsStatusWlanScanResultsEntrySGIMask OBJECT-TYPE + SYNTAX BITS { + eNo (0), + e160mhz (28), + e80mhz (29), + e40mhz (30), + e20mhz (31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bit mask of short guard interval support per-CBW" + ::= { lcsStatusWlanScanResultsEntry 43 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.44 +lcsStatusWlanScanResultsEntryChannelBandwidths OBJECT-TYPE + SYNTAX BITS { + eT40mhz (26), + e80Plus80mhz (27), + e160mhz (28), + e80mhz (29), + e40mhz (30), + e20mhz (31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanScanResultsEntry 44 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.45 +lcsStatusWlanScanResultsEntryChannelBandwidth OBJECT-TYPE + SYNTAX INTEGER { + e20mhz (0), + e40mhz (1), + e80mhz (2), + e160mhz (3), + e80Plus80mhz (4), + eT40mhz (5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanScanResultsEntry 45 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.46 +lcsStatusWlanScanResultsEntryClBrgSupport OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanScanResultsEntry 46 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.47 +lcsStatusWlanScanResultsEntryProtMgmtFrames OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eOptional (1), + eMandatory (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanScanResultsEntry 47 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.48 +lcsStatusWlanScanResultsEntryTxPowerLimit OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanScanResultsEntry 48 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.49 +lcsStatusWlanScanResultsEntryTxSTBCMask OBJECT-TYPE + SYNTAX BITS { + eVht (30), + eHt (31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bit mask of Tx STBC support per-PHY-Type" + ::= { lcsStatusWlanScanResultsEntry 49 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.50 +lcsStatusWlanScanResultsEntryRxStbcHt OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eOne (1), + eTwo (2), + eThree (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanScanResultsEntry 50 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.51 +lcsStatusWlanScanResultsEntryRxStbcVht OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eOne (1), + eTwo (2), + eThree (3), + eFour (4), + eFive (5), + eSix (6), + eSeven (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanScanResultsEntry 51 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.34.1.52 +lcsStatusWlanScanResultsEntryLDPCMask OBJECT-TYPE + SYNTAX BITS { + eVht (30), + eHt (31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bit mask of LDPC support per-PHY-Type" + ::= { lcsStatusWlanScanResultsEntry 52 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.3.36 +lcsStatusWlanInterpoints OBJECT IDENTIFIER ::= { lcsStatusWlan 36 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.36.1 +lcsStatusWlanInterpointsAccesspointListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanInterpointsAccesspointListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpoints 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.36.1.1 +lcsStatusWlanInterpointsAccesspointListEntry OBJECT-TYPE + SYNTAX LcsStatusWlanInterpointsAccesspointListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanInterpointsAccesspointListEntryIndex + } + ::= { lcsStatusWlanInterpointsAccesspointListTable 1 } + +LcsStatusWlanInterpointsAccesspointListEntry ::= SEQUENCE { + lcsStatusWlanInterpointsAccesspointListEntryIndex INTEGER, + lcsStatusWlanInterpointsAccesspointListEntryMacAddress MacAddress, + lcsStatusWlanInterpointsAccesspointListEntryRxRate INTEGER, + lcsStatusWlanInterpointsAccesspointListEntryTxBytes Counter64, + lcsStatusWlanInterpointsAccesspointListEntryRxBytes Counter64, + lcsStatusWlanInterpointsAccesspointListEntryThroughput DisplayString, + lcsStatusWlanInterpointsAccesspointListEntryKeyingState INTEGER, + lcsStatusWlanInterpointsAccesspointListEntryRxPhySignal Integer32, + lcsStatusWlanInterpointsAccesspointListEntryLinkPhySignal Integer32, + lcsStatusWlanInterpointsAccesspointListEntryIdentification DisplayString, + lcsStatusWlanInterpointsAccesspointListEntryTxRate INTEGER, + lcsStatusWlanInterpointsAccesspointListEntryMaxThroughput DisplayString, + lcsStatusWlanInterpointsAccesspointListEntryBytesThroughput Integer32, + lcsStatusWlanInterpointsAccesspointListEntryBytesMaxThroughput Integer32, + lcsStatusWlanInterpointsAccesspointListEntryWpaVersion INTEGER, + lcsStatusWlanInterpointsAccesspointListEntryTxLimit Integer32, + lcsStatusWlanInterpointsAccesspointListEntryRxLimit Integer32, + lcsStatusWlanInterpointsAccesspointListEntryKeyHandshakeRole INTEGER, + lcsStatusWlanInterpointsAccesspointListEntryTxPackets Integer32, + lcsStatusWlanInterpointsAccesspointListEntryRxPackets Integer32, + lcsStatusWlanInterpointsAccesspointListEntryQos INTEGER, + lcsStatusWlanInterpointsAccesspointListEntryInterpointPeerName DisplayString, + lcsStatusWlanInterpointsAccesspointListEntryMaxAMsduLen Integer32, + lcsStatusWlanInterpointsAccesspointListEntryMaxAMpduLen Integer32, + lcsStatusWlanInterpointsAccesspointListEntry40mhzMode INTEGER, + lcsStatusWlanInterpointsAccesspointListEntryShortPreamble INTEGER, + lcsStatusWlanInterpointsAccesspointListEntryShortGuardInterval INTEGER, + lcsStatusWlanInterpointsAccesspointListEntryEffTxRate Integer32, + lcsStatusWlanInterpointsAccesspointListEntryEffRxRate Integer32, + lcsStatusWlanInterpointsAccesspointListEntryKeyType INTEGER, + lcsStatusWlanInterpointsAccesspointListEntryTxErrors Integer32, + lcsStatusWlanInterpointsAccesspointListEntryTotalRetries Integer32, + lcsStatusWlanInterpointsAccesspointListEntryAlarmState BITS, + lcsStatusWlanInterpointsAccesspointListEntryLinkActive INTEGER, + lcsStatusWlanInterpointsAccesspointListEntryRxStbc INTEGER, + lcsStatusWlanInterpointsAccesspointListEntryLdpc INTEGER, + lcsStatusWlanInterpointsAccesspointListEntryRemoteStatus INTEGER, + lcsStatusWlanInterpointsAccesspointListEntryWpa2KeyManagement INTEGER, + lcsStatusWlanInterpointsAccesspointListEntrySGIMask BITS, + lcsStatusWlanInterpointsAccesspointListEntryChannelBandwidths BITS, + lcsStatusWlanInterpointsAccesspointListEntryProtMgmtFrames INTEGER, + lcsStatusWlanInterpointsAccesspointListEntryRxStbcHt INTEGER, + lcsStatusWlanInterpointsAccesspointListEntryRxStbcVht INTEGER, + lcsStatusWlanInterpointsAccesspointListEntryLDPCMask BITS, + lcsStatusWlanInterpointsAccesspointListEntryOperationMode INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.1 +lcsStatusWlanInterpointsAccesspointListEntryIndex OBJECT-TYPE + SYNTAX INTEGER { + eP2p11 (1), + eP2p12 (2), + eP2p13 (3), + eP2p14 (4), + eP2p15 (5), + eP2p16 (6), + eP2p21 (7), + eP2p22 (8), + eP2p23 (9), + eP2p24 (10), + eP2p25 (11), + eP2p26 (12), + eP2p17 (32), + eP2p18 (33), + eP2p19 (34), + eP2p110 (35), + eP2p111 (36), + eP2p112 (37), + eP2p113 (38), + eP2p114 (39), + eP2p115 (40), + eP2p116 (41), + eP2p27 (64), + eP2p28 (65), + eP2p29 (66), + eP2p210 (67), + eP2p211 (68), + eP2p212 (69), + eP2p213 (70), + eP2p214 (71), + eP2p215 (72), + eP2p216 (73) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.2 +lcsStatusWlanInterpointsAccesspointListEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.5 +lcsStatusWlanInterpointsAccesspointListEntryRxRate OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e1M (1), + e2M (2), + e5M (3), + e5M5 (4), + e8M (5), + e11M (6), + e6M (8), + e9M (9), + e12M (10), + e18M (11), + e24M (12), + e36M (13), + e48M (14), + e54M (15), + eHT1S6M5 (28), + eHT1S13M (29), + eHT1S19M5 (30), + eHT1S26M (31), + eHT1S39M (32), + eHT1S52M (33), + eHT1S58M5 (34), + eHT1S65M (35), + eHT2S13M (36), + eHT2S26M (37), + eHT2S39M (38), + eHT2S52M (39), + eHT2S78M (40), + eHT2S104M (41), + eHT2S117M (42), + eHT2S130M (43), + eHT3S19M5 (44), + eHT3S39M (45), + eHT3S58M5 (46), + eHT3S78M (47), + eHT3S117M (48), + eHT3S156M (49), + eHT3S175M5 (50), + eHT3S195M (51) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.6 +lcsStatusWlanInterpointsAccesspointListEntryTxBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.7 +lcsStatusWlanInterpointsAccesspointListEntryRxBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.8 +lcsStatusWlanInterpointsAccesspointListEntryThroughput OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.12 +lcsStatusWlanInterpointsAccesspointListEntryKeyingState OBJECT-TYPE + SYNTAX INTEGER { + eIdle (0), + ePending (1), + eDone (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.13 +lcsStatusWlanInterpointsAccesspointListEntryRxPhySignal OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.14 +lcsStatusWlanInterpointsAccesspointListEntryLinkPhySignal OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.15 +lcsStatusWlanInterpointsAccesspointListEntryIdentification OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..24)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.16 +lcsStatusWlanInterpointsAccesspointListEntryTxRate OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e1M (1), + e2M (2), + e5M (3), + e5M5 (4), + e8M (5), + e11M (6), + e6M (8), + e9M (9), + e12M (10), + e18M (11), + e24M (12), + e36M (13), + e48M (14), + e54M (15), + eHT1S6M5 (28), + eHT1S13M (29), + eHT1S19M5 (30), + eHT1S26M (31), + eHT1S39M (32), + eHT1S52M (33), + eHT1S58M5 (34), + eHT1S65M (35), + eHT2S13M (36), + eHT2S26M (37), + eHT2S39M (38), + eHT2S52M (39), + eHT2S78M (40), + eHT2S104M (41), + eHT2S117M (42), + eHT2S130M (43), + eHT3S19M5 (44), + eHT3S39M (45), + eHT3S58M5 (46), + eHT3S78M (47), + eHT3S117M (48), + eHT3S156M (49), + eHT3S175M5 (50), + eHT3S195M (51) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.17 +lcsStatusWlanInterpointsAccesspointListEntryMaxThroughput OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.19 +lcsStatusWlanInterpointsAccesspointListEntryBytesThroughput OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.20 +lcsStatusWlanInterpointsAccesspointListEntryBytesMaxThroughput OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.21 +lcsStatusWlanInterpointsAccesspointListEntryWpaVersion OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eWpa1 (1), + eWpa2 (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.22 +lcsStatusWlanInterpointsAccesspointListEntryTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.23 +lcsStatusWlanInterpointsAccesspointListEntryRxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.24 +lcsStatusWlanInterpointsAccesspointListEntryKeyHandshakeRole OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eSupplicant (1), + eAuthenticator (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 24 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.25 +lcsStatusWlanInterpointsAccesspointListEntryTxPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 25 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.26 +lcsStatusWlanInterpointsAccesspointListEntryRxPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 26 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.27 +lcsStatusWlanInterpointsAccesspointListEntryQos OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 27 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.28 +lcsStatusWlanInterpointsAccesspointListEntryInterpointPeerName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..24)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 28 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.29 +lcsStatusWlanInterpointsAccesspointListEntryMaxAMsduLen OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 29 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.30 +lcsStatusWlanInterpointsAccesspointListEntryMaxAMpduLen OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 30 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.31 +lcsStatusWlanInterpointsAccesspointListEntry40mhzMode OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 31 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.32 +lcsStatusWlanInterpointsAccesspointListEntryShortPreamble OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 32 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.33 +lcsStatusWlanInterpointsAccesspointListEntryShortGuardInterval OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + e20mhz (1), + e40mhz (2), + e2040mhz (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 33 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.34 +lcsStatusWlanInterpointsAccesspointListEntryEffTxRate OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 34 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.35 +lcsStatusWlanInterpointsAccesspointListEntryEffRxRate OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 35 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.36 +lcsStatusWlanInterpointsAccesspointListEntryKeyType OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eUnknown (1), + eWep40Bits (5), + eWep104Bits (13), + eWep128Bits (16), + eTkip (64), + eAesOcb (65), + eAesCcm (66), + eBip (68) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 36 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.37 +lcsStatusWlanInterpointsAccesspointListEntryTxErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 37 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.38 +lcsStatusWlanInterpointsAccesspointListEntryTotalRetries OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 38 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.39 +lcsStatusWlanInterpointsAccesspointListEntryAlarmState OBJECT-TYPE + SYNTAX BITS { + eNo (0), + eTxErrors (29), + eTotalRetries (30), + ePhySignal (31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 39 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.40 +lcsStatusWlanInterpointsAccesspointListEntryLinkActive OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 40 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.41 +lcsStatusWlanInterpointsAccesspointListEntryRxStbc OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eOne (1), + eTwo (2), + eThree (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 41 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.42 +lcsStatusWlanInterpointsAccesspointListEntryLdpc OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 42 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.43 +lcsStatusWlanInterpointsAccesspointListEntryRemoteStatus OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eNotOk (1), + eOk (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 43 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.44 +lcsStatusWlanInterpointsAccesspointListEntryWpa2KeyManagement OBJECT-TYPE + SYNTAX INTEGER { + eStandard (0), + eFastRoaming (1), + eSha256 (2), + eNone (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 44 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.45 +lcsStatusWlanInterpointsAccesspointListEntrySGIMask OBJECT-TYPE + SYNTAX BITS { + eNo (0), + e160mhz (28), + e80mhz (29), + e40mhz (30), + e20mhz (31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bit mask of short guard interval support per-CBW" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 45 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.46 +lcsStatusWlanInterpointsAccesspointListEntryChannelBandwidths OBJECT-TYPE + SYNTAX BITS { + eT40mhz (26), + e80Plus80mhz (27), + e160mhz (28), + e80mhz (29), + e40mhz (30), + e20mhz (31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 46 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.47 +lcsStatusWlanInterpointsAccesspointListEntryProtMgmtFrames OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 47 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.48 +lcsStatusWlanInterpointsAccesspointListEntryRxStbcHt OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eOne (1), + eTwo (2), + eThree (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 48 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.49 +lcsStatusWlanInterpointsAccesspointListEntryRxStbcVht OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eOne (1), + eTwo (2), + eThree (3), + eFour (4), + eFive (5), + eSix (6), + eSeven (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 49 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.50 +lcsStatusWlanInterpointsAccesspointListEntryLDPCMask OBJECT-TYPE + SYNTAX BITS { + eVht (30), + eHt (31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bit mask of LDPC support per-PHY-Type" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 50 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.1.1.51 +lcsStatusWlanInterpointsAccesspointListEntryOperationMode OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e11b (1), + e11g (2), + e11a (3), + e11n (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanInterpointsAccesspointListEntry 51 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.36.3 +lcsStatusWlanInterpointsKeyListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanInterpointsKeyListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpoints 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.36.3.1 +lcsStatusWlanInterpointsKeyListEntry OBJECT-TYPE + SYNTAX LcsStatusWlanInterpointsKeyListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanInterpointsKeyListEntryIndex + } + ::= { lcsStatusWlanInterpointsKeyListTable 1 } + +LcsStatusWlanInterpointsKeyListEntry ::= SEQUENCE { + lcsStatusWlanInterpointsKeyListEntryIndex INTEGER, + lcsStatusWlanInterpointsKeyListEntrySource INTEGER, + lcsStatusWlanInterpointsKeyListEntryKeyType INTEGER, + lcsStatusWlanInterpointsKeyListEntryKeyValue DisplayString, + lcsStatusWlanInterpointsKeyListEntryTsc DisplayString, + lcsStatusWlanInterpointsKeyListEntryAge Integer32, + lcsStatusWlanInterpointsKeyListEntryIvSequenceErrors Integer32, + lcsStatusWlanInterpointsKeyListEntryRscBe DisplayString, + lcsStatusWlanInterpointsKeyListEntryRscBk DisplayString, + lcsStatusWlanInterpointsKeyListEntryRscEe DisplayString, + lcsStatusWlanInterpointsKeyListEntryRscCl DisplayString, + lcsStatusWlanInterpointsKeyListEntryRscVi DisplayString, + lcsStatusWlanInterpointsKeyListEntryRscVo DisplayString, + lcsStatusWlanInterpointsKeyListEntryRscNc DisplayString, + lcsStatusWlanInterpointsKeyListEntryRscMgmt DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.3.1.1 +lcsStatusWlanInterpointsKeyListEntryIndex OBJECT-TYPE + SYNTAX INTEGER { + eP2p11 (1), + eP2p12 (2), + eP2p13 (3), + eP2p14 (4), + eP2p15 (5), + eP2p16 (6), + eP2p21 (7), + eP2p22 (8), + eP2p23 (9), + eP2p24 (10), + eP2p25 (11), + eP2p26 (12), + eP2p17 (32), + eP2p18 (33), + eP2p19 (34), + eP2p110 (35), + eP2p111 (36), + eP2p112 (37), + eP2p113 (38), + eP2p114 (39), + eP2p115 (40), + eP2p116 (41), + eP2p27 (64), + eP2p28 (65), + eP2p29 (66), + eP2p210 (67), + eP2p211 (68), + eP2p212 (69), + eP2p213 (70), + eP2p214 (71), + eP2p215 (72), + eP2p216 (73) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsKeyListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.3.1.2 +lcsStatusWlanInterpointsKeyListEntrySource OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eStatic (1), + eDynamic (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsKeyListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.3.1.3 +lcsStatusWlanInterpointsKeyListEntryKeyType OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eUnknown (1), + eWep40Bits (5), + eWep104Bits (13), + eWep128Bits (16), + eTkip (64), + eAesOcb (65), + eAesCcm (66), + eBip (68) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsKeyListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.3.1.4 +lcsStatusWlanInterpointsKeyListEntryKeyValue OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsKeyListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.3.1.5 +lcsStatusWlanInterpointsKeyListEntryTsc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsKeyListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.3.1.7 +lcsStatusWlanInterpointsKeyListEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsKeyListEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.3.1.8 +lcsStatusWlanInterpointsKeyListEntryIvSequenceErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsKeyListEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.3.1.16 +lcsStatusWlanInterpointsKeyListEntryRscBe OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsKeyListEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.3.1.17 +lcsStatusWlanInterpointsKeyListEntryRscBk OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsKeyListEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.3.1.19 +lcsStatusWlanInterpointsKeyListEntryRscEe OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsKeyListEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.3.1.20 +lcsStatusWlanInterpointsKeyListEntryRscCl OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsKeyListEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.3.1.21 +lcsStatusWlanInterpointsKeyListEntryRscVi OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsKeyListEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.3.1.22 +lcsStatusWlanInterpointsKeyListEntryRscVo OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsKeyListEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.3.1.23 +lcsStatusWlanInterpointsKeyListEntryRscNc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanInterpointsKeyListEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.36.3.1.24 +lcsStatusWlanInterpointsKeyListEntryRscMgmt OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanInterpointsKeyListEntry 24 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.3.37 +lcsStatusWlanDeassocStation OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlan 37 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.38 +lcsStatusWlanIappTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanIappTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlan 38 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.38.1 +lcsStatusWlanIappTableEntry OBJECT-TYPE + SYNTAX LcsStatusWlanIappTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanIappTableEntryBssid, + lcsStatusWlanIappTableEntryIpAddress, + lcsStatusWlanIappTableEntryNetworkName + } + ::= { lcsStatusWlanIappTableTable 1 } + +LcsStatusWlanIappTableEntry ::= SEQUENCE { + lcsStatusWlanIappTableEntryIpAddress IpAddress, + lcsStatusWlanIappTableEntryBssid MacAddress, + lcsStatusWlanIappTableEntryTimer Integer32, + lcsStatusWlanIappTableEntryTimeout Integer32, + lcsStatusWlanIappTableEntryCapabilities BITS, + lcsStatusWlanIappTableEntryNetworkName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.38.1.1 +lcsStatusWlanIappTableEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanIappTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.38.1.2 +lcsStatusWlanIappTableEntryBssid OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanIappTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.38.1.3 +lcsStatusWlanIappTableEntryTimer OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanIappTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.38.1.4 +lcsStatusWlanIappTableEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanIappTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.38.1.5 +lcsStatusWlanIappTableEntryCapabilities OBJECT-TYPE + SYNTAX BITS { + eForward (1), + ePrivacy (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanIappTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.38.1.6 +lcsStatusWlanIappTableEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanIappTableEntry 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.40 +lcsStatusWlanForeignStationsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanForeignStationsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlan 40 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.40.1 +lcsStatusWlanForeignStationsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanForeignStationsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanForeignStationsEntryMacAddress + } + ::= { lcsStatusWlanForeignStationsTable 1 } + +LcsStatusWlanForeignStationsEntry ::= SEQUENCE { + lcsStatusWlanForeignStationsEntryMacAddress MacAddress, + lcsStatusWlanForeignStationsEntryBssid MacAddress, + lcsStatusWlanForeignStationsEntryNetworkName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.40.1.1 +lcsStatusWlanForeignStationsEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanForeignStationsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.40.1.2 +lcsStatusWlanForeignStationsEntryBssid OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanForeignStationsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.40.1.3 +lcsStatusWlanForeignStationsEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanForeignStationsEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.41 +lcsStatusWlanGroupEncryptionKeysTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanGroupEncryptionKeysEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlan 41 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.41.1 +lcsStatusWlanGroupEncryptionKeysEntry OBJECT-TYPE + SYNTAX LcsStatusWlanGroupEncryptionKeysEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanGroupEncryptionKeysEntryIndex + } + ::= { lcsStatusWlanGroupEncryptionKeysTable 1 } + +LcsStatusWlanGroupEncryptionKeysEntry ::= SEQUENCE { + lcsStatusWlanGroupEncryptionKeysEntryIndex DisplayString, + lcsStatusWlanGroupEncryptionKeysEntrySource INTEGER, + lcsStatusWlanGroupEncryptionKeysEntryKeyType INTEGER, + lcsStatusWlanGroupEncryptionKeysEntryKeyValue DisplayString, + lcsStatusWlanGroupEncryptionKeysEntryTsc DisplayString, + lcsStatusWlanGroupEncryptionKeysEntryAge Integer32, + lcsStatusWlanGroupEncryptionKeysEntryIvSequenceErrors Integer32, + lcsStatusWlanGroupEncryptionKeysEntryRscBe DisplayString, + lcsStatusWlanGroupEncryptionKeysEntryRscBk DisplayString, + lcsStatusWlanGroupEncryptionKeysEntryRscEe DisplayString, + lcsStatusWlanGroupEncryptionKeysEntryRscCl DisplayString, + lcsStatusWlanGroupEncryptionKeysEntryRscVi DisplayString, + lcsStatusWlanGroupEncryptionKeysEntryRscVo DisplayString, + lcsStatusWlanGroupEncryptionKeysEntryRscNc DisplayString, + lcsStatusWlanGroupEncryptionKeysEntryRscMgmt DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.41.1.1 +lcsStatusWlanGroupEncryptionKeysEntryIndex OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanGroupEncryptionKeysEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.41.1.2 +lcsStatusWlanGroupEncryptionKeysEntrySource OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eStatic (1), + eDynamic (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanGroupEncryptionKeysEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.41.1.3 +lcsStatusWlanGroupEncryptionKeysEntryKeyType OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eUnknown (1), + eWep40Bits (5), + eWep104Bits (13), + eWep128Bits (16), + eTkip (64), + eAesOcb (65), + eAesCcm (66), + eBip (68) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanGroupEncryptionKeysEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.41.1.4 +lcsStatusWlanGroupEncryptionKeysEntryKeyValue OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanGroupEncryptionKeysEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.41.1.5 +lcsStatusWlanGroupEncryptionKeysEntryTsc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanGroupEncryptionKeysEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.41.1.7 +lcsStatusWlanGroupEncryptionKeysEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanGroupEncryptionKeysEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.41.1.8 +lcsStatusWlanGroupEncryptionKeysEntryIvSequenceErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanGroupEncryptionKeysEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.41.1.16 +lcsStatusWlanGroupEncryptionKeysEntryRscBe OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanGroupEncryptionKeysEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.41.1.17 +lcsStatusWlanGroupEncryptionKeysEntryRscBk OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanGroupEncryptionKeysEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.41.1.19 +lcsStatusWlanGroupEncryptionKeysEntryRscEe OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanGroupEncryptionKeysEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.41.1.20 +lcsStatusWlanGroupEncryptionKeysEntryRscCl OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanGroupEncryptionKeysEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.41.1.21 +lcsStatusWlanGroupEncryptionKeysEntryRscVi OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanGroupEncryptionKeysEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.41.1.22 +lcsStatusWlanGroupEncryptionKeysEntryRscVo OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanGroupEncryptionKeysEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.41.1.23 +lcsStatusWlanGroupEncryptionKeysEntryRscNc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanGroupEncryptionKeysEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.41.1.24 +lcsStatusWlanGroupEncryptionKeysEntryRscMgmt OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanGroupEncryptionKeysEntry 24 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.42 +lcsStatusWlanChannelScanResultsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanChannelScanResultsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlan 42 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.42.1 +lcsStatusWlanChannelScanResultsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanChannelScanResultsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanChannelScanResultsEntryRadioBand, + lcsStatusWlanChannelScanResultsEntryRadioChannel, + lcsStatusWlanChannelScanResultsEntryInterface + } + ::= { lcsStatusWlanChannelScanResultsTable 1 } + +LcsStatusWlanChannelScanResultsEntry ::= SEQUENCE { + lcsStatusWlanChannelScanResultsEntryRadioChannel Integer32, + lcsStatusWlanChannelScanResultsEntryInterface INTEGER, + lcsStatusWlanChannelScanResultsEntryScanned INTEGER, + lcsStatusWlanChannelScanResultsEntryNoiseLevel Integer32, + lcsStatusWlanChannelScanResultsEntryNumBss Integer32, + lcsStatusWlanChannelScanResultsEntryRadarDetected INTEGER, + lcsStatusWlanChannelScanResultsEntry108mbpsMode INTEGER, + lcsStatusWlanChannelScanResultsEntryRadioBand INTEGER, + lcsStatusWlanChannelScanResultsEntryPulseCount Integer32, + lcsStatusWlanChannelScanResultsEntryRemTime Integer32, + lcsStatusWlanChannelScanResultsEntryDfsState INTEGER, + lcsStatusWlanChannelScanResultsEntryRadarPattern DisplayString, + lcsStatusWlanChannelScanResultsEntryDfsScheme INTEGER, + lcsStatusWlanChannelScanResultsEntryUsage BITS, + lcsStatusWlanChannelScanResultsEntryScanAge Integer32, + lcsStatusWlanChannelScanResultsEntryNonHtBss INTEGER, + lcsStatusWlanChannelScanResultsEntryNonHtBssAge Integer32, + lcsStatusWlanChannelScanResultsEntry40mIntolerantBss INTEGER, + lcsStatusWlanChannelScanResultsEntry40mIntolerantBssAge Integer32, + lcsStatusWlanChannelScanResultsEntry40mIntolerantBssReported INTEGER, + lcsStatusWlanChannelScanResultsEntry40mIntolerantBssReportedAge Integer32, + lcsStatusWlanChannelScanResultsEntryChannelBandwidth INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.42.1.1 +lcsStatusWlanChannelScanResultsEntryRadioChannel OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanChannelScanResultsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.42.1.2 +lcsStatusWlanChannelScanResultsEntryInterface OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (0), + eWlan2 (1), + eWlan3 (2), + eWlan4 (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanChannelScanResultsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.42.1.3 +lcsStatusWlanChannelScanResultsEntryScanned OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanChannelScanResultsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.42.1.4 +lcsStatusWlanChannelScanResultsEntryNoiseLevel OBJECT-TYPE + SYNTAX Integer32 (-128..127) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanChannelScanResultsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.42.1.6 +lcsStatusWlanChannelScanResultsEntryNumBss OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanChannelScanResultsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.42.1.7 +lcsStatusWlanChannelScanResultsEntryRadarDetected OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanChannelScanResultsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.42.1.8 +lcsStatusWlanChannelScanResultsEntry108mbpsMode OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanChannelScanResultsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.42.1.9 +lcsStatusWlanChannelScanResultsEntryRadioBand OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e24ghz (1), + e5ghz (2), + e24ghz5ghz (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanChannelScanResultsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.42.1.10 +lcsStatusWlanChannelScanResultsEntryPulseCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanChannelScanResultsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.42.1.11 +lcsStatusWlanChannelScanResultsEntryRemTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanChannelScanResultsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.42.1.12 +lcsStatusWlanChannelScanResultsEntryDfsState OBJECT-TYPE + SYNTAX INTEGER { + eClear (0), + eBlocked (1), + eUnknown (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanChannelScanResultsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.42.1.13 +lcsStatusWlanChannelScanResultsEntryRadarPattern OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..40)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanChannelScanResultsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.42.1.14 +lcsStatusWlanChannelScanResultsEntryDfsScheme OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eEn301893V12 (1), + eEn301893V13 (2), + eEn302502 (4), + eFcc (8), + eJapan (16), + eEn301893V15 (32), + eEn301893V16 (64) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanChannelScanResultsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.42.1.15 +lcsStatusWlanChannelScanResultsEntryUsage OBJECT-TYPE + SYNTAX BITS { + eNone (0), + eOverlapScan (29), + eBackgroundScan (30), + eOperation (31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanChannelScanResultsEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.42.1.16 +lcsStatusWlanChannelScanResultsEntryScanAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanChannelScanResultsEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.42.1.17 +lcsStatusWlanChannelScanResultsEntryNonHtBss OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanChannelScanResultsEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.42.1.18 +lcsStatusWlanChannelScanResultsEntryNonHtBssAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanChannelScanResultsEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.42.1.19 +lcsStatusWlanChannelScanResultsEntry40mIntolerantBss OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanChannelScanResultsEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.42.1.20 +lcsStatusWlanChannelScanResultsEntry40mIntolerantBssAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanChannelScanResultsEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.42.1.21 +lcsStatusWlanChannelScanResultsEntry40mIntolerantBssReported OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanChannelScanResultsEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.42.1.22 +lcsStatusWlanChannelScanResultsEntry40mIntolerantBssReportedAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanChannelScanResultsEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.42.1.23 +lcsStatusWlanChannelScanResultsEntryChannelBandwidth OBJECT-TYPE + SYNTAX INTEGER { + e20mhz (0), + e40mhz (1), + e80mhz (2), + e160mhz (3), + e80Plus80mhz (4), + eT40mhz (5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanChannelScanResultsEntry 23 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.3.43 +lcsStatusWlanClient OBJECT IDENTIFIER ::= { lcsStatusWlan 43 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.43.1 +lcsStatusWlanClientIpv4TranslationTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanClientIpv4TranslationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClient 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.43.1.1 +lcsStatusWlanClientIpv4TranslationTableEntry OBJECT-TYPE + SYNTAX LcsStatusWlanClientIpv4TranslationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanClientIpv4TranslationTableEntryIpAddress + } + ::= { lcsStatusWlanClientIpv4TranslationTableTable 1 } + +LcsStatusWlanClientIpv4TranslationTableEntry ::= SEQUENCE { + lcsStatusWlanClientIpv4TranslationTableEntryIpAddress IpAddress, + lcsStatusWlanClientIpv4TranslationTableEntryMacAddress MacAddress, + lcsStatusWlanClientIpv4TranslationTableEntryAge Integer32, + lcsStatusWlanClientIpv4TranslationTableEntryInternal INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.1.1.1 +lcsStatusWlanClientIpv4TranslationTableEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIpv4TranslationTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.1.1.2 +lcsStatusWlanClientIpv4TranslationTableEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIpv4TranslationTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.1.1.3 +lcsStatusWlanClientIpv4TranslationTableEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIpv4TranslationTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.1.1.4 +lcsStatusWlanClientIpv4TranslationTableEntryInternal OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanClientIpv4TranslationTableEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.43.10 +lcsStatusWlanClientPppoeIdTranslationTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanClientPppoeIdTranslationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClient 10 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.43.10.1 +lcsStatusWlanClientPppoeIdTranslationTableEntry OBJECT-TYPE + SYNTAX LcsStatusWlanClientPppoeIdTranslationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanClientPppoeIdTranslationTableEntrySessionId + } + ::= { lcsStatusWlanClientPppoeIdTranslationTableTable 1 } + +LcsStatusWlanClientPppoeIdTranslationTableEntry ::= SEQUENCE { + lcsStatusWlanClientPppoeIdTranslationTableEntrySessionId Integer32, + lcsStatusWlanClientPppoeIdTranslationTableEntryMacAddress MacAddress, + lcsStatusWlanClientPppoeIdTranslationTableEntryAge Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.10.1.1 +lcsStatusWlanClientPppoeIdTranslationTableEntrySessionId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientPppoeIdTranslationTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.10.1.2 +lcsStatusWlanClientPppoeIdTranslationTableEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientPppoeIdTranslationTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.10.1.3 +lcsStatusWlanClientPppoeIdTranslationTableEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientPppoeIdTranslationTableEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.43.11 +lcsStatusWlanClientPppoeUniqTranslationTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanClientPppoeUniqTranslationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClient 11 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.43.11.1 +lcsStatusWlanClientPppoeUniqTranslationTableEntry OBJECT-TYPE + SYNTAX LcsStatusWlanClientPppoeUniqTranslationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanClientPppoeUniqTranslationTableEntryHostUniqLen, + lcsStatusWlanClientPppoeUniqTranslationTableEntryHostUniq + } + ::= { lcsStatusWlanClientPppoeUniqTranslationTableTable 1 } + +LcsStatusWlanClientPppoeUniqTranslationTableEntry ::= SEQUENCE { + lcsStatusWlanClientPppoeUniqTranslationTableEntryHostUniqLen Integer32, + lcsStatusWlanClientPppoeUniqTranslationTableEntryHostUniq DisplayString, + lcsStatusWlanClientPppoeUniqTranslationTableEntryMacAddress MacAddress, + lcsStatusWlanClientPppoeUniqTranslationTableEntryAge Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.11.1.1 +lcsStatusWlanClientPppoeUniqTranslationTableEntryHostUniqLen OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientPppoeUniqTranslationTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.11.1.2 +lcsStatusWlanClientPppoeUniqTranslationTableEntryHostUniq OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientPppoeUniqTranslationTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.11.1.3 +lcsStatusWlanClientPppoeUniqTranslationTableEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientPppoeUniqTranslationTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.11.1.4 +lcsStatusWlanClientPppoeUniqTranslationTableEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientPppoeUniqTranslationTableEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.43.12 +lcsStatusWlanClientIpv6TranslationTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanClientIpv6TranslationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClient 12 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.43.12.1 +lcsStatusWlanClientIpv6TranslationTableEntry OBJECT-TYPE + SYNTAX LcsStatusWlanClientIpv6TranslationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanClientIpv6TranslationTableEntryIpAddress + } + ::= { lcsStatusWlanClientIpv6TranslationTableTable 1 } + +LcsStatusWlanClientIpv6TranslationTableEntry ::= SEQUENCE { + lcsStatusWlanClientIpv6TranslationTableEntryIpAddress IpAddress, + lcsStatusWlanClientIpv6TranslationTableEntryMacAddress MacAddress, + lcsStatusWlanClientIpv6TranslationTableEntryAge Integer32, + lcsStatusWlanClientIpv6TranslationTableEntryInternal INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.12.1.1 +lcsStatusWlanClientIpv6TranslationTableEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIpv6TranslationTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.12.1.2 +lcsStatusWlanClientIpv6TranslationTableEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIpv6TranslationTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.12.1.3 +lcsStatusWlanClientIpv6TranslationTableEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIpv6TranslationTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.12.1.4 +lcsStatusWlanClientIpv6TranslationTableEntryInternal OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanClientIpv6TranslationTableEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.43.51 +lcsStatusWlanClientIfcsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanClientIfcsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClient 51 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.43.51.1 +lcsStatusWlanClientIfcsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanClientIfcsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanClientIfcsEntryIfc + } + ::= { lcsStatusWlanClientIfcsTable 1 } + +LcsStatusWlanClientIfcsEntry ::= SEQUENCE { + lcsStatusWlanClientIfcsEntryIfc DisplayString, + lcsStatusWlanClientIfcsEntryState INTEGER, + lcsStatusWlanClientIfcsEntryStationMode INTEGER, + lcsStatusWlanClientIfcsEntryRxRate INTEGER, + lcsStatusWlanClientIfcsEntryThroughput DisplayString, + lcsStatusWlanClientIfcsEntryPhySignal Integer32, + lcsStatusWlanClientIfcsEntryTxRate INTEGER, + lcsStatusWlanClientIfcsEntryMaxThroughput DisplayString, + lcsStatusWlanClientIfcsEntryTxBytes Counter64, + lcsStatusWlanClientIfcsEntryRxBytes Counter64, + lcsStatusWlanClientIfcsEntryBytesThroughput Integer32, + lcsStatusWlanClientIfcsEntryBytesMaxThroughput Integer32, + lcsStatusWlanClientIfcsEntryClBrgSupport INTEGER, + lcsStatusWlanClientIfcsEntryWpaVersion INTEGER, + lcsStatusWlanClientIfcsEntryTxLimit Integer32, + lcsStatusWlanClientIfcsEntryRxLimit Integer32, + lcsStatusWlanClientIfcsEntryQos INTEGER, + lcsStatusWlanClientIfcsEntryTxPackets Counter32, + lcsStatusWlanClientIfcsEntryRxPackets Counter32, + lcsStatusWlanClientIfcsEntryLinkPhySignal Integer32, + lcsStatusWlanClientIfcsEntryAid Integer32, + lcsStatusWlanClientIfcsEntryIdentification DisplayString, + lcsStatusWlanClientIfcsEntryConnectTime Integer32, + lcsStatusWlanClientIfcsEntryLinkSignalLevel Integer32, + lcsStatusWlanClientIfcsEntryMaxAMpduLen Integer32, + lcsStatusWlanClientIfcsEntryMaxAMsduLen Integer32, + lcsStatusWlanClientIfcsEntryEffTxRate Integer32, + lcsStatusWlanClientIfcsEntryEffRxRate Integer32, + lcsStatusWlanClientIfcsEntryKeyType INTEGER, + lcsStatusWlanClientIfcsEntryTxErrors Integer32, + lcsStatusWlanClientIfcsEntryTotalRetries Integer32, + lcsStatusWlanClientIfcsEntryAlarmState INTEGER, + lcsStatusWlanClientIfcsEntryAllow40mhz INTEGER, + lcsStatusWlanClientIfcsEntryExtChannel INTEGER, + lcsStatusWlanClientIfcsEntry40mhzCoexistence INTEGER, + lcsStatusWlanClientIfcsEntryRxStbc INTEGER, + lcsStatusWlanClientIfcsEntryLdpc INTEGER, + lcsStatusWlanClientIfcsEntryWpa2KeyManagement INTEGER, + lcsStatusWlanClientIfcsEntryProtMgmtFrames INTEGER, + lcsStatusWlanClientIfcsEntryRxStbcHt INTEGER, + lcsStatusWlanClientIfcsEntryRxStbcVht INTEGER, + lcsStatusWlanClientIfcsEntryLDPCMask BITS, + lcsStatusWlanClientIfcsEntryOperationMode INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.1 +lcsStatusWlanClientIfcsEntryIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.2 +lcsStatusWlanClientIfcsEntryState OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eAuthenticated (2), + eConnected (3), + eJoined (5), + eScanning (6), + eChallenge (7), + eKeyHandshake (8), + eAssociated (9), + e1xNegotiation (10), + eWaitPmkCache (11) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.3 +lcsStatusWlanClientIfcsEntryStationMode OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eAdhoc (1), + eInfrastructure (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.5 +lcsStatusWlanClientIfcsEntryRxRate OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e1M (1), + e2M (2), + e5M (3), + e5M5 (4), + e8M (5), + e11M (6), + e6M (8), + e9M (9), + e12M (10), + e18M (11), + e24M (12), + e36M (13), + e48M (14), + e54M (15), + eHT1S6M5 (28), + eHT1S13M (29), + eHT1S19M5 (30), + eHT1S26M (31), + eHT1S39M (32), + eHT1S52M (33), + eHT1S58M5 (34), + eHT1S65M (35), + eHT2S13M (36), + eHT2S26M (37), + eHT2S39M (38), + eHT2S52M (39), + eHT2S78M (40), + eHT2S104M (41), + eHT2S117M (42), + eHT2S130M (43), + eHT3S19M5 (44), + eHT3S39M (45), + eHT3S58M5 (46), + eHT3S78M (47), + eHT3S117M (48), + eHT3S156M (49), + eHT3S175M5 (50), + eHT3S195M (51) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.6 +lcsStatusWlanClientIfcsEntryThroughput OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..14)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.7 +lcsStatusWlanClientIfcsEntryPhySignal OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.9 +lcsStatusWlanClientIfcsEntryTxRate OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e1M (1), + e2M (2), + e5M (3), + e5M5 (4), + e8M (5), + e11M (6), + e6M (8), + e9M (9), + e12M (10), + e18M (11), + e24M (12), + e36M (13), + e48M (14), + e54M (15), + eHT1S6M5 (28), + eHT1S13M (29), + eHT1S19M5 (30), + eHT1S26M (31), + eHT1S39M (32), + eHT1S52M (33), + eHT1S58M5 (34), + eHT1S65M (35), + eHT2S13M (36), + eHT2S26M (37), + eHT2S39M (38), + eHT2S52M (39), + eHT2S78M (40), + eHT2S104M (41), + eHT2S117M (42), + eHT2S130M (43), + eHT3S19M5 (44), + eHT3S39M (45), + eHT3S58M5 (46), + eHT3S78M (47), + eHT3S117M (48), + eHT3S156M (49), + eHT3S175M5 (50), + eHT3S195M (51) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.10 +lcsStatusWlanClientIfcsEntryMaxThroughput OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..14)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.11 +lcsStatusWlanClientIfcsEntryTxBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.12 +lcsStatusWlanClientIfcsEntryRxBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.13 +lcsStatusWlanClientIfcsEntryBytesThroughput OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.14 +lcsStatusWlanClientIfcsEntryBytesMaxThroughput OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.15 +lcsStatusWlanClientIfcsEntryClBrgSupport OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.16 +lcsStatusWlanClientIfcsEntryWpaVersion OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eWpa1 (1), + eWpa2 (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.17 +lcsStatusWlanClientIfcsEntryTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.18 +lcsStatusWlanClientIfcsEntryRxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.19 +lcsStatusWlanClientIfcsEntryQos OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.20 +lcsStatusWlanClientIfcsEntryTxPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.21 +lcsStatusWlanClientIfcsEntryRxPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.22 +lcsStatusWlanClientIfcsEntryLinkPhySignal OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.23 +lcsStatusWlanClientIfcsEntryAid OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.24 +lcsStatusWlanClientIfcsEntryIdentification OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..24)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 24 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.25 +lcsStatusWlanClientIfcsEntryConnectTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 25 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.26 +lcsStatusWlanClientIfcsEntryLinkSignalLevel OBJECT-TYPE + SYNTAX Integer32 (-32768..32767) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 26 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.27 +lcsStatusWlanClientIfcsEntryMaxAMpduLen OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 27 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.28 +lcsStatusWlanClientIfcsEntryMaxAMsduLen OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 28 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.29 +lcsStatusWlanClientIfcsEntryEffTxRate OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 29 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.30 +lcsStatusWlanClientIfcsEntryEffRxRate OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 30 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.31 +lcsStatusWlanClientIfcsEntryKeyType OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eUnknown (1), + eWep40Bits (5), + eWep104Bits (13), + eWep128Bits (16), + eTkip (64), + eAesOcb (65), + eAesCcm (66), + eBip (68) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 31 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.32 +lcsStatusWlanClientIfcsEntryTxErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 32 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.33 +lcsStatusWlanClientIfcsEntryTotalRetries OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 33 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.34 +lcsStatusWlanClientIfcsEntryAlarmState OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + ePhySignal (1), + eTotalRetries (2), + eTxErrors (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientIfcsEntry 34 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.35 +lcsStatusWlanClientIfcsEntryAllow40mhz OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanClientIfcsEntry 35 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.36 +lcsStatusWlanClientIfcsEntryExtChannel OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eAbove (1), + eBelow (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanClientIfcsEntry 36 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.37 +lcsStatusWlanClientIfcsEntry40mhzCoexistence OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanClientIfcsEntry 37 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.38 +lcsStatusWlanClientIfcsEntryRxStbc OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eOne (1), + eTwo (2), + eThree (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanClientIfcsEntry 38 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.39 +lcsStatusWlanClientIfcsEntryLdpc OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanClientIfcsEntry 39 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.40 +lcsStatusWlanClientIfcsEntryWpa2KeyManagement OBJECT-TYPE + SYNTAX INTEGER { + eStandard (0), + eFastRoaming (1), + eSha256 (2), + eNone (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanClientIfcsEntry 40 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.41 +lcsStatusWlanClientIfcsEntryProtMgmtFrames OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanClientIfcsEntry 41 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.42 +lcsStatusWlanClientIfcsEntryRxStbcHt OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eOne (1), + eTwo (2), + eThree (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanClientIfcsEntry 42 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.43 +lcsStatusWlanClientIfcsEntryRxStbcVht OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eOne (1), + eTwo (2), + eThree (3), + eFour (4), + eFive (5), + eSix (6), + eSeven (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanClientIfcsEntry 43 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.44 +lcsStatusWlanClientIfcsEntryLDPCMask OBJECT-TYPE + SYNTAX BITS { + eVht (30), + eHt (31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bit mask of LDPC support per-PHY-Type" + ::= { lcsStatusWlanClientIfcsEntry 44 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.51.1.45 +lcsStatusWlanClientIfcsEntryOperationMode OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e11b (1), + e11g (2), + e11a (3), + e11n (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanClientIfcsEntry 45 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.43.52 +lcsStatusWlanClientConnectionRejectsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanClientConnectionRejectsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClient 52 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.43.52.1 +lcsStatusWlanClientConnectionRejectsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanClientConnectionRejectsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanClientConnectionRejectsEntryBssid, + lcsStatusWlanClientConnectionRejectsEntryInterface + } + ::= { lcsStatusWlanClientConnectionRejectsTable 1 } + +LcsStatusWlanClientConnectionRejectsEntry ::= SEQUENCE { + lcsStatusWlanClientConnectionRejectsEntryBssid MacAddress, + lcsStatusWlanClientConnectionRejectsEntryInterface INTEGER, + lcsStatusWlanClientConnectionRejectsEntryAge Integer32, + lcsStatusWlanClientConnectionRejectsEntryEvent INTEGER, + lcsStatusWlanClientConnectionRejectsEntryStatusOrReason Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.52.1.1 +lcsStatusWlanClientConnectionRejectsEntryBssid OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientConnectionRejectsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.52.1.2 +lcsStatusWlanClientConnectionRejectsEntryInterface OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientConnectionRejectsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.52.1.3 +lcsStatusWlanClientConnectionRejectsEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientConnectionRejectsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.52.1.4 +lcsStatusWlanClientConnectionRejectsEntryEvent OBJECT-TYPE + SYNTAX INTEGER { + eDeauthenticate (1), + eDisassociate (2), + eAuthenticateReject (3), + eAssociateReject (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientConnectionRejectsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.43.52.1.5 +lcsStatusWlanClientConnectionRejectsEntryStatusOrReason OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanClientConnectionRejectsEntry 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.44 +lcsStatusWlanCompetingNetworksTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanCompetingNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlan 44 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.44.1 +lcsStatusWlanCompetingNetworksEntry OBJECT-TYPE + SYNTAX LcsStatusWlanCompetingNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanCompetingNetworksEntryBssid, + lcsStatusWlanCompetingNetworksEntryInterface + } + ::= { lcsStatusWlanCompetingNetworksTable 1 } + +LcsStatusWlanCompetingNetworksEntry ::= SEQUENCE { + lcsStatusWlanCompetingNetworksEntryBssid MacAddress, + lcsStatusWlanCompetingNetworksEntryNetworkName DisplayString, + lcsStatusWlanCompetingNetworksEntryOperationMode INTEGER, + lcsStatusWlanCompetingNetworksEntryBeaconPeriod Integer32, + lcsStatusWlanCompetingNetworksEntryDtimPeriod Integer32, + lcsStatusWlanCompetingNetworksEntryRadioChannel Integer32, + lcsStatusWlanCompetingNetworksEntryPhySignal Integer32, + lcsStatusWlanCompetingNetworksEntryNoiseLevel Integer32, + lcsStatusWlanCompetingNetworksEntryLoad DisplayString, + lcsStatusWlanCompetingNetworksEntryEncryption INTEGER, + lcsStatusWlanCompetingNetworksEntryShortPreamble INTEGER, + lcsStatusWlanCompetingNetworksEntryInterface INTEGER, + lcsStatusWlanCompetingNetworksEntryRadioBand INTEGER, + lcsStatusWlanCompetingNetworksEntry108mbpsMode INTEGER, + lcsStatusWlanCompetingNetworksEntryShortSlotTime INTEGER, + lcsStatusWlanCompetingNetworksEntryRate INTEGER, + lcsStatusWlanCompetingNetworksEntryNonerpPresent INTEGER, + lcsStatusWlanCompetingNetworksEntryCompression INTEGER, + lcsStatusWlanCompetingNetworksEntryPcfFunctionality INTEGER, + lcsStatusWlanCompetingNetworksEntryIdentification DisplayString, + lcsStatusWlanCompetingNetworksEntryQos INTEGER, + lcsStatusWlanCompetingNetworksEntryAge Integer32, + lcsStatusWlanCompetingNetworksEntrySignalLevel Integer32, + lcsStatusWlanCompetingNetworksEntryShortGuardInterval INTEGER, + lcsStatusWlanCompetingNetworksEntryExtChannel INTEGER, + lcsStatusWlanCompetingNetworksEntry40mhzMode INTEGER, + lcsStatusWlanCompetingNetworksEntry40mhzIntolerant INTEGER, + lcsStatusWlanCompetingNetworksEntryInterpointPeerName DisplayString, + lcsStatusWlanCompetingNetworksEntryMaxAMpduLen Integer32, + lcsStatusWlanCompetingNetworksEntryMaxAMsduLen Integer32, + lcsStatusWlanCompetingNetworksEntryVendor DisplayString, + lcsStatusWlanCompetingNetworksEntryEffRate Integer32, + lcsStatusWlanCompetingNetworksEntry40mhzCoexistence INTEGER, + lcsStatusWlanCompetingNetworksEntryPreAuthentication INTEGER, + lcsStatusWlanCompetingNetworksEntryTxStbc INTEGER, + lcsStatusWlanCompetingNetworksEntryRxStbc INTEGER, + lcsStatusWlanCompetingNetworksEntryEapolPreauthFailed INTEGER, + lcsStatusWlanCompetingNetworksEntryLdpc INTEGER, + lcsStatusWlanCompetingNetworksEntryAutowds INTEGER, + lcsStatusWlanCompetingNetworksEntrySGIMask BITS, + lcsStatusWlanCompetingNetworksEntryChannelBandwidths BITS, + lcsStatusWlanCompetingNetworksEntryChannelBandwidth INTEGER, + lcsStatusWlanCompetingNetworksEntryClBrgSupport INTEGER, + lcsStatusWlanCompetingNetworksEntryProtMgmtFrames INTEGER, + lcsStatusWlanCompetingNetworksEntryTxPowerLimit DisplayString, + lcsStatusWlanCompetingNetworksEntryTxSTBCMask BITS, + lcsStatusWlanCompetingNetworksEntryRxStbcHt INTEGER, + lcsStatusWlanCompetingNetworksEntryRxStbcVht INTEGER, + lcsStatusWlanCompetingNetworksEntryLDPCMask BITS + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.1 +lcsStatusWlanCompetingNetworksEntryBssid OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.2 +lcsStatusWlanCompetingNetworksEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.3 +lcsStatusWlanCompetingNetworksEntryOperationMode OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eAdhoc (1), + eInfrastructure (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "lancom's description of operation mode" + ::= { lcsStatusWlanCompetingNetworksEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.6 +lcsStatusWlanCompetingNetworksEntryBeaconPeriod OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.7 +lcsStatusWlanCompetingNetworksEntryDtimPeriod OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.8 +lcsStatusWlanCompetingNetworksEntryRadioChannel OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.10 +lcsStatusWlanCompetingNetworksEntryPhySignal OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.11 +lcsStatusWlanCompetingNetworksEntryNoiseLevel OBJECT-TYPE + SYNTAX Integer32 (-128..127) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.12 +lcsStatusWlanCompetingNetworksEntryLoad OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.13 +lcsStatusWlanCompetingNetworksEntryEncryption OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eWep (1), + eTkip (2), + eAes (3), + eAesPlusTkip (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.14 +lcsStatusWlanCompetingNetworksEntryShortPreamble OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.15 +lcsStatusWlanCompetingNetworksEntryInterface OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (0), + eWlan2 (1), + eWlan3 (2), + eWlan4 (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.16 +lcsStatusWlanCompetingNetworksEntryRadioBand OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e24ghz (1), + e5ghz (2), + e24ghz5ghz (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.17 +lcsStatusWlanCompetingNetworksEntry108mbpsMode OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.18 +lcsStatusWlanCompetingNetworksEntryShortSlotTime OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.19 +lcsStatusWlanCompetingNetworksEntryRate OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e1M (1), + e2M (2), + e5M (3), + e5M5 (4), + e8M (5), + e11M (6), + e6M (12), + e9M (13), + e12M (14), + e18M (15), + e24M (16), + e36M (17), + e48M (18), + e54M (19), + eT12M (20), + eT18M (21), + eT24M (22), + eT36M (23), + eT48M (24), + eT72M (25), + eT96M (26), + eT108M (27), + eHT1S6M5 (28), + eHT1S13M (29), + eHT1S19M5 (30), + eHT1S26M (31), + eHT1S39M (32), + eHT1S52M (33), + eHT1S58M5 (34), + eHT1S65M (35), + eHT2S13M (36), + eHT2S26M (37), + eHT2S39M (38), + eHT2S52M (39), + eHT2S78M (40), + eHT2S104M (41), + eHT2S117M (42), + eHT2S130M (43), + eHT3S19M5 (44), + eHT3S39M (45), + eHT3S58M5 (46), + eHT3S78M (47), + eHT3S117M (48), + eHT3S156M (49), + eHT3S175M5 (50), + eHT3S195M (51), + eHT4S26M (52), + eHT4S52M (53), + eHT4S78M (54), + eHT4S104M (55), + eHT4S156M (56), + eHT4S208M (57), + eHT4S234M (58), + eHT4S260M (59), + eHTDUP6M (60), + eHtMcs33 (61), + eHtMcs34 (62), + eHtMcs35 (63), + eHtMcs36 (64), + eHtMcs37 (65), + eHtMcs38 (66), + eHtMcs39 (67), + eHtMcs40 (68), + eHtMcs41 (69), + eHtMcs42 (70), + eHtMcs43 (71), + eHtMcs44 (72), + eHtMcs45 (73), + eHtMcs46 (74), + eHtMcs47 (75), + eHtMcs48 (76), + eHtMcs49 (77), + eHtMcs50 (78), + eHtMcs51 (79), + eHtMcs52 (80), + eHtMcs53 (81), + eHtMcs54 (82), + eHtMcs55 (83), + eHtMcs56 (84), + eHtMcs57 (85), + eHtMcs58 (86), + eHtMcs59 (87), + eHtMcs60 (88), + eHtMcs61 (89), + eHtMcs62 (90), + eHtMcs63 (91), + eHtMcs64 (92), + eHtMcs65 (93), + eHtMcs66 (94), + eHtMcs67 (95), + eHtMcs68 (96), + eHtMcs69 (97), + eHtMcs70 (98), + eHtMcs71 (99), + eHtMcs72 (100), + eHtMcs73 (101), + eHtMcs74 (102), + eHtMcs75 (103), + eHtMcs76 (104), + eVHT1S6M5 (105), + eVHT1S13M (106), + eVHT1S19M5 (107), + eVHT1S26M (108), + eVHT1S39M (109), + eVHT1S52M (110), + eVHT1S58M5 (111), + eVHT1S65M (112), + eVHT1S78M (113), + eVHT1S86M7 (114), + eVHT2S13M (115), + eVHT2S26M (116), + eVHT2S39M (117), + eVHT2S52M (118), + eVHT2S78M (119), + eVHT2S104M (120), + eVHT2S117M (121), + eVHT2S130M (122), + eVHT2S156M (123), + eVHT2S173M3 (124), + eVHT3S19M5 (125), + eVHT3S39M (126), + eVHT3S58M5 (127), + eVHT3S78M (128), + eVHT3S117M (129), + eVHT3S156M (130), + eVHT3S175M5 (131), + eVHT3S195M (132), + eVHT3S234M (133), + eVHT3S260M (134), + eVHT4S26M (135), + eVHT4S52M (136), + eVHT4S78M (137), + eVHT4S104M (138), + eVHT4S156M (139), + eVHT4S208M (140), + eVHT4S234M (141), + eVHT4S260M (142), + eVHT4S312M (143), + eVHT4S346M7 (144) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.20 +lcsStatusWlanCompetingNetworksEntryNonerpPresent OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.21 +lcsStatusWlanCompetingNetworksEntryCompression OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.22 +lcsStatusWlanCompetingNetworksEntryPcfFunctionality OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eDelivery (1), + eDeliveryPlusPolling (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.23 +lcsStatusWlanCompetingNetworksEntryIdentification OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.24 +lcsStatusWlanCompetingNetworksEntryQos OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 24 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.25 +lcsStatusWlanCompetingNetworksEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 25 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.26 +lcsStatusWlanCompetingNetworksEntrySignalLevel OBJECT-TYPE + SYNTAX Integer32 (-32768..32767) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 26 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.27 +lcsStatusWlanCompetingNetworksEntryShortGuardInterval OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + e20mhz (1), + e40mhz (2), + e2040mhz (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 27 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.28 +lcsStatusWlanCompetingNetworksEntryExtChannel OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eAbove (1), + eBelow (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 28 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.29 +lcsStatusWlanCompetingNetworksEntry40mhzMode OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 29 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.30 +lcsStatusWlanCompetingNetworksEntry40mhzIntolerant OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 30 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.31 +lcsStatusWlanCompetingNetworksEntryInterpointPeerName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..24)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 31 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.32 +lcsStatusWlanCompetingNetworksEntryMaxAMpduLen OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 32 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.33 +lcsStatusWlanCompetingNetworksEntryMaxAMsduLen OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 33 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.34 +lcsStatusWlanCompetingNetworksEntryVendor OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 34 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.35 +lcsStatusWlanCompetingNetworksEntryEffRate OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanCompetingNetworksEntry 35 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.36 +lcsStatusWlanCompetingNetworksEntry40mhzCoexistence OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanCompetingNetworksEntry 36 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.37 +lcsStatusWlanCompetingNetworksEntryPreAuthentication OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanCompetingNetworksEntry 37 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.38 +lcsStatusWlanCompetingNetworksEntryTxStbc OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanCompetingNetworksEntry 38 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.39 +lcsStatusWlanCompetingNetworksEntryRxStbc OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eOne (1), + eTwo (2), + eThree (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanCompetingNetworksEntry 39 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.40 +lcsStatusWlanCompetingNetworksEntryEapolPreauthFailed OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanCompetingNetworksEntry 40 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.41 +lcsStatusWlanCompetingNetworksEntryLdpc OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanCompetingNetworksEntry 41 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.42 +lcsStatusWlanCompetingNetworksEntryAutowds OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanCompetingNetworksEntry 42 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.43 +lcsStatusWlanCompetingNetworksEntrySGIMask OBJECT-TYPE + SYNTAX BITS { + eNo (0), + e160mhz (28), + e80mhz (29), + e40mhz (30), + e20mhz (31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bit mask of short guard interval support per-CBW" + ::= { lcsStatusWlanCompetingNetworksEntry 43 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.44 +lcsStatusWlanCompetingNetworksEntryChannelBandwidths OBJECT-TYPE + SYNTAX BITS { + eT40mhz (26), + e80Plus80mhz (27), + e160mhz (28), + e80mhz (29), + e40mhz (30), + e20mhz (31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanCompetingNetworksEntry 44 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.45 +lcsStatusWlanCompetingNetworksEntryChannelBandwidth OBJECT-TYPE + SYNTAX INTEGER { + e20mhz (0), + e40mhz (1), + e80mhz (2), + e160mhz (3), + e80Plus80mhz (4), + eT40mhz (5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanCompetingNetworksEntry 45 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.46 +lcsStatusWlanCompetingNetworksEntryClBrgSupport OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanCompetingNetworksEntry 46 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.47 +lcsStatusWlanCompetingNetworksEntryProtMgmtFrames OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eOptional (1), + eMandatory (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanCompetingNetworksEntry 47 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.48 +lcsStatusWlanCompetingNetworksEntryTxPowerLimit OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanCompetingNetworksEntry 48 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.49 +lcsStatusWlanCompetingNetworksEntryTxSTBCMask OBJECT-TYPE + SYNTAX BITS { + eVht (30), + eHt (31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bit mask of Tx STBC support per-PHY-Type" + ::= { lcsStatusWlanCompetingNetworksEntry 49 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.50 +lcsStatusWlanCompetingNetworksEntryRxStbcHt OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eOne (1), + eTwo (2), + eThree (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanCompetingNetworksEntry 50 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.51 +lcsStatusWlanCompetingNetworksEntryRxStbcVht OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eOne (1), + eTwo (2), + eThree (3), + eFour (4), + eFive (5), + eSix (6), + eSeven (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanCompetingNetworksEntry 51 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.44.1.52 +lcsStatusWlanCompetingNetworksEntryLDPCMask OBJECT-TYPE + SYNTAX BITS { + eVht (30), + eHt (31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bit mask of LDPC support per-PHY-Type" + ::= { lcsStatusWlanCompetingNetworksEntry 52 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.45 +lcsStatusWlanSeenClientsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanSeenClientsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlan 45 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.45.1 +lcsStatusWlanSeenClientsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanSeenClientsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanSeenClientsEntryMacAddress, + lcsStatusWlanSeenClientsEntryInterface + } + ::= { lcsStatusWlanSeenClientsTable 1 } + +LcsStatusWlanSeenClientsEntry ::= SEQUENCE { + lcsStatusWlanSeenClientsEntryMacAddress MacAddress, + lcsStatusWlanSeenClientsEntryInterface INTEGER, + lcsStatusWlanSeenClientsEntrySignalLevel Integer32, + lcsStatusWlanSeenClientsEntryAge Integer32, + lcsStatusWlanSeenClientsEntryNetworkName DisplayString, + lcsStatusWlanSeenClientsEntryRxPhySignal Integer32, + lcsStatusWlanSeenClientsEntryNumProbes Counter32, + lcsStatusWlanSeenClientsEntryVendor DisplayString, + lcsStatusWlanSeenClientsEntryNumProberspOk Counter32, + lcsStatusWlanSeenClientsEntryNumProberspBad Counter32, + lcsStatusWlanSeenClientsEntryRadioBand INTEGER, + lcsStatusWlanSeenClientsEntryNumProberspSuppressed Counter32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.45.1.1 +lcsStatusWlanSeenClientsEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanSeenClientsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.45.1.2 +lcsStatusWlanSeenClientsEntryInterface OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (0), + eWlan2 (1), + eWlan3 (2), + eWlan4 (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanSeenClientsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.45.1.3 +lcsStatusWlanSeenClientsEntrySignalLevel OBJECT-TYPE + SYNTAX Integer32 (-128..127) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanSeenClientsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.45.1.4 +lcsStatusWlanSeenClientsEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanSeenClientsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.45.1.5 +lcsStatusWlanSeenClientsEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanSeenClientsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.45.1.6 +lcsStatusWlanSeenClientsEntryRxPhySignal OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanSeenClientsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.45.1.7 +lcsStatusWlanSeenClientsEntryNumProbes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanSeenClientsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.45.1.8 +lcsStatusWlanSeenClientsEntryVendor OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanSeenClientsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.45.1.9 +lcsStatusWlanSeenClientsEntryNumProberspOk OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanSeenClientsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.45.1.10 +lcsStatusWlanSeenClientsEntryNumProberspBad OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanSeenClientsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.45.1.11 +lcsStatusWlanSeenClientsEntryRadioBand OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e24ghz (1), + e5ghz (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanSeenClientsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.45.1.12 +lcsStatusWlanSeenClientsEntryNumProberspSuppressed OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanSeenClientsEntry 12 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.46 +lcsStatusWlanLogTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlan 46 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.46.1 +lcsStatusWlanLogTableEntry OBJECT-TYPE + SYNTAX LcsStatusWlanLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanLogTableEntryIndex + } + ::= { lcsStatusWlanLogTableTable 1 } + +LcsStatusWlanLogTableEntry ::= SEQUENCE { + lcsStatusWlanLogTableEntryIndex Integer32, + lcsStatusWlanLogTableEntryTime DisplayString, + lcsStatusWlanLogTableEntryInterface INTEGER, + lcsStatusWlanLogTableEntryEvent DisplayString, + lcsStatusWlanLogTableEntryAddress MacAddress, + lcsStatusWlanLogTableEntryReason DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.46.1.1 +lcsStatusWlanLogTableEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanLogTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.46.1.2 +lcsStatusWlanLogTableEntryTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanLogTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.46.1.3 +lcsStatusWlanLogTableEntryInterface OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2), + eWlan12 (16), + eWlan13 (17), + eWlan14 (18), + eWlan15 (19), + eWlan16 (20), + eWlan17 (21), + eWlan18 (22), + eWlan22 (32), + eWlan23 (33), + eWlan24 (34), + eWlan25 (35), + eWlan26 (36), + eWlan27 (37), + eWlan28 (38), + eP2p11 (1025), + eP2p12 (1026), + eP2p13 (1027), + eP2p14 (1028), + eP2p15 (1029), + eP2p16 (1030), + eP2p21 (1031), + eP2p22 (1032), + eP2p23 (1033), + eP2p24 (1034), + eP2p25 (1035), + eP2p26 (1036), + eP2p17 (1056), + eP2p18 (1057), + eP2p19 (1058), + eP2p110 (1059), + eP2p111 (1060), + eP2p112 (1061), + eP2p113 (1062), + eP2p114 (1063), + eP2p115 (1064), + eP2p116 (1065), + eP2p27 (1088), + eP2p28 (1089), + eP2p29 (1090), + eP2p210 (1091), + eP2p211 (1092), + eP2p212 (1093), + eP2p213 (1094), + eP2p214 (1095), + eP2p215 (1096), + eP2p216 (1097) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanLogTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.46.1.4 +lcsStatusWlanLogTableEntryEvent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanLogTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.46.1.5 +lcsStatusWlanLogTableEntryAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanLogTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.46.1.6 +lcsStatusWlanLogTableEntryReason OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanLogTableEntry 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.47 +lcsStatusWlanPairwiseKeysTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanPairwiseKeysEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlan 47 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.47.1 +lcsStatusWlanPairwiseKeysEntry OBJECT-TYPE + SYNTAX LcsStatusWlanPairwiseKeysEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanPairwiseKeysEntryIndex + } + ::= { lcsStatusWlanPairwiseKeysTable 1 } + +LcsStatusWlanPairwiseKeysEntry ::= SEQUENCE { + lcsStatusWlanPairwiseKeysEntryIndex Integer32, + lcsStatusWlanPairwiseKeysEntryKeyType INTEGER, + lcsStatusWlanPairwiseKeysEntryKeyValue DisplayString, + lcsStatusWlanPairwiseKeysEntryTsc DisplayString, + lcsStatusWlanPairwiseKeysEntryAge Integer32, + lcsStatusWlanPairwiseKeysEntryIvSequenceErrors Integer32, + lcsStatusWlanPairwiseKeysEntryRscBe DisplayString, + lcsStatusWlanPairwiseKeysEntryRscBk DisplayString, + lcsStatusWlanPairwiseKeysEntryRscEe DisplayString, + lcsStatusWlanPairwiseKeysEntryRscCl DisplayString, + lcsStatusWlanPairwiseKeysEntryRscVi DisplayString, + lcsStatusWlanPairwiseKeysEntryRscVo DisplayString, + lcsStatusWlanPairwiseKeysEntryRscNc DisplayString, + lcsStatusWlanPairwiseKeysEntryRscMgmt DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.47.1.1 +lcsStatusWlanPairwiseKeysEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPairwiseKeysEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.47.1.3 +lcsStatusWlanPairwiseKeysEntryKeyType OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eUnknown (1), + eWep40Bits (5), + eWep104Bits (13), + eWep128Bits (16), + eTkip (64), + eAesOcb (65), + eAesCcm (66), + eBip (68) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPairwiseKeysEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.47.1.4 +lcsStatusWlanPairwiseKeysEntryKeyValue OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPairwiseKeysEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.47.1.5 +lcsStatusWlanPairwiseKeysEntryTsc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPairwiseKeysEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.47.1.7 +lcsStatusWlanPairwiseKeysEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPairwiseKeysEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.47.1.8 +lcsStatusWlanPairwiseKeysEntryIvSequenceErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPairwiseKeysEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.47.1.16 +lcsStatusWlanPairwiseKeysEntryRscBe OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPairwiseKeysEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.47.1.17 +lcsStatusWlanPairwiseKeysEntryRscBk OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPairwiseKeysEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.47.1.19 +lcsStatusWlanPairwiseKeysEntryRscEe OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPairwiseKeysEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.47.1.20 +lcsStatusWlanPairwiseKeysEntryRscCl OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPairwiseKeysEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.47.1.21 +lcsStatusWlanPairwiseKeysEntryRscVi OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPairwiseKeysEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.47.1.22 +lcsStatusWlanPairwiseKeysEntryRscVo OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPairwiseKeysEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.47.1.23 +lcsStatusWlanPairwiseKeysEntryRscNc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPairwiseKeysEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.47.1.24 +lcsStatusWlanPairwiseKeysEntryRscMgmt OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanPairwiseKeysEntry 24 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.48 +lcsStatusWlanRadiusCacheTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanRadiusCacheEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlan 48 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.48.1 +lcsStatusWlanRadiusCacheEntry OBJECT-TYPE + SYNTAX LcsStatusWlanRadiusCacheEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanRadiusCacheEntryMacAddress + } + ::= { lcsStatusWlanRadiusCacheTable 1 } + +LcsStatusWlanRadiusCacheEntry ::= SEQUENCE { + lcsStatusWlanRadiusCacheEntryMacAddress MacAddress, + lcsStatusWlanRadiusCacheEntryAllowed INTEGER, + lcsStatusWlanRadiusCacheEntryAge Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.48.1.1 +lcsStatusWlanRadiusCacheEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanRadiusCacheEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.48.1.2 +lcsStatusWlanRadiusCacheEntryAllowed OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanRadiusCacheEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.48.1.3 +lcsStatusWlanRadiusCacheEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanRadiusCacheEntry 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.3.49 +lcsStatusWlanClearLogTable OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlan 49 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.3.50 +lcsStatusWlanClearSeenClientsTable OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlan 50 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.51 +lcsStatusWlanIfcsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanIfcsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlan 51 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.51.1 +lcsStatusWlanIfcsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanIfcsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanIfcsEntryIfc + } + ::= { lcsStatusWlanIfcsTable 1 } + +LcsStatusWlanIfcsEntry ::= SEQUENCE { + lcsStatusWlanIfcsEntryIfc DisplayString, + lcsStatusWlanIfcsEntryMacAddress MacAddress, + lcsStatusWlanIfcsEntryOperating INTEGER, + lcsStatusWlanIfcsEntryQueuePackets Integer32, + lcsStatusWlanIfcsEntryCardId DisplayString, + lcsStatusWlanIfcsEntryFirmwareVersion DisplayString, + lcsStatusWlanIfcsEntrySerialNumber DisplayString, + lcsStatusWlanIfcsEntryNumStations Integer32, + lcsStatusWlanIfcsEntryOperationMode INTEGER, + lcsStatusWlanIfcsEntryTemperature DisplayString, + lcsStatusWlanIfcsEntryNumericTemperature Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.51.1.1 +lcsStatusWlanIfcsEntryIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanIfcsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.51.1.2 +lcsStatusWlanIfcsEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanIfcsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.51.1.3 +lcsStatusWlanIfcsEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanIfcsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.51.1.4 +lcsStatusWlanIfcsEntryQueuePackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanIfcsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.51.1.5 +lcsStatusWlanIfcsEntryCardId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanIfcsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.51.1.6 +lcsStatusWlanIfcsEntryFirmwareVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanIfcsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.51.1.7 +lcsStatusWlanIfcsEntrySerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanIfcsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.51.1.8 +lcsStatusWlanIfcsEntryNumStations OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanIfcsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.51.1.9 +lcsStatusWlanIfcsEntryOperationMode OBJECT-TYPE + SYNTAX INTEGER { + eStation (0), + eAccessPoint (1), + eMonitor (2), + eManagedAp (4), + eProbe (5), + eManagedProbe (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "lancom's description of operation mode" + ::= { lcsStatusWlanIfcsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.51.1.10 +lcsStatusWlanIfcsEntryTemperature OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanIfcsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.51.1.11 +lcsStatusWlanIfcsEntryNumericTemperature OBJECT-TYPE + SYNTAX Integer32 (-32768..32767) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanIfcsEntry 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.52 +lcsStatusWlanByteTransportTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanByteTransportEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlan 52 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.52.1 +lcsStatusWlanByteTransportEntry OBJECT-TYPE + SYNTAX LcsStatusWlanByteTransportEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanByteTransportEntryIfc + } + ::= { lcsStatusWlanByteTransportTable 1 } + +LcsStatusWlanByteTransportEntry ::= SEQUENCE { + lcsStatusWlanByteTransportEntryIfc DisplayString, + lcsStatusWlanByteTransportEntryTxBytes Counter64, + lcsStatusWlanByteTransportEntryRxBytes Counter64, + lcsStatusWlanByteTransportEntryThroughput DisplayString, + lcsStatusWlanByteTransportEntryMaxThroughput DisplayString, + lcsStatusWlanByteTransportEntryBytesThroughput Integer32, + lcsStatusWlanByteTransportEntryBytesMaxThroughput Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.52.1.1 +lcsStatusWlanByteTransportEntryIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanByteTransportEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.52.1.2 +lcsStatusWlanByteTransportEntryTxBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanByteTransportEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.52.1.3 +lcsStatusWlanByteTransportEntryRxBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanByteTransportEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.52.1.4 +lcsStatusWlanByteTransportEntryThroughput OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanByteTransportEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.52.1.5 +lcsStatusWlanByteTransportEntryMaxThroughput OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanByteTransportEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.52.1.6 +lcsStatusWlanByteTransportEntryBytesThroughput OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanByteTransportEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.52.1.7 +lcsStatusWlanByteTransportEntryBytesMaxThroughput OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanByteTransportEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.53 +lcsStatusWlanPacketTransportTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanPacketTransportEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlan 53 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.53.1 +lcsStatusWlanPacketTransportEntry OBJECT-TYPE + SYNTAX LcsStatusWlanPacketTransportEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanPacketTransportEntryIfc + } + ::= { lcsStatusWlanPacketTransportTable 1 } + +LcsStatusWlanPacketTransportEntry ::= SEQUENCE { + lcsStatusWlanPacketTransportEntryIfc DisplayString, + lcsStatusWlanPacketTransportEntryRxPackets Counter32, + lcsStatusWlanPacketTransportEntryTxPackets Counter32, + lcsStatusWlanPacketTransportEntryRxBroadcasts Counter32, + lcsStatusWlanPacketTransportEntryRxMulticasts Counter32, + lcsStatusWlanPacketTransportEntryRxUnicasts Counter32, + lcsStatusWlanPacketTransportEntryTxBroadcasts Counter32, + lcsStatusWlanPacketTransportEntryTxMulticasts Counter32, + lcsStatusWlanPacketTransportEntryTxUnicasts Counter32, + lcsStatusWlanPacketTransportEntryTxAggregates Counter32, + lcsStatusWlanPacketTransportEntryTxAggrFrames Counter32, + lcsStatusWlanPacketTransportEntryRxAggregates Counter32, + lcsStatusWlanPacketTransportEntryRxAggrFrames Counter32, + lcsStatusWlanPacketTransportEntryRxAMsdu Counter32, + lcsStatusWlanPacketTransportEntryRxFft Counter32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.53.1.1 +lcsStatusWlanPacketTransportEntryIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPacketTransportEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.53.1.2 +lcsStatusWlanPacketTransportEntryRxPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPacketTransportEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.53.1.3 +lcsStatusWlanPacketTransportEntryTxPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPacketTransportEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.53.1.4 +lcsStatusWlanPacketTransportEntryRxBroadcasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPacketTransportEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.53.1.5 +lcsStatusWlanPacketTransportEntryRxMulticasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPacketTransportEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.53.1.6 +lcsStatusWlanPacketTransportEntryRxUnicasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPacketTransportEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.53.1.7 +lcsStatusWlanPacketTransportEntryTxBroadcasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPacketTransportEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.53.1.8 +lcsStatusWlanPacketTransportEntryTxMulticasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPacketTransportEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.53.1.9 +lcsStatusWlanPacketTransportEntryTxUnicasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPacketTransportEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.53.1.12 +lcsStatusWlanPacketTransportEntryTxAggregates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPacketTransportEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.53.1.13 +lcsStatusWlanPacketTransportEntryTxAggrFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPacketTransportEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.53.1.14 +lcsStatusWlanPacketTransportEntryRxAggregates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPacketTransportEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.53.1.15 +lcsStatusWlanPacketTransportEntryRxAggrFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPacketTransportEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.53.1.16 +lcsStatusWlanPacketTransportEntryRxAMsdu OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanPacketTransportEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.53.1.17 +lcsStatusWlanPacketTransportEntryRxFft OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanPacketTransportEntry 17 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.54 +lcsStatusWlanErrorsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlan 54 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.54.1 +lcsStatusWlanErrorsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanErrorsEntryIfc + } + ::= { lcsStatusWlanErrorsTable 1 } + +LcsStatusWlanErrorsEntry ::= SEQUENCE { + lcsStatusWlanErrorsEntryIfc DisplayString, + lcsStatusWlanErrorsEntryRxErrors Counter32, + lcsStatusWlanErrorsEntryTxErrors Counter32, + lcsStatusWlanErrorsEntryStackErrors Counter32, + lcsStatusWlanErrorsEntryNicErrors Counter32, + lcsStatusWlanErrorsEntryQueueErrors Counter32, + lcsStatusWlanErrorsEntryTxDiscarded Counter32, + lcsStatusWlanErrorsEntryRetries Counter32, + lcsStatusWlanErrorsEntryMultipleRetries Counter32, + lcsStatusWlanErrorsEntryUndecryptables Counter32, + lcsStatusWlanErrorsEntryDupeDiscarded Counter32, + lcsStatusWlanErrorsEntryAged Counter32, + lcsStatusWlanErrorsEntryMichaelErrors Counter32, + lcsStatusWlanErrorsEntryIvSequenceErrors Counter32, + lcsStatusWlanErrorsEntryRxCrcErrors Counter32, + lcsStatusWlanErrorsEntrySoftRetries Counter32, + lcsStatusWlanErrorsEntryRxAggrDiscarded Counter32, + lcsStatusWlanErrorsEntryRxPhyErrors Counter32, + lcsStatusWlanErrorsEntryRxFifoOverflow Counter32, + lcsStatusWlanErrorsEntryTxFifoUnderflow Counter32, + lcsStatusWlanErrorsEntryBusErrors Counter32, + lcsStatusWlanErrorsEntryRxRestarts Counter32, + lcsStatusWlanErrorsEntryRxDscrUnderflow Counter32, + lcsStatusWlanErrorsEntryAgcCalibrateFailures Counter32, + lcsStatusWlanErrorsEntryBbTimeouts Counter32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.1 +lcsStatusWlanErrorsEntryIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanErrorsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.2 +lcsStatusWlanErrorsEntryRxErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanErrorsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.3 +lcsStatusWlanErrorsEntryTxErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanErrorsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.4 +lcsStatusWlanErrorsEntryStackErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanErrorsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.5 +lcsStatusWlanErrorsEntryNicErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanErrorsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.6 +lcsStatusWlanErrorsEntryQueueErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanErrorsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.7 +lcsStatusWlanErrorsEntryTxDiscarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanErrorsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.8 +lcsStatusWlanErrorsEntryRetries OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanErrorsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.9 +lcsStatusWlanErrorsEntryMultipleRetries OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanErrorsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.10 +lcsStatusWlanErrorsEntryUndecryptables OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanErrorsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.11 +lcsStatusWlanErrorsEntryDupeDiscarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanErrorsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.13 +lcsStatusWlanErrorsEntryAged OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanErrorsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.14 +lcsStatusWlanErrorsEntryMichaelErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanErrorsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.15 +lcsStatusWlanErrorsEntryIvSequenceErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanErrorsEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.16 +lcsStatusWlanErrorsEntryRxCrcErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanErrorsEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.17 +lcsStatusWlanErrorsEntrySoftRetries OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanErrorsEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.18 +lcsStatusWlanErrorsEntryRxAggrDiscarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanErrorsEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.19 +lcsStatusWlanErrorsEntryRxPhyErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanErrorsEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.20 +lcsStatusWlanErrorsEntryRxFifoOverflow OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanErrorsEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.21 +lcsStatusWlanErrorsEntryTxFifoUnderflow OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanErrorsEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.22 +lcsStatusWlanErrorsEntryBusErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanErrorsEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.23 +lcsStatusWlanErrorsEntryRxRestarts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanErrorsEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.24 +lcsStatusWlanErrorsEntryRxDscrUnderflow OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanErrorsEntry 24 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.25 +lcsStatusWlanErrorsEntryAgcCalibrateFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanErrorsEntry 25 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.54.1.26 +lcsStatusWlanErrorsEntryBbTimeouts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanErrorsEntry 26 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.55 +lcsStatusWlanWlanParameterTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanWlanParameterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlan 55 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.55.1 +lcsStatusWlanWlanParameterEntry OBJECT-TYPE + SYNTAX LcsStatusWlanWlanParameterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanWlanParameterEntryIfc + } + ::= { lcsStatusWlanWlanParameterTable 1 } + +LcsStatusWlanWlanParameterEntry ::= SEQUENCE { + lcsStatusWlanWlanParameterEntryIfc DisplayString, + lcsStatusWlanWlanParameterEntryRadioChannel Integer32, + lcsStatusWlanWlanParameterEntryRegulatoryDomain INTEGER, + lcsStatusWlanWlanParameterEntryPhyType INTEGER, + lcsStatusWlanWlanParameterEntryWepSupport INTEGER, + lcsStatusWlanWlanParameterEntryMaximumRate INTEGER, + lcsStatusWlanWlanParameterEntryTemperatureRange INTEGER, + lcsStatusWlanWlanParameterEntryPhyVariant DisplayString, + lcsStatusWlanWlanParameterEntryRadioBand INTEGER, + lcsStatusWlanWlanParameterEntrySupportedBands INTEGER, + lcsStatusWlanWlanParameterEntryNoiseLevel Integer32, + lcsStatusWlanWlanParameterEntrySupportsShortPreamble INTEGER, + lcsStatusWlanWlanParameterEntryTransmitPower DisplayString, + lcsStatusWlanWlanParameterEntry108mbpsMode INTEGER, + lcsStatusWlanWlanParameterEntrySupportsShortSlotTime INTEGER, + lcsStatusWlanWlanParameterEntryTkipSupport INTEGER, + lcsStatusWlanWlanParameterEntryAesSupport INTEGER, + lcsStatusWlanWlanParameterEntrySupportsCompression INTEGER, + lcsStatusWlanWlanParameterEntryMinimumRate INTEGER, + lcsStatusWlanWlanParameterEntryEirp DisplayString, + lcsStatusWlanWlanParameterEntryExcEirp INTEGER, + lcsStatusWlanWlanParameterEntryModemLoad Integer32, + lcsStatusWlanWlanParameterEntryBeaconPeriod Integer32, + lcsStatusWlanWlanParameterEntrySupportsShortGuardInterval INTEGER, + lcsStatusWlanWlanParameterEntrySupports40mhz INTEGER, + lcsStatusWlanWlanParameterEntryTxChains Integer32, + lcsStatusWlanWlanParameterEntryRxChains Integer32, + lcsStatusWlanWlanParameterEntrySupportedDfsSchemes BITS, + lcsStatusWlanWlanParameterEntrySupportedAntennas INTEGER, + lcsStatusWlanWlanParameterEntryRxStbc INTEGER, + lcsStatusWlanWlanParameterEntryLdpc INTEGER, + lcsStatusWlanWlanParameterEntryCountry INTEGER, + lcsStatusWlanWlanParameterEntrySupportsSpectralScan INTEGER, + lcsStatusWlanWlanParameterEntrySGIMask BITS, + lcsStatusWlanWlanParameterEntryChannelBandwidths BITS, + lcsStatusWlanWlanParameterEntryChannelBandwidth INTEGER, + lcsStatusWlanWlanParameterEntryProtMgmtFrames INTEGER, + lcsStatusWlanWlanParameterEntryRxStbcHt INTEGER, + lcsStatusWlanWlanParameterEntryRxStbcVht INTEGER, + lcsStatusWlanWlanParameterEntryLDPCMask BITS + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.1 +lcsStatusWlanWlanParameterEntryIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.3 +lcsStatusWlanWlanParameterEntryRadioChannel OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.4 +lcsStatusWlanWlanParameterEntryRegulatoryDomain OBJECT-TYPE + SYNTAX INTEGER { + eUndefined (0), + eFcc (16), + eCanada (32), + eEuEtsi (48), + eSpain (49), + eFrance (50), + eMkkJapan (64), + eMkk2Japan (65), + eIsrael (80), + eWorld (96) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.5 +lcsStatusWlanWlanParameterEntryPhyType OBJECT-TYPE + SYNTAX INTEGER { + eProprietary (0), + eFhss (1), + eDsss (2), + eInfrared (3), + eOfdm (4), + eHrDsss (5), + eErp (6), + eHt (7), + eVht (9), + ePbcc (254) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.7 +lcsStatusWlanWlanParameterEntryWepSupport OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes40Bits (1), + eYes104Bits (2), + eYes128Bits (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.8 +lcsStatusWlanWlanParameterEntryMaximumRate OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e1M (1), + e2M (2), + e5M (3), + e5M5 (4), + e8M (5), + e11M (6), + e6M (12), + e9M (13), + e12M (14), + e18M (15), + e24M (16), + e36M (17), + e48M (18), + e54M (19), + eT12M (20), + eT18M (21), + eT24M (22), + eT36M (23), + eT48M (24), + eT72M (25), + eT96M (26), + eT108M (27), + eHT1S6M5 (28), + eHT1S13M (29), + eHT1S19M5 (30), + eHT1S26M (31), + eHT1S39M (32), + eHT1S52M (33), + eHT1S58M5 (34), + eHT1S65M (35), + eHT2S13M (36), + eHT2S26M (37), + eHT2S39M (38), + eHT2S52M (39), + eHT2S78M (40), + eHT2S104M (41), + eHT2S117M (42), + eHT2S130M (43), + eHT3S19M5 (44), + eHT3S39M (45), + eHT3S58M5 (46), + eHT3S78M (47), + eHT3S117M (48), + eHT3S156M (49), + eHT3S175M5 (50), + eHT3S195M (51), + eHT4S26M (52), + eHT4S52M (53), + eHT4S78M (54), + eHT4S104M (55), + eHT4S156M (56), + eHT4S208M (57), + eHT4S234M (58), + eHT4S260M (59), + eHTDUP6M (60), + eHtMcs33 (61), + eHtMcs34 (62), + eHtMcs35 (63), + eHtMcs36 (64), + eHtMcs37 (65), + eHtMcs38 (66), + eHtMcs39 (67), + eHtMcs40 (68), + eHtMcs41 (69), + eHtMcs42 (70), + eHtMcs43 (71), + eHtMcs44 (72), + eHtMcs45 (73), + eHtMcs46 (74), + eHtMcs47 (75), + eHtMcs48 (76), + eHtMcs49 (77), + eHtMcs50 (78), + eHtMcs51 (79), + eHtMcs52 (80), + eHtMcs53 (81), + eHtMcs54 (82), + eHtMcs55 (83), + eHtMcs56 (84), + eHtMcs57 (85), + eHtMcs58 (86), + eHtMcs59 (87), + eHtMcs60 (88), + eHtMcs61 (89), + eHtMcs62 (90), + eHtMcs63 (91), + eHtMcs64 (92), + eHtMcs65 (93), + eHtMcs66 (94), + eHtMcs67 (95), + eHtMcs68 (96), + eHtMcs69 (97), + eHtMcs70 (98), + eHtMcs71 (99), + eHtMcs72 (100), + eHtMcs73 (101), + eHtMcs74 (102), + eHtMcs75 (103), + eHtMcs76 (104), + eVHT1S6M5 (105), + eVHT1S13M (106), + eVHT1S19M5 (107), + eVHT1S26M (108), + eVHT1S39M (109), + eVHT1S52M (110), + eVHT1S58M5 (111), + eVHT1S65M (112), + eVHT1S78M (113), + eVHT1S86M7 (114), + eVHT2S13M (115), + eVHT2S26M (116), + eVHT2S39M (117), + eVHT2S52M (118), + eVHT2S78M (119), + eVHT2S104M (120), + eVHT2S117M (121), + eVHT2S130M (122), + eVHT2S156M (123), + eVHT2S173M3 (124), + eVHT3S19M5 (125), + eVHT3S39M (126), + eVHT3S58M5 (127), + eVHT3S78M (128), + eVHT3S117M (129), + eVHT3S156M (130), + eVHT3S175M5 (131), + eVHT3S195M (132), + eVHT3S234M (133), + eVHT3S260M (134), + eVHT4S26M (135), + eVHT4S52M (136), + eVHT4S78M (137), + eVHT4S104M (138), + eVHT4S156M (139), + eVHT4S208M (140), + eVHT4S234M (141), + eVHT4S260M (142), + eVHT4S312M (143), + eVHT4S346M7 (144) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.9 +lcsStatusWlanWlanParameterEntryTemperatureRange OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eCommercial0Plus40DegreeC (1), + eIndustrial30Plus70DegreeC (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.10 +lcsStatusWlanWlanParameterEntryPhyVariant OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.11 +lcsStatusWlanWlanParameterEntryRadioBand OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e24ghz (1), + e5ghz (2), + e24ghz5ghz (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.12 +lcsStatusWlanWlanParameterEntrySupportedBands OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e24ghz (1), + e5ghz (2), + e24ghz5ghz (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.13 +lcsStatusWlanWlanParameterEntryNoiseLevel OBJECT-TYPE + SYNTAX Integer32 (-32768..32767) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.14 +lcsStatusWlanWlanParameterEntrySupportsShortPreamble OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.15 +lcsStatusWlanWlanParameterEntryTransmitPower OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.16 +lcsStatusWlanWlanParameterEntry108mbpsMode OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.17 +lcsStatusWlanWlanParameterEntrySupportsShortSlotTime OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.18 +lcsStatusWlanWlanParameterEntryTkipSupport OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.19 +lcsStatusWlanWlanParameterEntryAesSupport OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eOcb (1), + eCcm (2), + eOcbPlusCcm (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.20 +lcsStatusWlanWlanParameterEntrySupportsCompression OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.21 +lcsStatusWlanWlanParameterEntryMinimumRate OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e1M (1), + e2M (2), + e5M (3), + e5M5 (4), + e8M (5), + e11M (6), + e6M (12), + e9M (13), + e12M (14), + e18M (15), + e24M (16), + e36M (17), + e48M (18), + e54M (19), + eT12M (20), + eT18M (21), + eT24M (22), + eT36M (23), + eT48M (24), + eT72M (25), + eT96M (26), + eT108M (27), + eHT1S6M5 (28), + eHT1S13M (29), + eHT1S19M5 (30), + eHT1S26M (31), + eHT1S39M (32), + eHT1S52M (33), + eHT1S58M5 (34), + eHT1S65M (35), + eHT2S13M (36), + eHT2S26M (37), + eHT2S39M (38), + eHT2S52M (39), + eHT2S78M (40), + eHT2S104M (41), + eHT2S117M (42), + eHT2S130M (43), + eHT3S19M5 (44), + eHT3S39M (45), + eHT3S58M5 (46), + eHT3S78M (47), + eHT3S117M (48), + eHT3S156M (49), + eHT3S175M5 (50), + eHT3S195M (51), + eHT4S26M (52), + eHT4S52M (53), + eHT4S78M (54), + eHT4S104M (55), + eHT4S156M (56), + eHT4S208M (57), + eHT4S234M (58), + eHT4S260M (59), + eHTDUP6M (60), + eHtMcs33 (61), + eHtMcs34 (62), + eHtMcs35 (63), + eHtMcs36 (64), + eHtMcs37 (65), + eHtMcs38 (66), + eHtMcs39 (67), + eHtMcs40 (68), + eHtMcs41 (69), + eHtMcs42 (70), + eHtMcs43 (71), + eHtMcs44 (72), + eHtMcs45 (73), + eHtMcs46 (74), + eHtMcs47 (75), + eHtMcs48 (76), + eHtMcs49 (77), + eHtMcs50 (78), + eHtMcs51 (79), + eHtMcs52 (80), + eHtMcs53 (81), + eHtMcs54 (82), + eHtMcs55 (83), + eHtMcs56 (84), + eHtMcs57 (85), + eHtMcs58 (86), + eHtMcs59 (87), + eHtMcs60 (88), + eHtMcs61 (89), + eHtMcs62 (90), + eHtMcs63 (91), + eHtMcs64 (92), + eHtMcs65 (93), + eHtMcs66 (94), + eHtMcs67 (95), + eHtMcs68 (96), + eHtMcs69 (97), + eHtMcs70 (98), + eHtMcs71 (99), + eHtMcs72 (100), + eHtMcs73 (101), + eHtMcs74 (102), + eHtMcs75 (103), + eHtMcs76 (104), + eVHT1S6M5 (105), + eVHT1S13M (106), + eVHT1S19M5 (107), + eVHT1S26M (108), + eVHT1S39M (109), + eVHT1S52M (110), + eVHT1S58M5 (111), + eVHT1S65M (112), + eVHT1S78M (113), + eVHT1S86M7 (114), + eVHT2S13M (115), + eVHT2S26M (116), + eVHT2S39M (117), + eVHT2S52M (118), + eVHT2S78M (119), + eVHT2S104M (120), + eVHT2S117M (121), + eVHT2S130M (122), + eVHT2S156M (123), + eVHT2S173M3 (124), + eVHT3S19M5 (125), + eVHT3S39M (126), + eVHT3S58M5 (127), + eVHT3S78M (128), + eVHT3S117M (129), + eVHT3S156M (130), + eVHT3S175M5 (131), + eVHT3S195M (132), + eVHT3S234M (133), + eVHT3S260M (134), + eVHT4S26M (135), + eVHT4S52M (136), + eVHT4S78M (137), + eVHT4S104M (138), + eVHT4S156M (139), + eVHT4S208M (140), + eVHT4S234M (141), + eVHT4S260M (142), + eVHT4S312M (143), + eVHT4S346M7 (144) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.22 +lcsStatusWlanWlanParameterEntryEirp OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.23 +lcsStatusWlanWlanParameterEntryExcEirp OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.24 +lcsStatusWlanWlanParameterEntryModemLoad OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 24 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.25 +lcsStatusWlanWlanParameterEntryBeaconPeriod OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 25 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.26 +lcsStatusWlanWlanParameterEntrySupportsShortGuardInterval OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + e20mhz (1), + e40mhz (2), + e2040mhz (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 26 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.28 +lcsStatusWlanWlanParameterEntrySupports40mhz OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 28 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.29 +lcsStatusWlanWlanParameterEntryTxChains OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 29 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.30 +lcsStatusWlanWlanParameterEntryRxChains OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 30 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.32 +lcsStatusWlanWlanParameterEntrySupportedDfsSchemes OBJECT-TYPE + SYNTAX BITS { + eNone (0), + eEn301893V16 (1), + eEn301893V15 (2), + eJapan (3), + eFcc (4), + eEn302502 (5), + eEn301893V13 (6), + eEn301893V12 (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 32 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.33 +lcsStatusWlanWlanParameterEntrySupportedAntennas OBJECT-TYPE + SYNTAX INTEGER { + eNA (0), + eAntenna1 (1), + eAntenna1Plus2 (3), + eAntenna1Plus3 (5), + eAntenna1Plus2Plus3 (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanWlanParameterEntry 33 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.34 +lcsStatusWlanWlanParameterEntryRxStbc OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eOne (1), + eTwo (2), + eThree (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanWlanParameterEntry 34 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.35 +lcsStatusWlanWlanParameterEntryLdpc OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanWlanParameterEntry 35 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.36 +lcsStatusWlanWlanParameterEntryCountry OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eAlbania (8), + eAlgeria (12), + eArgentina (32), + eAustralia (36), + eAustria (40), + eBahrain (48), + eBangladesh (50), + eBelgium (56), + eBosniaHerzegovina (70), + eBrazil (76), + eBruneiDarussalam (96), + eBulgaria (100), + eBelarus (112), + eCanada (124), + eChile (152), + eChina (156), + eTaiwan (158), + eColombia (170), + eCostaRica (188), + eCroatia (191), + eCyprus (196), + eCzech (203), + eDenmark (208), + eEcuador (218), + eEstonia (233), + eFinland (246), + eFrance (250), + eGermany (276), + eGhana (288), + eGreece (300), + eGuatemala (320), + eHonduras (340), + eHongKong (344), + eHungary (348), + eIceland (352), + eIndia (356), + eIndonesia (360), + eIreland (372), + eIsrael (376), + eItaly (380), + eJapan (392), + eJordan (400), + eSouthKorea (410), + eKuwait (414), + eLebanon (422), + eLatvia (428), + eLiechtenstein (438), + eLithuania (440), + eLuxembourg (442), + eMacau (446), + eMalaysia (458), + eMalta (470), + eMexico (484), + eMoldavia (498), + eMorocco (504), + eOman (512), + eNetherlands (528), + eNewZealand (554), + eNicaragua (558), + eNorway (578), + ePakistan (586), + ePanama (591), + eParaguay (600), + ePeru (604), + ePhilippines (608), + ePoland (616), + ePortugal (620), + ePuertoRico (630), + eQatar (634), + eRomania (642), + eRussia (643), + eSaudiArabia (682), + eSingapore (702), + eSlovak (703), + eSlovenia (705), + eSouthAfrica (710), + eSpain (724), + eSweden (752), + eSwitzerland (756), + eThailand (764), + eUnitedArabEmirates (784), + eTunisia (788), + eTurkey (792), + eUganda (800), + eUkraine (804), + eMacedonia (807), + eEgypt (818), + eUnitedKingdom (826), + eTanzania (834), + eUnitedStatesFcc (840), + eUruguay (858), + eVenezuela (862), + eEurope (998), + eEgalistan (999) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanWlanParameterEntry 36 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.37 +lcsStatusWlanWlanParameterEntrySupportsSpectralScan OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanWlanParameterEntry 37 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.38 +lcsStatusWlanWlanParameterEntrySGIMask OBJECT-TYPE + SYNTAX BITS { + eNo (0), + e160mhz (28), + e80mhz (29), + e40mhz (30), + e20mhz (31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bit mask of short guard interval support per-CBW" + ::= { lcsStatusWlanWlanParameterEntry 38 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.39 +lcsStatusWlanWlanParameterEntryChannelBandwidths OBJECT-TYPE + SYNTAX BITS { + eT40mhz (26), + e80Plus80mhz (27), + e160mhz (28), + e80mhz (29), + e40mhz (30), + e20mhz (31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanWlanParameterEntry 39 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.40 +lcsStatusWlanWlanParameterEntryChannelBandwidth OBJECT-TYPE + SYNTAX INTEGER { + e20mhz (0), + e40mhz (1), + e80mhz (2), + e160mhz (3), + e80Plus80mhz (4), + eT40mhz (5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanWlanParameterEntry 40 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.41 +lcsStatusWlanWlanParameterEntryProtMgmtFrames OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanWlanParameterEntry 41 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.42 +lcsStatusWlanWlanParameterEntryRxStbcHt OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eOne (1), + eTwo (2), + eThree (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanWlanParameterEntry 42 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.43 +lcsStatusWlanWlanParameterEntryRxStbcVht OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eOne (1), + eTwo (2), + eThree (3), + eFour (4), + eFive (5), + eSix (6), + eSeven (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanWlanParameterEntry 43 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.55.1.44 +lcsStatusWlanWlanParameterEntryLDPCMask OBJECT-TYPE + SYNTAX BITS { + eVht (30), + eHt (31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bit mask of LDPC support per-PHY-Type" + ::= { lcsStatusWlanWlanParameterEntry 44 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.56 +lcsStatusWlanNetworksTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlan 56 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.56.1 +lcsStatusWlanNetworksEntry OBJECT-TYPE + SYNTAX LcsStatusWlanNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanNetworksEntryIfc + } + ::= { lcsStatusWlanNetworksTable 1 } + +LcsStatusWlanNetworksEntry ::= SEQUENCE { + lcsStatusWlanNetworksEntryIfc DisplayString, + lcsStatusWlanNetworksEntryOperating INTEGER, + lcsStatusWlanNetworksEntryNetworkName DisplayString, + lcsStatusWlanNetworksEntryNumStations Integer32, + lcsStatusWlanNetworksEntryMcastPwrSave INTEGER, + lcsStatusWlanNetworksEntryBssid MacAddress, + lcsStatusWlanNetworksEntryVlanId Integer32, + lcsStatusWlanNetworksEntryApsd INTEGER, + lcsStatusWlanNetworksEntryRadioMode INTEGER, + lcsStatusWlanNetworksEntryAlarmState INTEGER, + lcsStatusWlanNetworksEntryBasicRate INTEGER, + lcsStatusWlanNetworksEntryMacFilter INTEGER, + lcsStatusWlanNetworksEntryAccessMode INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.56.1.1 +lcsStatusWlanNetworksEntryIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanNetworksEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.56.1.2 +lcsStatusWlanNetworksEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanNetworksEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.56.1.3 +lcsStatusWlanNetworksEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanNetworksEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.56.1.4 +lcsStatusWlanNetworksEntryNumStations OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanNetworksEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.56.1.5 +lcsStatusWlanNetworksEntryMcastPwrSave OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanNetworksEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.56.1.6 +lcsStatusWlanNetworksEntryBssid OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanNetworksEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.56.1.7 +lcsStatusWlanNetworksEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanNetworksEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.56.1.8 +lcsStatusWlanNetworksEntryApsd OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanNetworksEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.56.1.9 +lcsStatusWlanNetworksEntryRadioMode OBJECT-TYPE + SYNTAX INTEGER { + e11bgMixed (0), + e11gOnly (1), + e11bOnly (2), + e2mMixed (3), + eTurboG (4), + e11bgnMixed (5), + e2m11bgnMixed (6), + e11gnMixed (7), + eGreenfieldGn (8), + e11a (256), + eTurboA (257), + e11anMixed (259), + eGreenfieldAn (260), + eHalf11a (261), + eQuarter11a (262), + e11anacMixed (263), + e11nacMixed (264), + e11acOnly (265), + eNone (65535) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanNetworksEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.56.1.10 +lcsStatusWlanNetworksEntryAlarmState OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + ePhySignal (1), + eTotalRetries (2), + eTxErrors (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanNetworksEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.56.1.11 +lcsStatusWlanNetworksEntryBasicRate OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e1M (1), + e2M (2), + e5M (3), + e5M5 (4), + e8M (5), + e11M (6), + e6M (8), + e9M (9), + e12M (10), + e18M (11), + e24M (12), + e36M (13), + e48M (14), + e54M (15), + eHT1S6M5 (28), + eHT1S13M (29), + eHT1S19M5 (30), + eHT1S26M (31), + eHT1S39M (32), + eHT1S52M (33), + eHT1S58M5 (34), + eHT1S65M (35), + eHT2S13M (36), + eHT2S26M (37), + eHT2S39M (38), + eHT2S52M (39), + eHT2S78M (40), + eHT2S104M (41), + eHT2S117M (42), + eHT2S130M (43), + eHT3S19M5 (44), + eHT3S39M (45), + eHT3S58M5 (46), + eHT3S78M (47), + eHT3S117M (48), + eHT3S156M (49), + eHT3S175M5 (50), + eHT3S195M (51) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanNetworksEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.56.1.12 +lcsStatusWlanNetworksEntryMacFilter OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1), + eLocalOnly (2), + eRadiusOnly (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanNetworksEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.56.1.13 +lcsStatusWlanNetworksEntryAccessMode OBJECT-TYPE + SYNTAX INTEGER { + eNegative (0), + ePositive (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanNetworksEntry 13 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.57 +lcsStatusWlanRadiosTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanRadiosEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlan 57 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.57.1 +lcsStatusWlanRadiosEntry OBJECT-TYPE + SYNTAX LcsStatusWlanRadiosEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanRadiosEntryIfc + } + ::= { lcsStatusWlanRadiosTable 1 } + +LcsStatusWlanRadiosEntry ::= SEQUENCE { + lcsStatusWlanRadiosEntryIfc DisplayString, + lcsStatusWlanRadiosEntryRadioBand INTEGER, + lcsStatusWlanRadiosEntryRadioChannel Integer32, + lcsStatusWlanRadiosEntryNoiseLevel Integer32, + lcsStatusWlanRadiosEntryModemLoad Integer32, + lcsStatusWlanRadiosEntryTransmitPower DisplayString, + lcsStatusWlanRadiosEntryEirp DisplayString, + lcsStatusWlanRadiosEntryExcEirp INTEGER, + lcsStatusWlanRadiosEntryBackgroundScan Integer32, + lcsStatusWlanRadiosEntryExtChannel INTEGER, + lcsStatusWlanRadiosEntryBackgroundScanUnit INTEGER, + lcsStatusWlanRadiosEntryDfsScheme INTEGER, + lcsStatusWlanRadiosEntryRadioMode INTEGER, + lcsStatusWlanRadiosEntry40mhzPermitted INTEGER, + lcsStatusWlanRadiosEntryRadarLoadThreshold Integer32, + lcsStatusWlanRadiosEntryShortSlotTime INTEGER, + lcsStatusWlanRadiosEntryAggregateTimeLimitUs Integer32, + lcsStatusWlanRadiosEntryChannelBandwidth INTEGER, + lcsStatusWlanRadiosEntryAllowPhyRestarts INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.57.1.1 +lcsStatusWlanRadiosEntryIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanRadiosEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.57.1.2 +lcsStatusWlanRadiosEntryRadioBand OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e24ghz (1), + e5ghz (2), + e24ghz5ghz (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanRadiosEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.57.1.3 +lcsStatusWlanRadiosEntryRadioChannel OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanRadiosEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.57.1.5 +lcsStatusWlanRadiosEntryNoiseLevel OBJECT-TYPE + SYNTAX Integer32 (-32768..32767) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanRadiosEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.57.1.6 +lcsStatusWlanRadiosEntryModemLoad OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanRadiosEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.57.1.7 +lcsStatusWlanRadiosEntryTransmitPower OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanRadiosEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.57.1.8 +lcsStatusWlanRadiosEntryEirp OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanRadiosEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.57.1.9 +lcsStatusWlanRadiosEntryExcEirp OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanRadiosEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.57.1.10 +lcsStatusWlanRadiosEntryBackgroundScan OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanRadiosEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.57.1.11 +lcsStatusWlanRadiosEntryExtChannel OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eAbove (1), + eBelow (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanRadiosEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.57.1.12 +lcsStatusWlanRadiosEntryBackgroundScanUnit OBJECT-TYPE + SYNTAX INTEGER { + eSeconds (0), + eMilliseconds (1), + eMicroseconds (2), + eMinutes (3), + eHours (4), + eDays (5), + eWeeks (6), + eFortnights (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanRadiosEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.57.1.13 +lcsStatusWlanRadiosEntryDfsScheme OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eEn301893V12 (1), + eEn301893V13 (2), + eEn302502 (4), + eFcc (8), + eJapan (16), + eEn301893V15 (32), + eEn301893V16 (64) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanRadiosEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.57.1.14 +lcsStatusWlanRadiosEntryRadioMode OBJECT-TYPE + SYNTAX INTEGER { + e11bgMixed (0), + e11gOnly (1), + e11bOnly (2), + e2mMixed (3), + eTurboG (4), + e11bgnMixed (5), + e2m11bgnMixed (6), + e11gnMixed (7), + eGreenfieldGn (8), + e11a (256), + eTurboA (257), + e11anMixed (259), + eGreenfieldAn (260), + eHalf11a (261), + eQuarter11a (262), + e11anacMixed (263), + e11nacMixed (264), + e11acOnly (265), + eNone (65535) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanRadiosEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.57.1.15 +lcsStatusWlanRadiosEntry40mhzPermitted OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanRadiosEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.57.1.16 +lcsStatusWlanRadiosEntryRadarLoadThreshold OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanRadiosEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.57.1.17 +lcsStatusWlanRadiosEntryShortSlotTime OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanRadiosEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.57.1.18 +lcsStatusWlanRadiosEntryAggregateTimeLimitUs OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanRadiosEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.57.1.19 +lcsStatusWlanRadiosEntryChannelBandwidth OBJECT-TYPE + SYNTAX INTEGER { + e20mhz (0), + e40mhz (1), + e80mhz (2), + e160mhz (3), + e80Plus80mhz (4), + eT40mhz (5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanRadiosEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.57.1.25 +lcsStatusWlanRadiosEntryAllowPhyRestarts OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanRadiosEntry 25 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.58 +lcsStatusWlanQosParametersTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanQosParametersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlan 58 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.58.1 +lcsStatusWlanQosParametersEntry OBJECT-TYPE + SYNTAX LcsStatusWlanQosParametersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanQosParametersEntryIfc, + lcsStatusWlanQosParametersEntryAccessCategory + } + ::= { lcsStatusWlanQosParametersTable 1 } + +LcsStatusWlanQosParametersEntry ::= SEQUENCE { + lcsStatusWlanQosParametersEntryIfc DisplayString, + lcsStatusWlanQosParametersEntryAccessCategory INTEGER, + lcsStatusWlanQosParametersEntryTxop Integer32, + lcsStatusWlanQosParametersEntryCwmin Integer32, + lcsStatusWlanQosParametersEntryCwmax Integer32, + lcsStatusWlanQosParametersEntryAifs Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.58.1.1 +lcsStatusWlanQosParametersEntryIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanQosParametersEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.58.1.2 +lcsStatusWlanQosParametersEntryAccessCategory OBJECT-TYPE + SYNTAX INTEGER { + eBestEffort (0), + eBackground (1), + eVideo (2), + eVoice (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanQosParametersEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.58.1.3 +lcsStatusWlanQosParametersEntryTxop OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanQosParametersEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.58.1.4 +lcsStatusWlanQosParametersEntryCwmin OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanQosParametersEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.58.1.5 +lcsStatusWlanQosParametersEntryCwmax OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanQosParametersEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.58.1.6 +lcsStatusWlanQosParametersEntryAifs OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanQosParametersEntry 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.59 +lcsStatusWlanQosPacketStatisticsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanQosPacketStatisticsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlan 59 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.59.1 +lcsStatusWlanQosPacketStatisticsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanQosPacketStatisticsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanQosPacketStatisticsEntryIfc, + lcsStatusWlanQosPacketStatisticsEntryAccessCategory + } + ::= { lcsStatusWlanQosPacketStatisticsTable 1 } + +LcsStatusWlanQosPacketStatisticsEntry ::= SEQUENCE { + lcsStatusWlanQosPacketStatisticsEntryIfc DisplayString, + lcsStatusWlanQosPacketStatisticsEntryAccessCategory INTEGER, + lcsStatusWlanQosPacketStatisticsEntryTxPackets Integer32, + lcsStatusWlanQosPacketStatisticsEntryTxDiscarded Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.59.1.1 +lcsStatusWlanQosPacketStatisticsEntryIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanQosPacketStatisticsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.59.1.2 +lcsStatusWlanQosPacketStatisticsEntryAccessCategory OBJECT-TYPE + SYNTAX INTEGER { + eBestEffort (0), + eBackground (1), + eVideo (2), + eVoice (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanQosPacketStatisticsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.59.1.3 +lcsStatusWlanQosPacketStatisticsEntryTxPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanQosPacketStatisticsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.59.1.4 +lcsStatusWlanQosPacketStatisticsEntryTxDiscarded OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanQosPacketStatisticsEntry 4 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.3.60 +lcsStatusWlanPmkCaching OBJECT IDENTIFIER ::= { lcsStatusWlan 60 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.60.1 +lcsStatusWlanPmkCachingContentsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanPmkCachingContentsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanPmkCaching 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.60.1.1 +lcsStatusWlanPmkCachingContentsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanPmkCachingContentsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanPmkCachingContentsEntryAuthenticator, + lcsStatusWlanPmkCachingContentsEntrySupplicant + } + ::= { lcsStatusWlanPmkCachingContentsTable 1 } + +LcsStatusWlanPmkCachingContentsEntry ::= SEQUENCE { + lcsStatusWlanPmkCachingContentsEntryAuthenticator MacAddress, + lcsStatusWlanPmkCachingContentsEntrySupplicant MacAddress, + lcsStatusWlanPmkCachingContentsEntryUserName DisplayString, + lcsStatusWlanPmkCachingContentsEntryVlanId Integer32, + lcsStatusWlanPmkCachingContentsEntryLifetime Integer32, + lcsStatusWlanPmkCachingContentsEntryExpired INTEGER, + lcsStatusWlanPmkCachingContentsEntrySource INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.60.1.1.1 +lcsStatusWlanPmkCachingContentsEntryAuthenticator OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanPmkCachingContentsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.60.1.1.2 +lcsStatusWlanPmkCachingContentsEntrySupplicant OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanPmkCachingContentsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.60.1.1.3 +lcsStatusWlanPmkCachingContentsEntryUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanPmkCachingContentsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.60.1.1.4 +lcsStatusWlanPmkCachingContentsEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanPmkCachingContentsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.60.1.1.5 +lcsStatusWlanPmkCachingContentsEntryLifetime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanPmkCachingContentsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.60.1.1.6 +lcsStatusWlanPmkCachingContentsEntryExpired OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanPmkCachingContentsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.60.1.1.7 +lcsStatusWlanPmkCachingContentsEntrySource OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eAuthentication (1), + ePreAuthentication (2), + eController (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanPmkCachingContentsEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.60.2 +lcsStatusWlanPmkCachingContentsNewTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanPmkCachingContentsNewEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanPmkCaching 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.60.2.1 +lcsStatusWlanPmkCachingContentsNewEntry OBJECT-TYPE + SYNTAX LcsStatusWlanPmkCachingContentsNewEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanPmkCachingContentsNewEntryAuthenticator, + lcsStatusWlanPmkCachingContentsNewEntrySupplicant, + lcsStatusWlanPmkCachingContentsNewEntrySource + } + ::= { lcsStatusWlanPmkCachingContentsNewTable 1 } + +LcsStatusWlanPmkCachingContentsNewEntry ::= SEQUENCE { + lcsStatusWlanPmkCachingContentsNewEntryAuthenticator MacAddress, + lcsStatusWlanPmkCachingContentsNewEntrySupplicant MacAddress, + lcsStatusWlanPmkCachingContentsNewEntryUserName DisplayString, + lcsStatusWlanPmkCachingContentsNewEntryVlanId Integer32, + lcsStatusWlanPmkCachingContentsNewEntryLifetime Integer32, + lcsStatusWlanPmkCachingContentsNewEntryExpired INTEGER, + lcsStatusWlanPmkCachingContentsNewEntrySource INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.60.2.1.1 +lcsStatusWlanPmkCachingContentsNewEntryAuthenticator OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanPmkCachingContentsNewEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.60.2.1.2 +lcsStatusWlanPmkCachingContentsNewEntrySupplicant OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanPmkCachingContentsNewEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.60.2.1.3 +lcsStatusWlanPmkCachingContentsNewEntryUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanPmkCachingContentsNewEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.60.2.1.4 +lcsStatusWlanPmkCachingContentsNewEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanPmkCachingContentsNewEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.60.2.1.5 +lcsStatusWlanPmkCachingContentsNewEntryLifetime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanPmkCachingContentsNewEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.60.2.1.6 +lcsStatusWlanPmkCachingContentsNewEntryExpired OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanPmkCachingContentsNewEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.60.2.1.7 +lcsStatusWlanPmkCachingContentsNewEntrySource OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eAuthentication (1), + ePreAuthentication (2), + eController (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanPmkCachingContentsNewEntry 7 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.3.61 +lcsStatusWlanSpectralScan OBJECT IDENTIFIER ::= { lcsStatusWlan 61 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.61.1 +lcsStatusWlanSpectralScanLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanSpectralScanLogEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanSpectralScan 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.61.1.1 +lcsStatusWlanSpectralScanLogEntry OBJECT-TYPE + SYNTAX LcsStatusWlanSpectralScanLogEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanSpectralScanLogEntryIndex + } + ::= { lcsStatusWlanSpectralScanLogTable 1 } + +LcsStatusWlanSpectralScanLogEntry ::= SEQUENCE { + lcsStatusWlanSpectralScanLogEntryIndex Integer32, + lcsStatusWlanSpectralScanLogEntryInterface INTEGER, + lcsStatusWlanSpectralScanLogEntryTime DisplayString, + lcsStatusWlanSpectralScanLogEntryChannel Integer32, + lcsStatusWlanSpectralScanLogEntryFrequency Integer32, + lcsStatusWlanSpectralScanLogEntryRssi Integer32, + lcsStatusWlanSpectralScanLogEntryInterferenceType BITS + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.61.1.1.1 +lcsStatusWlanSpectralScanLogEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanSpectralScanLogEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.61.1.1.2 +lcsStatusWlanSpectralScanLogEntryInterface OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanSpectralScanLogEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.61.1.1.3 +lcsStatusWlanSpectralScanLogEntryTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanSpectralScanLogEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.61.1.1.4 +lcsStatusWlanSpectralScanLogEntryChannel OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanSpectralScanLogEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.61.1.1.5 +lcsStatusWlanSpectralScanLogEntryFrequency OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanSpectralScanLogEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.61.1.1.6 +lcsStatusWlanSpectralScanLogEntryRssi OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanSpectralScanLogEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.61.1.1.7 +lcsStatusWlanSpectralScanLogEntryInterferenceType OBJECT-TYPE + SYNTAX BITS { + eWifi (2), + eContinuousWave (3), + eDect (4), + eFhss (5), + eMicrowave (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanSpectralScanLogEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.61.2 +lcsStatusWlanSpectralScanAllChannelsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanSpectralScanAllChannelsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanSpectralScan 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.61.2.1 +lcsStatusWlanSpectralScanAllChannelsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanSpectralScanAllChannelsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanSpectralScanAllChannelsEntryIndex + } + ::= { lcsStatusWlanSpectralScanAllChannelsTable 1 } + +LcsStatusWlanSpectralScanAllChannelsEntry ::= SEQUENCE { + lcsStatusWlanSpectralScanAllChannelsEntryIndex Integer32, + lcsStatusWlanSpectralScanAllChannelsEntryInterface INTEGER, + lcsStatusWlanSpectralScanAllChannelsEntryChannel Integer32, + lcsStatusWlanSpectralScanAllChannelsEntryMicrowave BITS, + lcsStatusWlanSpectralScanAllChannelsEntryLastSeenMicrowave DisplayString, + lcsStatusWlanSpectralScanAllChannelsEntryFhss BITS, + lcsStatusWlanSpectralScanAllChannelsEntryLastSeenFhss DisplayString, + lcsStatusWlanSpectralScanAllChannelsEntryWifi BITS, + lcsStatusWlanSpectralScanAllChannelsEntryLastSeenWifi DisplayString, + lcsStatusWlanSpectralScanAllChannelsEntryContinuousWave BITS, + lcsStatusWlanSpectralScanAllChannelsEntryLastSeenContinuousWave DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.61.2.1.1 +lcsStatusWlanSpectralScanAllChannelsEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanSpectralScanAllChannelsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.61.2.1.2 +lcsStatusWlanSpectralScanAllChannelsEntryInterface OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanSpectralScanAllChannelsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.61.2.1.3 +lcsStatusWlanSpectralScanAllChannelsEntryChannel OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanSpectralScanAllChannelsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.61.2.1.4 +lcsStatusWlanSpectralScanAllChannelsEntryMicrowave OBJECT-TYPE + SYNTAX BITS { + eNo (5), + eYes (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanSpectralScanAllChannelsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.61.2.1.5 +lcsStatusWlanSpectralScanAllChannelsEntryLastSeenMicrowave OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanSpectralScanAllChannelsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.61.2.1.6 +lcsStatusWlanSpectralScanAllChannelsEntryFhss OBJECT-TYPE + SYNTAX BITS { + eNo (5), + eYes (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanSpectralScanAllChannelsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.61.2.1.7 +lcsStatusWlanSpectralScanAllChannelsEntryLastSeenFhss OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanSpectralScanAllChannelsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.61.2.1.8 +lcsStatusWlanSpectralScanAllChannelsEntryWifi OBJECT-TYPE + SYNTAX BITS { + eNo (5), + eYes (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanSpectralScanAllChannelsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.61.2.1.9 +lcsStatusWlanSpectralScanAllChannelsEntryLastSeenWifi OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanSpectralScanAllChannelsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.61.2.1.10 +lcsStatusWlanSpectralScanAllChannelsEntryContinuousWave OBJECT-TYPE + SYNTAX BITS { + eNo (5), + eYes (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanSpectralScanAllChannelsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.61.2.1.11 +lcsStatusWlanSpectralScanAllChannelsEntryLastSeenContinuousWave OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanSpectralScanAllChannelsEntry 11 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.3.62 +lcsStatusWlanArpHandling OBJECT IDENTIFIER ::= { lcsStatusWlan 62 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.62.1 +lcsStatusWlanArpHandlingArpTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanArpHandlingArpTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanArpHandling 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.62.1.1 +lcsStatusWlanArpHandlingArpTableEntry OBJECT-TYPE + SYNTAX LcsStatusWlanArpHandlingArpTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanArpHandlingArpTableEntryAddress, + lcsStatusWlanArpHandlingArpTableEntryMacAddress + } + ::= { lcsStatusWlanArpHandlingArpTableTable 1 } + +LcsStatusWlanArpHandlingArpTableEntry ::= SEQUENCE { + lcsStatusWlanArpHandlingArpTableEntryAddress IpAddress, + lcsStatusWlanArpHandlingArpTableEntryMacAddress MacAddress, + lcsStatusWlanArpHandlingArpTableEntryInterface INTEGER, + lcsStatusWlanArpHandlingArpTableEntryVlanId Integer32, + lcsStatusWlanArpHandlingArpTableEntryAge Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.62.1.1.1 +lcsStatusWlanArpHandlingArpTableEntryAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanArpHandlingArpTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.62.1.1.2 +lcsStatusWlanArpHandlingArpTableEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanArpHandlingArpTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.62.1.1.3 +lcsStatusWlanArpHandlingArpTableEntryInterface OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2), + eWlan12 (16), + eWlan13 (17), + eWlan14 (18), + eWlan15 (19), + eWlan16 (20), + eWlan17 (21), + eWlan18 (22), + eWlan22 (32), + eWlan23 (33), + eWlan24 (34), + eWlan25 (35), + eWlan26 (36), + eWlan27 (37), + eWlan28 (38) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanArpHandlingArpTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.62.1.1.4 +lcsStatusWlanArpHandlingArpTableEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanArpHandlingArpTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.62.1.1.5 +lcsStatusWlanArpHandlingArpTableEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanArpHandlingArpTableEntry 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.62.2 +lcsStatusWlanArpHandlingNdTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanArpHandlingNdTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanArpHandling 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.62.2.1 +lcsStatusWlanArpHandlingNdTableEntry OBJECT-TYPE + SYNTAX LcsStatusWlanArpHandlingNdTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanArpHandlingNdTableEntryAddress, + lcsStatusWlanArpHandlingNdTableEntryMacAddress + } + ::= { lcsStatusWlanArpHandlingNdTableTable 1 } + +LcsStatusWlanArpHandlingNdTableEntry ::= SEQUENCE { + lcsStatusWlanArpHandlingNdTableEntryAddress IpAddress, + lcsStatusWlanArpHandlingNdTableEntryMacAddress MacAddress, + lcsStatusWlanArpHandlingNdTableEntryInterface INTEGER, + lcsStatusWlanArpHandlingNdTableEntryVlanId Integer32, + lcsStatusWlanArpHandlingNdTableEntryAge Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.62.2.1.1 +lcsStatusWlanArpHandlingNdTableEntryAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanArpHandlingNdTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.62.2.1.2 +lcsStatusWlanArpHandlingNdTableEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanArpHandlingNdTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.62.2.1.3 +lcsStatusWlanArpHandlingNdTableEntryInterface OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2), + eWlan12 (16), + eWlan13 (17), + eWlan14 (18), + eWlan15 (19), + eWlan16 (20), + eWlan17 (21), + eWlan18 (22), + eWlan22 (32), + eWlan23 (33), + eWlan24 (34), + eWlan25 (35), + eWlan26 (36), + eWlan27 (37), + eWlan28 (38) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanArpHandlingNdTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.62.2.1.4 +lcsStatusWlanArpHandlingNdTableEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanArpHandlingNdTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.62.2.1.5 +lcsStatusWlanArpHandlingNdTableEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanArpHandlingNdTableEntry 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.3.62.11 +lcsStatusWlanArpHandlingArpRequestsAnswered OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanArpHandling 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.3.62.12 +lcsStatusWlanArpHandlingArpRequestsNotAnswered OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanArpHandling 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.3.62.13 +lcsStatusWlanArpHandlingArpRequestsDiscarded OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanArpHandling 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.3.62.14 +lcsStatusWlanArpHandlingNdSolicitationsAnswered OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanArpHandling 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.3.62.15 +lcsStatusWlanArpHandlingNdSolicitationsNotAnswered OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanArpHandling 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.3.62.16 +lcsStatusWlanArpHandlingNdSolicitationsDiscarded OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanArpHandling 16 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.3.62.99 +lcsStatusWlanArpHandlingDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanArpHandling 99 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.3.63 +lcsStatusWlanNoiseImmunity OBJECT IDENTIFIER ::= { lcsStatusWlan 63 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.63.1 +lcsStatusWlanNoiseImmunityCurrentParametersTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanNoiseImmunityCurrentParametersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanNoiseImmunity 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.63.1.1 +lcsStatusWlanNoiseImmunityCurrentParametersEntry OBJECT-TYPE + SYNTAX LcsStatusWlanNoiseImmunityCurrentParametersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanNoiseImmunityCurrentParametersEntryRadioBand, + lcsStatusWlanNoiseImmunityCurrentParametersEntryRadioChannel, + lcsStatusWlanNoiseImmunityCurrentParametersEntryInterface + } + ::= { lcsStatusWlanNoiseImmunityCurrentParametersTable 1 } + +LcsStatusWlanNoiseImmunityCurrentParametersEntry ::= SEQUENCE { + lcsStatusWlanNoiseImmunityCurrentParametersEntryRadioChannel Integer32, + lcsStatusWlanNoiseImmunityCurrentParametersEntryInterface INTEGER, + lcsStatusWlanNoiseImmunityCurrentParametersEntryRadioBand INTEGER, + lcsStatusWlanNoiseImmunityCurrParamEntryNoiseImmunityLevel Integer32, + lcsStatusWlanNoiseImmunityCurrParamEntrySpuriousImmunityLevel Integer32, + lcsStatusWlanNoiseImmunityCurrentParametersEntryFirStepLevel Integer32, + lcsStatusWlanNoiseImmunityCurrParamEntryOfdmWeakSignalDetect INTEGER, + lcsStatusWlanNoiseImmunityCurrParamEntryCckWeakSignalDetectThres Integer32, + lcsStatusWlanNoiseImmunityCurrentParametersEntryMrcCck INTEGER, + lcsStatusWlanNoiseImmunityCurrentParametersEntryAge Integer32, + lcsStatusWlanNoiseImmunityCurrentParametersEntryChannelBandwidth INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.63.1.1.1 +lcsStatusWlanNoiseImmunityCurrentParametersEntryRadioChannel OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanNoiseImmunityCurrentParametersEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.63.1.1.2 +lcsStatusWlanNoiseImmunityCurrentParametersEntryInterface OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (0), + eWlan2 (1), + eWlan3 (2), + eWlan4 (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanNoiseImmunityCurrentParametersEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.63.1.1.9 +lcsStatusWlanNoiseImmunityCurrentParametersEntryRadioBand OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e24ghz (1), + e5ghz (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanNoiseImmunityCurrentParametersEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.63.1.1.11 +lcsStatusWlanNoiseImmunityCurrParamEntryNoiseImmunityLevel OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanNoiseImmunityCurrentParametersEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.63.1.1.12 +lcsStatusWlanNoiseImmunityCurrParamEntrySpuriousImmunityLevel OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanNoiseImmunityCurrentParametersEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.63.1.1.13 +lcsStatusWlanNoiseImmunityCurrentParametersEntryFirStepLevel OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanNoiseImmunityCurrentParametersEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.63.1.1.14 +lcsStatusWlanNoiseImmunityCurrParamEntryOfdmWeakSignalDetect OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanNoiseImmunityCurrentParametersEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.63.1.1.15 +lcsStatusWlanNoiseImmunityCurrParamEntryCckWeakSignalDetectThres OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanNoiseImmunityCurrentParametersEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.63.1.1.16 +lcsStatusWlanNoiseImmunityCurrentParametersEntryMrcCck OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanNoiseImmunityCurrentParametersEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.63.1.1.17 +lcsStatusWlanNoiseImmunityCurrentParametersEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanNoiseImmunityCurrentParametersEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.63.1.1.18 +lcsStatusWlanNoiseImmunityCurrentParametersEntryChannelBandwidth OBJECT-TYPE + SYNTAX INTEGER { + e20mhz (0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanNoiseImmunityCurrentParametersEntry 18 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.63.2 +lcsStatusWlanNoiseImmunityLogTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanNoiseImmunityLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanNoiseImmunity 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.63.2.1 +lcsStatusWlanNoiseImmunityLogTableEntry OBJECT-TYPE + SYNTAX LcsStatusWlanNoiseImmunityLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanNoiseImmunityLogTableEntryIndex + } + ::= { lcsStatusWlanNoiseImmunityLogTableTable 1 } + +LcsStatusWlanNoiseImmunityLogTableEntry ::= SEQUENCE { + lcsStatusWlanNoiseImmunityLogTableEntryIndex Integer32, + lcsStatusWlanNoiseImmunityLogTableEntryTime DisplayString, + lcsStatusWlanNoiseImmunityLogTableEntryInterface INTEGER, + lcsStatusWlanNoiseImmunityLogTableEntryRadioBand INTEGER, + lcsStatusWlanNoiseImmunityLogTableEntryRadioChannel Integer32, + lcsStatusWlanNoiseImmunityLogTableEntryEvent INTEGER, + lcsStatusWlanNoiseImmunityLogTableEntryParameter INTEGER, + lcsStatusWlanNoiseImmunityLogTableEntryValue Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.63.2.1.1 +lcsStatusWlanNoiseImmunityLogTableEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanNoiseImmunityLogTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.63.2.1.2 +lcsStatusWlanNoiseImmunityLogTableEntryTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanNoiseImmunityLogTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.63.2.1.3 +lcsStatusWlanNoiseImmunityLogTableEntryInterface OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (0), + eWlan2 (1), + eWlan3 (2), + eWlan4 (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanNoiseImmunityLogTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.63.2.1.4 +lcsStatusWlanNoiseImmunityLogTableEntryRadioBand OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e24ghz (1), + e5ghz (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanNoiseImmunityLogTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.63.2.1.5 +lcsStatusWlanNoiseImmunityLogTableEntryRadioChannel OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanNoiseImmunityLogTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.63.2.1.6 +lcsStatusWlanNoiseImmunityLogTableEntryEvent OBJECT-TYPE + SYNTAX INTEGER { + eValueChange (0), + eOfdmMaxImmunity (1), + eCckMaxImmunity (2), + eMinImmunity (3), + eNotAvailable (4), + eEventRepeated (5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanNoiseImmunityLogTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.63.2.1.7 +lcsStatusWlanNoiseImmunityLogTableEntryParameter OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eNoiseImmunityLevel (1), + eOfdmWeakSignalDetection (2), + eCckWeakSignalDetectionThreshold (3), + eFirStepLevel (4), + eSpuriousImmunityLevel (5), + eMrcCck (8) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanNoiseImmunityLogTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.63.2.1.8 +lcsStatusWlanNoiseImmunityLogTableEntryValue OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanNoiseImmunityLogTableEntry 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.64 +lcsStatusWlanEncryptionTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanEncryptionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlan 64 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.64.1 +lcsStatusWlanEncryptionEntry OBJECT-TYPE + SYNTAX LcsStatusWlanEncryptionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanEncryptionEntryInterface + } + ::= { lcsStatusWlanEncryptionTable 1 } + +LcsStatusWlanEncryptionEntry ::= SEQUENCE { + lcsStatusWlanEncryptionEntryInterface INTEGER, + lcsStatusWlanEncryptionEntryEncryption INTEGER, + lcsStatusWlanEncryptionEntryMethod INTEGER, + lcsStatusWlanEncryptionEntryWpaVersion INTEGER, + lcsStatusWlanEncryptionEntryWpa1SessionKeytypes INTEGER, + lcsStatusWlanEncryptionEntryWpa2SessionKeytypes INTEGER, + lcsStatusWlanEncryptionEntryPmkCaching INTEGER, + lcsStatusWlanEncryptionEntryPreAuthentication INTEGER, + lcsStatusWlanEncryptionEntryOkc INTEGER, + lcsStatusWlanEncryptionEntryWpa2KeyManagement BITS + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.64.1.1 +lcsStatusWlanEncryptionEntryInterface OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2), + eWlan12 (16), + eWlan13 (17), + eWlan14 (18), + eWlan15 (19), + eWlan16 (20), + eWlan17 (21), + eWlan18 (22), + eWlan22 (32), + eWlan23 (33), + eWlan24 (34), + eWlan25 (35), + eWlan26 (36), + eWlan27 (37), + eWlan28 (38) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanEncryptionEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.64.1.2 +lcsStatusWlanEncryptionEntryEncryption OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanEncryptionEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.64.1.4 +lcsStatusWlanEncryptionEntryMethod OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eWep40Bits (5), + eWep104Bits (13), + eWep128Bits (16), + e80211iWpaPsk (32), + e80211iWpa8021x (33), + eWep40Bits8021x (34), + eWep104Bits8021x (35), + eWep128Bits8021x (36) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanEncryptionEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.64.1.9 +lcsStatusWlanEncryptionEntryWpaVersion OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eWpa1 (2), + eWpa2 (4), + eWpa12 (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanEncryptionEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.64.1.12 +lcsStatusWlanEncryptionEntryWpa1SessionKeytypes OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eTkip (1), + eAes (2), + eTkipAes (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanEncryptionEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.64.1.13 +lcsStatusWlanEncryptionEntryWpa2SessionKeytypes OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eTkip (1), + eAes (2), + eTkipAes (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanEncryptionEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.64.1.15 +lcsStatusWlanEncryptionEntryPmkCaching OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanEncryptionEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.64.1.16 +lcsStatusWlanEncryptionEntryPreAuthentication OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanEncryptionEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.64.1.17 +lcsStatusWlanEncryptionEntryOkc OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanEncryptionEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.64.1.19 +lcsStatusWlanEncryptionEntryWpa2KeyManagement OBJECT-TYPE + SYNTAX BITS { + eSha256 (5), + eFastRoaming (6), + eStandard (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanEncryptionEntry 19 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.70 +lcsStatusWlanVlanGroupkeyMappingTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanVlanGroupkeyMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlan 70 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.70.1 +lcsStatusWlanVlanGroupkeyMappingEntry OBJECT-TYPE + SYNTAX LcsStatusWlanVlanGroupkeyMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanVlanGroupkeyMappingEntryNetwork, + lcsStatusWlanVlanGroupkeyMappingEntryVlanId + } + ::= { lcsStatusWlanVlanGroupkeyMappingTable 1 } + +LcsStatusWlanVlanGroupkeyMappingEntry ::= SEQUENCE { + lcsStatusWlanVlanGroupkeyMappingEntryNetwork INTEGER, + lcsStatusWlanVlanGroupkeyMappingEntryVlanId Integer32, + lcsStatusWlanVlanGroupkeyMappingEntryGroupkeyIndex Integer32, + lcsStatusWlanVlanGroupkeyMappingEntrySource INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.70.1.1 +lcsStatusWlanVlanGroupkeyMappingEntryNetwork OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2), + eWlan12 (16), + eWlan13 (17), + eWlan14 (18), + eWlan15 (19), + eWlan16 (20), + eWlan17 (21), + eWlan18 (22), + eWlan22 (32), + eWlan23 (33), + eWlan24 (34), + eWlan25 (35), + eWlan26 (36), + eWlan27 (37), + eWlan28 (38) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanVlanGroupkeyMappingEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.70.1.2 +lcsStatusWlanVlanGroupkeyMappingEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanVlanGroupkeyMappingEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.70.1.3 +lcsStatusWlanVlanGroupkeyMappingEntryGroupkeyIndex OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanVlanGroupkeyMappingEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.70.1.4 +lcsStatusWlanVlanGroupkeyMappingEntrySource OBJECT-TYPE + SYNTAX INTEGER { + eManual (1), + eAutomatic (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanVlanGroupkeyMappingEntry 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.3.100 +lcsStatusWlanDfsForceRescan OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlan 100 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.3.101 +lcsStatusWlanDfsStatisticsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanDfsStatisticsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlan 101 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.3.101.1 +lcsStatusWlanDfsStatisticsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanDfsStatisticsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanDfsStatisticsEntryIfc + } + ::= { lcsStatusWlanDfsStatisticsTable 1 } + +LcsStatusWlanDfsStatisticsEntry ::= SEQUENCE { + lcsStatusWlanDfsStatisticsEntryIfc INTEGER, + lcsStatusWlanDfsStatisticsEntryNumDetections Integer32, + lcsStatusWlanDfsStatisticsEntryLastDetection DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.101.1.1 +lcsStatusWlanDfsStatisticsEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanDfsStatisticsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.101.1.2 +lcsStatusWlanDfsStatisticsEntryNumDetections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanDfsStatisticsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.3.101.1.3 +lcsStatusWlanDfsStatisticsEntryLastDetection OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..21)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanDfsStatisticsEntry 3 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.4 +lcsStatusWan OBJECT IDENTIFIER ::= { lcsStatus 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.4.1 +lcsStatusWanByteTransportTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWanByteTransportEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWan 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.4.1.1 +lcsStatusWanByteTransportEntry OBJECT-TYPE + SYNTAX LcsStatusWanByteTransportEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWanByteTransportEntryIfc + } + ::= { lcsStatusWanByteTransportTable 1 } + +LcsStatusWanByteTransportEntry ::= SEQUENCE { + lcsStatusWanByteTransportEntryIfc INTEGER, + lcsStatusWanByteTransportEntryCrxBytes Counter32, + lcsStatusWanByteTransportEntryRxBytes Counter32, + lcsStatusWanByteTransportEntryTxBytes Counter32, + lcsStatusWanByteTransportEntryCtxBytes Counter32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.1.1.1 +lcsStatusWanByteTransportEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eCh01 (257), + eCh02 (258), + eModem (513), + eDslCh1 (2049), + eDslCh2 (2050), + eDslCh3 (2051), + eDslCh4 (2052), + eDslCh5 (2053), + eDslCh6 (2054), + eDslCh7 (2055), + eDslCh8 (2056), + eAdsl1 (8193), + eAdsl2 (8194), + eAdsl3 (8195), + eAdsl4 (8196), + eAdsl5 (8197), + eAdsl6 (8198), + eAdsl7 (8199), + eAdsl8 (8200), + eVdsl1 (16385), + eVdsl2 (16386), + eVdsl3 (16387), + eVdsl4 (16388), + eVdsl5 (16389), + eVdsl6 (16390), + eVdsl7 (16391), + eVdsl8 (16392) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanByteTransportEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.1.1.2 +lcsStatusWanByteTransportEntryCrxBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanByteTransportEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.1.1.3 +lcsStatusWanByteTransportEntryRxBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanByteTransportEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.1.1.4 +lcsStatusWanByteTransportEntryTxBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanByteTransportEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.1.1.5 +lcsStatusWanByteTransportEntryCtxBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanByteTransportEntry 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.4.2 +lcsStatusWanPacketTransportTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWanPacketTransportEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWan 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.4.2.1 +lcsStatusWanPacketTransportEntry OBJECT-TYPE + SYNTAX LcsStatusWanPacketTransportEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWanPacketTransportEntryIfc + } + ::= { lcsStatusWanPacketTransportTable 1 } + +LcsStatusWanPacketTransportEntry ::= SEQUENCE { + lcsStatusWanPacketTransportEntryIfc INTEGER, + lcsStatusWanPacketTransportEntryRx Counter32, + lcsStatusWanPacketTransportEntryTxTotal Counter32, + lcsStatusWanPacketTransportEntryTxNormal Counter32, + lcsStatusWanPacketTransportEntryTxReliable Counter32, + lcsStatusWanPacketTransportEntryTxUrgent Counter32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.2.1.1 +lcsStatusWanPacketTransportEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eCh01 (257), + eCh02 (258), + eModem (513), + eDslCh1 (2049), + eDslCh2 (2050), + eDslCh3 (2051), + eDslCh4 (2052), + eDslCh5 (2053), + eDslCh6 (2054), + eDslCh7 (2055), + eDslCh8 (2056), + eAdsl1 (8193), + eAdsl2 (8194), + eAdsl3 (8195), + eAdsl4 (8196), + eAdsl5 (8197), + eAdsl6 (8198), + eAdsl7 (8199), + eAdsl8 (8200), + eVdsl1 (16385), + eVdsl2 (16386), + eVdsl3 (16387), + eVdsl4 (16388), + eVdsl5 (16389), + eVdsl6 (16390), + eVdsl7 (16391), + eVdsl8 (16392) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanPacketTransportEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.2.1.2 +lcsStatusWanPacketTransportEntryRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanPacketTransportEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.2.1.3 +lcsStatusWanPacketTransportEntryTxTotal OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanPacketTransportEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.2.1.4 +lcsStatusWanPacketTransportEntryTxNormal OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanPacketTransportEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.2.1.5 +lcsStatusWanPacketTransportEntryTxReliable OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanPacketTransportEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.2.1.6 +lcsStatusWanPacketTransportEntryTxUrgent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanPacketTransportEntry 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.4.3 +lcsStatusWanErrorsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWanErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWan 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.4.3.1 +lcsStatusWanErrorsEntry OBJECT-TYPE + SYNTAX LcsStatusWanErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWanErrorsEntryIfc + } + ::= { lcsStatusWanErrorsTable 1 } + +LcsStatusWanErrorsEntry ::= SEQUENCE { + lcsStatusWanErrorsEntryIfc INTEGER, + lcsStatusWanErrorsEntryRxL1Error Counter32, + lcsStatusWanErrorsEntryRxL2Error Counter32, + lcsStatusWanErrorsEntryRxL3Error Counter32, + lcsStatusWanErrorsEntryStackError Counter32, + lcsStatusWanErrorsEntryTxError Counter32, + lcsStatusWanErrorsEntryQueueErrors Counter32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.3.1.1 +lcsStatusWanErrorsEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eCh01 (257), + eCh02 (258), + eModem (513), + eDslCh1 (2049), + eDslCh2 (2050), + eDslCh3 (2051), + eDslCh4 (2052), + eDslCh5 (2053), + eDslCh6 (2054), + eDslCh7 (2055), + eDslCh8 (2056), + eAdsl1 (8193), + eAdsl2 (8194), + eAdsl3 (8195), + eAdsl4 (8196), + eAdsl5 (8197), + eAdsl6 (8198), + eAdsl7 (8199), + eAdsl8 (8200), + eVdsl1 (16385), + eVdsl2 (16386), + eVdsl3 (16387), + eVdsl4 (16388), + eVdsl5 (16389), + eVdsl6 (16390), + eVdsl7 (16391), + eVdsl8 (16392) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanErrorsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.3.1.2 +lcsStatusWanErrorsEntryRxL1Error OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanErrorsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.3.1.3 +lcsStatusWanErrorsEntryRxL2Error OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanErrorsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.3.1.4 +lcsStatusWanErrorsEntryRxL3Error OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanErrorsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.3.1.5 +lcsStatusWanErrorsEntryStackError OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanErrorsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.3.1.6 +lcsStatusWanErrorsEntryTxError OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanErrorsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.3.1.7 +lcsStatusWanErrorsEntryQueueErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanErrorsEntry 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.4.4 +lcsStatusWanWanTxDiscarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWan 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.4.5 +lcsStatusWanWanHeapPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWan 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.4.6 +lcsStatusWanWanQueuePackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWan 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.4.7 +lcsStatusWanWanQueueErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWan 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.4.8 +lcsStatusWanThroughputTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWanThroughputEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWan 8 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.4.8.1 +lcsStatusWanThroughputEntry OBJECT-TYPE + SYNTAX LcsStatusWanThroughputEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWanThroughputEntryIfc + } + ::= { lcsStatusWanThroughputTable 1 } + +LcsStatusWanThroughputEntry ::= SEQUENCE { + lcsStatusWanThroughputEntryIfc INTEGER, + lcsStatusWanThroughputEntryRxSCurrent Integer32, + lcsStatusWanThroughputEntryTxSCurrent Integer32, + lcsStatusWanThroughputEntryRxSAverage Integer32, + lcsStatusWanThroughputEntryTxSAverage Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.8.1.1 +lcsStatusWanThroughputEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eCh01 (257), + eCh02 (258), + eModem (513), + eDslCh1 (2049), + eDslCh2 (2050), + eDslCh3 (2051), + eDslCh4 (2052), + eDslCh5 (2053), + eDslCh6 (2054), + eDslCh7 (2055), + eDslCh8 (2056), + eAdsl1 (8193), + eAdsl2 (8194), + eAdsl3 (8195), + eAdsl4 (8196), + eAdsl5 (8197), + eAdsl6 (8198), + eAdsl7 (8199), + eAdsl8 (8200), + eVdsl1 (16385), + eVdsl2 (16386), + eVdsl3 (16387), + eVdsl4 (16388), + eVdsl5 (16389), + eVdsl6 (16390), + eVdsl7 (16391), + eVdsl8 (16392) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanThroughputEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.8.1.2 +lcsStatusWanThroughputEntryRxSCurrent OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanThroughputEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.8.1.3 +lcsStatusWanThroughputEntryTxSCurrent OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanThroughputEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.8.1.4 +lcsStatusWanThroughputEntryRxSAverage OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanThroughputEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.8.1.5 +lcsStatusWanThroughputEntryTxSAverage OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanThroughputEntry 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.4.9 +lcsStatusWanDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWan 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.4.10 +lcsStatusWanConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWan 10 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.4.11 +lcsStatusWanMtuTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWanMtuEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWan 11 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.4.11.1 +lcsStatusWanMtuEntry OBJECT-TYPE + SYNTAX LcsStatusWanMtuEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWanMtuEntryPeer + } + ::= { lcsStatusWanMtuTable 1 } + +LcsStatusWanMtuEntry ::= SEQUENCE { + lcsStatusWanMtuEntryPeer DisplayString, + lcsStatusWanMtuEntryMtu Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.11.1.1 +lcsStatusWanMtuEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanMtuEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.11.1.2 +lcsStatusWanMtuEntryMtu OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanMtuEntry 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.4.12 +lcsStatusWanEncryptedConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWan 12 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.4.13 +lcsStatusWanIpAddresses OBJECT IDENTIFIER ::= { lcsStatusWan 13 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.4.13.1 +lcsStatusWanIpAddressesIpv4Table OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWanIpAddressesIpv4Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanIpAddresses 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.4.13.1.1 +lcsStatusWanIpAddressesIpv4Entry OBJECT-TYPE + SYNTAX LcsStatusWanIpAddressesIpv4Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWanIpAddressesIpv4EntryPeer + } + ::= { lcsStatusWanIpAddressesIpv4Table 1 } + +LcsStatusWanIpAddressesIpv4Entry ::= SEQUENCE { + lcsStatusWanIpAddressesIpv4EntryPeer DisplayString, + lcsStatusWanIpAddressesIpv4EntryType INTEGER, + lcsStatusWanIpAddressesIpv4EntryIpAddress IpAddress, + lcsStatusWanIpAddressesIpv4EntryIpNetmask IpAddress, + lcsStatusWanIpAddressesIpv4EntryGateway IpAddress, + lcsStatusWanIpAddressesIpv4EntryDnsDefault IpAddress, + lcsStatusWanIpAddressesIpv4EntryDnsBackup IpAddress, + lcsStatusWanIpAddressesIpv4EntryNbnsDefault IpAddress, + lcsStatusWanIpAddressesIpv4EntryNbnsBackup IpAddress, + lcsStatusWanIpAddressesIpv4EntryDomain DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.13.1.1.1 +lcsStatusWanIpAddressesIpv4EntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanIpAddressesIpv4Entry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.13.1.1.2 +lcsStatusWanIpAddressesIpv4EntryType OBJECT-TYPE + SYNTAX INTEGER { + eStatic (1), + eDhcp (2), + ePpp (3), + eAutoconfig (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanIpAddressesIpv4Entry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.13.1.1.3 +lcsStatusWanIpAddressesIpv4EntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanIpAddressesIpv4Entry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.13.1.1.4 +lcsStatusWanIpAddressesIpv4EntryIpNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanIpAddressesIpv4Entry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.13.1.1.5 +lcsStatusWanIpAddressesIpv4EntryGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanIpAddressesIpv4Entry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.13.1.1.6 +lcsStatusWanIpAddressesIpv4EntryDnsDefault OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanIpAddressesIpv4Entry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.13.1.1.7 +lcsStatusWanIpAddressesIpv4EntryDnsBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanIpAddressesIpv4Entry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.13.1.1.8 +lcsStatusWanIpAddressesIpv4EntryNbnsDefault OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanIpAddressesIpv4Entry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.13.1.1.9 +lcsStatusWanIpAddressesIpv4EntryNbnsBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanIpAddressesIpv4Entry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.13.1.1.10 +lcsStatusWanIpAddressesIpv4EntryDomain OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..35)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanIpAddressesIpv4Entry 10 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.4.13.2 +lcsStatusWanIpAddressesIpv6Table OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWanIpAddressesIpv6Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanIpAddresses 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.4.13.2.1 +lcsStatusWanIpAddressesIpv6Entry OBJECT-TYPE + SYNTAX LcsStatusWanIpAddressesIpv6Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWanIpAddressesIpv6EntryPeer + } + ::= { lcsStatusWanIpAddressesIpv6Table 1 } + +LcsStatusWanIpAddressesIpv6Entry ::= SEQUENCE { + lcsStatusWanIpAddressesIpv6EntryPeer DisplayString, + lcsStatusWanIpAddressesIpv6EntryType INTEGER, + lcsStatusWanIpAddressesIpv6EntryIpAddress DisplayString, + lcsStatusWanIpAddressesIpv6EntryPrefixLength Integer32, + lcsStatusWanIpAddressesIpv6EntryGateway DisplayString, + lcsStatusWanIpAddressesIpv6EntryDnsDefault DisplayString, + lcsStatusWanIpAddressesIpv6EntryDnsBackup DisplayString, + lcsStatusWanIpAddressesIpv6EntryPrefix DisplayString, + lcsStatusWanIpAddressesIpv6EntryDomain DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.13.2.1.1 +lcsStatusWanIpAddressesIpv6EntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanIpAddressesIpv6Entry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.13.2.1.2 +lcsStatusWanIpAddressesIpv6EntryType OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eStatic (1), + eDhcp (2), + eAutoconfig (4), + eTunnel (5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanIpAddressesIpv6Entry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.13.2.1.3 +lcsStatusWanIpAddressesIpv6EntryIpAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanIpAddressesIpv6Entry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.13.2.1.4 +lcsStatusWanIpAddressesIpv6EntryPrefixLength OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanIpAddressesIpv6Entry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.13.2.1.5 +lcsStatusWanIpAddressesIpv6EntryGateway OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanIpAddressesIpv6Entry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.13.2.1.6 +lcsStatusWanIpAddressesIpv6EntryDnsDefault OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanIpAddressesIpv6Entry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.13.2.1.7 +lcsStatusWanIpAddressesIpv6EntryDnsBackup OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanIpAddressesIpv6Entry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.13.2.1.8 +lcsStatusWanIpAddressesIpv6EntryPrefix OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanIpAddressesIpv6Entry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.13.2.1.10 +lcsStatusWanIpAddressesIpv6EntryDomain OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..35)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanIpAddressesIpv6Entry 10 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.4.20 +lcsStatusWanActions OBJECT IDENTIFIER ::= { lcsStatusWan 20 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.4.20.1 +lcsStatusWanActionsActionTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWanActionsActionTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanActions 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.4.20.1.1 +lcsStatusWanActionsActionTableEntry OBJECT-TYPE + SYNTAX LcsStatusWanActionsActionTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWanActionsActionTableEntryTime + } + ::= { lcsStatusWanActionsActionTableTable 1 } + +LcsStatusWanActionsActionTableEntry ::= SEQUENCE { + lcsStatusWanActionsActionTableEntryTime DisplayString, + lcsStatusWanActionsActionTableEntryAction DisplayString, + lcsStatusWanActionsActionTableEntryResult DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.20.1.1.1 +lcsStatusWanActionsActionTableEntryTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanActionsActionTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.20.1.1.2 +lcsStatusWanActionsActionTableEntryAction OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanActionsActionTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.20.1.1.3 +lcsStatusWanActionsActionTableEntryResult OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..100)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanActionsActionTableEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.4.20.2 +lcsStatusWanActionsLockTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWanActionsLockTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanActions 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.4.20.2.1 +lcsStatusWanActionsLockTableEntry OBJECT-TYPE + SYNTAX LcsStatusWanActionsLockTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWanActionsLockTableEntryIndex + } + ::= { lcsStatusWanActionsLockTableTable 1 } + +LcsStatusWanActionsLockTableEntry ::= SEQUENCE { + lcsStatusWanActionsLockTableEntryIndex Integer32, + lcsStatusWanActionsLockTableEntryRemainingLocktime Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.20.2.1.1 +lcsStatusWanActionsLockTableEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanActionsLockTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.20.2.1.2 +lcsStatusWanActionsLockTableEntryRemainingLocktime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWanActionsLockTableEntry 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.4.21 +lcsStatusWanWanQueueMgtDrop OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWan 21 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.4.45 +lcsStatusWanX25Bridge OBJECT IDENTIFIER ::= { lcsStatusWan 45 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.4.45.2 +lcsStatusWanX25BridgeConnectionsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWanX25BridgeConnectionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanX25Bridge 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.4.45.2.1 +lcsStatusWanX25BridgeConnectionsEntry OBJECT-TYPE + SYNTAX LcsStatusWanX25BridgeConnectionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWanX25BridgeConnectionsEntryIndex + } + ::= { lcsStatusWanX25BridgeConnectionsTable 1 } + +LcsStatusWanX25BridgeConnectionsEntry ::= SEQUENCE { + lcsStatusWanX25BridgeConnectionsEntryIndex Integer32, + lcsStatusWanX25BridgeConnectionsEntryDirection INTEGER, + lcsStatusWanX25BridgeConnectionsEntryTcpState INTEGER, + lcsStatusWanX25BridgeConnectionsEntryIsdnState INTEGER, + lcsStatusWanX25BridgeConnectionsEntryX25State INTEGER, + lcsStatusWanX25BridgeConnectionsEntryTerminalIp IpAddress, + lcsStatusWanX25BridgeConnectionsEntryTerminalPort Integer32, + lcsStatusWanX25BridgeConnectionsEntryLocalIp IpAddress, + lcsStatusWanX25BridgeConnectionsEntryLocalPort Integer32, + lcsStatusWanX25BridgeConnectionsEntryRoutingTag Integer32, + lcsStatusWanX25BridgeConnectionsEntryIsdnRemote DisplayString, + lcsStatusWanX25BridgeConnectionsEntryIsdnLocal DisplayString, + lcsStatusWanX25BridgeConnectionsEntryX25Remote DisplayString, + lcsStatusWanX25BridgeConnectionsEntryX25Local DisplayString, + lcsStatusWanX25BridgeConnectionsEntryProtocolId Integer32, + lcsStatusWanX25BridgeConnectionsEntryUserdata DisplayString, + lcsStatusWanX25BridgeConnectionsEntryPayloadSize Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.45.2.1.1 +lcsStatusWanX25BridgeConnectionsEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanX25BridgeConnectionsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.45.2.1.2 +lcsStatusWanX25BridgeConnectionsEntryDirection OBJECT-TYPE + SYNTAX INTEGER { + eOutgoing (0), + eIncoming (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanX25BridgeConnectionsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.45.2.1.3 +lcsStatusWanX25BridgeConnectionsEntryTcpState OBJECT-TYPE + SYNTAX INTEGER { + eListening (0), + eConnecting (1), + eConnected (2), + eDisconnecting (3), + eDisconnected (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanX25BridgeConnectionsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.45.2.1.4 +lcsStatusWanX25BridgeConnectionsEntryIsdnState OBJECT-TYPE + SYNTAX INTEGER { + eListening (0), + eConnecting (1), + eConnected (2), + eDisconnecting (3), + eDisconnected (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanX25BridgeConnectionsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.45.2.1.5 +lcsStatusWanX25BridgeConnectionsEntryX25State OBJECT-TYPE + SYNTAX INTEGER { + eListening (0), + eConnecting (1), + eConnected (2), + eDisconnecting (3), + eDisconnected (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanX25BridgeConnectionsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.45.2.1.6 +lcsStatusWanX25BridgeConnectionsEntryTerminalIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanX25BridgeConnectionsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.45.2.1.7 +lcsStatusWanX25BridgeConnectionsEntryTerminalPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanX25BridgeConnectionsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.45.2.1.8 +lcsStatusWanX25BridgeConnectionsEntryLocalIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanX25BridgeConnectionsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.45.2.1.9 +lcsStatusWanX25BridgeConnectionsEntryLocalPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanX25BridgeConnectionsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.45.2.1.10 +lcsStatusWanX25BridgeConnectionsEntryRoutingTag OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanX25BridgeConnectionsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.45.2.1.11 +lcsStatusWanX25BridgeConnectionsEntryIsdnRemote OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanX25BridgeConnectionsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.45.2.1.12 +lcsStatusWanX25BridgeConnectionsEntryIsdnLocal OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanX25BridgeConnectionsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.45.2.1.13 +lcsStatusWanX25BridgeConnectionsEntryX25Remote OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanX25BridgeConnectionsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.45.2.1.14 +lcsStatusWanX25BridgeConnectionsEntryX25Local OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanX25BridgeConnectionsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.45.2.1.15 +lcsStatusWanX25BridgeConnectionsEntryProtocolId OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanX25BridgeConnectionsEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.45.2.1.16 +lcsStatusWanX25BridgeConnectionsEntryUserdata OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanX25BridgeConnectionsEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.45.2.1.17 +lcsStatusWanX25BridgeConnectionsEntryPayloadSize OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanX25BridgeConnectionsEntry 17 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.4.45.3 +lcsStatusWanX25BridgeTcpListenerPortsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWanX25BridgeTcpListenerPortsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanX25Bridge 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.4.45.3.1 +lcsStatusWanX25BridgeTcpListenerPortsEntry OBJECT-TYPE + SYNTAX LcsStatusWanX25BridgeTcpListenerPortsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWanX25BridgeTcpListenerPortsEntryLocalPort + } + ::= { lcsStatusWanX25BridgeTcpListenerPortsTable 1 } + +LcsStatusWanX25BridgeTcpListenerPortsEntry ::= SEQUENCE { + lcsStatusWanX25BridgeTcpListenerPortsEntryLocalPort Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.4.45.3.1.1 +lcsStatusWanX25BridgeTcpListenerPortsEntryLocalPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanX25BridgeTcpListenerPortsEntry 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.4.45.4 +lcsStatusWanX25BridgeDisconnectAll OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWanX25Bridge 4 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.5 +lcsStatusLan OBJECT IDENTIFIER ::= { lcsStatus 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.5.7 +lcsStatusLanLanHeapPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLan 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.5.11 +lcsStatusLanDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLan 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.5.51 +lcsStatusLanInterfacesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanInterfacesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLan 51 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.5.51.1 +lcsStatusLanInterfacesEntry OBJECT-TYPE + SYNTAX LcsStatusLanInterfacesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanInterfacesEntryIfc + } + ::= { lcsStatusLanInterfacesTable 1 } + +LcsStatusLanInterfacesEntry ::= SEQUENCE { + lcsStatusLanInterfacesEntryIfc DisplayString, + lcsStatusLanInterfacesEntryQueuePackets Integer32, + lcsStatusLanInterfacesEntryLinkActive INTEGER, + lcsStatusLanInterfacesEntryConnector INTEGER, + lcsStatusLanInterfacesEntryFlowControl INTEGER, + lcsStatusLanInterfacesEntryMdiMode INTEGER, + lcsStatusLanInterfacesEntryAutoNegotiation INTEGER, + lcsStatusLanInterfacesEntryDownshift INTEGER, + lcsStatusLanInterfacesEntryClockRole INTEGER, + lcsStatusLanInterfacesEntryRemoteFault INTEGER, + lcsStatusLanInterfacesEntryPowerSaving INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.51.1.1 +lcsStatusLanInterfacesEntryIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanInterfacesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.51.1.2 +lcsStatusLanInterfacesEntryQueuePackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanInterfacesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.51.1.3 +lcsStatusLanInterfacesEntryLinkActive OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanInterfacesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.51.1.4 +lcsStatusLanInterfacesEntryConnector OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + e10bT (1), + eFd10bTx (2), + e100bTx (3), + eFd100bTx (4), + eFd1000bTx (6), + e10b2 (33), + e10b5 (34), + eFd1000bF (70), + ePowerDown (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanInterfacesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.51.1.6 +lcsStatusLanInterfacesEntryFlowControl OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eTxOnly (3), + eRxOnly (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanInterfacesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.51.1.7 +lcsStatusLanInterfacesEntryMdiMode OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eMdi (1), + eMdix (2), + eNotApplicable (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanInterfacesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.51.1.8 +lcsStatusLanInterfacesEntryAutoNegotiation OBJECT-TYPE + SYNTAX INTEGER { + ePending (0), + eCompleted (1), + eDisabled (2), + eNotAvailable (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanInterfacesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.51.1.9 +lcsStatusLanInterfacesEntryDownshift OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanInterfacesEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.51.1.10 +lcsStatusLanInterfacesEntryClockRole OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eMaster (1), + eSlave (2), + eFault (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanInterfacesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.51.1.11 +lcsStatusLanInterfacesEntryRemoteFault OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfacesEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.51.1.12 +lcsStatusLanInterfacesEntryPowerSaving OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfacesEntry 12 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.5.52 +lcsStatusLanByteTransportTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanByteTransportEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLan 52 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.5.52.1 +lcsStatusLanByteTransportEntry OBJECT-TYPE + SYNTAX LcsStatusLanByteTransportEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanByteTransportEntryIfc + } + ::= { lcsStatusLanByteTransportTable 1 } + +LcsStatusLanByteTransportEntry ::= SEQUENCE { + lcsStatusLanByteTransportEntryIfc DisplayString, + lcsStatusLanByteTransportEntryTxBytes Counter64, + lcsStatusLanByteTransportEntryRxBytes Counter64, + lcsStatusLanByteTransportEntryThroughput DisplayString, + lcsStatusLanByteTransportEntryMaxThroughput DisplayString, + lcsStatusLanByteTransportEntryBytesThroughput Integer32, + lcsStatusLanByteTransportEntryBytesMaxThroughput Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.52.1.1 +lcsStatusLanByteTransportEntryIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanByteTransportEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.52.1.2 +lcsStatusLanByteTransportEntryTxBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanByteTransportEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.52.1.3 +lcsStatusLanByteTransportEntryRxBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanByteTransportEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.52.1.4 +lcsStatusLanByteTransportEntryThroughput OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanByteTransportEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.52.1.5 +lcsStatusLanByteTransportEntryMaxThroughput OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanByteTransportEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.52.1.6 +lcsStatusLanByteTransportEntryBytesThroughput OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanByteTransportEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.52.1.7 +lcsStatusLanByteTransportEntryBytesMaxThroughput OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanByteTransportEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.5.53 +lcsStatusLanPacketTransportTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanPacketTransportEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLan 53 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.5.53.1 +lcsStatusLanPacketTransportEntry OBJECT-TYPE + SYNTAX LcsStatusLanPacketTransportEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanPacketTransportEntryIfc + } + ::= { lcsStatusLanPacketTransportTable 1 } + +LcsStatusLanPacketTransportEntry ::= SEQUENCE { + lcsStatusLanPacketTransportEntryIfc DisplayString, + lcsStatusLanPacketTransportEntryRxPackets Counter32, + lcsStatusLanPacketTransportEntryTxPackets Counter32, + lcsStatusLanPacketTransportEntryRxBroadcasts Counter32, + lcsStatusLanPacketTransportEntryRxMulticasts Counter32, + lcsStatusLanPacketTransportEntryRxUnicasts Counter32, + lcsStatusLanPacketTransportEntryTxBroadcasts Counter32, + lcsStatusLanPacketTransportEntryTxMulticasts Counter32, + lcsStatusLanPacketTransportEntryTxUnicasts Counter32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.53.1.1 +lcsStatusLanPacketTransportEntryIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanPacketTransportEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.53.1.2 +lcsStatusLanPacketTransportEntryRxPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanPacketTransportEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.53.1.3 +lcsStatusLanPacketTransportEntryTxPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanPacketTransportEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.53.1.4 +lcsStatusLanPacketTransportEntryRxBroadcasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanPacketTransportEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.53.1.5 +lcsStatusLanPacketTransportEntryRxMulticasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanPacketTransportEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.53.1.6 +lcsStatusLanPacketTransportEntryRxUnicasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanPacketTransportEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.53.1.7 +lcsStatusLanPacketTransportEntryTxBroadcasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanPacketTransportEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.53.1.8 +lcsStatusLanPacketTransportEntryTxMulticasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanPacketTransportEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.53.1.9 +lcsStatusLanPacketTransportEntryTxUnicasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanPacketTransportEntry 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.5.54 +lcsStatusLanErrorsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLan 54 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.5.54.1 +lcsStatusLanErrorsEntry OBJECT-TYPE + SYNTAX LcsStatusLanErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanErrorsEntryIfc + } + ::= { lcsStatusLanErrorsTable 1 } + +LcsStatusLanErrorsEntry ::= SEQUENCE { + lcsStatusLanErrorsEntryIfc DisplayString, + lcsStatusLanErrorsEntryRxErrors Counter32, + lcsStatusLanErrorsEntryTxErrors Counter32, + lcsStatusLanErrorsEntryStackErrors Counter32, + lcsStatusLanErrorsEntryNicErrors Counter32, + lcsStatusLanErrorsEntryQueueErrors Counter32, + lcsStatusLanErrorsEntryRxCrcErrors Counter32, + lcsStatusLanErrorsEntryCollisions Counter32, + lcsStatusLanErrorsEntrySingleCollisions Counter32, + lcsStatusLanErrorsEntryMultipleCollisions Counter32, + lcsStatusLanErrorsEntryLateCollisions Counter32, + lcsStatusLanErrorsEntryExcessiveCollisions Counter32, + lcsStatusLanErrorsEntryRxAlignErrors Counter32, + lcsStatusLanErrorsEntryRxTooShort Counter32, + lcsStatusLanErrorsEntryRxTooLong Counter32, + lcsStatusLanErrorsEntryTxCarrier Counter32, + lcsStatusLanErrorsEntryTxDeferred Counter32, + lcsStatusLanErrorsEntryRxPhyErrors Counter32, + lcsStatusLanErrorsEntryRxFifoOverflow Counter32, + lcsStatusLanErrorsEntryTxDiscarded Counter32, + lcsStatusLanErrorsEntryRxDscrUnderflow Counter32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.54.1.1 +lcsStatusLanErrorsEntryIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanErrorsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.54.1.2 +lcsStatusLanErrorsEntryRxErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanErrorsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.54.1.3 +lcsStatusLanErrorsEntryTxErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanErrorsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.54.1.4 +lcsStatusLanErrorsEntryStackErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanErrorsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.54.1.5 +lcsStatusLanErrorsEntryNicErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanErrorsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.54.1.6 +lcsStatusLanErrorsEntryQueueErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanErrorsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.54.1.7 +lcsStatusLanErrorsEntryRxCrcErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanErrorsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.54.1.8 +lcsStatusLanErrorsEntryCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanErrorsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.54.1.9 +lcsStatusLanErrorsEntrySingleCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanErrorsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.54.1.10 +lcsStatusLanErrorsEntryMultipleCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanErrorsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.54.1.11 +lcsStatusLanErrorsEntryLateCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanErrorsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.54.1.12 +lcsStatusLanErrorsEntryExcessiveCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanErrorsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.54.1.13 +lcsStatusLanErrorsEntryRxAlignErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanErrorsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.54.1.14 +lcsStatusLanErrorsEntryRxTooShort OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanErrorsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.54.1.15 +lcsStatusLanErrorsEntryRxTooLong OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanErrorsEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.54.1.16 +lcsStatusLanErrorsEntryTxCarrier OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanErrorsEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.54.1.17 +lcsStatusLanErrorsEntryTxDeferred OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanErrorsEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.54.1.18 +lcsStatusLanErrorsEntryRxPhyErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanErrorsEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.54.1.19 +lcsStatusLanErrorsEntryRxFifoOverflow OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanErrorsEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.54.1.20 +lcsStatusLanErrorsEntryTxDiscarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanErrorsEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.54.1.21 +lcsStatusLanErrorsEntryRxDscrUnderflow OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanErrorsEntry 21 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.5.60 +lcsStatusLanLanQueueMgtDrop OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLan 60 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.5.70 +lcsStatusLanCableTest OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLan 70 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.5.71 +lcsStatusLanCableTestResultsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanCableTestResultsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLan 71 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.5.71.1 +lcsStatusLanCableTestResultsEntry OBJECT-TYPE + SYNTAX LcsStatusLanCableTestResultsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanCableTestResultsEntryIfc + } + ::= { lcsStatusLanCableTestResultsTable 1 } + +LcsStatusLanCableTestResultsEntry ::= SEQUENCE { + lcsStatusLanCableTestResultsEntryIfc INTEGER, + lcsStatusLanCableTestResultsEntryMdi0Status INTEGER, + lcsStatusLanCableTestResultsEntryMdi0Distance DisplayString, + lcsStatusLanCableTestResultsEntryMdi1Status INTEGER, + lcsStatusLanCableTestResultsEntryMdi1Distance DisplayString, + lcsStatusLanCableTestResultsEntryMdi2Status INTEGER, + lcsStatusLanCableTestResultsEntryMdi2Distance DisplayString, + lcsStatusLanCableTestResultsEntryMdi3Status INTEGER, + lcsStatusLanCableTestResultsEntryMdi3Distance DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.71.1.1 +lcsStatusLanCableTestResultsEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (1), + eLan2 (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanCableTestResultsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.71.1.6 +lcsStatusLanCableTestResultsEntryMdi0Status OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eOk (1), + eOpen (2), + eShort (3), + eImpedanceFault (4), + eFail (5), + eBusy (6), + eLinkUp (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanCableTestResultsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.71.1.7 +lcsStatusLanCableTestResultsEntryMdi0Distance OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanCableTestResultsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.71.1.8 +lcsStatusLanCableTestResultsEntryMdi1Status OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eOk (1), + eOpen (2), + eShort (3), + eImpedanceFault (4), + eFail (5), + eBusy (6), + eLinkUp (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanCableTestResultsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.71.1.9 +lcsStatusLanCableTestResultsEntryMdi1Distance OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanCableTestResultsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.71.1.10 +lcsStatusLanCableTestResultsEntryMdi2Status OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eOk (1), + eOpen (2), + eShort (3), + eImpedanceFault (4), + eFail (5), + eBusy (6), + eLinkUp (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanCableTestResultsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.71.1.11 +lcsStatusLanCableTestResultsEntryMdi2Distance OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanCableTestResultsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.71.1.12 +lcsStatusLanCableTestResultsEntryMdi3Status OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eOk (1), + eOpen (2), + eShort (3), + eImpedanceFault (4), + eFail (5), + eBusy (6), + eLinkUp (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanCableTestResultsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.71.1.13 +lcsStatusLanCableTestResultsEntryMdi3Distance OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanCableTestResultsEntry 13 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.5.80 +lcsStatusLanIeee8021x OBJECT IDENTIFIER ::= { lcsStatusLan 80 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.5.80.1 +lcsStatusLanIeee8021xSupplicantIfcStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanIeee8021xSupplicantIfcStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanIeee8021x 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.5.80.1.1 +lcsStatusLanIeee8021xSupplicantIfcStateEntry OBJECT-TYPE + SYNTAX LcsStatusLanIeee8021xSupplicantIfcStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanIeee8021xSupplicantIfcStateEntryIfc + } + ::= { lcsStatusLanIeee8021xSupplicantIfcStateTable 1 } + +LcsStatusLanIeee8021xSupplicantIfcStateEntry ::= SEQUENCE { + lcsStatusLanIeee8021xSupplicantIfcStateEntryIfc INTEGER, + lcsStatusLanIeee8021xSupplicantIfcStateEntryMethod INTEGER, + lcsStatusLanIeee8021xSupplicantIfcStateEntryState INTEGER, + lcsStatusLanIeee8021xSupplicantIfcStateEntryAuthenticatorAddress MacAddress + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.80.1.1.1 +lcsStatusLanIeee8021xSupplicantIfcStateEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (1), + eLan2 (2), + eLan3 (3), + eLan4 (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanIeee8021xSupplicantIfcStateEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.80.1.1.2 +lcsStatusLanIeee8021xSupplicantIfcStateEntryMethod OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eMd5 (1024), + eTls (3328), + eTtlsMd5 (5380), + eTtlsPap (5383), + eTtlsChap (5384), + eTtlsMschapv2 (5402), + eTtlsMschap (5567), + ePeapGtc (6406), + ePeapMschapv2 (6426) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanIeee8021xSupplicantIfcStateEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.80.1.1.3 +lcsStatusLanIeee8021xSupplicantIfcStateEntryState OBJECT-TYPE + SYNTAX INTEGER { + eIdle (0), + eUnauthorized (1), + eAuthorized (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanIeee8021xSupplicantIfcStateEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.80.1.1.4 +lcsStatusLanIeee8021xSupplicantIfcStateEntryAuthenticatorAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanIeee8021xSupplicantIfcStateEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.5.80.2 +lcsStatusLanIeee8021xAuthenticatorIfcStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanIeee8021xAuthenticatorIfcStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanIeee8021x 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.5.80.2.1 +lcsStatusLanIeee8021xAuthenticatorIfcStatusEntry OBJECT-TYPE + SYNTAX LcsStatusLanIeee8021xAuthenticatorIfcStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanIeee8021xAuthenticatorIfcStatusEntryIfc + } + ::= { lcsStatusLanIeee8021xAuthenticatorIfcStatusTable 1 } + +LcsStatusLanIeee8021xAuthenticatorIfcStatusEntry ::= SEQUENCE { + lcsStatusLanIeee8021xAuthenticatorIfcStatusEntryIfc INTEGER, + lcsStatusLanIeee8021xAuthenticatorIfcStatusEntryOperating INTEGER, + lcsStatusLanIeee8021xAuthenticatorIfcStatusEntryMode INTEGER, + lcsStatusLanIeee8021xAuthenticatorIfcStatusEntryState INTEGER, + lcsStatusLanIeee8021xAuthenticatorIfcStatusEntryMacAddress MacAddress, + lcsStatusLanIeee8021xAuthenticatorIfcStatusEntryAuthCount Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.80.2.1.1 +lcsStatusLanIeee8021xAuthenticatorIfcStatusEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (1), + eLan2 (2), + eLan3 (3), + eLan4 (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanIeee8021xAuthenticatorIfcStatusEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.80.2.1.2 +lcsStatusLanIeee8021xAuthenticatorIfcStatusEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanIeee8021xAuthenticatorIfcStatusEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.80.2.1.3 +lcsStatusLanIeee8021xAuthenticatorIfcStatusEntryMode OBJECT-TYPE + SYNTAX INTEGER { + eSingleHost (0), + eMultipleHost (1), + eMultipleAuth (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanIeee8021xAuthenticatorIfcStatusEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.80.2.1.4 +lcsStatusLanIeee8021xAuthenticatorIfcStatusEntryState OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eLinkLayerDown (1), + eOperating (2), + eUnauthenticated (3), + eAuthenticated (4), + eBlocked (5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanIeee8021xAuthenticatorIfcStatusEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.80.2.1.5 +lcsStatusLanIeee8021xAuthenticatorIfcStatusEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanIeee8021xAuthenticatorIfcStatusEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.80.2.1.6 +lcsStatusLanIeee8021xAuthenticatorIfcStatusEntryAuthCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanIeee8021xAuthenticatorIfcStatusEntry 6 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.5.81 +lcsStatusLanInterfaceBundling OBJECT IDENTIFIER ::= { lcsStatusLan 81 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.5.81.1 +lcsStatusLanInterfaceBundlingInterfacesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanInterfaceBundlingInterfacesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundling 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.5.81.1.1 +lcsStatusLanInterfaceBundlingInterfacesEntry OBJECT-TYPE + SYNTAX LcsStatusLanInterfaceBundlingInterfacesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanInterfaceBundlingInterfacesEntryInterface + } + ::= { lcsStatusLanInterfaceBundlingInterfacesTable 1 } + +LcsStatusLanInterfaceBundlingInterfacesEntry ::= SEQUENCE { + lcsStatusLanInterfaceBundlingInterfacesEntryInterface DisplayString, + lcsStatusLanInterfaceBundlingInterfacesEntryStatus INTEGER, + lcsStatusLanInterfaceBundlingInterfacesEntryInterfaceA INTEGER, + lcsStatusLanInterfaceBundlingInterfacesEntryInterfaceB INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.1.1.1 +lcsStatusLanInterfaceBundlingInterfacesEntryInterface OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingInterfacesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.1.1.2 +lcsStatusLanInterfaceBundlingInterfacesEntryStatus OBJECT-TYPE + SYNTAX INTEGER { + eIdle (0), + eConfigError (1), + eStatupError (2), + eRunning (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingInterfacesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.1.1.5 +lcsStatusLanInterfaceBundlingInterfacesEntryInterfaceA OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eLan1 (256), + eLan2 (257), + eWlan1 (512), + eWlan2 (513), + eP2p11 (768), + eP2p12 (769), + eP2p13 (770), + eP2p14 (771), + eP2p15 (772), + eP2p16 (773), + eP2p21 (774), + eP2p22 (775), + eP2p23 (776), + eP2p24 (777), + eP2p25 (778), + eP2p26 (779), + eP2p17 (799), + eP2p18 (800), + eP2p19 (801), + eP2p110 (802), + eP2p111 (803), + eP2p112 (804), + eP2p113 (805), + eP2p114 (806), + eP2p115 (807), + eP2p116 (808), + eP2p27 (831), + eP2p28 (832), + eP2p29 (833), + eP2p210 (834), + eP2p211 (835), + eP2p212 (836), + eP2p213 (837), + eP2p214 (838), + eP2p215 (839), + eP2p216 (840), + eWlan12 (1024), + eWlan13 (1025), + eWlan14 (1026), + eWlan15 (1027), + eWlan16 (1028), + eWlan17 (1029), + eWlan18 (1030), + eWlan22 (1031), + eWlan23 (1032), + eWlan24 (1033), + eWlan25 (1034), + eWlan26 (1035), + eWlan27 (1036), + eWlan28 (1037) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingInterfacesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.1.1.6 +lcsStatusLanInterfaceBundlingInterfacesEntryInterfaceB OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eLan1 (256), + eLan2 (257), + eWlan1 (512), + eWlan2 (513), + eP2p11 (768), + eP2p12 (769), + eP2p13 (770), + eP2p14 (771), + eP2p15 (772), + eP2p16 (773), + eP2p21 (774), + eP2p22 (775), + eP2p23 (776), + eP2p24 (777), + eP2p25 (778), + eP2p26 (779), + eP2p17 (799), + eP2p18 (800), + eP2p19 (801), + eP2p110 (802), + eP2p111 (803), + eP2p112 (804), + eP2p113 (805), + eP2p114 (806), + eP2p115 (807), + eP2p116 (808), + eP2p27 (831), + eP2p28 (832), + eP2p29 (833), + eP2p210 (834), + eP2p211 (835), + eP2p212 (836), + eP2p213 (837), + eP2p214 (838), + eP2p215 (839), + eP2p216 (840), + eWlan12 (1024), + eWlan13 (1025), + eWlan14 (1026), + eWlan15 (1027), + eWlan16 (1028), + eWlan17 (1029), + eWlan18 (1030), + eWlan22 (1031), + eWlan23 (1032), + eWlan24 (1033), + eWlan25 (1034), + eWlan26 (1035), + eWlan27 (1036), + eWlan28 (1037) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingInterfacesEntry 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.5.81.2 +lcsStatusLanInterfaceBundlingByteTransportTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanInterfaceBundlingByteTransportEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundling 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.5.81.2.1 +lcsStatusLanInterfaceBundlingByteTransportEntry OBJECT-TYPE + SYNTAX LcsStatusLanInterfaceBundlingByteTransportEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanInterfaceBundlingByteTransportEntryIfc + } + ::= { lcsStatusLanInterfaceBundlingByteTransportTable 1 } + +LcsStatusLanInterfaceBundlingByteTransportEntry ::= SEQUENCE { + lcsStatusLanInterfaceBundlingByteTransportEntryIfc DisplayString, + lcsStatusLanInterfaceBundlingByteTransportEntryTxBytes Counter64, + lcsStatusLanInterfaceBundlingByteTransportEntryRxBytes Counter64, + lcsStatusLanInterfaceBundlingByteTransportEntryThroughput DisplayString, + lcsStatusLanInterfaceBundlingByteTransportEntryMaxThroughput DisplayString, + lcsStatusLanInterfaceBundlingByteTransportEntryBytesThroughput Integer32, + lcsStatusLanInterfaceBundlingByteTransportEntryBytesMaxThrpt Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.2.1.1 +lcsStatusLanInterfaceBundlingByteTransportEntryIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingByteTransportEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.2.1.2 +lcsStatusLanInterfaceBundlingByteTransportEntryTxBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingByteTransportEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.2.1.3 +lcsStatusLanInterfaceBundlingByteTransportEntryRxBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingByteTransportEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.2.1.4 +lcsStatusLanInterfaceBundlingByteTransportEntryThroughput OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingByteTransportEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.2.1.5 +lcsStatusLanInterfaceBundlingByteTransportEntryMaxThroughput OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingByteTransportEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.2.1.6 +lcsStatusLanInterfaceBundlingByteTransportEntryBytesThroughput OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingByteTransportEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.2.1.7 +lcsStatusLanInterfaceBundlingByteTransportEntryBytesMaxThrpt OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanInterfaceBundlingByteTransportEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.5.81.3 +lcsStatusLanInterfaceBundlingPacketTransportTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanInterfaceBundlingPacketTransportEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundling 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.5.81.3.1 +lcsStatusLanInterfaceBundlingPacketTransportEntry OBJECT-TYPE + SYNTAX LcsStatusLanInterfaceBundlingPacketTransportEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanInterfaceBundlingPacketTransportEntryIfc + } + ::= { lcsStatusLanInterfaceBundlingPacketTransportTable 1 } + +LcsStatusLanInterfaceBundlingPacketTransportEntry ::= SEQUENCE { + lcsStatusLanInterfaceBundlingPacketTransportEntryIfc DisplayString, + lcsStatusLanInterfaceBundlingPacketTransportEntryRxPackets Counter32, + lcsStatusLanInterfaceBundlingPacketTransportEntryTxPackets Counter32, + lcsStatusLanInterfaceBundlingPacketTransportEntryRxBroadcasts Counter32, + lcsStatusLanInterfaceBundlingPacketTransportEntryRxMulticasts Counter32, + lcsStatusLanInterfaceBundlingPacketTransportEntryRxUnicasts Counter32, + lcsStatusLanInterfaceBundlingPacketTransportEntryTxBroadcasts Counter32, + lcsStatusLanInterfaceBundlingPacketTransportEntryTxMulticasts Counter32, + lcsStatusLanInterfaceBundlingPacketTransportEntryTxUnicasts Counter32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.3.1.1 +lcsStatusLanInterfaceBundlingPacketTransportEntryIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPacketTransportEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.3.1.2 +lcsStatusLanInterfaceBundlingPacketTransportEntryRxPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPacketTransportEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.3.1.3 +lcsStatusLanInterfaceBundlingPacketTransportEntryTxPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPacketTransportEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.3.1.4 +lcsStatusLanInterfaceBundlingPacketTransportEntryRxBroadcasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPacketTransportEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.3.1.5 +lcsStatusLanInterfaceBundlingPacketTransportEntryRxMulticasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPacketTransportEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.3.1.6 +lcsStatusLanInterfaceBundlingPacketTransportEntryRxUnicasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPacketTransportEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.3.1.7 +lcsStatusLanInterfaceBundlingPacketTransportEntryTxBroadcasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPacketTransportEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.3.1.8 +lcsStatusLanInterfaceBundlingPacketTransportEntryTxMulticasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPacketTransportEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.3.1.9 +lcsStatusLanInterfaceBundlingPacketTransportEntryTxUnicasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPacketTransportEntry 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.5.81.4 +lcsStatusLanInterfaceBundlingErrorsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanInterfaceBundlingErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundling 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.5.81.4.1 +lcsStatusLanInterfaceBundlingErrorsEntry OBJECT-TYPE + SYNTAX LcsStatusLanInterfaceBundlingErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanInterfaceBundlingErrorsEntryIfc + } + ::= { lcsStatusLanInterfaceBundlingErrorsTable 1 } + +LcsStatusLanInterfaceBundlingErrorsEntry ::= SEQUENCE { + lcsStatusLanInterfaceBundlingErrorsEntryIfc DisplayString, + lcsStatusLanInterfaceBundlingErrorsEntryTxDiscarded Counter32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.4.1.1 +lcsStatusLanInterfaceBundlingErrorsEntryIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingErrorsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.4.1.2 +lcsStatusLanInterfaceBundlingErrorsEntryTxDiscarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingErrorsEntry 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.5.81.11 +lcsStatusLanInterfaceBundlingPrp OBJECT IDENTIFIER ::= { lcsStatusLanInterfaceBundling 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.5.81.11.1 +lcsStatusLanInterfaceBundlingPrpInterfacesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanInterfaceBundlingPrpInterfacesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrp 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.5.81.11.1.1 +lcsStatusLanInterfaceBundlingPrpInterfacesEntry OBJECT-TYPE + SYNTAX LcsStatusLanInterfaceBundlingPrpInterfacesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanInterfaceBundlingPrpInterfacesEntryInterface + } + ::= { lcsStatusLanInterfaceBundlingPrpInterfacesTable 1 } + +LcsStatusLanInterfaceBundlingPrpInterfacesEntry ::= SEQUENCE { + lcsStatusLanInterfaceBundlingPrpInterfacesEntryInterface DisplayString, + lcsStatusLanInterfaceBundlingPrpInterfacesEntryCnterrora Integer32, + lcsStatusLanInterfaceBundlingPrpInterfacesEntryCnterrorb Integer32, + lcsStatusLanInterfaceBundlingPrpInterfacesEntryCntreceiveda Integer32, + lcsStatusLanInterfaceBundlingPrpInterfacesEntryCntreceivedb Integer32, + lcsStatusLanInterfaceBundlingPrpInterfacesEntryCnterrwronglana Integer32, + lcsStatusLanInterfaceBundlingPrpInterfacesEntryCnterrwronglanb Integer32, + lcsStatusLanInterfaceBundlingPrpInterfacesEntryActivea INTEGER, + lcsStatusLanInterfaceBundlingPrpInterfacesEntryActiveb INTEGER, + lcsStatusLanInterfaceBundlingPrpInterfacesEntryCntuniquea Integer32, + lcsStatusLanInterfaceBundlingPrpInterfacesEntryCntuniqueb Integer32, + lcsStatusLanInterfaceBundlingPrpInterfacesEntryCntduplicatea Integer32, + lcsStatusLanInterfaceBundlingPrpInterfacesEntryCntduplicateb Integer32, + lcsStatusLanInterfaceBundlingPrpInterfacesEntryCntmultia Integer32, + lcsStatusLanInterfaceBundlingPrpInterfacesEntryCntmultib Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.1.1.1 +lcsStatusLanInterfaceBundlingPrpInterfacesEntryInterface OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpInterfacesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.1.1.2 +lcsStatusLanInterfaceBundlingPrpInterfacesEntryCnterrora OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpInterfacesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.1.1.3 +lcsStatusLanInterfaceBundlingPrpInterfacesEntryCnterrorb OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpInterfacesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.1.1.4 +lcsStatusLanInterfaceBundlingPrpInterfacesEntryCntreceiveda OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpInterfacesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.1.1.5 +lcsStatusLanInterfaceBundlingPrpInterfacesEntryCntreceivedb OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpInterfacesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.1.1.6 +lcsStatusLanInterfaceBundlingPrpInterfacesEntryCnterrwronglana OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpInterfacesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.1.1.7 +lcsStatusLanInterfaceBundlingPrpInterfacesEntryCnterrwronglanb OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpInterfacesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.1.1.8 +lcsStatusLanInterfaceBundlingPrpInterfacesEntryActivea OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpInterfacesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.1.1.9 +lcsStatusLanInterfaceBundlingPrpInterfacesEntryActiveb OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpInterfacesEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.1.1.10 +lcsStatusLanInterfaceBundlingPrpInterfacesEntryCntuniquea OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpInterfacesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.1.1.11 +lcsStatusLanInterfaceBundlingPrpInterfacesEntryCntuniqueb OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpInterfacesEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.1.1.12 +lcsStatusLanInterfaceBundlingPrpInterfacesEntryCntduplicatea OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpInterfacesEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.1.1.13 +lcsStatusLanInterfaceBundlingPrpInterfacesEntryCntduplicateb OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpInterfacesEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.1.1.14 +lcsStatusLanInterfaceBundlingPrpInterfacesEntryCntmultia OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpInterfacesEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.1.1.15 +lcsStatusLanInterfaceBundlingPrpInterfacesEntryCntmultib OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpInterfacesEntry 15 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.5.81.11.2 +lcsStatusLanInterfaceBundlingPrpNodeTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanInterfaceBundlingPrpNodeTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrp 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.5.81.11.2.1 +lcsStatusLanInterfaceBundlingPrpNodeTableEntry OBJECT-TYPE + SYNTAX LcsStatusLanInterfaceBundlingPrpNodeTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanInterfaceBundlingPrpNodeTableEntryInterface, + lcsStatusLanInterfaceBundlingPrpNodeTableEntryMacAddress + } + ::= { lcsStatusLanInterfaceBundlingPrpNodeTableTable 1 } + +LcsStatusLanInterfaceBundlingPrpNodeTableEntry ::= SEQUENCE { + lcsStatusLanInterfaceBundlingPrpNodeTableEntryInterface DisplayString, + lcsStatusLanInterfaceBundlingPrpNodeTableEntryMacAddress MacAddress, + lcsStatusLanInterfaceBundlingPrpNodeTableEntryType INTEGER, + lcsStatusLanInterfaceBundlingPrpNodeTableEntryDuplicateMode INTEGER, + lcsStatusLanInterfaceBundlingPrpNodeTableEntryTimelastseena Integer32, + lcsStatusLanInterfaceBundlingPrpNodeTableEntryTimelastseenb Integer32, + lcsStatusLanInterfaceBundlingPrpNodeTableEntryCntreceiveda Integer32, + lcsStatusLanInterfaceBundlingPrpNodeTableEntryCntreceivedb Integer32, + lcsStatusLanInterfaceBundlingPrpNodeTableEntryCnterrwronglana Integer32, + lcsStatusLanInterfaceBundlingPrpNodeTableEntryCnterrwronglanb Integer32, + lcsStatusLanInterfaceBundlingPrpNodeTableEntryNumEntries Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.2.1.1 +lcsStatusLanInterfaceBundlingPrpNodeTableEntryInterface OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpNodeTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.2.1.2 +lcsStatusLanInterfaceBundlingPrpNodeTableEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpNodeTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.2.1.3 +lcsStatusLanInterfaceBundlingPrpNodeTableEntryType OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eSana (1), + eSanb (2), + eSanab (3), + eDanp (4), + eVdanp (5), + eRedboxp (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpNodeTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.2.1.4 +lcsStatusLanInterfaceBundlingPrpNodeTableEntryDuplicateMode OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eAccept (1), + eDiscard (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpNodeTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.2.1.5 +lcsStatusLanInterfaceBundlingPrpNodeTableEntryTimelastseena OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpNodeTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.2.1.6 +lcsStatusLanInterfaceBundlingPrpNodeTableEntryTimelastseenb OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpNodeTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.2.1.7 +lcsStatusLanInterfaceBundlingPrpNodeTableEntryCntreceiveda OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpNodeTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.2.1.8 +lcsStatusLanInterfaceBundlingPrpNodeTableEntryCntreceivedb OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpNodeTableEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.2.1.9 +lcsStatusLanInterfaceBundlingPrpNodeTableEntryCnterrwronglana OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpNodeTableEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.2.1.10 +lcsStatusLanInterfaceBundlingPrpNodeTableEntryCnterrwronglanb OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpNodeTableEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.2.1.11 +lcsStatusLanInterfaceBundlingPrpNodeTableEntryNumEntries OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpNodeTableEntry 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.5.81.11.3 +lcsStatusLanInterfaceBundlingPrpProxyNodeTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanInterfaceBundlingPrpProxyNodeTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrp 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.5.81.11.3.1 +lcsStatusLanInterfaceBundlingPrpProxyNodeTableEntry OBJECT-TYPE + SYNTAX LcsStatusLanInterfaceBundlingPrpProxyNodeTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanInterfaceBundlingPrpProxyNodeTableEntryInterface, + lcsStatusLanInterfaceBundlingPrpProxyNodeTableEntryMacAddress + } + ::= { lcsStatusLanInterfaceBundlingPrpProxyNodeTableTable 1 } + +LcsStatusLanInterfaceBundlingPrpProxyNodeTableEntry ::= SEQUENCE { + lcsStatusLanInterfaceBundlingPrpProxyNodeTableEntryInterface DisplayString, + lcsStatusLanInterfaceBundlingPrpProxyNodeTableEntryMacAddress MacAddress, + lcsStatusLanInterfaceBundlingPrpProxyNodeTableEntryTimelastseen Integer32, + lcsStatusLanInterfaceBundlingPrpProxyNodeTableEntryCntreceived Integer32, + lcsStatusLanInterfaceBundlingPrpProxyNodeTableEntryTxseqnum Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.3.1.1 +lcsStatusLanInterfaceBundlingPrpProxyNodeTableEntryInterface OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpProxyNodeTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.3.1.2 +lcsStatusLanInterfaceBundlingPrpProxyNodeTableEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpProxyNodeTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.3.1.3 +lcsStatusLanInterfaceBundlingPrpProxyNodeTableEntryTimelastseen OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpProxyNodeTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.3.1.4 +lcsStatusLanInterfaceBundlingPrpProxyNodeTableEntryCntreceived OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpProxyNodeTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.81.11.3.1.5 +lcsStatusLanInterfaceBundlingPrpProxyNodeTableEntryTxseqnum OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrpProxyNodeTableEntry 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.5.81.11.99 +lcsStatusLanInterfaceBundlingPrpDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundlingPrp 99 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.5.81.99 +lcsStatusLanInterfaceBundlingDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanInterfaceBundling 99 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.5.90 +lcsStatusLanStationTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanStationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLan 90 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.5.90.1 +lcsStatusLanStationTableEntry OBJECT-TYPE + SYNTAX LcsStatusLanStationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanStationTableEntryInterface, + lcsStatusLanStationTableEntryMacAddress + } + ::= { lcsStatusLanStationTableTable 1 } + +LcsStatusLanStationTableEntry ::= SEQUENCE { + lcsStatusLanStationTableEntryMacAddress MacAddress, + lcsStatusLanStationTableEntryInterface INTEGER, + lcsStatusLanStationTableEntryTxLimit Integer32, + lcsStatusLanStationTableEntryRxLimit Integer32, + lcsStatusLanStationTableEntryVlanId Integer32, + lcsStatusLanStationTableEntryOrigVlanId Integer32, + lcsStatusLanStationTableEntryAuthenticated INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.90.1.1 +lcsStatusLanStationTableEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanStationTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.90.1.2 +lcsStatusLanStationTableEntryInterface OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (256), + eLan2 (257), + eLan3 (258), + eLan4 (259), + eLan5 (260), + eWlan1 (512), + eWlan2 (513), + eP2p11 (768), + eP2p12 (769), + eP2p13 (770), + eP2p14 (771), + eP2p15 (772), + eP2p16 (773), + eP2p21 (774), + eP2p22 (775), + eP2p23 (776), + eP2p24 (777), + eP2p25 (778), + eP2p26 (779), + eP2p17 (799), + eP2p18 (800), + eP2p19 (801), + eP2p110 (802), + eP2p111 (803), + eP2p112 (804), + eP2p113 (805), + eP2p114 (806), + eP2p115 (807), + eP2p116 (808), + eP2p27 (831), + eP2p28 (832), + eP2p29 (833), + eP2p210 (834), + eP2p211 (835), + eP2p212 (836), + eP2p213 (837), + eP2p214 (838), + eP2p215 (839), + eP2p216 (840), + eWlan12 (1024), + eWlan13 (1025), + eWlan14 (1026), + eWlan15 (1027), + eWlan16 (1028), + eWlan17 (1029), + eWlan18 (1030), + eWlan22 (1031), + eWlan23 (1032), + eWlan24 (1033), + eWlan25 (1034), + eWlan26 (1035), + eWlan27 (1036), + eWlan28 (1037), + eBrg1 (1536), + eBrg2 (1537), + eBrg3 (1538), + eBrg4 (1539), + eBrg5 (1540), + eBrg6 (1541), + eBrg7 (1542), + eBrg8 (1543), + eWlcTunnel1 (1792), + eWlcTunnel2 (1793), + eWlcTunnel3 (1794), + eWlcTunnel4 (1795), + eWlcTunnel5 (1796), + eWlcTunnel6 (1797), + eWlcTunnel7 (1798), + eWlcTunnel8 (1799), + eWlcTunnel9 (1800), + eWlcTunnel10 (1801), + eWlcTunnel11 (1802), + eWlcTunnel12 (1803), + eWlcTunnel13 (1804), + eWlcTunnel14 (1805), + eWlcTunnel15 (1806), + eWlcTunnel16 (1807), + eWlcTunnel17 (1808), + eWlcTunnel18 (1809), + eWlcTunnel19 (1810), + eWlcTunnel20 (1811), + eWlcTunnel21 (1812), + eWlcTunnel22 (1813), + eWlcTunnel23 (1814), + eWlcTunnel24 (1815), + eWlcTunnel25 (1816), + eWlcTunnel26 (1817), + eWlcTunnel27 (1818), + eWlcTunnel28 (1819), + eWlcTunnel29 (1820), + eWlcTunnel30 (1821), + eWlcTunnel31 (1822), + eWlcTunnel32 (1823), + eWlcTunnelAutowds (1824), + eBundle1 (2048), + eBundle2 (2049), + eAny (65535) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanStationTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.90.1.3 +lcsStatusLanStationTableEntryTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanStationTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.90.1.4 +lcsStatusLanStationTableEntryRxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanStationTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.90.1.5 +lcsStatusLanStationTableEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanStationTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.90.1.6 +lcsStatusLanStationTableEntryOrigVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanStationTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.5.90.1.7 +lcsStatusLanStationTableEntryAuthenticated OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanStationTableEntry 7 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.6 +lcsStatusPpp OBJECT IDENTIFIER ::= { lcsStatus 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.6.1 +lcsStatusPppPppPhasesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusPppPppPhasesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPpp 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.6.1.1 +lcsStatusPppPppPhasesEntry OBJECT-TYPE + SYNTAX LcsStatusPppPppPhasesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusPppPppPhasesEntryIfc + } + ::= { lcsStatusPppPppPhasesTable 1 } + +LcsStatusPppPppPhasesEntry ::= SEQUENCE { + lcsStatusPppPppPhasesEntryIfc INTEGER, + lcsStatusPppPppPhasesEntryPhaseTo INTEGER, + lcsStatusPppPppPhasesEntryLcp INTEGER, + lcsStatusPppPppPhasesEntryIpcp INTEGER, + lcsStatusPppPppPhasesEntryCcp INTEGER, + lcsStatusPppPppPhasesEntryBacp INTEGER, + lcsStatusPppPppPhasesEntryIpv6cp INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.1.1.1 +lcsStatusPppPppPhasesEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eCh01 (257), + eCh02 (258), + eModem (513), + eDslCh1 (2049), + eDslCh2 (2050), + eDslCh3 (2051), + eDslCh4 (2052), + eDslCh5 (2053), + eDslCh6 (2054), + eDslCh7 (2055), + eDslCh8 (2056), + eAdsl1 (8193), + eAdsl2 (8194), + eAdsl3 (8195), + eAdsl4 (8196), + eAdsl5 (8197), + eAdsl6 (8198), + eAdsl7 (8199), + eAdsl8 (8200), + eVdsl1 (16385), + eVdsl2 (16386), + eVdsl3 (16387), + eVdsl4 (16388), + eVdsl5 (16389), + eVdsl6 (16390), + eVdsl7 (16391), + eVdsl8 (16392) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppPppPhasesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.1.1.2 +lcsStatusPppPppPhasesEntryPhaseTo OBJECT-TYPE + SYNTAX INTEGER { + eDead (1), + eEstablish (2), + eTerminate (3), + eAuthenticate (4), + eCallback (5), + eNetwork (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppPppPhasesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.1.1.3 +lcsStatusPppPppPhasesEntryLcp OBJECT-TYPE + SYNTAX INTEGER { + eInitial (1), + eStartng (2), + eClosed (3), + eStopped (4), + eClosing (5), + eStoppng (6), + eReqsent (7), + eAckrcvd (8), + eAcksent (9), + eOpened (10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppPppPhasesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.1.1.4 +lcsStatusPppPppPhasesEntryIpcp OBJECT-TYPE + SYNTAX INTEGER { + eInitial (1), + eStartng (2), + eClosed (3), + eStopped (4), + eClosing (5), + eStoppng (6), + eReqsent (7), + eAckrcvd (8), + eAcksent (9), + eOpened (10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppPppPhasesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.1.1.6 +lcsStatusPppPppPhasesEntryCcp OBJECT-TYPE + SYNTAX INTEGER { + eInitial (1), + eStartng (2), + eClosed (3), + eStopped (4), + eClosing (5), + eStoppng (6), + eReqsent (7), + eAckrcvd (8), + eAcksent (9), + eOpened (10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppPppPhasesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.1.1.7 +lcsStatusPppPppPhasesEntryBacp OBJECT-TYPE + SYNTAX INTEGER { + eInitial (1), + eStartng (2), + eClosed (3), + eStopped (4), + eClosing (5), + eStoppng (6), + eReqsent (7), + eAckrcvd (8), + eAcksent (9), + eOpened (10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppPppPhasesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.1.1.8 +lcsStatusPppPppPhasesEntryIpv6cp OBJECT-TYPE + SYNTAX INTEGER { + eInitial (1), + eStartng (2), + eClosed (3), + eStopped (4), + eClosing (5), + eStoppng (6), + eReqsent (7), + eAckrcvd (8), + eAcksent (9), + eOpened (10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppPppPhasesEntry 8 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.6.2 +lcsStatusPppLcp OBJECT IDENTIFIER ::= { lcsStatusPpp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.1 +lcsStatusPppLcpRxErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.2 +lcsStatusPppLcpRxDiscarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.3 +lcsStatusPppLcpRxConfigRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.4 +lcsStatusPppLcpRxConfigAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.5 +lcsStatusPppLcpRxConfigNak OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.6 +lcsStatusPppLcpRxConfigReject OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.7 +lcsStatusPppLcpRxTerminateRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.8 +lcsStatusPppLcpRxTerminateAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.9 +lcsStatusPppLcpRxCodeReject OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.10 +lcsStatusPppLcpRxProtocolReject OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.11 +lcsStatusPppLcpRxEchoRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.12 +lcsStatusPppLcpRxEchoReply OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.13 +lcsStatusPppLcpRxDiscardRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.14 +lcsStatusPppLcpTxConfigRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.15 +lcsStatusPppLcpTxConfigAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.16 +lcsStatusPppLcpTxConfigNak OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 16 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.17 +lcsStatusPppLcpTxConfigReject OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 17 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.18 +lcsStatusPppLcpTxTerminateRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 18 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.19 +lcsStatusPppLcpTxTerminateAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 19 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.20 +lcsStatusPppLcpTxCodeReject OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 20 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.21 +lcsStatusPppLcpTxProtocolReject OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 21 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.22 +lcsStatusPppLcpTxEchoRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 22 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.23 +lcsStatusPppLcpTxEchoReply OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 23 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.24 +lcsStatusPppLcpTxDiscardRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 24 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.2.25 +lcsStatusPppLcpDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppLcp 25 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.6.3 +lcsStatusPppPap OBJECT IDENTIFIER ::= { lcsStatusPpp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.3.1 +lcsStatusPppPapRxDiscarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppPap 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.3.2 +lcsStatusPppPapRxRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppPap 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.3.3 +lcsStatusPppPapRxSuccess OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppPap 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.3.4 +lcsStatusPppPapRxFailure OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppPap 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.3.5 +lcsStatusPppPapTxRetry OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppPap 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.3.6 +lcsStatusPppPapTxRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppPap 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.3.7 +lcsStatusPppPapTxSuccess OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppPap 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.3.8 +lcsStatusPppPapTxFailure OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppPap 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.3.9 +lcsStatusPppPapDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppPap 9 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.6.4 +lcsStatusPppChap OBJECT IDENTIFIER ::= { lcsStatusPpp 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.4.1 +lcsStatusPppChapRxDiscarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppChap 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.4.2 +lcsStatusPppChapRxChallenge OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppChap 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.4.3 +lcsStatusPppChapRxResponse OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppChap 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.4.4 +lcsStatusPppChapRxSuccess OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppChap 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.4.5 +lcsStatusPppChapRxFailure OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppChap 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.4.6 +lcsStatusPppChapTxRetry OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppChap 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.4.7 +lcsStatusPppChapTxChallenge OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppChap 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.4.8 +lcsStatusPppChapTxResponse OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppChap 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.4.9 +lcsStatusPppChapTxSuccess OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppChap 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.4.10 +lcsStatusPppChapTxFailure OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppChap 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.4.11 +lcsStatusPppChapDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppChap 11 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.6.6 +lcsStatusPppIpcp OBJECT IDENTIFIER ::= { lcsStatusPpp 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.6.1 +lcsStatusPppIpcpRxDiscarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppIpcp 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.6.2 +lcsStatusPppIpcpRxConfigRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppIpcp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.6.3 +lcsStatusPppIpcpRxConfigAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppIpcp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.6.4 +lcsStatusPppIpcpRxConfigNak OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppIpcp 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.6.5 +lcsStatusPppIpcpRxConfigReject OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppIpcp 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.6.6 +lcsStatusPppIpcpRxTerminateRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppIpcp 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.6.7 +lcsStatusPppIpcpRxTerminateAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppIpcp 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.6.8 +lcsStatusPppIpcpRxCodeReject OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppIpcp 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.6.9 +lcsStatusPppIpcpTxConfigRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppIpcp 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.6.10 +lcsStatusPppIpcpTxConfigAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppIpcp 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.6.11 +lcsStatusPppIpcpTxConfigNak OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppIpcp 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.6.12 +lcsStatusPppIpcpTxConfigReject OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppIpcp 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.6.13 +lcsStatusPppIpcpTxTerminateRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppIpcp 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.6.14 +lcsStatusPppIpcpTxTerminateAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppIpcp 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.6.15 +lcsStatusPppIpcpTxCodeReject OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppIpcp 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.6.16 +lcsStatusPppIpcpDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppIpcp 16 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.6.7 +lcsStatusPppCbcp OBJECT IDENTIFIER ::= { lcsStatusPpp 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.7.1 +lcsStatusPppCbcpRxDiscarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCbcp 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.7.2 +lcsStatusPppCbcpRxRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCbcp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.7.3 +lcsStatusPppCbcpRxResponse OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCbcp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.7.4 +lcsStatusPppCbcpRxAcknowledge OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCbcp 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.7.5 +lcsStatusPppCbcpTxRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCbcp 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.7.6 +lcsStatusPppCbcpTxResponse OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCbcp 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.7.7 +lcsStatusPppCbcpTxAcknowledge OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCbcp 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.7.8 +lcsStatusPppCbcpDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCbcp 8 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.6.8 +lcsStatusPppRxOptions OBJECT IDENTIFIER ::= { lcsStatusPpp 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.6.8.1 +lcsStatusPppRxOptionsLcpTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusPppRxOptionsLcpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppRxOptions 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.6.8.1.1 +lcsStatusPppRxOptionsLcpEntry OBJECT-TYPE + SYNTAX LcsStatusPppRxOptionsLcpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusPppRxOptionsLcpEntryIfc + } + ::= { lcsStatusPppRxOptionsLcpTable 1 } + +LcsStatusPppRxOptionsLcpEntry ::= SEQUENCE { + lcsStatusPppRxOptionsLcpEntryIfc INTEGER, + lcsStatusPppRxOptionsLcpEntryMru Integer32, + lcsStatusPppRxOptionsLcpEntryAccm DisplayString, + lcsStatusPppRxOptionsLcpEntryAuthentRequest INTEGER, + lcsStatusPppRxOptionsLcpEntryCallBack INTEGER, + lcsStatusPppRxOptionsLcpEntryMagicNum DisplayString, + lcsStatusPppRxOptionsLcpEntryPfc INTEGER, + lcsStatusPppRxOptionsLcpEntryAcfc INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.8.1.1.1 +lcsStatusPppRxOptionsLcpEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eCh01 (257), + eCh02 (258), + eModem (513), + eDslCh1 (2049), + eDslCh2 (2050), + eDslCh3 (2051), + eDslCh4 (2052), + eDslCh5 (2053), + eDslCh6 (2054), + eDslCh7 (2055), + eDslCh8 (2056), + eAdsl1 (8193), + eAdsl2 (8194), + eAdsl3 (8195), + eAdsl4 (8196), + eAdsl5 (8197), + eAdsl6 (8198), + eAdsl7 (8199), + eAdsl8 (8200), + eVdsl1 (16385), + eVdsl2 (16386), + eVdsl3 (16387), + eVdsl4 (16388), + eVdsl5 (16389), + eVdsl6 (16390), + eVdsl7 (16391), + eVdsl8 (16392) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppRxOptionsLcpEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.8.1.1.2 +lcsStatusPppRxOptionsLcpEntryMru OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppRxOptionsLcpEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.8.1.1.3 +lcsStatusPppRxOptionsLcpEntryAccm OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppRxOptionsLcpEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.8.1.1.4 +lcsStatusPppRxOptionsLcpEntryAuthentRequest OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + ePap (4), + eChap (8), + eMsChap (16), + eMsChapv2 (32) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppRxOptionsLcpEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.8.1.1.5 +lcsStatusPppRxOptionsLcpEntryCallBack OBJECT-TYPE + SYNTAX INTEGER { + eLcpCbAdm (0), + eLcpCbUsr (1), + eLcpCbNameAuth (2), + eLcpCbE164 (3), + eLcpCbHost (4), + eLcpCb (5), + eLcpMsCBCP (6), + eNone (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppRxOptionsLcpEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.8.1.1.6 +lcsStatusPppRxOptionsLcpEntryMagicNum OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppRxOptionsLcpEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.8.1.1.7 +lcsStatusPppRxOptionsLcpEntryPfc OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppRxOptionsLcpEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.8.1.1.8 +lcsStatusPppRxOptionsLcpEntryAcfc OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppRxOptionsLcpEntry 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.6.8.3 +lcsStatusPppRxOptionsIpcpTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusPppRxOptionsIpcpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppRxOptions 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.6.8.3.1 +lcsStatusPppRxOptionsIpcpEntry OBJECT-TYPE + SYNTAX LcsStatusPppRxOptionsIpcpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusPppRxOptionsIpcpEntryIfc + } + ::= { lcsStatusPppRxOptionsIpcpTable 1 } + +LcsStatusPppRxOptionsIpcpEntry ::= SEQUENCE { + lcsStatusPppRxOptionsIpcpEntryIfc INTEGER, + lcsStatusPppRxOptionsIpcpEntryIpAddress IpAddress, + lcsStatusPppRxOptionsIpcpEntryDnsDefault IpAddress, + lcsStatusPppRxOptionsIpcpEntryNbnsDefault IpAddress, + lcsStatusPppRxOptionsIpcpEntryDnsBackup IpAddress, + lcsStatusPppRxOptionsIpcpEntryNbnsBackup IpAddress + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.8.3.1.1 +lcsStatusPppRxOptionsIpcpEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eCh01 (257), + eCh02 (258), + eModem (513), + eDslCh1 (2049), + eDslCh2 (2050), + eDslCh3 (2051), + eDslCh4 (2052), + eDslCh5 (2053), + eDslCh6 (2054), + eDslCh7 (2055), + eDslCh8 (2056), + eAdsl1 (8193), + eAdsl2 (8194), + eAdsl3 (8195), + eAdsl4 (8196), + eAdsl5 (8197), + eAdsl6 (8198), + eAdsl7 (8199), + eAdsl8 (8200), + eVdsl1 (16385), + eVdsl2 (16386), + eVdsl3 (16387), + eVdsl4 (16388), + eVdsl5 (16389), + eVdsl6 (16390), + eVdsl7 (16391), + eVdsl8 (16392) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppRxOptionsIpcpEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.8.3.1.2 +lcsStatusPppRxOptionsIpcpEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppRxOptionsIpcpEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.8.3.1.3 +lcsStatusPppRxOptionsIpcpEntryDnsDefault OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppRxOptionsIpcpEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.8.3.1.4 +lcsStatusPppRxOptionsIpcpEntryNbnsDefault OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppRxOptionsIpcpEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.8.3.1.5 +lcsStatusPppRxOptionsIpcpEntryDnsBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppRxOptionsIpcpEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.8.3.1.6 +lcsStatusPppRxOptionsIpcpEntryNbnsBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppRxOptionsIpcpEntry 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.6.8.4 +lcsStatusPppRxOptionsIpv6cpTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusPppRxOptionsIpv6cpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppRxOptions 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.6.8.4.1 +lcsStatusPppRxOptionsIpv6cpEntry OBJECT-TYPE + SYNTAX LcsStatusPppRxOptionsIpv6cpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusPppRxOptionsIpv6cpEntryIfc + } + ::= { lcsStatusPppRxOptionsIpv6cpTable 1 } + +LcsStatusPppRxOptionsIpv6cpEntry ::= SEQUENCE { + lcsStatusPppRxOptionsIpv6cpEntryIfc INTEGER, + lcsStatusPppRxOptionsIpv6cpEntryIdentifier Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.8.4.1.1 +lcsStatusPppRxOptionsIpv6cpEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eCh01 (257), + eCh02 (258), + eModem (513), + eDslCh1 (2049), + eDslCh2 (2050), + eDslCh3 (2051), + eDslCh4 (2052), + eDslCh5 (2053), + eDslCh6 (2054), + eDslCh7 (2055), + eDslCh8 (2056), + eAdsl1 (8193), + eAdsl2 (8194), + eAdsl3 (8195), + eAdsl4 (8196), + eAdsl5 (8197), + eAdsl6 (8198), + eAdsl7 (8199), + eAdsl8 (8200), + eVdsl1 (16385), + eVdsl2 (16386), + eVdsl3 (16387), + eVdsl4 (16388), + eVdsl5 (16389), + eVdsl6 (16390), + eVdsl7 (16391), + eVdsl8 (16392) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppRxOptionsIpv6cpEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.8.4.1.2 +lcsStatusPppRxOptionsIpv6cpEntryIdentifier OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppRxOptionsIpv6cpEntry 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.6.9 +lcsStatusPppTxOptions OBJECT IDENTIFIER ::= { lcsStatusPpp 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.6.9.1 +lcsStatusPppTxOptionsLcpTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusPppTxOptionsLcpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppTxOptions 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.6.9.1.1 +lcsStatusPppTxOptionsLcpEntry OBJECT-TYPE + SYNTAX LcsStatusPppTxOptionsLcpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusPppTxOptionsLcpEntryIfc + } + ::= { lcsStatusPppTxOptionsLcpTable 1 } + +LcsStatusPppTxOptionsLcpEntry ::= SEQUENCE { + lcsStatusPppTxOptionsLcpEntryIfc INTEGER, + lcsStatusPppTxOptionsLcpEntryMru Integer32, + lcsStatusPppTxOptionsLcpEntryAccm DisplayString, + lcsStatusPppTxOptionsLcpEntryAuthentRequest INTEGER, + lcsStatusPppTxOptionsLcpEntryCallBack INTEGER, + lcsStatusPppTxOptionsLcpEntryMagicNum DisplayString, + lcsStatusPppTxOptionsLcpEntryPfc INTEGER, + lcsStatusPppTxOptionsLcpEntryAcfc INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.9.1.1.1 +lcsStatusPppTxOptionsLcpEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eCh01 (257), + eCh02 (258), + eModem (513), + eDslCh1 (2049), + eDslCh2 (2050), + eDslCh3 (2051), + eDslCh4 (2052), + eDslCh5 (2053), + eDslCh6 (2054), + eDslCh7 (2055), + eDslCh8 (2056), + eAdsl1 (8193), + eAdsl2 (8194), + eAdsl3 (8195), + eAdsl4 (8196), + eAdsl5 (8197), + eAdsl6 (8198), + eAdsl7 (8199), + eAdsl8 (8200), + eVdsl1 (16385), + eVdsl2 (16386), + eVdsl3 (16387), + eVdsl4 (16388), + eVdsl5 (16389), + eVdsl6 (16390), + eVdsl7 (16391), + eVdsl8 (16392) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppTxOptionsLcpEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.9.1.1.2 +lcsStatusPppTxOptionsLcpEntryMru OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppTxOptionsLcpEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.9.1.1.3 +lcsStatusPppTxOptionsLcpEntryAccm OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppTxOptionsLcpEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.9.1.1.4 +lcsStatusPppTxOptionsLcpEntryAuthentRequest OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + ePap (4), + eChap (8), + eMsChap (16), + eMsChapv2 (32) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppTxOptionsLcpEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.9.1.1.5 +lcsStatusPppTxOptionsLcpEntryCallBack OBJECT-TYPE + SYNTAX INTEGER { + eLcpCbAdm (0), + eLcpCbUsr (1), + eLcpCbNameAuth (2), + eLcpCbE164 (3), + eLcpCbHost (4), + eLcpCb (5), + eLcpMsCBCP (6), + eNone (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppTxOptionsLcpEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.9.1.1.6 +lcsStatusPppTxOptionsLcpEntryMagicNum OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppTxOptionsLcpEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.9.1.1.7 +lcsStatusPppTxOptionsLcpEntryPfc OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppTxOptionsLcpEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.9.1.1.8 +lcsStatusPppTxOptionsLcpEntryAcfc OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppTxOptionsLcpEntry 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.6.9.3 +lcsStatusPppTxOptionsIpcpTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusPppTxOptionsIpcpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppTxOptions 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.6.9.3.1 +lcsStatusPppTxOptionsIpcpEntry OBJECT-TYPE + SYNTAX LcsStatusPppTxOptionsIpcpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusPppTxOptionsIpcpEntryIfc + } + ::= { lcsStatusPppTxOptionsIpcpTable 1 } + +LcsStatusPppTxOptionsIpcpEntry ::= SEQUENCE { + lcsStatusPppTxOptionsIpcpEntryIfc INTEGER, + lcsStatusPppTxOptionsIpcpEntryIpAddress IpAddress, + lcsStatusPppTxOptionsIpcpEntryDnsDefault IpAddress, + lcsStatusPppTxOptionsIpcpEntryNbnsDefault IpAddress, + lcsStatusPppTxOptionsIpcpEntryDnsBackup IpAddress, + lcsStatusPppTxOptionsIpcpEntryNbnsBackup IpAddress + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.9.3.1.1 +lcsStatusPppTxOptionsIpcpEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eCh01 (257), + eCh02 (258), + eModem (513), + eDslCh1 (2049), + eDslCh2 (2050), + eDslCh3 (2051), + eDslCh4 (2052), + eDslCh5 (2053), + eDslCh6 (2054), + eDslCh7 (2055), + eDslCh8 (2056), + eAdsl1 (8193), + eAdsl2 (8194), + eAdsl3 (8195), + eAdsl4 (8196), + eAdsl5 (8197), + eAdsl6 (8198), + eAdsl7 (8199), + eAdsl8 (8200), + eVdsl1 (16385), + eVdsl2 (16386), + eVdsl3 (16387), + eVdsl4 (16388), + eVdsl5 (16389), + eVdsl6 (16390), + eVdsl7 (16391), + eVdsl8 (16392) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppTxOptionsIpcpEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.9.3.1.2 +lcsStatusPppTxOptionsIpcpEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppTxOptionsIpcpEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.9.3.1.3 +lcsStatusPppTxOptionsIpcpEntryDnsDefault OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppTxOptionsIpcpEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.9.3.1.4 +lcsStatusPppTxOptionsIpcpEntryNbnsDefault OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppTxOptionsIpcpEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.9.3.1.5 +lcsStatusPppTxOptionsIpcpEntryDnsBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppTxOptionsIpcpEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.9.3.1.6 +lcsStatusPppTxOptionsIpcpEntryNbnsBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppTxOptionsIpcpEntry 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.6.9.4 +lcsStatusPppTxOptionsIpv6cpTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusPppTxOptionsIpv6cpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppTxOptions 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.6.9.4.1 +lcsStatusPppTxOptionsIpv6cpEntry OBJECT-TYPE + SYNTAX LcsStatusPppTxOptionsIpv6cpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusPppTxOptionsIpv6cpEntryIfc + } + ::= { lcsStatusPppTxOptionsIpv6cpTable 1 } + +LcsStatusPppTxOptionsIpv6cpEntry ::= SEQUENCE { + lcsStatusPppTxOptionsIpv6cpEntryIfc INTEGER, + lcsStatusPppTxOptionsIpv6cpEntryIdentifier Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.9.4.1.1 +lcsStatusPppTxOptionsIpv6cpEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eCh01 (257), + eCh02 (258), + eModem (513), + eDslCh1 (2049), + eDslCh2 (2050), + eDslCh3 (2051), + eDslCh4 (2052), + eDslCh5 (2053), + eDslCh6 (2054), + eDslCh7 (2055), + eDslCh8 (2056), + eAdsl1 (8193), + eAdsl2 (8194), + eAdsl3 (8195), + eAdsl4 (8196), + eAdsl5 (8197), + eAdsl6 (8198), + eAdsl7 (8199), + eAdsl8 (8200), + eVdsl1 (16385), + eVdsl2 (16386), + eVdsl3 (16387), + eVdsl4 (16388), + eVdsl5 (16389), + eVdsl6 (16390), + eVdsl7 (16391), + eVdsl8 (16392) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppTxOptionsIpv6cpEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.6.9.4.1.2 +lcsStatusPppTxOptionsIpv6cpEntryIdentifier OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppTxOptionsIpv6cpEntry 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.6.10 +lcsStatusPppCcp OBJECT IDENTIFIER ::= { lcsStatusPpp 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.10.1 +lcsStatusPppCcpRxDiscarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCcp 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.10.2 +lcsStatusPppCcpRxConfigRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCcp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.10.3 +lcsStatusPppCcpRxConfigAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCcp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.10.4 +lcsStatusPppCcpRxConfigNak OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCcp 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.10.5 +lcsStatusPppCcpRxConfigReject OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCcp 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.10.6 +lcsStatusPppCcpRxTerminateRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCcp 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.10.7 +lcsStatusPppCcpRxTerminateAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCcp 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.10.8 +lcsStatusPppCcpRxCodeReject OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCcp 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.10.9 +lcsStatusPppCcpRxResetRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCcp 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.10.10 +lcsStatusPppCcpRxResetAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCcp 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.10.11 +lcsStatusPppCcpTxConfigRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCcp 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.10.12 +lcsStatusPppCcpTxConfigAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCcp 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.10.13 +lcsStatusPppCcpTxConfigNak OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCcp 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.10.14 +lcsStatusPppCcpTxConfigReject OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCcp 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.10.15 +lcsStatusPppCcpTxTerminateRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCcp 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.10.16 +lcsStatusPppCcpTxTerminateAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCcp 16 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.10.17 +lcsStatusPppCcpTxCodeReject OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCcp 17 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.10.19 +lcsStatusPppCcpTxResetRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCcp 19 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.10.20 +lcsStatusPppCcpTxResetAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCcp 20 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.10.21 +lcsStatusPppCcpDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCcp 21 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.10.22 +lcsStatusPppCcpCompressionErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppCcp 22 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.6.11 +lcsStatusPppMl OBJECT IDENTIFIER ::= { lcsStatusPpp 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.11.1 +lcsStatusPppMlBundleConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppMl 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.11.2 +lcsStatusPppMlRxSeqLost OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppMl 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.11.3 +lcsStatusPppMlRxSeqRepeat OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppMl 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.11.4 +lcsStatusPppMlRxMrruExceeded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppMl 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.11.5 +lcsStatusPppMlRxHeaderError OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppMl 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.11.6 +lcsStatusPppMlRxDiscarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppMl 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.11.7 +lcsStatusPppMlRxFragStart OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppMl 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.11.8 +lcsStatusPppMlRxFragMid OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppMl 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.11.9 +lcsStatusPppMlRxFragEnd OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppMl 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.11.10 +lcsStatusPppMlRxNotFragmented OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppMl 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.11.11 +lcsStatusPppMlDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppMl 11 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.6.12 +lcsStatusPppBacp OBJECT IDENTIFIER ::= { lcsStatusPpp 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.12.1 +lcsStatusPppBacpRxErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppBacp 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.12.2 +lcsStatusPppBacpRxDiscarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppBacp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.12.3 +lcsStatusPppBacpRxCallRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppBacp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.12.4 +lcsStatusPppBacpRxCallResponse OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppBacp 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.12.5 +lcsStatusPppBacpRxCallbackRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppBacp 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.12.6 +lcsStatusPppBacpRxCallbackResponse OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppBacp 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.12.7 +lcsStatusPppBacpRxLinkDropRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppBacp 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.12.8 +lcsStatusPppBacpRxLinkDropResponse OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppBacp 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.12.9 +lcsStatusPppBacpRxStatusIndication OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppBacp 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.12.10 +lcsStatusPppBacpRxStatusResponse OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppBacp 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.12.11 +lcsStatusPppBacpTxCallRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppBacp 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.12.12 +lcsStatusPppBacpTxCallResponse OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppBacp 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.12.13 +lcsStatusPppBacpTxCallbackRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppBacp 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.12.14 +lcsStatusPppBacpTxCallbackResponse OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppBacp 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.12.15 +lcsStatusPppBacpTxLinkDropRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppBacp 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.12.16 +lcsStatusPppBacpTxLinkDropResponse OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppBacp 16 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.12.17 +lcsStatusPppBacpTxStatusIndication OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppBacp 17 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.12.18 +lcsStatusPppBacpTxStatusResponse OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppBacp 18 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.12.19 +lcsStatusPppBacpDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppBacp 19 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.13 +lcsStatusPppDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPpp 13 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.6.14 +lcsStatusPppIpv6cp OBJECT IDENTIFIER ::= { lcsStatusPpp 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.14.1 +lcsStatusPppIpv6cpRxDiscarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppIpv6cp 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.14.2 +lcsStatusPppIpv6cpRxConfigRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppIpv6cp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.14.3 +lcsStatusPppIpv6cpRxConfigAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppIpv6cp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.14.4 +lcsStatusPppIpv6cpRxConfigNak OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppIpv6cp 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.14.5 +lcsStatusPppIpv6cpRxConfigReject OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppIpv6cp 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.14.6 +lcsStatusPppIpv6cpRxTerminateRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppIpv6cp 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.14.7 +lcsStatusPppIpv6cpRxTerminateAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppIpv6cp 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.14.8 +lcsStatusPppIpv6cpRxCodeReject OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppIpv6cp 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.14.9 +lcsStatusPppIpv6cpTxConfigRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppIpv6cp 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.14.10 +lcsStatusPppIpv6cpTxConfigAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppIpv6cp 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.14.11 +lcsStatusPppIpv6cpTxConfigNak OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppIpv6cp 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.14.12 +lcsStatusPppIpv6cpTxConfigReject OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppIpv6cp 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.14.13 +lcsStatusPppIpv6cpTxTerminateRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppIpv6cp 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.14.14 +lcsStatusPppIpv6cpTxTerminateAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppIpv6cp 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.14.15 +lcsStatusPppIpv6cpTxCodeReject OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppIpv6cp 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.6.14.16 +lcsStatusPppIpv6cpDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppIpv6cp 16 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.9 +lcsStatusTcpIp OBJECT IDENTIFIER ::= { lcsStatus 9 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.9.1 +lcsStatusTcpIpArp OBJECT IDENTIFIER ::= { lcsStatusTcpIp 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.1.1 +lcsStatusTcpIpArpLanRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpArp 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.1.2 +lcsStatusTcpIpArpLanTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpArp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.1.3 +lcsStatusTcpIpArpLanErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpArp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.1.4 +lcsStatusTcpIpArpWanRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpArp 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.1.5 +lcsStatusTcpIpArpWanTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpArp 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.1.6 +lcsStatusTcpIpArpWanErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpArp 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.1.7 +lcsStatusTcpIpArpTableArpTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpArpTableArpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpArp 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.1.7.1 +lcsStatusTcpIpArpTableArpEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpArpTableArpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpArpTableArpEntryIpAddress + } + ::= { lcsStatusTcpIpArpTableArpTable 1 } + +LcsStatusTcpIpArpTableArpEntry ::= SEQUENCE { + lcsStatusTcpIpArpTableArpEntryIpAddress IpAddress, + lcsStatusTcpIpArpTableArpEntryMacAddress MacAddress, + lcsStatusTcpIpArpTableArpEntryLastAccess Integer32, + lcsStatusTcpIpArpTableArpEntryEthernetPort INTEGER, + lcsStatusTcpIpArpTableArpEntryPeer DisplayString, + lcsStatusTcpIpArpTableArpEntryVlanId Integer32, + lcsStatusTcpIpArpTableArpEntryConnect INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.1.7.1.1 +lcsStatusTcpIpArpTableArpEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpArpTableArpEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.1.7.1.2 +lcsStatusTcpIpArpTableArpEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpArpTableArpEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.1.7.1.3 +lcsStatusTcpIpArpTableArpEntryLastAccess OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpArpTableArpEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.1.7.1.5 +lcsStatusTcpIpArpTableArpEntryEthernetPort OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eUplink (1), + eEth1 (2), + eEth2 (3), + eEth3 (4), + eEth4 (5), + eWan (16), + eSfp1 (32) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpArpTableArpEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.1.7.1.6 +lcsStatusTcpIpArpTableArpEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpArpTableArpEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.1.7.1.7 +lcsStatusTcpIpArpTableArpEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpArpTableArpEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.1.7.1.8 +lcsStatusTcpIpArpTableArpEntryConnect OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (256), + eLan2 (257), + eLan3 (258), + eLan4 (259), + eLan5 (260), + eWlan1 (512), + eWlan2 (513), + eP2p11 (768), + eP2p12 (769), + eP2p13 (770), + eP2p14 (771), + eP2p15 (772), + eP2p16 (773), + eP2p21 (774), + eP2p22 (775), + eP2p23 (776), + eP2p24 (777), + eP2p25 (778), + eP2p26 (779), + eP2p17 (799), + eP2p18 (800), + eP2p19 (801), + eP2p110 (802), + eP2p111 (803), + eP2p112 (804), + eP2p113 (805), + eP2p114 (806), + eP2p115 (807), + eP2p116 (808), + eP2p27 (831), + eP2p28 (832), + eP2p29 (833), + eP2p210 (834), + eP2p211 (835), + eP2p212 (836), + eP2p213 (837), + eP2p214 (838), + eP2p215 (839), + eP2p216 (840), + eWlan12 (1024), + eWlan13 (1025), + eWlan14 (1026), + eWlan15 (1027), + eWlan16 (1028), + eWlan17 (1029), + eWlan18 (1030), + eWlan22 (1031), + eWlan23 (1032), + eWlan24 (1033), + eWlan25 (1034), + eWlan26 (1035), + eWlan27 (1036), + eWlan28 (1037), + eWlcTunnel1 (1792), + eWlcTunnel2 (1793), + eWlcTunnel3 (1794), + eWlcTunnel4 (1795), + eWlcTunnel5 (1796), + eWlcTunnel6 (1797), + eWlcTunnel7 (1798), + eWlcTunnel8 (1799), + eWlcTunnel9 (1800), + eWlcTunnel10 (1801), + eWlcTunnel11 (1802), + eWlcTunnel12 (1803), + eWlcTunnel13 (1804), + eWlcTunnel14 (1805), + eWlcTunnel15 (1806), + eWlcTunnel16 (1807), + eWlcTunnel17 (1808), + eWlcTunnel18 (1809), + eWlcTunnel19 (1810), + eWlcTunnel20 (1811), + eWlcTunnel21 (1812), + eWlcTunnel22 (1813), + eWlcTunnel23 (1814), + eWlcTunnel24 (1815), + eWlcTunnel25 (1816), + eWlcTunnel26 (1817), + eWlcTunnel27 (1818), + eWlcTunnel28 (1819), + eWlcTunnel29 (1820), + eWlcTunnel30 (1821), + eWlcTunnel31 (1822), + eWlcTunnel32 (1823), + eWlcTunnelAutowds (1824), + eBundle1 (2048), + eBundle2 (2049), + eWan (32768) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpArpTableArpEntry 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.1.8 +lcsStatusTcpIpArpDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpArp 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.1.10 +lcsStatusTcpIpArpLanProxyRules OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpArp 10 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.9.2 +lcsStatusTcpIpIp OBJECT IDENTIFIER ::= { lcsStatusTcpIp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.2.1 +lcsStatusTcpIpIpLanRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIp 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.2.2 +lcsStatusTcpIpIpLanTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.2.3 +lcsStatusTcpIpIpLanChecksumErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.2.4 +lcsStatusTcpIpIpLanServiceErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIp 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.2.5 +lcsStatusTcpIpIpWanRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIp 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.2.6 +lcsStatusTcpIpIpWanTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIp 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.2.7 +lcsStatusTcpIpIpWanChecksumErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIp 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.2.8 +lcsStatusTcpIpIpWanServiceErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIp 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.2.9 +lcsStatusTcpIpIpWanRxDisconnect OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIp 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.2.10 +lcsStatusTcpIpIpLanFragmentationErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIp 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.2.11 +lcsStatusTcpIpIpWanFragmentationErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIp 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.2.12 +lcsStatusTcpIpIpDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIp 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.2.13 +lcsStatusTcpIpIpLanFragmentations OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIp 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.2.14 +lcsStatusTcpIpIpLanFragmentationsForced OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIp 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.2.15 +lcsStatusTcpIpIpWanFragmentations OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIp 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.2.16 +lcsStatusTcpIpIpWanFragmentationsForced OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIp 16 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.2.17 +lcsStatusTcpIpIpLoopError OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIp 17 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.9.3 +lcsStatusTcpIpIcmp OBJECT IDENTIFIER ::= { lcsStatusTcpIp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.3.1 +lcsStatusTcpIpIcmpLanRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIcmp 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.3.2 +lcsStatusTcpIpIcmpLanTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIcmp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.3.3 +lcsStatusTcpIpIcmpLanChecksumErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIcmp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.3.4 +lcsStatusTcpIpIcmpLanServiceErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIcmp 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.3.5 +lcsStatusTcpIpIcmpWanRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIcmp 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.3.6 +lcsStatusTcpIpIcmpWanTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIcmp 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.3.7 +lcsStatusTcpIpIcmpWanChecksumErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIcmp 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.3.8 +lcsStatusTcpIpIcmpWanServiceErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIcmp 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.3.9 +lcsStatusTcpIpIcmpDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpIcmp 9 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.9.4 +lcsStatusTcpIpTftp OBJECT IDENTIFIER ::= { lcsStatusTcpIp 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.1 +lcsStatusTcpIpTftpLanRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.2 +lcsStatusTcpIpTftpLanRxReadRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.3 +lcsStatusTcpIpTftpLanRxWriteRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.4 +lcsStatusTcpIpTftpLanRxData OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.5 +lcsStatusTcpIpTftpLanRxAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.6 +lcsStatusTcpIpTftpLanRxOptionAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.7 +lcsStatusTcpIpTftpLanRxErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.8 +lcsStatusTcpIpTftpLanRxBadPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.9 +lcsStatusTcpIpTftpLanTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.10 +lcsStatusTcpIpTftpLanTxData OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.11 +lcsStatusTcpIpTftpLanTxAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.12 +lcsStatusTcpIpTftpLanTxOptionAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.13 +lcsStatusTcpIpTftpLanTxErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.14 +lcsStatusTcpIpTftpLanTxRepeats OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.15 +lcsStatusTcpIpTftpLanConnections OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.16 +lcsStatusTcpIpTftpWanRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 16 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.17 +lcsStatusTcpIpTftpWanRxReadRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 17 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.18 +lcsStatusTcpIpTftpWanRxWriteRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 18 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.19 +lcsStatusTcpIpTftpWanRxData OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 19 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.20 +lcsStatusTcpIpTftpWanRxAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 20 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.21 +lcsStatusTcpIpTftpWanRxOptionAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 21 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.22 +lcsStatusTcpIpTftpWanRxErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 22 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.23 +lcsStatusTcpIpTftpWanRxBadPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 23 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.24 +lcsStatusTcpIpTftpWanTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 24 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.25 +lcsStatusTcpIpTftpWanTxData OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 25 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.26 +lcsStatusTcpIpTftpWanTxAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 26 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.27 +lcsStatusTcpIpTftpWanTxOptionAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 27 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.28 +lcsStatusTcpIpTftpWanTxErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 28 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.29 +lcsStatusTcpIpTftpWanTxRepeats OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 29 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.30 +lcsStatusTcpIpTftpWanConnections OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 30 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.4.31 +lcsStatusTcpIpTftpDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTftp 31 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.9.5 +lcsStatusTcpIpTcp OBJECT IDENTIFIER ::= { lcsStatusTcpIp 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.5.1 +lcsStatusTcpIpTcpLanRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTcp 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.5.2 +lcsStatusTcpIpTcpLanTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTcp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.5.3 +lcsStatusTcpIpTcpLanTxRepeats OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTcp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.5.4 +lcsStatusTcpIpTcpLanChecksumErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTcp 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.5.5 +lcsStatusTcpIpTcpLanServiceErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTcp 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.5.6 +lcsStatusTcpIpTcpLanConnections OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTcp 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.5.7 +lcsStatusTcpIpTcpWanRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTcp 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.5.8 +lcsStatusTcpIpTcpWanTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTcp 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.5.9 +lcsStatusTcpIpTcpWanTxRepeats OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTcp 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.5.10 +lcsStatusTcpIpTcpWanChecksumErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTcp 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.5.11 +lcsStatusTcpIpTcpWanServiceErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTcp 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.5.12 +lcsStatusTcpIpTcpWanConnections OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTcp 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.5.13 +lcsStatusTcpIpTcpDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpTcp 13 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.9.6 +lcsStatusTcpIpDhcp OBJECT IDENTIFIER ::= { lcsStatusTcpIp 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.6.1 +lcsStatusTcpIpDhcpLanRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcp 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.6.2 +lcsStatusTcpIpDhcpLanTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.6.3 +lcsStatusTcpIpDhcpWanRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.6.4 +lcsStatusTcpIpDhcpDiscard OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcp 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.6.5 +lcsStatusTcpIpDhcpRxDiscover OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcp 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.6.6 +lcsStatusTcpIpDhcpRxRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcp 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.6.7 +lcsStatusTcpIpDhcpRxDecline OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcp 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.6.8 +lcsStatusTcpIpDhcpRxInform OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcp 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.6.9 +lcsStatusTcpIpDhcpRxRelease OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcp 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.6.10 +lcsStatusTcpIpDhcpTxOffer OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcp 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.6.11 +lcsStatusTcpIpDhcpTxAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcp 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.6.12 +lcsStatusTcpIpDhcpTxNak OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcp 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.6.13 +lcsStatusTcpIpDhcpServerError OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcp 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.6.14 +lcsStatusTcpIpDhcpAssigned OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcp 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.6.15 +lcsStatusTcpIpDhcpMacConflicts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcp 15 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.6.16 +lcsStatusTcpIpDhcpDhcpTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpDhcpDhcpTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcp 16 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.6.16.1 +lcsStatusTcpIpDhcpDhcpTableEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpDhcpDhcpTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpDhcpDhcpTableEntryIpAddress, + lcsStatusTcpIpDhcpDhcpTableEntryNetworkName + } + ::= { lcsStatusTcpIpDhcpDhcpTableTable 1 } + +LcsStatusTcpIpDhcpDhcpTableEntry ::= SEQUENCE { + lcsStatusTcpIpDhcpDhcpTableEntryIpAddress IpAddress, + lcsStatusTcpIpDhcpDhcpTableEntryMacAddress DisplayString, + lcsStatusTcpIpDhcpDhcpTableEntryTimeout Integer32, + lcsStatusTcpIpDhcpDhcpTableEntryHostname DisplayString, + lcsStatusTcpIpDhcpDhcpTableEntryType BITS, + lcsStatusTcpIpDhcpDhcpTableEntryEthernetPort INTEGER, + lcsStatusTcpIpDhcpDhcpTableEntryVlanId Integer32, + lcsStatusTcpIpDhcpDhcpTableEntryNetworkName DisplayString, + lcsStatusTcpIpDhcpDhcpTableEntryLanIfc INTEGER, + lcsStatusTcpIpDhcpDhcpTableEntryAssignment DisplayString, + lcsStatusTcpIpDhcpDhcpTableEntryAssignmentNumeric Gauge32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.16.1.1 +lcsStatusTcpIpDhcpDhcpTableEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpDhcpTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.16.1.2 +lcsStatusTcpIpDhcpDhcpTableEntryMacAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpDhcpTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.16.1.3 +lcsStatusTcpIpDhcpDhcpTableEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpDhcpTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.16.1.4 +lcsStatusTcpIpDhcpDhcpTableEntryHostname OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpDhcpTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.16.1.5 +lcsStatusTcpIpDhcpDhcpTableEntryType OBJECT-TYPE + SYNTAX BITS { + eRelay (4), + eCache (8), + eBootp (10), + eDyn (11), + eStat (12), + eUnkn (13), + enewreq (14), + enew (15) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpDhcpTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.16.1.7 +lcsStatusTcpIpDhcpDhcpTableEntryEthernetPort OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eUplink (1), + eEth1 (2), + eEth2 (3), + eEth3 (4), + eEth4 (5), + eWan (16), + eSfp1 (32) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpDhcpTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.16.1.8 +lcsStatusTcpIpDhcpDhcpTableEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpDhcpTableEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.16.1.9 +lcsStatusTcpIpDhcpDhcpTableEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpDhcpTableEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.16.1.10 +lcsStatusTcpIpDhcpDhcpTableEntryLanIfc OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (256), + eLan2 (257), + eLan3 (258), + eLan4 (259), + eLan5 (260), + eWlan1 (512), + eWlan2 (513), + eP2p11 (768), + eP2p12 (769), + eP2p13 (770), + eP2p14 (771), + eP2p15 (772), + eP2p16 (773), + eP2p21 (774), + eP2p22 (775), + eP2p23 (776), + eP2p24 (777), + eP2p25 (778), + eP2p26 (779), + eP2p17 (799), + eP2p18 (800), + eP2p19 (801), + eP2p110 (802), + eP2p111 (803), + eP2p112 (804), + eP2p113 (805), + eP2p114 (806), + eP2p115 (807), + eP2p116 (808), + eP2p27 (831), + eP2p28 (832), + eP2p29 (833), + eP2p210 (834), + eP2p211 (835), + eP2p212 (836), + eP2p213 (837), + eP2p214 (838), + eP2p215 (839), + eP2p216 (840), + eWlan12 (1024), + eWlan13 (1025), + eWlan14 (1026), + eWlan15 (1027), + eWlan16 (1028), + eWlan17 (1029), + eWlan18 (1030), + eWlan22 (1031), + eWlan23 (1032), + eWlan24 (1033), + eWlan25 (1034), + eWlan26 (1035), + eWlan27 (1036), + eWlan28 (1037), + eBrg1 (1536), + eBrg2 (1537), + eBrg3 (1538), + eBrg4 (1539), + eBrg5 (1540), + eBrg6 (1541), + eBrg7 (1542), + eBrg8 (1543), + eWlcTunnel1 (1792), + eWlcTunnel2 (1793), + eWlcTunnel3 (1794), + eWlcTunnel4 (1795), + eWlcTunnel5 (1796), + eWlcTunnel6 (1797), + eWlcTunnel7 (1798), + eWlcTunnel8 (1799), + eWlcTunnel9 (1800), + eWlcTunnel10 (1801), + eWlcTunnel11 (1802), + eWlcTunnel12 (1803), + eWlcTunnel13 (1804), + eWlcTunnel14 (1805), + eWlcTunnel15 (1806), + eWlcTunnel16 (1807), + eWlcTunnel17 (1808), + eWlcTunnel18 (1809), + eWlcTunnel19 (1810), + eWlcTunnel20 (1811), + eWlcTunnel21 (1812), + eWlcTunnel22 (1813), + eWlcTunnel23 (1814), + eWlcTunnel24 (1815), + eWlcTunnel25 (1816), + eWlcTunnel26 (1817), + eWlcTunnel27 (1818), + eWlcTunnel28 (1819), + eWlcTunnel29 (1820), + eWlcTunnel30 (1821), + eWlcTunnel31 (1822), + eWlcTunnel32 (1823), + eWlcTunnelAutowds (1824), + eBundle1 (2048), + eBundle2 (2049), + eAny (65535) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpDhcpTableEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.16.1.11 +lcsStatusTcpIpDhcpDhcpTableEntryAssignment OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..21)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpDhcpDhcpTableEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.16.1.12 +lcsStatusTcpIpDhcpDhcpTableEntryAssignmentNumeric OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpDhcpDhcpTableEntry 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.6.18 +lcsStatusTcpIpDhcpDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcp 18 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.6.19 +lcsStatusTcpIpDhcpWanTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcp 19 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.6.20 +lcsStatusTcpIpDhcpNetworkListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpDhcpNetworkListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcp 20 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.6.20.1 +lcsStatusTcpIpDhcpNetworkListEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpDhcpNetworkListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpDhcpNetworkListEntryNetworkName + } + ::= { lcsStatusTcpIpDhcpNetworkListTable 1 } + +LcsStatusTcpIpDhcpNetworkListEntry ::= SEQUENCE { + lcsStatusTcpIpDhcpNetworkListEntryNetworkName DisplayString, + lcsStatusTcpIpDhcpNetworkListEntryStartAddressPool IpAddress, + lcsStatusTcpIpDhcpNetworkListEntryEndAddressPool IpAddress, + lcsStatusTcpIpDhcpNetworkListEntryNetmask IpAddress, + lcsStatusTcpIpDhcpNetworkListEntryBroadcastAddress IpAddress, + lcsStatusTcpIpDhcpNetworkListEntryGatewayAddress IpAddress, + lcsStatusTcpIpDhcpNetworkListEntryDnsDefault IpAddress, + lcsStatusTcpIpDhcpNetworkListEntryDnsBackup IpAddress, + lcsStatusTcpIpDhcpNetworkListEntryNbnsDefault IpAddress, + lcsStatusTcpIpDhcpNetworkListEntryNbnsBackup IpAddress, + lcsStatusTcpIpDhcpNetworkListEntryServerFlags DisplayString, + lcsStatusTcpIpDhcpNetworkListEntryBroadcastBit INTEGER, + lcsStatusTcpIpDhcpNetworkListEntryServerId IpAddress, + lcsStatusTcpIpDhcpNetworkListEntryVlanId Integer32, + lcsStatusTcpIpDhcpNetworkListEntryMasterServer IpAddress, + lcsStatusTcpIpDhcpNetworkListEntryCache INTEGER, + lcsStatusTcpIpDhcpNetworkListEntryAdaption INTEGER, + lcsStatusTcpIpDhcpNetworkListEntryCluster INTEGER, + lcsStatusTcpIpDhcpNetworkListEntry2ndMasterServer IpAddress, + lcsStatusTcpIpDhcpNetworkListEntry3rdMasterServer IpAddress, + lcsStatusTcpIpDhcpNetworkListEntry4thMasterServer IpAddress, + lcsStatusTcpIpDhcpNetworkListEntryLanIfc INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.20.1.1 +lcsStatusTcpIpDhcpNetworkListEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpNetworkListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.20.1.2 +lcsStatusTcpIpDhcpNetworkListEntryStartAddressPool OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpNetworkListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.20.1.3 +lcsStatusTcpIpDhcpNetworkListEntryEndAddressPool OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpNetworkListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.20.1.4 +lcsStatusTcpIpDhcpNetworkListEntryNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpNetworkListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.20.1.5 +lcsStatusTcpIpDhcpNetworkListEntryBroadcastAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpNetworkListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.20.1.6 +lcsStatusTcpIpDhcpNetworkListEntryGatewayAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpNetworkListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.20.1.7 +lcsStatusTcpIpDhcpNetworkListEntryDnsDefault OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpNetworkListEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.20.1.8 +lcsStatusTcpIpDhcpNetworkListEntryDnsBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpNetworkListEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.20.1.9 +lcsStatusTcpIpDhcpNetworkListEntryNbnsDefault OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpNetworkListEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.20.1.10 +lcsStatusTcpIpDhcpNetworkListEntryNbnsBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpNetworkListEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.20.1.11 +lcsStatusTcpIpDhcpNetworkListEntryServerFlags OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpNetworkListEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.20.1.13 +lcsStatusTcpIpDhcpNetworkListEntryBroadcastBit OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpNetworkListEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.20.1.14 +lcsStatusTcpIpDhcpNetworkListEntryServerId OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpNetworkListEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.20.1.16 +lcsStatusTcpIpDhcpNetworkListEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpNetworkListEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.20.1.17 +lcsStatusTcpIpDhcpNetworkListEntryMasterServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpNetworkListEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.20.1.18 +lcsStatusTcpIpDhcpNetworkListEntryCache OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpNetworkListEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.20.1.19 +lcsStatusTcpIpDhcpNetworkListEntryAdaption OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpNetworkListEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.20.1.20 +lcsStatusTcpIpDhcpNetworkListEntryCluster OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpNetworkListEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.20.1.21 +lcsStatusTcpIpDhcpNetworkListEntry2ndMasterServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpNetworkListEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.20.1.22 +lcsStatusTcpIpDhcpNetworkListEntry3rdMasterServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpNetworkListEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.20.1.23 +lcsStatusTcpIpDhcpNetworkListEntry4thMasterServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpNetworkListEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.6.20.1.24 +lcsStatusTcpIpDhcpNetworkListEntryLanIfc OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (256), + eLan2 (257), + eLan3 (258), + eLan4 (259), + eLan5 (260), + eWlan1 (512), + eWlan2 (513), + eP2p11 (768), + eP2p12 (769), + eP2p13 (770), + eP2p14 (771), + eP2p15 (772), + eP2p16 (773), + eP2p21 (774), + eP2p22 (775), + eP2p23 (776), + eP2p24 (777), + eP2p25 (778), + eP2p26 (779), + eP2p17 (799), + eP2p18 (800), + eP2p19 (801), + eP2p110 (802), + eP2p111 (803), + eP2p112 (804), + eP2p113 (805), + eP2p114 (806), + eP2p115 (807), + eP2p116 (808), + eP2p27 (831), + eP2p28 (832), + eP2p29 (833), + eP2p210 (834), + eP2p211 (835), + eP2p212 (836), + eP2p213 (837), + eP2p214 (838), + eP2p215 (839), + eP2p216 (840), + eWlan12 (1024), + eWlan13 (1025), + eWlan14 (1026), + eWlan15 (1027), + eWlan16 (1028), + eWlan17 (1029), + eWlan18 (1030), + eWlan22 (1031), + eWlan23 (1032), + eWlan24 (1033), + eWlan25 (1034), + eWlan26 (1035), + eWlan27 (1036), + eWlan28 (1037), + eBrg1 (1536), + eBrg2 (1537), + eBrg3 (1538), + eBrg4 (1539), + eBrg5 (1540), + eBrg6 (1541), + eBrg7 (1542), + eBrg8 (1543), + eWlcTunnel1 (1792), + eWlcTunnel2 (1793), + eWlcTunnel3 (1794), + eWlcTunnel4 (1795), + eWlcTunnel5 (1796), + eWlcTunnel6 (1797), + eWlcTunnel7 (1798), + eWlcTunnel8 (1799), + eWlcTunnel9 (1800), + eWlcTunnel10 (1801), + eWlcTunnel11 (1802), + eWlcTunnel12 (1803), + eWlcTunnel13 (1804), + eWlcTunnel14 (1805), + eWlcTunnel15 (1806), + eWlcTunnel16 (1807), + eWlcTunnel17 (1808), + eWlcTunnel18 (1809), + eWlcTunnel19 (1810), + eWlcTunnel20 (1811), + eWlcTunnel21 (1812), + eWlcTunnel22 (1813), + eWlcTunnel23 (1814), + eWlcTunnel24 (1815), + eWlcTunnel25 (1816), + eWlcTunnel26 (1817), + eWlcTunnel27 (1818), + eWlcTunnel28 (1819), + eWlcTunnel29 (1820), + eWlcTunnel30 (1821), + eWlcTunnel31 (1822), + eWlcTunnel32 (1823), + eWlcTunnelAutowds (1824), + eBundle1 (2048), + eBundle2 (2049), + eAny (65535) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDhcpNetworkListEntry 24 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.7 +lcsStatusTcpIpDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIp 7 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.9.8 +lcsStatusTcpIpNetbios OBJECT IDENTIFIER ::= { lcsStatusTcpIp 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.8.1 +lcsStatusTcpIpNetbiosLanRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbios 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.8.2 +lcsStatusTcpIpNetbiosLanTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbios 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.8.3 +lcsStatusTcpIpNetbiosWanRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbios 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.8.4 +lcsStatusTcpIpNetbiosWanTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbios 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.8.5 +lcsStatusTcpIpNetbiosRegisters OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbios 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.8.6 +lcsStatusTcpIpNetbiosConflicts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbios 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.8.7 +lcsStatusTcpIpNetbiosReleases OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbios 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.8.8 +lcsStatusTcpIpNetbiosRefreshs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbios 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.8.9 +lcsStatusTcpIpNetbiosTimeouts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbios 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.8.10 +lcsStatusTcpIpNetbiosHosts OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbios 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.8.11 +lcsStatusTcpIpNetbiosGroups OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbios 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.8.12 +lcsStatusTcpIpNetbiosBNodes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbios 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.8.13 +lcsStatusTcpIpNetbiosPNodes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbios 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.8.14 +lcsStatusTcpIpNetbiosMNodes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbios 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.8.15 +lcsStatusTcpIpNetbiosWNodes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbios 15 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.8.16 +lcsStatusTcpIpNetbiosPeersTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpNetbiosPeersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbios 16 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.8.16.1 +lcsStatusTcpIpNetbiosPeersEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpNetbiosPeersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpNetbiosPeersEntryName + } + ::= { lcsStatusTcpIpNetbiosPeersTable 1 } + +LcsStatusTcpIpNetbiosPeersEntry ::= SEQUENCE { + lcsStatusTcpIpNetbiosPeersEntryName DisplayString, + lcsStatusTcpIpNetbiosPeersEntryType INTEGER, + lcsStatusTcpIpNetbiosPeersEntryBackoff Integer32, + lcsStatusTcpIpNetbiosPeersEntryTime Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.16.1.1 +lcsStatusTcpIpNetbiosPeersEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosPeersEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.16.1.2 +lcsStatusTcpIpNetbiosPeersEntryType OBJECT-TYPE + SYNTAX INTEGER { + eRouter (0), + eWorkstation (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosPeersEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.16.1.3 +lcsStatusTcpIpNetbiosPeersEntryBackoff OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosPeersEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.16.1.4 +lcsStatusTcpIpNetbiosPeersEntryTime OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosPeersEntry 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.8.17 +lcsStatusTcpIpNetbiosDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbios 17 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.8.18 +lcsStatusTcpIpNetbiosNetworksTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpNetbiosNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbios 18 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.8.18.1 +lcsStatusTcpIpNetbiosNetworksEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpNetbiosNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpNetbiosNetworksEntryNetworkName + } + ::= { lcsStatusTcpIpNetbiosNetworksTable 1 } + +LcsStatusTcpIpNetbiosNetworksEntry ::= SEQUENCE { + lcsStatusTcpIpNetbiosNetworksEntryNetworkName DisplayString, + lcsStatusTcpIpNetbiosNetworksEntryNtDomain DisplayString, + lcsStatusTcpIpNetbiosNetworksEntryRtgTag Integer32, + lcsStatusTcpIpNetbiosNetworksEntryVlanId Integer32, + lcsStatusTcpIpNetbiosNetworksEntryInterface INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.18.1.1 +lcsStatusTcpIpNetbiosNetworksEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosNetworksEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.18.1.2 +lcsStatusTcpIpNetbiosNetworksEntryNtDomain OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosNetworksEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.18.1.3 +lcsStatusTcpIpNetbiosNetworksEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosNetworksEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.18.1.5 +lcsStatusTcpIpNetbiosNetworksEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosNetworksEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.18.1.7 +lcsStatusTcpIpNetbiosNetworksEntryInterface OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (256), + eLan2 (257), + eLan3 (258), + eLan4 (259), + eLan5 (260), + eWlan1 (512), + eWlan2 (513), + eP2p11 (768), + eP2p12 (769), + eP2p13 (770), + eP2p14 (771), + eP2p15 (772), + eP2p16 (773), + eP2p21 (774), + eP2p22 (775), + eP2p23 (776), + eP2p24 (777), + eP2p25 (778), + eP2p26 (779), + eP2p17 (799), + eP2p18 (800), + eP2p19 (801), + eP2p110 (802), + eP2p111 (803), + eP2p112 (804), + eP2p113 (805), + eP2p114 (806), + eP2p115 (807), + eP2p116 (808), + eP2p27 (831), + eP2p28 (832), + eP2p29 (833), + eP2p210 (834), + eP2p211 (835), + eP2p212 (836), + eP2p213 (837), + eP2p214 (838), + eP2p215 (839), + eP2p216 (840), + eWlan12 (1024), + eWlan13 (1025), + eWlan14 (1026), + eWlan15 (1027), + eWlan16 (1028), + eWlan17 (1029), + eWlan18 (1030), + eWlan22 (1031), + eWlan23 (1032), + eWlan24 (1033), + eWlan25 (1034), + eWlan26 (1035), + eWlan27 (1036), + eWlan28 (1037), + eBrg1 (1536), + eBrg2 (1537), + eBrg3 (1538), + eBrg4 (1539), + eBrg5 (1540), + eBrg6 (1541), + eBrg7 (1542), + eBrg8 (1543), + eWlcTunnel1 (1792), + eWlcTunnel2 (1793), + eWlcTunnel3 (1794), + eWlcTunnel4 (1795), + eWlcTunnel5 (1796), + eWlcTunnel6 (1797), + eWlcTunnel7 (1798), + eWlcTunnel8 (1799), + eWlcTunnel9 (1800), + eWlcTunnel10 (1801), + eWlcTunnel11 (1802), + eWlcTunnel12 (1803), + eWlcTunnel13 (1804), + eWlcTunnel14 (1805), + eWlcTunnel15 (1806), + eWlcTunnel16 (1807), + eWlcTunnel17 (1808), + eWlcTunnel18 (1809), + eWlcTunnel19 (1810), + eWlcTunnel20 (1811), + eWlcTunnel21 (1812), + eWlcTunnel22 (1813), + eWlcTunnel23 (1814), + eWlcTunnel24 (1815), + eWlcTunnel25 (1816), + eWlcTunnel26 (1817), + eWlcTunnel27 (1818), + eWlcTunnel28 (1819), + eWlcTunnel29 (1820), + eWlcTunnel30 (1821), + eWlcTunnel31 (1822), + eWlcTunnel32 (1823), + eWlcTunnelAutowds (1824), + eBundle1 (2048), + eBundle2 (2049), + eAny (65535) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosNetworksEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.8.19 +lcsStatusTcpIpNetbiosGroupListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpNetbiosGroupListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbios 19 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.8.19.1 +lcsStatusTcpIpNetbiosGroupListEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpNetbiosGroupListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpNetbiosGroupListEntryGroupDomain, + lcsStatusTcpIpNetbiosGroupListEntryType, + lcsStatusTcpIpNetbiosGroupListEntryIpAddress, + lcsStatusTcpIpNetbiosGroupListEntryRtgTag + } + ::= { lcsStatusTcpIpNetbiosGroupListTable 1 } + +LcsStatusTcpIpNetbiosGroupListEntry ::= SEQUENCE { + lcsStatusTcpIpNetbiosGroupListEntryGroupDomain DisplayString, + lcsStatusTcpIpNetbiosGroupListEntryType DisplayString, + lcsStatusTcpIpNetbiosGroupListEntryIpAddress IpAddress, + lcsStatusTcpIpNetbiosGroupListEntryPeer DisplayString, + lcsStatusTcpIpNetbiosGroupListEntryTimeout Integer32, + lcsStatusTcpIpNetbiosGroupListEntryFlags DisplayString, + lcsStatusTcpIpNetbiosGroupListEntryNetworkName DisplayString, + lcsStatusTcpIpNetbiosGroupListEntryRtgTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.19.1.1 +lcsStatusTcpIpNetbiosGroupListEntryGroupDomain OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosGroupListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.19.1.2 +lcsStatusTcpIpNetbiosGroupListEntryType OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..1)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosGroupListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.19.1.3 +lcsStatusTcpIpNetbiosGroupListEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosGroupListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.19.1.4 +lcsStatusTcpIpNetbiosGroupListEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosGroupListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.19.1.5 +lcsStatusTcpIpNetbiosGroupListEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosGroupListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.19.1.6 +lcsStatusTcpIpNetbiosGroupListEntryFlags OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosGroupListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.19.1.7 +lcsStatusTcpIpNetbiosGroupListEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosGroupListEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.19.1.8 +lcsStatusTcpIpNetbiosGroupListEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosGroupListEntry 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.8.20 +lcsStatusTcpIpNetbiosHostListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpNetbiosHostListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbios 20 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.8.20.1 +lcsStatusTcpIpNetbiosHostListEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpNetbiosHostListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpNetbiosHostListEntryName, + lcsStatusTcpIpNetbiosHostListEntryType, + lcsStatusTcpIpNetbiosHostListEntryIpAddress, + lcsStatusTcpIpNetbiosHostListEntryRtgTag + } + ::= { lcsStatusTcpIpNetbiosHostListTable 1 } + +LcsStatusTcpIpNetbiosHostListEntry ::= SEQUENCE { + lcsStatusTcpIpNetbiosHostListEntryName DisplayString, + lcsStatusTcpIpNetbiosHostListEntryType DisplayString, + lcsStatusTcpIpNetbiosHostListEntryIpAddress IpAddress, + lcsStatusTcpIpNetbiosHostListEntryPeer DisplayString, + lcsStatusTcpIpNetbiosHostListEntryTimeout Integer32, + lcsStatusTcpIpNetbiosHostListEntryFlags DisplayString, + lcsStatusTcpIpNetbiosHostListEntryNetworkName DisplayString, + lcsStatusTcpIpNetbiosHostListEntryRtgTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.20.1.1 +lcsStatusTcpIpNetbiosHostListEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosHostListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.20.1.2 +lcsStatusTcpIpNetbiosHostListEntryType OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..1)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosHostListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.20.1.3 +lcsStatusTcpIpNetbiosHostListEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosHostListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.20.1.4 +lcsStatusTcpIpNetbiosHostListEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosHostListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.20.1.5 +lcsStatusTcpIpNetbiosHostListEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosHostListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.20.1.6 +lcsStatusTcpIpNetbiosHostListEntryFlags OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosHostListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.20.1.7 +lcsStatusTcpIpNetbiosHostListEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosHostListEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.20.1.8 +lcsStatusTcpIpNetbiosHostListEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosHostListEntry 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.8.21 +lcsStatusTcpIpNetbiosServerListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpNetbiosServerListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbios 21 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.8.21.1 +lcsStatusTcpIpNetbiosServerListEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpNetbiosServerListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpNetbiosServerListEntryHost, + lcsStatusTcpIpNetbiosServerListEntryGroupDomain, + lcsStatusTcpIpNetbiosServerListEntryIpAddress, + lcsStatusTcpIpNetbiosServerListEntryRtgTag + } + ::= { lcsStatusTcpIpNetbiosServerListTable 1 } + +LcsStatusTcpIpNetbiosServerListEntry ::= SEQUENCE { + lcsStatusTcpIpNetbiosServerListEntryHost DisplayString, + lcsStatusTcpIpNetbiosServerListEntryGroupDomain DisplayString, + lcsStatusTcpIpNetbiosServerListEntryIpAddress DisplayString, + lcsStatusTcpIpNetbiosServerListEntryOsVer DisplayString, + lcsStatusTcpIpNetbiosServerListEntrySmbVer DisplayString, + lcsStatusTcpIpNetbiosServerListEntryServerTyp DisplayString, + lcsStatusTcpIpNetbiosServerListEntryPeer DisplayString, + lcsStatusTcpIpNetbiosServerListEntryTimeout Integer32, + lcsStatusTcpIpNetbiosServerListEntryFlags DisplayString, + lcsStatusTcpIpNetbiosServerListEntryNetworkName DisplayString, + lcsStatusTcpIpNetbiosServerListEntryRtgTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.21.1.1 +lcsStatusTcpIpNetbiosServerListEntryHost OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosServerListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.21.1.2 +lcsStatusTcpIpNetbiosServerListEntryGroupDomain OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosServerListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.21.1.4 +lcsStatusTcpIpNetbiosServerListEntryIpAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosServerListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.21.1.5 +lcsStatusTcpIpNetbiosServerListEntryOsVer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosServerListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.21.1.6 +lcsStatusTcpIpNetbiosServerListEntrySmbVer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosServerListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.21.1.7 +lcsStatusTcpIpNetbiosServerListEntryServerTyp OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..4)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosServerListEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.21.1.8 +lcsStatusTcpIpNetbiosServerListEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosServerListEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.21.1.9 +lcsStatusTcpIpNetbiosServerListEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosServerListEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.21.1.10 +lcsStatusTcpIpNetbiosServerListEntryFlags OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosServerListEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.21.1.11 +lcsStatusTcpIpNetbiosServerListEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosServerListEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.21.1.12 +lcsStatusTcpIpNetbiosServerListEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosServerListEntry 12 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.8.22 +lcsStatusTcpIpNetbiosBrowserListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpNetbiosBrowserListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbios 22 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.8.22.1 +lcsStatusTcpIpNetbiosBrowserListEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpNetbiosBrowserListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpNetbiosBrowserListEntryBrowser, + lcsStatusTcpIpNetbiosBrowserListEntryGroupDomain, + lcsStatusTcpIpNetbiosBrowserListEntryIpAddress, + lcsStatusTcpIpNetbiosBrowserListEntryRtgTag + } + ::= { lcsStatusTcpIpNetbiosBrowserListTable 1 } + +LcsStatusTcpIpNetbiosBrowserListEntry ::= SEQUENCE { + lcsStatusTcpIpNetbiosBrowserListEntryBrowser DisplayString, + lcsStatusTcpIpNetbiosBrowserListEntryGroupDomain DisplayString, + lcsStatusTcpIpNetbiosBrowserListEntryIpAddress DisplayString, + lcsStatusTcpIpNetbiosBrowserListEntryOsVer DisplayString, + lcsStatusTcpIpNetbiosBrowserListEntryServerTyp DisplayString, + lcsStatusTcpIpNetbiosBrowserListEntryPeer DisplayString, + lcsStatusTcpIpNetbiosBrowserListEntryTimeout Integer32, + lcsStatusTcpIpNetbiosBrowserListEntryFlags DisplayString, + lcsStatusTcpIpNetbiosBrowserListEntryNetworkName DisplayString, + lcsStatusTcpIpNetbiosBrowserListEntryRtgTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.22.1.1 +lcsStatusTcpIpNetbiosBrowserListEntryBrowser OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosBrowserListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.22.1.2 +lcsStatusTcpIpNetbiosBrowserListEntryGroupDomain OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosBrowserListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.22.1.4 +lcsStatusTcpIpNetbiosBrowserListEntryIpAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosBrowserListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.22.1.5 +lcsStatusTcpIpNetbiosBrowserListEntryOsVer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosBrowserListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.22.1.7 +lcsStatusTcpIpNetbiosBrowserListEntryServerTyp OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..4)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosBrowserListEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.22.1.8 +lcsStatusTcpIpNetbiosBrowserListEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosBrowserListEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.22.1.9 +lcsStatusTcpIpNetbiosBrowserListEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosBrowserListEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.22.1.10 +lcsStatusTcpIpNetbiosBrowserListEntryFlags OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosBrowserListEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.22.1.11 +lcsStatusTcpIpNetbiosBrowserListEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosBrowserListEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.8.22.1.12 +lcsStatusTcpIpNetbiosBrowserListEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetbiosBrowserListEntry 12 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.9.9 +lcsStatusTcpIpDns OBJECT IDENTIFIER ::= { lcsStatusTcpIp 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.9.1 +lcsStatusTcpIpDnsLanRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDns 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.9.2 +lcsStatusTcpIpDnsLanTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDns 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.9.3 +lcsStatusTcpIpDnsWanRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDns 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.9.4 +lcsStatusTcpIpDnsWanTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDns 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.9.5 +lcsStatusTcpIpDnsForwarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDns 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.9.6 +lcsStatusTcpIpDnsErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDns 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.9.7 +lcsStatusTcpIpDnsDnsAccess OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDns 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.9.8 +lcsStatusTcpIpDnsDhcpAccess OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDns 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.9.9 +lcsStatusTcpIpDnsNetbiosAccess OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDns 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.9.10 +lcsStatusTcpIpDnsFilter OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDns 10 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.9.11 +lcsStatusTcpIpDnsHitListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpDnsHitListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDns 11 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.9.11.1 +lcsStatusTcpIpDnsHitListEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpDnsHitListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpDnsHitListEntryDomain + } + ::= { lcsStatusTcpIpDnsHitListTable 1 } + +LcsStatusTcpIpDnsHitListEntry ::= SEQUENCE { + lcsStatusTcpIpDnsHitListEntryDomain DisplayString, + lcsStatusTcpIpDnsHitListEntryRequests Integer32, + lcsStatusTcpIpDnsHitListEntryTime DisplayString, + lcsStatusTcpIpDnsHitListEntryIpAddress IpAddress, + lcsStatusTcpIpDnsHitListEntryIpv6Address DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.9.11.1.1 +lcsStatusTcpIpDnsHitListEntryDomain OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDnsHitListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.9.11.1.2 +lcsStatusTcpIpDnsHitListEntryRequests OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDnsHitListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.9.11.1.3 +lcsStatusTcpIpDnsHitListEntryTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDnsHitListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.9.11.1.4 +lcsStatusTcpIpDnsHitListEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDnsHitListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.9.11.1.5 +lcsStatusTcpIpDnsHitListEntryIpv6Address OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpDnsHitListEntry 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.9.12 +lcsStatusTcpIpDnsDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpDns 12 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.9.10 +lcsStatusTcpIpHttp OBJECT IDENTIFIER ::= { lcsStatusTcpIp 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.10.1 +lcsStatusTcpIpHttpHttpAccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpHttp 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.10.2 +lcsStatusTcpIpHttpHttpNotfoundErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpHttp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.10.3 +lcsStatusTcpIpHttpHttpAuthenticationErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpHttp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.10.4 +lcsStatusTcpIpHttpHttpProtocolErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpHttp 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.10.5 +lcsStatusTcpIpHttpDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpHttp 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.10.6 +lcsStatusTcpIpHttpHttpsAccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpHttp 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.10.7 +lcsStatusTcpIpHttpAgentListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpHttpAgentListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpHttp 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.10.7.1 +lcsStatusTcpIpHttpAgentListEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpHttpAgentListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpHttpAgentListEntryAgentName + } + ::= { lcsStatusTcpIpHttpAgentListTable 1 } + +LcsStatusTcpIpHttpAgentListEntry ::= SEQUENCE { + lcsStatusTcpIpHttpAgentListEntryAgentName DisplayString, + lcsStatusTcpIpHttpAgentListEntryAccesses Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.10.7.1.1 +lcsStatusTcpIpHttpAgentListEntryAgentName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..67)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpHttpAgentListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.10.7.1.2 +lcsStatusTcpIpHttpAgentListEntryAccesses OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpHttpAgentListEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.10.8 +lcsStatusTcpIpHttpActiveTunnelsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpHttpActiveTunnelsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpHttp 8 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.10.8.1 +lcsStatusTcpIpHttpActiveTunnelsEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpHttpActiveTunnelsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpHttpActiveTunnelsEntryIndex + } + ::= { lcsStatusTcpIpHttpActiveTunnelsTable 1 } + +LcsStatusTcpIpHttpActiveTunnelsEntry ::= SEQUENCE { + lcsStatusTcpIpHttpActiveTunnelsEntryIndex Integer32, + lcsStatusTcpIpHttpActiveTunnelsEntryRemoteAddress IpAddress, + lcsStatusTcpIpHttpActiveTunnelsEntryRemotePort Integer32, + lcsStatusTcpIpHttpActiveTunnelsEntryLocalHost DisplayString, + lcsStatusTcpIpHttpActiveTunnelsEntryLocalPort Integer32, + lcsStatusTcpIpHttpActiveTunnelsEntryIdleTime Integer32, + lcsStatusTcpIpHttpActiveTunnelsEntryLocalRtgTag Integer32, + lcsStatusTcpIpHttpActiveTunnelsEntryNumConnections Integer32, + lcsStatusTcpIpHttpActiveTunnelsEntryState INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.10.8.1.1 +lcsStatusTcpIpHttpActiveTunnelsEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpHttpActiveTunnelsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.10.8.1.2 +lcsStatusTcpIpHttpActiveTunnelsEntryRemoteAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpHttpActiveTunnelsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.10.8.1.3 +lcsStatusTcpIpHttpActiveTunnelsEntryRemotePort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpHttpActiveTunnelsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.10.8.1.4 +lcsStatusTcpIpHttpActiveTunnelsEntryLocalHost OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..48)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpHttpActiveTunnelsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.10.8.1.5 +lcsStatusTcpIpHttpActiveTunnelsEntryLocalPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpHttpActiveTunnelsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.10.8.1.6 +lcsStatusTcpIpHttpActiveTunnelsEntryIdleTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpHttpActiveTunnelsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.10.8.1.7 +lcsStatusTcpIpHttpActiveTunnelsEntryLocalRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpHttpActiveTunnelsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.10.8.1.8 +lcsStatusTcpIpHttpActiveTunnelsEntryNumConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpHttpActiveTunnelsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.10.8.1.9 +lcsStatusTcpIpHttpActiveTunnelsEntryState OBJECT-TYPE + SYNTAX INTEGER { + eActive (0), + eClosing (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpHttpActiveTunnelsEntry 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.10.15 +lcsStatusTcpIpHttpMaxHttpJobCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpHttp 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.10.16 +lcsStatusTcpIpHttpJobCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpHttp 16 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.10.17 +lcsStatusTcpIpHttpIdleJobs OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpHttp 17 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.9.11 +lcsStatusTcpIpSyslog OBJECT IDENTIFIER ::= { lcsStatusTcpIp 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.11.11 +lcsStatusTcpIpSyslogLastMessagesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpSyslogLastMessagesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpSyslog 11 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.11.11.1 +lcsStatusTcpIpSyslogLastMessagesEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpSyslogLastMessagesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpSyslogLastMessagesEntryIdx + } + ::= { lcsStatusTcpIpSyslogLastMessagesTable 1 } + +LcsStatusTcpIpSyslogLastMessagesEntry ::= SEQUENCE { + lcsStatusTcpIpSyslogLastMessagesEntryIdx Integer32, + lcsStatusTcpIpSyslogLastMessagesEntryTime DisplayString, + lcsStatusTcpIpSyslogLastMessagesEntrySource INTEGER, + lcsStatusTcpIpSyslogLastMessagesEntryLevel INTEGER, + lcsStatusTcpIpSyslogLastMessagesEntryMessage DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.11.11.1.1 +lcsStatusTcpIpSyslogLastMessagesEntryIdx OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpSyslogLastMessagesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.11.11.1.2 +lcsStatusTcpIpSyslogLastMessagesEntryTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpSyslogLastMessagesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.11.11.1.3 +lcsStatusTcpIpSyslogLastMessagesEntrySource OBJECT-TYPE + SYNTAX INTEGER { + eKern (0), + eUser (1), + eMail (2), + eDaemon (3), + eAuth (4), + eSyslog (5), + eLpr (6), + eNews (7), + eUucp (8), + eCron (9), + eAuthpriv (10), + eLocal0 (16), + eLocal1 (17), + eLocal2 (18), + eLocal3 (19), + eLocal4 (20), + eLocal5 (21), + eLocal6 (22), + eLocal7 (23) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpSyslogLastMessagesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.11.11.1.4 +lcsStatusTcpIpSyslogLastMessagesEntryLevel OBJECT-TYPE + SYNTAX INTEGER { + eEmergency (0), + eAlarm (1), + eCritical (2), + eError (3), + eWarning (4), + eNotice (5), + eInfo (6), + eDebug (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpSyslogLastMessagesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.11.11.1.5 +lcsStatusTcpIpSyslogLastMessagesEntryMessage OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpSyslogLastMessagesEntry 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.11.12 +lcsStatusTcpIpSyslogSyslogCritical OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpSyslog 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.11.99 +lcsStatusTcpIpSyslogDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpSyslog 99 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.9.12 +lcsStatusTcpIpRadiuss OBJECT IDENTIFIER ::= { lcsStatusTcpIp 12 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.9.12.1 +lcsStatusTcpIpRadiussAccess OBJECT IDENTIFIER ::= { lcsStatusTcpIpRadiuss 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.1.5 +lcsStatusTcpIpRadiussAccessTotalAccessRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccess 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.1.6 +lcsStatusTcpIpRadiussAccessTotalInvalidAccessRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccess 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.1.7 +lcsStatusTcpIpRadiussAccessTotalDuplicateAccessRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccess 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.1.8 +lcsStatusTcpIpRadiussAccessTotalAccessAccepts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccess 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.1.9 +lcsStatusTcpIpRadiussAccessTotalAccessRejects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccess 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.1.10 +lcsStatusTcpIpRadiussAccessTotalAccessChallenges OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccess 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.1.11 +lcsStatusTcpIpRadiussAccessTotalMalformedAccessRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccess 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.1.12 +lcsStatusTcpIpRadiussAccessTotalAccessBadAuthenticator OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccess 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.1.13 +lcsStatusTcpIpRadiussAccessTotalAccessDropped OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccess 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.1.14 +lcsStatusTcpIpRadiussAccessTotalAccessUnknownType OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccess 14 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.12.1.15 +lcsStatusTcpIpRadiussAccessClientsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpRadiussAccessClientsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccess 15 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.12.1.15.1 +lcsStatusTcpIpRadiussAccessClientsEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpRadiussAccessClientsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpRadiussAccessClientsEntryIpAddress + } + ::= { lcsStatusTcpIpRadiussAccessClientsTable 1 } + +LcsStatusTcpIpRadiussAccessClientsEntry ::= SEQUENCE { + lcsStatusTcpIpRadiussAccessClientsEntryIpAddress IpAddress, + lcsStatusTcpIpRadiussAccessClientsEntryAccessRequests Counter32, + lcsStatusTcpIpRadiussAccessClientsEntryDuplicateRequests Counter32, + lcsStatusTcpIpRadiussAccessClientsEntryAccessAccepts Counter32, + lcsStatusTcpIpRadiussAccessClientsEntryAccessRejects Counter32, + lcsStatusTcpIpRadiussAccessClientsEntryAccessChallenges Counter32, + lcsStatusTcpIpRadiussAccessClientsEntryMalfAccReq Counter32, + lcsStatusTcpIpRadiussAccessClientsEntryBadAuthenticator Counter32, + lcsStatusTcpIpRadiussAccessClientsEntryDropped Counter32, + lcsStatusTcpIpRadiussAccessClientsEntryUnknownType Counter32, + lcsStatusTcpIpRadiussAccessClientsEntryLastRequest Integer32, + lcsStatusTcpIpRadiussAccessClientsEntryNasIdent DisplayString, + lcsStatusTcpIpRadiussAccessClientsEntryStatusRequests Counter32, + lcsStatusTcpIpRadiussAccessClientsEntryStatusResponses Counter32, + lcsStatusTcpIpRadiussAccessClientsEntryLastStatusRequest Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.15.1.1 +lcsStatusTcpIpRadiussAccessClientsEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccessClientsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.15.1.4 +lcsStatusTcpIpRadiussAccessClientsEntryAccessRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccessClientsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.15.1.5 +lcsStatusTcpIpRadiussAccessClientsEntryDuplicateRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccessClientsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.15.1.6 +lcsStatusTcpIpRadiussAccessClientsEntryAccessAccepts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccessClientsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.15.1.7 +lcsStatusTcpIpRadiussAccessClientsEntryAccessRejects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccessClientsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.15.1.8 +lcsStatusTcpIpRadiussAccessClientsEntryAccessChallenges OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccessClientsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.15.1.9 +lcsStatusTcpIpRadiussAccessClientsEntryMalfAccReq OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccessClientsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.15.1.10 +lcsStatusTcpIpRadiussAccessClientsEntryBadAuthenticator OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccessClientsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.15.1.11 +lcsStatusTcpIpRadiussAccessClientsEntryDropped OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccessClientsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.15.1.12 +lcsStatusTcpIpRadiussAccessClientsEntryUnknownType OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccessClientsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.15.1.13 +lcsStatusTcpIpRadiussAccessClientsEntryLastRequest OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccessClientsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.15.1.14 +lcsStatusTcpIpRadiussAccessClientsEntryNasIdent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccessClientsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.15.1.30 +lcsStatusTcpIpRadiussAccessClientsEntryStatusRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccessClientsEntry 30 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.15.1.31 +lcsStatusTcpIpRadiussAccessClientsEntryStatusResponses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccessClientsEntry 31 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.15.1.32 +lcsStatusTcpIpRadiussAccessClientsEntryLastStatusRequest OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccessClientsEntry 32 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.12.1.20 +lcsStatusTcpIpRadiussAccessIpv6ClientsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpRadiussAccessIpv6ClientsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccess 20 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.12.1.20.1 +lcsStatusTcpIpRadiussAccessIpv6ClientsEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpRadiussAccessIpv6ClientsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpRadiussAccessIpv6ClientsEntryIpAddress + } + ::= { lcsStatusTcpIpRadiussAccessIpv6ClientsTable 1 } + +LcsStatusTcpIpRadiussAccessIpv6ClientsEntry ::= SEQUENCE { + lcsStatusTcpIpRadiussAccessIpv6ClientsEntryIpAddress IpAddress, + lcsStatusTcpIpRadiussAccessIpv6ClientsEntryAccessRequests Counter32, + lcsStatusTcpIpRadiussAccessIpv6ClientsEntryDuplicateRequests Counter32, + lcsStatusTcpIpRadiussAccessIpv6ClientsEntryAccessAccepts Counter32, + lcsStatusTcpIpRadiussAccessIpv6ClientsEntryAccessRejects Counter32, + lcsStatusTcpIpRadiussAccessIpv6ClientsEntryAccessChallenges Counter32, + lcsStatusTcpIpRadiussAccessIpv6ClientsEntryMalfAccReq Counter32, + lcsStatusTcpIpRadiussAccessIpv6ClientsEntryBadAuthenticator Counter32, + lcsStatusTcpIpRadiussAccessIpv6ClientsEntryDropped Counter32, + lcsStatusTcpIpRadiussAccessIpv6ClientsEntryUnknownType Counter32, + lcsStatusTcpIpRadiussAccessIpv6ClientsEntryLastRequest Integer32, + lcsStatusTcpIpRadiussAccessIpv6ClientsEntryNasIdent DisplayString, + lcsStatusTcpIpRadiussAccessIpv6ClientsEntryStatusRequests Counter32, + lcsStatusTcpIpRadiussAccessIpv6ClientsEntryStatusResponses Counter32, + lcsStatusTcpIpRadiussAccessIpv6ClientsEntryLastStatusRequest Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.20.1.1 +lcsStatusTcpIpRadiussAccessIpv6ClientsEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccessIpv6ClientsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.20.1.4 +lcsStatusTcpIpRadiussAccessIpv6ClientsEntryAccessRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccessIpv6ClientsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.20.1.5 +lcsStatusTcpIpRadiussAccessIpv6ClientsEntryDuplicateRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccessIpv6ClientsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.20.1.6 +lcsStatusTcpIpRadiussAccessIpv6ClientsEntryAccessAccepts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccessIpv6ClientsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.20.1.7 +lcsStatusTcpIpRadiussAccessIpv6ClientsEntryAccessRejects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccessIpv6ClientsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.20.1.8 +lcsStatusTcpIpRadiussAccessIpv6ClientsEntryAccessChallenges OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccessIpv6ClientsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.20.1.9 +lcsStatusTcpIpRadiussAccessIpv6ClientsEntryMalfAccReq OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccessIpv6ClientsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.20.1.10 +lcsStatusTcpIpRadiussAccessIpv6ClientsEntryBadAuthenticator OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccessIpv6ClientsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.20.1.11 +lcsStatusTcpIpRadiussAccessIpv6ClientsEntryDropped OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccessIpv6ClientsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.20.1.12 +lcsStatusTcpIpRadiussAccessIpv6ClientsEntryUnknownType OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccessIpv6ClientsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.20.1.13 +lcsStatusTcpIpRadiussAccessIpv6ClientsEntryLastRequest OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccessIpv6ClientsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.20.1.14 +lcsStatusTcpIpRadiussAccessIpv6ClientsEntryNasIdent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccessIpv6ClientsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.20.1.30 +lcsStatusTcpIpRadiussAccessIpv6ClientsEntryStatusRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccessIpv6ClientsEntry 30 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.20.1.31 +lcsStatusTcpIpRadiussAccessIpv6ClientsEntryStatusResponses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccessIpv6ClientsEntry 31 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.1.20.1.32 +lcsStatusTcpIpRadiussAccessIpv6ClientsEntryLastStatusRequest OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccessIpv6ClientsEntry 32 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.1.30 +lcsStatusTcpIpRadiussAccessTotalStatusRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccess 30 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.1.31 +lcsStatusTcpIpRadiussAccessTotalStatusResponses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccess 31 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.1.100 +lcsStatusTcpIpRadiussAccessDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccess 100 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.9.12.2 +lcsStatusTcpIpRadiussAccnt OBJECT IDENTIFIER ::= { lcsStatusTcpIpRadiuss 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.2.5 +lcsStatusTcpIpRadiussAccntTotalAccountRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccnt 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.2.6 +lcsStatusTcpIpRadiussAccntTotalInvalidAccountRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccnt 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.2.7 +lcsStatusTcpIpRadiussAccntTotalDuplicateAccountRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccnt 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.2.8 +lcsStatusTcpIpRadiussAccntTotalAccountResponses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccnt 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.2.9 +lcsStatusTcpIpRadiussAccntTotalMalformedAccountRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccnt 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.2.10 +lcsStatusTcpIpRadiussAccntTotalAccountBadAuthenticator OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccnt 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.2.11 +lcsStatusTcpIpRadiussAccntTotalAccountDropped OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccnt 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.2.12 +lcsStatusTcpIpRadiussAccntTotalAccountNorecord OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccnt 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.2.13 +lcsStatusTcpIpRadiussAccntTotalAccountUnknownType OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccnt 13 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.12.2.15 +lcsStatusTcpIpRadiussAccntClientsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpRadiussAccntClientsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccnt 15 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.12.2.15.1 +lcsStatusTcpIpRadiussAccntClientsEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpRadiussAccntClientsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpRadiussAccntClientsEntryIpAddress + } + ::= { lcsStatusTcpIpRadiussAccntClientsTable 1 } + +LcsStatusTcpIpRadiussAccntClientsEntry ::= SEQUENCE { + lcsStatusTcpIpRadiussAccntClientsEntryIpAddress IpAddress, + lcsStatusTcpIpRadiussAccntClientsEntryAccountRequests Counter32, + lcsStatusTcpIpRadiussAccntClientsEntryDuplicateRequests Counter32, + lcsStatusTcpIpRadiussAccntClientsEntryAccountResponses Counter32, + lcsStatusTcpIpRadiussAccntClientsEntryAccountNorecords Counter32, + lcsStatusTcpIpRadiussAccntClientsEntryMalfAccReq Counter32, + lcsStatusTcpIpRadiussAccntClientsEntryBadAuthenticator Counter32, + lcsStatusTcpIpRadiussAccntClientsEntryDropped Counter32, + lcsStatusTcpIpRadiussAccntClientsEntryUnknownType Counter32, + lcsStatusTcpIpRadiussAccntClientsEntryLastRequest Integer32, + lcsStatusTcpIpRadiussAccntClientsEntryNasIdent DisplayString, + lcsStatusTcpIpRadiussAccntClientsEntryStatusRequests Counter32, + lcsStatusTcpIpRadiussAccntClientsEntryStatusResponses Counter32, + lcsStatusTcpIpRadiussAccntClientsEntryLastStatusRequest Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.15.1.1 +lcsStatusTcpIpRadiussAccntClientsEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntClientsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.15.1.4 +lcsStatusTcpIpRadiussAccntClientsEntryAccountRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntClientsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.15.1.5 +lcsStatusTcpIpRadiussAccntClientsEntryDuplicateRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntClientsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.15.1.6 +lcsStatusTcpIpRadiussAccntClientsEntryAccountResponses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntClientsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.15.1.7 +lcsStatusTcpIpRadiussAccntClientsEntryAccountNorecords OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntClientsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.15.1.9 +lcsStatusTcpIpRadiussAccntClientsEntryMalfAccReq OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntClientsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.15.1.10 +lcsStatusTcpIpRadiussAccntClientsEntryBadAuthenticator OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntClientsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.15.1.11 +lcsStatusTcpIpRadiussAccntClientsEntryDropped OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntClientsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.15.1.12 +lcsStatusTcpIpRadiussAccntClientsEntryUnknownType OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntClientsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.15.1.13 +lcsStatusTcpIpRadiussAccntClientsEntryLastRequest OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntClientsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.15.1.14 +lcsStatusTcpIpRadiussAccntClientsEntryNasIdent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntClientsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.15.1.30 +lcsStatusTcpIpRadiussAccntClientsEntryStatusRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntClientsEntry 30 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.15.1.31 +lcsStatusTcpIpRadiussAccntClientsEntryStatusResponses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntClientsEntry 31 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.15.1.32 +lcsStatusTcpIpRadiussAccntClientsEntryLastStatusRequest OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntClientsEntry 32 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.12.2.16 +lcsStatusTcpIpRadiussAccntActAccntSessTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpRadiussAccntActAccntSessEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccnt 16 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.12.2.16.1 +lcsStatusTcpIpRadiussAccntActAccntSessEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpRadiussAccntActAccntSessEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpRadiussAccntActAccntSessEntryIndex + } + ::= { lcsStatusTcpIpRadiussAccntActAccntSessTable 1 } + +LcsStatusTcpIpRadiussAccntActAccntSessEntry ::= SEQUENCE { + lcsStatusTcpIpRadiussAccntActAccntSessEntryIndex Integer32, + lcsStatusTcpIpRadiussAccntActAccntSessEntryNasIpAddress IpAddress, + lcsStatusTcpIpRadiussAccntActAccntSessEntryNasIdent DisplayString, + lcsStatusTcpIpRadiussAccntActAccntSessEntrySessionId DisplayString, + lcsStatusTcpIpRadiussAccntActAccntSessEntryUserName DisplayString, + lcsStatusTcpIpRadiussAccntActAccntSessEntrySessionTime Integer32, + lcsStatusTcpIpRadiussAccntActAccntSessEntryInputPackets Counter32, + lcsStatusTcpIpRadiussAccntActAccntSessEntryOutputPackets Counter32, + lcsStatusTcpIpRadiussAccntActAccntSessEntryInputOctets Counter64, + lcsStatusTcpIpRadiussAccntActAccntSessEntryOutputOctets Counter64, + lcsStatusTcpIpRadiussAccntActAccntSessEntryIpAddress IpAddress, + lcsStatusTcpIpRadiussAccntActAccntSessEntryStartTime DisplayString, + lcsStatusTcpIpRadiussAccntActAccntSessEntryLastUpdate Integer32, + lcsStatusTcpIpRadiussAccntActAccntSessEntryUpdateDelta Integer32, + lcsStatusTcpIpRadiussAccntActAccntSessEntryNasPortType INTEGER, + lcsStatusTcpIpRadiussAccntActAccntSessEntryNasPortId Integer32, + lcsStatusTcpIpRadiussAccntActAccntSessEntryCalledStationId DisplayString, + lcsStatusTcpIpRadiussAccntActAccntSessEntryCallingStationId DisplayString, + lcsStatusTcpIpRadiussAccntActAccntSessEntryNasIpv6Address IpAddress + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.16.1.1 +lcsStatusTcpIpRadiussAccntActAccntSessEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntActAccntSessEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.16.1.2 +lcsStatusTcpIpRadiussAccntActAccntSessEntryNasIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntActAccntSessEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.16.1.3 +lcsStatusTcpIpRadiussAccntActAccntSessEntryNasIdent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntActAccntSessEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.16.1.4 +lcsStatusTcpIpRadiussAccntActAccntSessEntrySessionId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntActAccntSessEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.16.1.5 +lcsStatusTcpIpRadiussAccntActAccntSessEntryUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..48)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntActAccntSessEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.16.1.6 +lcsStatusTcpIpRadiussAccntActAccntSessEntrySessionTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntActAccntSessEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.16.1.7 +lcsStatusTcpIpRadiussAccntActAccntSessEntryInputPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntActAccntSessEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.16.1.8 +lcsStatusTcpIpRadiussAccntActAccntSessEntryOutputPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntActAccntSessEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.16.1.9 +lcsStatusTcpIpRadiussAccntActAccntSessEntryInputOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntActAccntSessEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.16.1.10 +lcsStatusTcpIpRadiussAccntActAccntSessEntryOutputOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntActAccntSessEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.16.1.11 +lcsStatusTcpIpRadiussAccntActAccntSessEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntActAccntSessEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.16.1.12 +lcsStatusTcpIpRadiussAccntActAccntSessEntryStartTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntActAccntSessEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.16.1.15 +lcsStatusTcpIpRadiussAccntActAccntSessEntryLastUpdate OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntActAccntSessEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.16.1.16 +lcsStatusTcpIpRadiussAccntActAccntSessEntryUpdateDelta OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntActAccntSessEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.16.1.17 +lcsStatusTcpIpRadiussAccntActAccntSessEntryNasPortType OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (-1), + eAsync (0), + eSync (1), + eIsdnSync (2), + eV120 (3), + eV110 (4), + eVirtual (5), + ePiafs (6), + eHdlcClearChannel (7), + eX25 (8), + eX75 (9), + eG3Fax (10), + eSdsl (11), + eAdslCap (12), + eAdslDmt (13), + eIdsl (14), + eEthernet (15), + eXdsl (16), + eCable (17), + eWirelessOther (18), + eWireless80211 (19), + eTokenRing (20), + eFddi (21), + eWirelessCdma2000 (22), + eWirelessUmts (23), + eWireless1xEv (24), + eIapp (25), + eFttp (26), + eWireless80216 (27), + eWireless80220 (28), + eWireless80222 (29), + ePppoa (30), + ePppoeoa (31), + ePppoeoe (32), + ePppoeovlan (33), + ePppoeoqinq (34), + eXpon (35) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntActAccntSessEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.16.1.18 +lcsStatusTcpIpRadiussAccntActAccntSessEntryNasPortId OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntActAccntSessEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.16.1.19 +lcsStatusTcpIpRadiussAccntActAccntSessEntryCalledStationId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..48)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntActAccntSessEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.16.1.20 +lcsStatusTcpIpRadiussAccntActAccntSessEntryCallingStationId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..48)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntActAccntSessEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.16.1.21 +lcsStatusTcpIpRadiussAccntActAccntSessEntryNasIpv6Address OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccntActAccntSessEntry 21 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.12.2.17 +lcsStatusTcpIpRadiussAccntComplAccntSessTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpRadiussAccntComplAccntSessEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccnt 17 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.12.2.17.1 +lcsStatusTcpIpRadiussAccntComplAccntSessEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpRadiussAccntComplAccntSessEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpRadiussAccntComplAccntSessEntryIndex + } + ::= { lcsStatusTcpIpRadiussAccntComplAccntSessTable 1 } + +LcsStatusTcpIpRadiussAccntComplAccntSessEntry ::= SEQUENCE { + lcsStatusTcpIpRadiussAccntComplAccntSessEntryIndex Integer32, + lcsStatusTcpIpRadiussAccntComplAccntSessEntryNasIpAddress IpAddress, + lcsStatusTcpIpRadiussAccntComplAccntSessEntryNasIdent DisplayString, + lcsStatusTcpIpRadiussAccntComplAccntSessEntrySessionId DisplayString, + lcsStatusTcpIpRadiussAccntComplAccntSessEntryUserName DisplayString, + lcsStatusTcpIpRadiussAccntComplAccntSessEntrySessionTime Integer32, + lcsStatusTcpIpRadiussAccntComplAccntSessEntryInputPackets Counter32, + lcsStatusTcpIpRadiussAccntComplAccntSessEntryOutputPackets Counter32, + lcsStatusTcpIpRadiussAccntComplAccntSessEntryInputOctets Counter64, + lcsStatusTcpIpRadiussAccntComplAccntSessEntryOutputOctets Counter64, + lcsStatusTcpIpRadiussAccntComplAccntSessEntryIpAddress IpAddress, + lcsStatusTcpIpRadiussAccntComplAccntSessEntryStartTime DisplayString, + lcsStatusTcpIpRadiussAccntComplAccntSessEntryStopTime DisplayString, + lcsStatusTcpIpRadiussAccntComplAccntSessEntryTerminateCause INTEGER, + lcsStatusTcpIpRadiussAccntComplAccntSessEntryNasPortType INTEGER, + lcsStatusTcpIpRadiussAccntComplAccntSessEntryNasPortId Integer32, + lcsStatusTcpIpRadiussAccntComplAccntSessEntryCalledStationId DisplayString, + lcsStatusTcpIpRadiussAccntComplAccntSessEntryCallingStationId DisplayString, + lcsStatusTcpIpRadiussAccntComplAccntSessEntryNasIpv6Address IpAddress + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.17.1.1 +lcsStatusTcpIpRadiussAccntComplAccntSessEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntComplAccntSessEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.17.1.2 +lcsStatusTcpIpRadiussAccntComplAccntSessEntryNasIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntComplAccntSessEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.17.1.3 +lcsStatusTcpIpRadiussAccntComplAccntSessEntryNasIdent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntComplAccntSessEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.17.1.4 +lcsStatusTcpIpRadiussAccntComplAccntSessEntrySessionId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntComplAccntSessEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.17.1.5 +lcsStatusTcpIpRadiussAccntComplAccntSessEntryUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..48)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntComplAccntSessEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.17.1.6 +lcsStatusTcpIpRadiussAccntComplAccntSessEntrySessionTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntComplAccntSessEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.17.1.7 +lcsStatusTcpIpRadiussAccntComplAccntSessEntryInputPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntComplAccntSessEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.17.1.8 +lcsStatusTcpIpRadiussAccntComplAccntSessEntryOutputPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntComplAccntSessEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.17.1.9 +lcsStatusTcpIpRadiussAccntComplAccntSessEntryInputOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntComplAccntSessEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.17.1.10 +lcsStatusTcpIpRadiussAccntComplAccntSessEntryOutputOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntComplAccntSessEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.17.1.11 +lcsStatusTcpIpRadiussAccntComplAccntSessEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntComplAccntSessEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.17.1.12 +lcsStatusTcpIpRadiussAccntComplAccntSessEntryStartTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntComplAccntSessEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.17.1.13 +lcsStatusTcpIpRadiussAccntComplAccntSessEntryStopTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntComplAccntSessEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.17.1.14 +lcsStatusTcpIpRadiussAccntComplAccntSessEntryTerminateCause OBJECT-TYPE + SYNTAX INTEGER { + eUserRequest (1), + eLostCarrier (2), + eLostService (3), + eIdleTimeout (4), + eSessionTimeout (5), + eAdminReset (6), + eAdminReboot (7), + ePortError (8), + eNasError (9), + eNasRequest (10), + eNasReboot (11), + ePortUnneeded (12), + ePortPreempted (13), + ePortSuspended (14), + eServiceUnavailable (15), + eCallback (16), + eUserError (17), + eHostRequest (18), + eSupplicantRestart (19), + eReauthenticationFailure (20), + ePortReinit (21), + ePortAdminDisabled (22) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntComplAccntSessEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.17.1.17 +lcsStatusTcpIpRadiussAccntComplAccntSessEntryNasPortType OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (-1), + eAsync (0), + eSync (1), + eIsdnSync (2), + eV120 (3), + eV110 (4), + eVirtual (5), + ePiafs (6), + eHdlcClearChannel (7), + eX25 (8), + eX75 (9), + eG3Fax (10), + eSdsl (11), + eAdslCap (12), + eAdslDmt (13), + eIdsl (14), + eEthernet (15), + eXdsl (16), + eCable (17), + eWirelessOther (18), + eWireless80211 (19), + eTokenRing (20), + eFddi (21), + eWirelessCdma2000 (22), + eWirelessUmts (23), + eWireless1xEv (24), + eIapp (25), + eFttp (26), + eWireless80216 (27), + eWireless80220 (28), + eWireless80222 (29), + ePppoa (30), + ePppoeoa (31), + ePppoeoe (32), + ePppoeovlan (33), + ePppoeoqinq (34), + eXpon (35) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntComplAccntSessEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.17.1.18 +lcsStatusTcpIpRadiussAccntComplAccntSessEntryNasPortId OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntComplAccntSessEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.17.1.19 +lcsStatusTcpIpRadiussAccntComplAccntSessEntryCalledStationId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..48)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntComplAccntSessEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.17.1.20 +lcsStatusTcpIpRadiussAccntComplAccntSessEntryCallingStationId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..48)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntComplAccntSessEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.17.1.21 +lcsStatusTcpIpRadiussAccntComplAccntSessEntryNasIpv6Address OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccntComplAccntSessEntry 21 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.12.2.18 +lcsStatusTcpIpRadiussAccntAccountingTotalTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpRadiussAccntAccountingTotalEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccnt 18 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.12.2.18.1 +lcsStatusTcpIpRadiussAccntAccountingTotalEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpRadiussAccntAccountingTotalEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpRadiussAccntAccountingTotalEntryUserName + } + ::= { lcsStatusTcpIpRadiussAccntAccountingTotalTable 1 } + +LcsStatusTcpIpRadiussAccntAccountingTotalEntry ::= SEQUENCE { + lcsStatusTcpIpRadiussAccntAccountingTotalEntryUserName DisplayString, + lcsStatusTcpIpRadiussAccntAccountingTotalEntryTime Integer32, + lcsStatusTcpIpRadiussAccntAccountingTotalEntryInputPackets Integer32, + lcsStatusTcpIpRadiussAccntAccountingTotalEntryOutputPackets Integer32, + lcsStatusTcpIpRadiussAccntAccountingTotalEntryInputOctets Integer32, + lcsStatusTcpIpRadiussAccntAccountingTotalEntryOutputOctets Integer32, + lcsStatusTcpIpRadiussAccntAccountingTotalEntryFirstLogin DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.18.1.1 +lcsStatusTcpIpRadiussAccntAccountingTotalEntryUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..48)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntAccountingTotalEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.18.1.2 +lcsStatusTcpIpRadiussAccntAccountingTotalEntryTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntAccountingTotalEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.18.1.3 +lcsStatusTcpIpRadiussAccntAccountingTotalEntryInputPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntAccountingTotalEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.18.1.4 +lcsStatusTcpIpRadiussAccntAccountingTotalEntryOutputPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntAccountingTotalEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.18.1.5 +lcsStatusTcpIpRadiussAccntAccountingTotalEntryInputOctets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntAccountingTotalEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.18.1.6 +lcsStatusTcpIpRadiussAccntAccountingTotalEntryOutputOctets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntAccountingTotalEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.18.1.7 +lcsStatusTcpIpRadiussAccntAccountingTotalEntryFirstLogin OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..21)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntAccountingTotalEntry 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.2.19 +lcsStatusTcpIpRadiussAccntDeleteAccountingTotal OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccnt 19 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.12.2.20 +lcsStatusTcpIpRadiussAccntIpv6ClientsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpRadiussAccntIpv6ClientsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccnt 20 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.12.2.20.1 +lcsStatusTcpIpRadiussAccntIpv6ClientsEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpRadiussAccntIpv6ClientsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpRadiussAccntIpv6ClientsEntryIpAddress + } + ::= { lcsStatusTcpIpRadiussAccntIpv6ClientsTable 1 } + +LcsStatusTcpIpRadiussAccntIpv6ClientsEntry ::= SEQUENCE { + lcsStatusTcpIpRadiussAccntIpv6ClientsEntryIpAddress IpAddress, + lcsStatusTcpIpRadiussAccntIpv6ClientsEntryAccountRequests Counter32, + lcsStatusTcpIpRadiussAccntIpv6ClientsEntryDuplicateRequests Counter32, + lcsStatusTcpIpRadiussAccntIpv6ClientsEntryAccountResponses Counter32, + lcsStatusTcpIpRadiussAccntIpv6ClientsEntryAccountNorecords Counter32, + lcsStatusTcpIpRadiussAccntIpv6ClientsEntryMalfAccReq Counter32, + lcsStatusTcpIpRadiussAccntIpv6ClientsEntryBadAuthenticator Counter32, + lcsStatusTcpIpRadiussAccntIpv6ClientsEntryDropped Counter32, + lcsStatusTcpIpRadiussAccntIpv6ClientsEntryUnknownType Counter32, + lcsStatusTcpIpRadiussAccntIpv6ClientsEntryLastRequest Integer32, + lcsStatusTcpIpRadiussAccntIpv6ClientsEntryNasIdent DisplayString, + lcsStatusTcpIpRadiussAccntIpv6ClientsEntryStatusRequests Counter32, + lcsStatusTcpIpRadiussAccntIpv6ClientsEntryStatusResponses Counter32, + lcsStatusTcpIpRadiussAccntIpv6ClientsEntryLastStatusRequest Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.20.1.1 +lcsStatusTcpIpRadiussAccntIpv6ClientsEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccntIpv6ClientsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.20.1.4 +lcsStatusTcpIpRadiussAccntIpv6ClientsEntryAccountRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccntIpv6ClientsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.20.1.5 +lcsStatusTcpIpRadiussAccntIpv6ClientsEntryDuplicateRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccntIpv6ClientsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.20.1.6 +lcsStatusTcpIpRadiussAccntIpv6ClientsEntryAccountResponses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccntIpv6ClientsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.20.1.7 +lcsStatusTcpIpRadiussAccntIpv6ClientsEntryAccountNorecords OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccntIpv6ClientsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.20.1.9 +lcsStatusTcpIpRadiussAccntIpv6ClientsEntryMalfAccReq OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccntIpv6ClientsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.20.1.10 +lcsStatusTcpIpRadiussAccntIpv6ClientsEntryBadAuthenticator OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccntIpv6ClientsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.20.1.11 +lcsStatusTcpIpRadiussAccntIpv6ClientsEntryDropped OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccntIpv6ClientsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.20.1.12 +lcsStatusTcpIpRadiussAccntIpv6ClientsEntryUnknownType OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccntIpv6ClientsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.20.1.13 +lcsStatusTcpIpRadiussAccntIpv6ClientsEntryLastRequest OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccntIpv6ClientsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.20.1.14 +lcsStatusTcpIpRadiussAccntIpv6ClientsEntryNasIdent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccntIpv6ClientsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.20.1.30 +lcsStatusTcpIpRadiussAccntIpv6ClientsEntryStatusRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccntIpv6ClientsEntry 30 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.20.1.31 +lcsStatusTcpIpRadiussAccntIpv6ClientsEntryStatusResponses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccntIpv6ClientsEntry 31 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.2.20.1.32 +lcsStatusTcpIpRadiussAccntIpv6ClientsEntryLastStatusRequest OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiussAccntIpv6ClientsEntry 32 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.2.30 +lcsStatusTcpIpRadiussAccntTotalStatusRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccnt 30 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.2.31 +lcsStatusTcpIpRadiussAccntTotalStatusResponses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccnt 31 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.2.100 +lcsStatusTcpIpRadiussAccntDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussAccnt 100 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.12.10 +lcsStatusTcpIpRadiussLogTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpRadiussLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuss 10 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.12.10.1 +lcsStatusTcpIpRadiussLogTableEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpRadiussLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpRadiussLogTableEntryIndex + } + ::= { lcsStatusTcpIpRadiussLogTableTable 1 } + +LcsStatusTcpIpRadiussLogTableEntry ::= SEQUENCE { + lcsStatusTcpIpRadiussLogTableEntryIndex Integer32, + lcsStatusTcpIpRadiussLogTableEntryTime DisplayString, + lcsStatusTcpIpRadiussLogTableEntryEvent DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.10.1.1 +lcsStatusTcpIpRadiussLogTableEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussLogTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.10.1.2 +lcsStatusTcpIpRadiussLogTableEntryTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..21)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussLogTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.12.10.1.3 +lcsStatusTcpIpRadiussLogTableEntryEvent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiussLogTableEntry 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.12.100 +lcsStatusTcpIpRadiussDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuss 100 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.9.13 +lcsStatusTcpIpRadiusc OBJECT IDENTIFIER ::= { lcsStatusTcpIp 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.13.1 +lcsStatusTcpIpRadiuscInvalAuthAddrResp OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiusc 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.13.2 +lcsStatusTcpIpRadiuscAuthServTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpRadiuscAuthServEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiusc 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.13.2.1 +lcsStatusTcpIpRadiuscAuthServEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpRadiuscAuthServEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpRadiuscAuthServEntryIpAddr, + lcsStatusTcpIpRadiuscAuthServEntryPort + } + ::= { lcsStatusTcpIpRadiuscAuthServTable 1 } + +LcsStatusTcpIpRadiuscAuthServEntry ::= SEQUENCE { + lcsStatusTcpIpRadiuscAuthServEntryIpAddr IpAddress, + lcsStatusTcpIpRadiuscAuthServEntryPort Integer32, + lcsStatusTcpIpRadiuscAuthServEntryLastRequest Integer32, + lcsStatusTcpIpRadiuscAuthServEntryRoundTripTime Counter32, + lcsStatusTcpIpRadiuscAuthServEntryAccReq Counter32, + lcsStatusTcpIpRadiuscAuthServEntryAccRetrs Counter32, + lcsStatusTcpIpRadiuscAuthServEntryAccAccepts Counter32, + lcsStatusTcpIpRadiuscAuthServEntryAccRej Counter32, + lcsStatusTcpIpRadiuscAuthServEntryAccChallenges Counter32, + lcsStatusTcpIpRadiuscAuthServEntryMalfAccResp Counter32, + lcsStatusTcpIpRadiuscAuthServEntryBadAuth Counter32, + lcsStatusTcpIpRadiuscAuthServEntryPendReq Counter32, + lcsStatusTcpIpRadiuscAuthServEntryTimeouts Counter32, + lcsStatusTcpIpRadiuscAuthServEntryUnknownTypes Counter32, + lcsStatusTcpIpRadiuscAuthServEntryDropped Counter32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.2.1.1 +lcsStatusTcpIpRadiuscAuthServEntryIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAuthServEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.2.1.2 +lcsStatusTcpIpRadiuscAuthServEntryPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAuthServEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.2.1.3 +lcsStatusTcpIpRadiuscAuthServEntryLastRequest OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAuthServEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.2.1.4 +lcsStatusTcpIpRadiuscAuthServEntryRoundTripTime OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAuthServEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.2.1.5 +lcsStatusTcpIpRadiuscAuthServEntryAccReq OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAuthServEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.2.1.6 +lcsStatusTcpIpRadiuscAuthServEntryAccRetrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAuthServEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.2.1.7 +lcsStatusTcpIpRadiuscAuthServEntryAccAccepts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAuthServEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.2.1.8 +lcsStatusTcpIpRadiuscAuthServEntryAccRej OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAuthServEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.2.1.9 +lcsStatusTcpIpRadiuscAuthServEntryAccChallenges OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAuthServEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.2.1.10 +lcsStatusTcpIpRadiuscAuthServEntryMalfAccResp OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAuthServEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.2.1.11 +lcsStatusTcpIpRadiuscAuthServEntryBadAuth OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAuthServEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.2.1.12 +lcsStatusTcpIpRadiuscAuthServEntryPendReq OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAuthServEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.2.1.13 +lcsStatusTcpIpRadiuscAuthServEntryTimeouts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAuthServEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.2.1.14 +lcsStatusTcpIpRadiuscAuthServEntryUnknownTypes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAuthServEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.2.1.15 +lcsStatusTcpIpRadiuscAuthServEntryDropped OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAuthServEntry 15 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.13.3 +lcsStatusTcpIpRadiuscIpv6AuthenticationServersTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpRadiuscIpv6AuthenticationServersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiusc 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.13.3.1 +lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpRadiuscIpv6AuthenticationServersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryIpAddr, + lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryPort + } + ::= { lcsStatusTcpIpRadiuscIpv6AuthenticationServersTable 1 } + +LcsStatusTcpIpRadiuscIpv6AuthenticationServersEntry ::= SEQUENCE { + lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryIpAddr IpAddress, + lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryPort Integer32, + lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryLastRequest Integer32, + lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryRoundTripTime Counter32, + lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryAccReq Counter32, + lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryAccRetrs Counter32, + lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryAccAccepts Counter32, + lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryAccRej Counter32, + lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryAccChallenges Counter32, + lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryMalfAccResp Counter32, + lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryBadAuth Counter32, + lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryPendReq Counter32, + lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryTimeouts Counter32, + lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryUnknownTypes Counter32, + lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryDropped Counter32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.3.1.1 +lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.3.1.2 +lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.3.1.3 +lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryLastRequest OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.3.1.4 +lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryRoundTripTime OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.3.1.5 +lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryAccReq OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.3.1.6 +lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryAccRetrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.3.1.7 +lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryAccAccepts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.3.1.8 +lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryAccRej OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.3.1.9 +lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryAccChallenges OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.3.1.10 +lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryMalfAccResp OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.3.1.11 +lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryBadAuth OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.3.1.12 +lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryPendReq OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.3.1.13 +lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryTimeouts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.3.1.14 +lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryUnknownTypes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.3.1.15 +lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntryDropped OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AuthenticationServersEntry 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.13.11 +lcsStatusTcpIpRadiuscInvalAccntAddrResp OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiusc 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.13.12 +lcsStatusTcpIpRadiuscAccntServTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpRadiuscAccntServEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiusc 12 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.13.12.1 +lcsStatusTcpIpRadiuscAccntServEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpRadiuscAccntServEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpRadiuscAccntServEntryIpAddr, + lcsStatusTcpIpRadiuscAccntServEntryPort + } + ::= { lcsStatusTcpIpRadiuscAccntServTable 1 } + +LcsStatusTcpIpRadiuscAccntServEntry ::= SEQUENCE { + lcsStatusTcpIpRadiuscAccntServEntryIpAddr IpAddress, + lcsStatusTcpIpRadiuscAccntServEntryPort Integer32, + lcsStatusTcpIpRadiuscAccntServEntryLastRequest Integer32, + lcsStatusTcpIpRadiuscAccntServEntryRoundTripTime Counter32, + lcsStatusTcpIpRadiuscAccntServEntryAccntReq Counter32, + lcsStatusTcpIpRadiuscAccntServEntryAccntRetrans Counter32, + lcsStatusTcpIpRadiuscAccntServEntryAccntResp Counter32, + lcsStatusTcpIpRadiuscAccntServEntryMalfAccntResp Counter32, + lcsStatusTcpIpRadiuscAccntServEntryBadAuth Counter32, + lcsStatusTcpIpRadiuscAccntServEntryPendReq Counter32, + lcsStatusTcpIpRadiuscAccntServEntryTimeouts Counter32, + lcsStatusTcpIpRadiuscAccntServEntryUnknownTypes Counter32, + lcsStatusTcpIpRadiuscAccntServEntryDropped Counter32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.12.1.1 +lcsStatusTcpIpRadiuscAccntServEntryIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAccntServEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.12.1.2 +lcsStatusTcpIpRadiuscAccntServEntryPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAccntServEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.12.1.3 +lcsStatusTcpIpRadiuscAccntServEntryLastRequest OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAccntServEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.12.1.4 +lcsStatusTcpIpRadiuscAccntServEntryRoundTripTime OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAccntServEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.12.1.5 +lcsStatusTcpIpRadiuscAccntServEntryAccntReq OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAccntServEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.12.1.6 +lcsStatusTcpIpRadiuscAccntServEntryAccntRetrans OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAccntServEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.12.1.7 +lcsStatusTcpIpRadiuscAccntServEntryAccntResp OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAccntServEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.12.1.8 +lcsStatusTcpIpRadiuscAccntServEntryMalfAccntResp OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAccntServEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.12.1.9 +lcsStatusTcpIpRadiuscAccntServEntryBadAuth OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAccntServEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.12.1.10 +lcsStatusTcpIpRadiuscAccntServEntryPendReq OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAccntServEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.12.1.11 +lcsStatusTcpIpRadiuscAccntServEntryTimeouts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAccntServEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.12.1.12 +lcsStatusTcpIpRadiuscAccntServEntryUnknownTypes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAccntServEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.12.1.13 +lcsStatusTcpIpRadiuscAccntServEntryDropped OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscAccntServEntry 13 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.13.13 +lcsStatusTcpIpRadiuscIpv6AccountingServersTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpRadiuscIpv6AccountingServersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiusc 13 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.13.13.1 +lcsStatusTcpIpRadiuscIpv6AccountingServersEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpRadiuscIpv6AccountingServersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpRadiuscIpv6AccountingServersEntryIpAddr, + lcsStatusTcpIpRadiuscIpv6AccountingServersEntryPort + } + ::= { lcsStatusTcpIpRadiuscIpv6AccountingServersTable 1 } + +LcsStatusTcpIpRadiuscIpv6AccountingServersEntry ::= SEQUENCE { + lcsStatusTcpIpRadiuscIpv6AccountingServersEntryIpAddr IpAddress, + lcsStatusTcpIpRadiuscIpv6AccountingServersEntryPort Integer32, + lcsStatusTcpIpRadiuscIpv6AccountingServersEntryLastRequest Integer32, + lcsStatusTcpIpRadiuscIpv6AccountingServersEntryRoundTripTime Counter32, + lcsStatusTcpIpRadiuscIpv6AccountingServersEntryAccntReq Counter32, + lcsStatusTcpIpRadiuscIpv6AccountingServersEntryAccntRetrans Counter32, + lcsStatusTcpIpRadiuscIpv6AccountingServersEntryAccntResp Counter32, + lcsStatusTcpIpRadiuscIpv6AccountingServersEntryMalfAccntResp Counter32, + lcsStatusTcpIpRadiuscIpv6AccountingServersEntryBadAuth Counter32, + lcsStatusTcpIpRadiuscIpv6AccountingServersEntryPendReq Counter32, + lcsStatusTcpIpRadiuscIpv6AccountingServersEntryTimeouts Counter32, + lcsStatusTcpIpRadiuscIpv6AccountingServersEntryUnknownTypes Counter32, + lcsStatusTcpIpRadiuscIpv6AccountingServersEntryDropped Counter32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.13.1.1 +lcsStatusTcpIpRadiuscIpv6AccountingServersEntryIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AccountingServersEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.13.1.2 +lcsStatusTcpIpRadiuscIpv6AccountingServersEntryPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AccountingServersEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.13.1.3 +lcsStatusTcpIpRadiuscIpv6AccountingServersEntryLastRequest OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AccountingServersEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.13.1.4 +lcsStatusTcpIpRadiuscIpv6AccountingServersEntryRoundTripTime OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AccountingServersEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.13.1.5 +lcsStatusTcpIpRadiuscIpv6AccountingServersEntryAccntReq OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AccountingServersEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.13.1.6 +lcsStatusTcpIpRadiuscIpv6AccountingServersEntryAccntRetrans OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AccountingServersEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.13.1.7 +lcsStatusTcpIpRadiuscIpv6AccountingServersEntryAccntResp OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AccountingServersEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.13.1.8 +lcsStatusTcpIpRadiuscIpv6AccountingServersEntryMalfAccntResp OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AccountingServersEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.13.1.9 +lcsStatusTcpIpRadiuscIpv6AccountingServersEntryBadAuth OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AccountingServersEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.13.1.10 +lcsStatusTcpIpRadiuscIpv6AccountingServersEntryPendReq OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AccountingServersEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.13.1.11 +lcsStatusTcpIpRadiuscIpv6AccountingServersEntryTimeouts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AccountingServersEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.13.1.12 +lcsStatusTcpIpRadiuscIpv6AccountingServersEntryUnknownTypes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AccountingServersEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.13.13.1.13 +lcsStatusTcpIpRadiuscIpv6AccountingServersEntryDropped OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpRadiuscIpv6AccountingServersEntry 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.9.13.100 +lcsStatusTcpIpRadiuscDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusTcpIpRadiusc 100 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.9.20 +lcsStatusTcpIpNetworkListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTcpIpNetworkListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIp 20 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.9.20.1 +lcsStatusTcpIpNetworkListEntry OBJECT-TYPE + SYNTAX LcsStatusTcpIpNetworkListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTcpIpNetworkListEntryNetworkName + } + ::= { lcsStatusTcpIpNetworkListTable 1 } + +LcsStatusTcpIpNetworkListEntry ::= SEQUENCE { + lcsStatusTcpIpNetworkListEntryNetworkName DisplayString, + lcsStatusTcpIpNetworkListEntryIpAddress IpAddress, + lcsStatusTcpIpNetworkListEntryIpNetmask IpAddress, + lcsStatusTcpIpNetworkListEntryVlanId Integer32, + lcsStatusTcpIpNetworkListEntryInterface INTEGER, + lcsStatusTcpIpNetworkListEntrySrcCheck INTEGER, + lcsStatusTcpIpNetworkListEntryType INTEGER, + lcsStatusTcpIpNetworkListEntryRtgTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.20.1.1 +lcsStatusTcpIpNetworkListEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetworkListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.20.1.2 +lcsStatusTcpIpNetworkListEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetworkListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.20.1.3 +lcsStatusTcpIpNetworkListEntryIpNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetworkListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.20.1.4 +lcsStatusTcpIpNetworkListEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetworkListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.20.1.5 +lcsStatusTcpIpNetworkListEntryInterface OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (256), + eLan2 (257), + eLan3 (258), + eLan4 (259), + eLan5 (260), + eWlan1 (512), + eWlan2 (513), + eP2p11 (768), + eP2p12 (769), + eP2p13 (770), + eP2p14 (771), + eP2p15 (772), + eP2p16 (773), + eP2p21 (774), + eP2p22 (775), + eP2p23 (776), + eP2p24 (777), + eP2p25 (778), + eP2p26 (779), + eP2p17 (799), + eP2p18 (800), + eP2p19 (801), + eP2p110 (802), + eP2p111 (803), + eP2p112 (804), + eP2p113 (805), + eP2p114 (806), + eP2p115 (807), + eP2p116 (808), + eP2p27 (831), + eP2p28 (832), + eP2p29 (833), + eP2p210 (834), + eP2p211 (835), + eP2p212 (836), + eP2p213 (837), + eP2p214 (838), + eP2p215 (839), + eP2p216 (840), + eWlan12 (1024), + eWlan13 (1025), + eWlan14 (1026), + eWlan15 (1027), + eWlan16 (1028), + eWlan17 (1029), + eWlan18 (1030), + eWlan22 (1031), + eWlan23 (1032), + eWlan24 (1033), + eWlan25 (1034), + eWlan26 (1035), + eWlan27 (1036), + eWlan28 (1037), + eBrg1 (1536), + eBrg2 (1537), + eBrg3 (1538), + eBrg4 (1539), + eBrg5 (1540), + eBrg6 (1541), + eBrg7 (1542), + eBrg8 (1543), + eWlcTunnel1 (1792), + eWlcTunnel2 (1793), + eWlcTunnel3 (1794), + eWlcTunnel4 (1795), + eWlcTunnel5 (1796), + eWlcTunnel6 (1797), + eWlcTunnel7 (1798), + eWlcTunnel8 (1799), + eWlcTunnel9 (1800), + eWlcTunnel10 (1801), + eWlcTunnel11 (1802), + eWlcTunnel12 (1803), + eWlcTunnel13 (1804), + eWlcTunnel14 (1805), + eWlcTunnel15 (1806), + eWlcTunnel16 (1807), + eWlcTunnel17 (1808), + eWlcTunnel18 (1809), + eWlcTunnel19 (1810), + eWlcTunnel20 (1811), + eWlcTunnel21 (1812), + eWlcTunnel22 (1813), + eWlcTunnel23 (1814), + eWlcTunnel24 (1815), + eWlcTunnel25 (1816), + eWlcTunnel26 (1817), + eWlcTunnel27 (1818), + eWlcTunnel28 (1819), + eWlcTunnel29 (1820), + eWlcTunnel30 (1821), + eWlcTunnel31 (1822), + eWlcTunnel32 (1823), + eWlcTunnelAutowds (1824), + eBundle1 (2048), + eBundle2 (2049), + eAny (65535) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetworkListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.20.1.6 +lcsStatusTcpIpNetworkListEntrySrcCheck OBJECT-TYPE + SYNTAX INTEGER { + eLoose (0), + eStrict (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetworkListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.20.1.7 +lcsStatusTcpIpNetworkListEntryType OBJECT-TYPE + SYNTAX INTEGER { + eDisabled (0), + eIntranet (1), + eDmz (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetworkListEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.9.20.1.8 +lcsStatusTcpIpNetworkListEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTcpIpNetworkListEntry 8 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.10 +lcsStatusIpRouter OBJECT IDENTIFIER ::= { lcsStatus 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.1 +lcsStatusIpRouterLanRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.2 +lcsStatusIpRouterLanTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.3 +lcsStatusIpRouterLanLocalRoutings OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.4 +lcsStatusIpRouterLanNetworkErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.5 +lcsStatusIpRouterLanRoutingErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.6 +lcsStatusIpRouterLanTtlErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.7 +lcsStatusIpRouterLanFilters OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.8 +lcsStatusIpRouterLanDiscards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.9 +lcsStatusIpRouterWanRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.10 +lcsStatusIpRouterWanTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.11 +lcsStatusIpRouterWanNetworkErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.12 +lcsStatusIpRouterWanTtlErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.13 +lcsStatusIpRouterWanFilters OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.14 +lcsStatusIpRouterWanDiscards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.15 +lcsStatusIpRouterWanTypeErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.16 +lcsStatusIpRouterArpErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 16 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.17 +lcsStatusIpRouterEstablishTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterEstablishTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 17 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.17.1 +lcsStatusIpRouterEstablishTableEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterEstablishTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterEstablishTableEntryTime, + lcsStatusIpRouterEstablishTableEntryCounter + } + ::= { lcsStatusIpRouterEstablishTableTable 1 } + +LcsStatusIpRouterEstablishTableEntry ::= SEQUENCE { + lcsStatusIpRouterEstablishTableEntryTime DisplayString, + lcsStatusIpRouterEstablishTableEntryDestAddress IpAddress, + lcsStatusIpRouterEstablishTableEntrySrcAddress IpAddress, + lcsStatusIpRouterEstablishTableEntryProt INTEGER, + lcsStatusIpRouterEstablishTableEntryDPortFrom Integer32, + lcsStatusIpRouterEstablishTableEntrySourcePort Integer32, + lcsStatusIpRouterEstablishTableEntryCounter Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.17.1.1 +lcsStatusIpRouterEstablishTableEntryTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterEstablishTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.17.1.2 +lcsStatusIpRouterEstablishTableEntryDestAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterEstablishTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.17.1.3 +lcsStatusIpRouterEstablishTableEntrySrcAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterEstablishTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.17.1.4 +lcsStatusIpRouterEstablishTableEntryProt OBJECT-TYPE + SYNTAX INTEGER { + eIcmp (1), + eIgmp (2), + eGgt (3), + eIpip (4), + eTcp (6), + eEgp (8), + eUdp (17), + eGre (47), + eEsp (50), + eAh (51), + eCftp (62), + eIpcomp (108), + eVrrp (112), + eSrp (119) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterEstablishTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.17.1.5 +lcsStatusIpRouterEstablishTableEntryDPortFrom OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterEstablishTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.17.1.6 +lcsStatusIpRouterEstablishTableEntrySourcePort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterEstablishTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.17.1.7 +lcsStatusIpRouterEstablishTableEntryCounter OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterEstablishTableEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.18 +lcsStatusIpRouterProtocolTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterProtocolTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 18 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.18.1 +lcsStatusIpRouterProtocolTableEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterProtocolTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterProtocolTableEntryProt + } + ::= { lcsStatusIpRouterProtocolTableTable 1 } + +LcsStatusIpRouterProtocolTableEntry ::= SEQUENCE { + lcsStatusIpRouterProtocolTableEntryProt INTEGER, + lcsStatusIpRouterProtocolTableEntryLanTx Counter32, + lcsStatusIpRouterProtocolTableEntryWanTx Counter32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.18.1.1 +lcsStatusIpRouterProtocolTableEntryProt OBJECT-TYPE + SYNTAX INTEGER { + eIcmp (1), + eIgmp (2), + eGgt (3), + eIpip (4), + eTcp (6), + eEgp (8), + eUdp (17), + eGre (47), + eEsp (50), + eAh (51), + eCftp (62), + eIpcomp (108), + eVrrp (112), + eSrp (119) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterProtocolTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.18.1.2 +lcsStatusIpRouterProtocolTableEntryLanTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterProtocolTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.18.1.3 +lcsStatusIpRouterProtocolTableEntryWanTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterProtocolTableEntry 3 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.10.19 +lcsStatusIpRouterRip OBJECT IDENTIFIER ::= { lcsStatusIpRouter 19 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.19.1 +lcsStatusIpRouterRipRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRip 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.19.2 +lcsStatusIpRouterRipRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRip 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.19.3 +lcsStatusIpRouterRipResponse OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRip 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.19.4 +lcsStatusIpRouterRipDiscards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRip 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.19.5 +lcsStatusIpRouterRipErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRip 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.19.6 +lcsStatusIpRouterRipEntryErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRip 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.19.7 +lcsStatusIpRouterRipTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRip 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.19.8 +lcsStatusIpRouterRipBestRoutesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterRipBestRoutesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRip 8 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.19.8.1 +lcsStatusIpRouterRipBestRoutesEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterRipBestRoutesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterRipBestRoutesEntryIpAddress, + lcsStatusIpRouterRipBestRoutesEntryIpNetmask, + lcsStatusIpRouterRipBestRoutesEntryRtgTag, + lcsStatusIpRouterRipBestRoutesEntryGateway + } + ::= { lcsStatusIpRouterRipBestRoutesTable 1 } + +LcsStatusIpRouterRipBestRoutesEntry ::= SEQUENCE { + lcsStatusIpRouterRipBestRoutesEntryIpAddress IpAddress, + lcsStatusIpRouterRipBestRoutesEntryIpNetmask IpAddress, + lcsStatusIpRouterRipBestRoutesEntryTime Integer32, + lcsStatusIpRouterRipBestRoutesEntryDistance Integer32, + lcsStatusIpRouterRipBestRoutesEntryGateway IpAddress, + lcsStatusIpRouterRipBestRoutesEntryRtgTag Integer32, + lcsStatusIpRouterRipBestRoutesEntryPeer DisplayString, + lcsStatusIpRouterRipBestRoutesEntryVlanId Integer32, + lcsStatusIpRouterRipBestRoutesEntryNetworkName DisplayString, + lcsStatusIpRouterRipBestRoutesEntryPort INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.8.1.1 +lcsStatusIpRouterRipBestRoutesEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipBestRoutesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.8.1.2 +lcsStatusIpRouterRipBestRoutesEntryIpNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipBestRoutesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.8.1.3 +lcsStatusIpRouterRipBestRoutesEntryTime OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipBestRoutesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.8.1.4 +lcsStatusIpRouterRipBestRoutesEntryDistance OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipBestRoutesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.8.1.5 +lcsStatusIpRouterRipBestRoutesEntryGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipBestRoutesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.8.1.6 +lcsStatusIpRouterRipBestRoutesEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipBestRoutesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.8.1.8 +lcsStatusIpRouterRipBestRoutesEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipBestRoutesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.8.1.10 +lcsStatusIpRouterRipBestRoutesEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipBestRoutesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.8.1.11 +lcsStatusIpRouterRipBestRoutesEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipBestRoutesEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.8.1.12 +lcsStatusIpRouterRipBestRoutesEntryPort OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (256), + eLan2 (257), + eLan3 (258), + eLan4 (259), + eLan5 (260), + eWlan1 (512), + eWlan2 (513), + eP2p11 (768), + eP2p12 (769), + eP2p13 (770), + eP2p14 (771), + eP2p15 (772), + eP2p16 (773), + eP2p21 (774), + eP2p22 (775), + eP2p23 (776), + eP2p24 (777), + eP2p25 (778), + eP2p26 (779), + eP2p17 (799), + eP2p18 (800), + eP2p19 (801), + eP2p110 (802), + eP2p111 (803), + eP2p112 (804), + eP2p113 (805), + eP2p114 (806), + eP2p115 (807), + eP2p116 (808), + eP2p27 (831), + eP2p28 (832), + eP2p29 (833), + eP2p210 (834), + eP2p211 (835), + eP2p212 (836), + eP2p213 (837), + eP2p214 (838), + eP2p215 (839), + eP2p216 (840), + eWlan12 (1024), + eWlan13 (1025), + eWlan14 (1026), + eWlan15 (1027), + eWlan16 (1028), + eWlan17 (1029), + eWlan18 (1030), + eWlan22 (1031), + eWlan23 (1032), + eWlan24 (1033), + eWlan25 (1034), + eWlan26 (1035), + eWlan27 (1036), + eWlan28 (1037), + eBrg1 (1536), + eBrg2 (1537), + eBrg3 (1538), + eBrg4 (1539), + eBrg5 (1540), + eBrg6 (1541), + eBrg7 (1542), + eBrg8 (1543), + eWlcTunnel1 (1792), + eWlcTunnel2 (1793), + eWlcTunnel3 (1794), + eWlcTunnel4 (1795), + eWlcTunnel5 (1796), + eWlcTunnel6 (1797), + eWlcTunnel7 (1798), + eWlcTunnel8 (1799), + eWlcTunnel9 (1800), + eWlcTunnel10 (1801), + eWlcTunnel11 (1802), + eWlcTunnel12 (1803), + eWlcTunnel13 (1804), + eWlcTunnel14 (1805), + eWlcTunnel15 (1806), + eWlcTunnel16 (1807), + eWlcTunnel17 (1808), + eWlcTunnel18 (1809), + eWlcTunnel19 (1810), + eWlcTunnel20 (1811), + eWlcTunnel21 (1812), + eWlcTunnel22 (1813), + eWlcTunnel23 (1814), + eWlcTunnel24 (1815), + eWlcTunnel25 (1816), + eWlcTunnel26 (1817), + eWlcTunnel27 (1818), + eWlcTunnel28 (1819), + eWlcTunnel29 (1820), + eWlcTunnel30 (1821), + eWlcTunnel31 (1822), + eWlcTunnel32 (1823), + eWlcTunnelAutowds (1824), + eBundle1 (2048), + eBundle2 (2049), + eAny (65535) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipBestRoutesEntry 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.19.9 +lcsStatusIpRouterRipDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRip 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.19.10 +lcsStatusIpRouterRipLanSitesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterRipLanSitesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRip 10 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.19.10.1 +lcsStatusIpRouterRipLanSitesEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterRipLanSitesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterRipLanSitesEntryNetworkName + } + ::= { lcsStatusIpRouterRipLanSitesTable 1 } + +LcsStatusIpRouterRipLanSitesEntry ::= SEQUENCE { + lcsStatusIpRouterRipLanSitesEntryNetworkName DisplayString, + lcsStatusIpRouterRipLanSitesEntryRipType INTEGER, + lcsStatusIpRouterRipLanSitesEntryRipAccept INTEGER, + lcsStatusIpRouterRipLanSitesEntryPropagate INTEGER, + lcsStatusIpRouterRipLanSitesEntryDftRtgTag Integer32, + lcsStatusIpRouterRipLanSitesEntryRtgTagList DisplayString, + lcsStatusIpRouterRipLanSitesEntryVlanId Integer32, + lcsStatusIpRouterRipLanSitesEntryPoisonedReverse INTEGER, + lcsStatusIpRouterRipLanSitesEntryRxFilter DisplayString, + lcsStatusIpRouterRipLanSitesEntryTxFilter DisplayString, + lcsStatusIpRouterRipLanSitesEntryRipSend INTEGER, + lcsStatusIpRouterRipLanSitesEntryPort INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.10.1.1 +lcsStatusIpRouterRipLanSitesEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipLanSitesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.10.1.2 +lcsStatusIpRouterRipLanSitesEntryRipType OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eRip1 (1), + eR1Comp (2), + eRip2 (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipLanSitesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.10.1.3 +lcsStatusIpRouterRipLanSitesEntryRipAccept OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipLanSitesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.10.1.4 +lcsStatusIpRouterRipLanSitesEntryPropagate OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipLanSitesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.10.1.5 +lcsStatusIpRouterRipLanSitesEntryDftRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipLanSitesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.10.1.6 +lcsStatusIpRouterRipLanSitesEntryRtgTagList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..33)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipLanSitesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.10.1.8 +lcsStatusIpRouterRipLanSitesEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipLanSitesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.10.1.9 +lcsStatusIpRouterRipLanSitesEntryPoisonedReverse OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipLanSitesEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.10.1.10 +lcsStatusIpRouterRipLanSitesEntryRxFilter OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipLanSitesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.10.1.11 +lcsStatusIpRouterRipLanSitesEntryTxFilter OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipLanSitesEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.10.1.12 +lcsStatusIpRouterRipLanSitesEntryRipSend OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipLanSitesEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.10.1.31 +lcsStatusIpRouterRipLanSitesEntryPort OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (256), + eLan2 (257), + eLan3 (258), + eLan4 (259), + eLan5 (260), + eWlan1 (512), + eWlan2 (513), + eP2p11 (768), + eP2p12 (769), + eP2p13 (770), + eP2p14 (771), + eP2p15 (772), + eP2p16 (773), + eP2p21 (774), + eP2p22 (775), + eP2p23 (776), + eP2p24 (777), + eP2p25 (778), + eP2p26 (779), + eP2p17 (799), + eP2p18 (800), + eP2p19 (801), + eP2p110 (802), + eP2p111 (803), + eP2p112 (804), + eP2p113 (805), + eP2p114 (806), + eP2p115 (807), + eP2p116 (808), + eP2p27 (831), + eP2p28 (832), + eP2p29 (833), + eP2p210 (834), + eP2p211 (835), + eP2p212 (836), + eP2p213 (837), + eP2p214 (838), + eP2p215 (839), + eP2p216 (840), + eWlan12 (1024), + eWlan13 (1025), + eWlan14 (1026), + eWlan15 (1027), + eWlan16 (1028), + eWlan17 (1029), + eWlan18 (1030), + eWlan22 (1031), + eWlan23 (1032), + eWlan24 (1033), + eWlan25 (1034), + eWlan26 (1035), + eWlan27 (1036), + eWlan28 (1037), + eBrg1 (1536), + eBrg2 (1537), + eBrg3 (1538), + eBrg4 (1539), + eBrg5 (1540), + eBrg6 (1541), + eBrg7 (1542), + eBrg8 (1543), + eWlcTunnel1 (1792), + eWlcTunnel2 (1793), + eWlcTunnel3 (1794), + eWlcTunnel4 (1795), + eWlcTunnel5 (1796), + eWlcTunnel6 (1797), + eWlcTunnel7 (1798), + eWlcTunnel8 (1799), + eWlcTunnel9 (1800), + eWlcTunnel10 (1801), + eWlcTunnel11 (1802), + eWlcTunnel12 (1803), + eWlcTunnel13 (1804), + eWlcTunnel14 (1805), + eWlcTunnel15 (1806), + eWlcTunnel16 (1807), + eWlcTunnel17 (1808), + eWlcTunnel18 (1809), + eWlcTunnel19 (1810), + eWlcTunnel20 (1811), + eWlcTunnel21 (1812), + eWlcTunnel22 (1813), + eWlcTunnel23 (1814), + eWlcTunnel24 (1815), + eWlcTunnel25 (1816), + eWlcTunnel26 (1817), + eWlcTunnel27 (1818), + eWlcTunnel28 (1819), + eWlcTunnel29 (1820), + eWlcTunnel30 (1821), + eWlcTunnel31 (1822), + eWlcTunnel32 (1823), + eWlcTunnelAutowds (1824), + eBundle1 (2048), + eBundle2 (2049), + eAny (65535) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipLanSitesEntry 31 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.19.11 +lcsStatusIpRouterRipWanSitesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterRipWanSitesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRip 11 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.19.11.1 +lcsStatusIpRouterRipWanSitesEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterRipWanSitesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterRipWanSitesEntryPeer + } + ::= { lcsStatusIpRouterRipWanSitesTable 1 } + +LcsStatusIpRouterRipWanSitesEntry ::= SEQUENCE { + lcsStatusIpRouterRipWanSitesEntryPeer DisplayString, + lcsStatusIpRouterRipWanSitesEntryRipType INTEGER, + lcsStatusIpRouterRipWanSitesEntryRipAccept INTEGER, + lcsStatusIpRouterRipWanSitesEntryMasquerade INTEGER, + lcsStatusIpRouterRipWanSitesEntryDftRtgTag Integer32, + lcsStatusIpRouterRipWanSitesEntryRtgTagList DisplayString, + lcsStatusIpRouterRipWanSitesEntryPoisonedReverse INTEGER, + lcsStatusIpRouterRipWanSitesEntryRfc2091 INTEGER, + lcsStatusIpRouterRipWanSitesEntryGateway IpAddress, + lcsStatusIpRouterRipWanSitesEntryRxFilter DisplayString, + lcsStatusIpRouterRipWanSitesEntryTxFilter DisplayString, + lcsStatusIpRouterRipWanSitesEntryRipSend INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.11.1.1 +lcsStatusIpRouterRipWanSitesEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipWanSitesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.11.1.2 +lcsStatusIpRouterRipWanSitesEntryRipType OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eRip1 (1), + eR1Comp (2), + eRip2 (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipWanSitesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.11.1.3 +lcsStatusIpRouterRipWanSitesEntryRipAccept OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipWanSitesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.11.1.4 +lcsStatusIpRouterRipWanSitesEntryMasquerade OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eOn (1), + eIntranet (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipWanSitesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.11.1.5 +lcsStatusIpRouterRipWanSitesEntryDftRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipWanSitesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.11.1.6 +lcsStatusIpRouterRipWanSitesEntryRtgTagList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..33)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipWanSitesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.11.1.7 +lcsStatusIpRouterRipWanSitesEntryPoisonedReverse OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipWanSitesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.11.1.8 +lcsStatusIpRouterRipWanSitesEntryRfc2091 OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipWanSitesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.11.1.9 +lcsStatusIpRouterRipWanSitesEntryGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipWanSitesEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.11.1.10 +lcsStatusIpRouterRipWanSitesEntryRxFilter OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipWanSitesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.11.1.11 +lcsStatusIpRouterRipWanSitesEntryTxFilter OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipWanSitesEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.11.1.12 +lcsStatusIpRouterRipWanSitesEntryRipSend OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipWanSitesEntry 12 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.19.12 +lcsStatusIpRouterRipVrrpSitesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterRipVrrpSitesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRip 12 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.19.12.1 +lcsStatusIpRouterRipVrrpSitesEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterRipVrrpSitesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterRipVrrpSitesEntryNetworkName, + lcsStatusIpRouterRipVrrpSitesEntryRouterId + } + ::= { lcsStatusIpRouterRipVrrpSitesTable 1 } + +LcsStatusIpRouterRipVrrpSitesEntry ::= SEQUENCE { + lcsStatusIpRouterRipVrrpSitesEntryNetworkName DisplayString, + lcsStatusIpRouterRipVrrpSitesEntryRipType INTEGER, + lcsStatusIpRouterRipVrrpSitesEntryRouterId Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.12.1.1 +lcsStatusIpRouterRipVrrpSitesEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipVrrpSitesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.12.1.2 +lcsStatusIpRouterRipVrrpSitesEntryRipType OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eRip1 (1), + eR1Comp (2), + eRip2 (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipVrrpSitesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.12.1.3 +lcsStatusIpRouterRipVrrpSitesEntryRouterId OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipVrrpSitesEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.19.13 +lcsStatusIpRouterRipDynLanSitesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterRipDynLanSitesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRip 13 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.19.13.1 +lcsStatusIpRouterRipDynLanSitesEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterRipDynLanSitesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterRipDynLanSitesEntryGateway + } + ::= { lcsStatusIpRouterRipDynLanSitesTable 1 } + +LcsStatusIpRouterRipDynLanSitesEntry ::= SEQUENCE { + lcsStatusIpRouterRipDynLanSitesEntryGateway DisplayString, + lcsStatusIpRouterRipDynLanSitesEntryRipType INTEGER, + lcsStatusIpRouterRipDynLanSitesEntryRipAccept INTEGER, + lcsStatusIpRouterRipDynLanSitesEntryPoisonedReverse INTEGER, + lcsStatusIpRouterRipDynLanSitesEntryDftRtgTag Integer32, + lcsStatusIpRouterRipDynLanSitesEntryRtgTagList DisplayString, + lcsStatusIpRouterRipDynLanSitesEntryVlanId Integer32, + lcsStatusIpRouterRipDynLanSitesEntryRxFilter DisplayString, + lcsStatusIpRouterRipDynLanSitesEntryTxFilter DisplayString, + lcsStatusIpRouterRipDynLanSitesEntryRipSend INTEGER, + lcsStatusIpRouterRipDynLanSitesEntryPort INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.13.1.1 +lcsStatusIpRouterRipDynLanSitesEntryGateway OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipDynLanSitesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.13.1.2 +lcsStatusIpRouterRipDynLanSitesEntryRipType OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eRip1 (1), + eR1Comp (2), + eRip2 (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipDynLanSitesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.13.1.3 +lcsStatusIpRouterRipDynLanSitesEntryRipAccept OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipDynLanSitesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.13.1.4 +lcsStatusIpRouterRipDynLanSitesEntryPoisonedReverse OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipDynLanSitesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.13.1.5 +lcsStatusIpRouterRipDynLanSitesEntryDftRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipDynLanSitesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.13.1.6 +lcsStatusIpRouterRipDynLanSitesEntryRtgTagList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..33)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipDynLanSitesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.13.1.8 +lcsStatusIpRouterRipDynLanSitesEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipDynLanSitesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.13.1.10 +lcsStatusIpRouterRipDynLanSitesEntryRxFilter OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipDynLanSitesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.13.1.11 +lcsStatusIpRouterRipDynLanSitesEntryTxFilter OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipDynLanSitesEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.13.1.12 +lcsStatusIpRouterRipDynLanSitesEntryRipSend OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipDynLanSitesEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.13.1.31 +lcsStatusIpRouterRipDynLanSitesEntryPort OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (256), + eLan2 (257), + eLan3 (258), + eLan4 (259), + eLan5 (260), + eWlan1 (512), + eWlan2 (513), + eP2p11 (768), + eP2p12 (769), + eP2p13 (770), + eP2p14 (771), + eP2p15 (772), + eP2p16 (773), + eP2p21 (774), + eP2p22 (775), + eP2p23 (776), + eP2p24 (777), + eP2p25 (778), + eP2p26 (779), + eP2p17 (799), + eP2p18 (800), + eP2p19 (801), + eP2p110 (802), + eP2p111 (803), + eP2p112 (804), + eP2p113 (805), + eP2p114 (806), + eP2p115 (807), + eP2p116 (808), + eP2p27 (831), + eP2p28 (832), + eP2p29 (833), + eP2p210 (834), + eP2p211 (835), + eP2p212 (836), + eP2p213 (837), + eP2p214 (838), + eP2p215 (839), + eP2p216 (840), + eWlan12 (1024), + eWlan13 (1025), + eWlan14 (1026), + eWlan15 (1027), + eWlan16 (1028), + eWlan17 (1029), + eWlan18 (1030), + eWlan22 (1031), + eWlan23 (1032), + eWlan24 (1033), + eWlan25 (1034), + eWlan26 (1035), + eWlan27 (1036), + eWlan28 (1037), + eBrg1 (1536), + eBrg2 (1537), + eBrg3 (1538), + eBrg4 (1539), + eBrg5 (1540), + eBrg6 (1541), + eBrg7 (1542), + eBrg8 (1543), + eWlcTunnel1 (1792), + eWlcTunnel2 (1793), + eWlcTunnel3 (1794), + eWlcTunnel4 (1795), + eWlcTunnel5 (1796), + eWlcTunnel6 (1797), + eWlcTunnel7 (1798), + eWlcTunnel8 (1799), + eWlcTunnel9 (1800), + eWlcTunnel10 (1801), + eWlcTunnel11 (1802), + eWlcTunnel12 (1803), + eWlcTunnel13 (1804), + eWlcTunnel14 (1805), + eWlcTunnel15 (1806), + eWlcTunnel16 (1807), + eWlcTunnel17 (1808), + eWlcTunnel18 (1809), + eWlcTunnel19 (1810), + eWlcTunnel20 (1811), + eWlcTunnel21 (1812), + eWlcTunnel22 (1813), + eWlcTunnel23 (1814), + eWlcTunnel24 (1815), + eWlcTunnel25 (1816), + eWlcTunnel26 (1817), + eWlcTunnel27 (1818), + eWlcTunnel28 (1819), + eWlcTunnel29 (1820), + eWlcTunnel30 (1821), + eWlcTunnel31 (1822), + eWlcTunnel32 (1823), + eWlcTunnelAutowds (1824), + eBundle1 (2048), + eBundle2 (2049), + eAny (65535) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipDynLanSitesEntry 31 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.19.14 +lcsStatusIpRouterRipDynWanSitesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterRipDynWanSitesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRip 14 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.19.14.1 +lcsStatusIpRouterRipDynWanSitesEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterRipDynWanSitesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterRipDynWanSitesEntryPeer + } + ::= { lcsStatusIpRouterRipDynWanSitesTable 1 } + +LcsStatusIpRouterRipDynWanSitesEntry ::= SEQUENCE { + lcsStatusIpRouterRipDynWanSitesEntryPeer DisplayString, + lcsStatusIpRouterRipDynWanSitesEntryRipType INTEGER, + lcsStatusIpRouterRipDynWanSitesEntryRipAccept INTEGER, + lcsStatusIpRouterRipDynWanSitesEntryMasquerade INTEGER, + lcsStatusIpRouterRipDynWanSitesEntryDftRtgTag Integer32, + lcsStatusIpRouterRipDynWanSitesEntryRtgTagList DisplayString, + lcsStatusIpRouterRipDynWanSitesEntryPoisonedReverse INTEGER, + lcsStatusIpRouterRipDynWanSitesEntryRfc2091 INTEGER, + lcsStatusIpRouterRipDynWanSitesEntryGateway IpAddress, + lcsStatusIpRouterRipDynWanSitesEntryRxFilter DisplayString, + lcsStatusIpRouterRipDynWanSitesEntryTxFilter DisplayString, + lcsStatusIpRouterRipDynWanSitesEntryRipSend INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.14.1.1 +lcsStatusIpRouterRipDynWanSitesEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipDynWanSitesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.14.1.2 +lcsStatusIpRouterRipDynWanSitesEntryRipType OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eRip1 (1), + eR1Comp (2), + eRip2 (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipDynWanSitesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.14.1.3 +lcsStatusIpRouterRipDynWanSitesEntryRipAccept OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipDynWanSitesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.14.1.4 +lcsStatusIpRouterRipDynWanSitesEntryMasquerade OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eOn (1), + eIntranet (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipDynWanSitesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.14.1.5 +lcsStatusIpRouterRipDynWanSitesEntryDftRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipDynWanSitesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.14.1.6 +lcsStatusIpRouterRipDynWanSitesEntryRtgTagList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..33)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipDynWanSitesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.14.1.7 +lcsStatusIpRouterRipDynWanSitesEntryPoisonedReverse OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipDynWanSitesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.14.1.8 +lcsStatusIpRouterRipDynWanSitesEntryRfc2091 OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipDynWanSitesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.14.1.9 +lcsStatusIpRouterRipDynWanSitesEntryGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipDynWanSitesEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.14.1.10 +lcsStatusIpRouterRipDynWanSitesEntryRxFilter OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipDynWanSitesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.14.1.11 +lcsStatusIpRouterRipDynWanSitesEntryTxFilter OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipDynWanSitesEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.14.1.12 +lcsStatusIpRouterRipDynWanSitesEntryRipSend OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipDynWanSitesEntry 12 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.19.15 +lcsStatusIpRouterRipFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterRipFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRip 15 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.19.15.1 +lcsStatusIpRouterRipFilterEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterRipFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterRipFilterEntryIdx + } + ::= { lcsStatusIpRouterRipFilterTable 1 } + +LcsStatusIpRouterRipFilterEntry ::= SEQUENCE { + lcsStatusIpRouterRipFilterEntryIdx Integer32, + lcsStatusIpRouterRipFilterEntryType INTEGER, + lcsStatusIpRouterRipFilterEntryName DisplayString, + lcsStatusIpRouterRipFilterEntryIpAddress IpAddress, + lcsStatusIpRouterRipFilterEntryIpNetmask IpAddress + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.15.1.1 +lcsStatusIpRouterRipFilterEntryIdx OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipFilterEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.15.1.2 +lcsStatusIpRouterRipFilterEntryType OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + ePositive (1), + eNegative (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipFilterEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.15.1.3 +lcsStatusIpRouterRipFilterEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipFilterEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.15.1.4 +lcsStatusIpRouterRipFilterEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipFilterEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.15.1.5 +lcsStatusIpRouterRipFilterEntryIpNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipFilterEntry 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.19.16 +lcsStatusIpRouterRipWildcardSitesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterRipWildcardSitesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRip 16 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.19.16.1 +lcsStatusIpRouterRipWildcardSitesEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterRipWildcardSitesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterRipWildcardSitesEntryPeer + } + ::= { lcsStatusIpRouterRipWildcardSitesTable 1 } + +LcsStatusIpRouterRipWildcardSitesEntry ::= SEQUENCE { + lcsStatusIpRouterRipWildcardSitesEntryPeer DisplayString, + lcsStatusIpRouterRipWildcardSitesEntryRipType INTEGER, + lcsStatusIpRouterRipWildcardSitesEntryRipAccept INTEGER, + lcsStatusIpRouterRipWildcardSitesEntryMasquerade INTEGER, + lcsStatusIpRouterRipWildcardSitesEntryDftRtgTag Integer32, + lcsStatusIpRouterRipWildcardSitesEntryRtgTagList DisplayString, + lcsStatusIpRouterRipWildcardSitesEntryPoisonedReverse INTEGER, + lcsStatusIpRouterRipWildcardSitesEntryRfc2091 INTEGER, + lcsStatusIpRouterRipWildcardSitesEntryGateway IpAddress, + lcsStatusIpRouterRipWildcardSitesEntryRxFilter DisplayString, + lcsStatusIpRouterRipWildcardSitesEntryTxFilter DisplayString, + lcsStatusIpRouterRipWildcardSitesEntryRipSend INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.16.1.1 +lcsStatusIpRouterRipWildcardSitesEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipWildcardSitesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.16.1.2 +lcsStatusIpRouterRipWildcardSitesEntryRipType OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eRip1 (1), + eR1Comp (2), + eRip2 (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipWildcardSitesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.16.1.3 +lcsStatusIpRouterRipWildcardSitesEntryRipAccept OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipWildcardSitesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.16.1.4 +lcsStatusIpRouterRipWildcardSitesEntryMasquerade OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eOn (1), + eIntranet (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipWildcardSitesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.16.1.5 +lcsStatusIpRouterRipWildcardSitesEntryDftRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipWildcardSitesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.16.1.6 +lcsStatusIpRouterRipWildcardSitesEntryRtgTagList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..33)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipWildcardSitesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.16.1.7 +lcsStatusIpRouterRipWildcardSitesEntryPoisonedReverse OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipWildcardSitesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.16.1.8 +lcsStatusIpRouterRipWildcardSitesEntryRfc2091 OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipWildcardSitesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.16.1.9 +lcsStatusIpRouterRipWildcardSitesEntryGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipWildcardSitesEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.16.1.10 +lcsStatusIpRouterRipWildcardSitesEntryRxFilter OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipWildcardSitesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.16.1.11 +lcsStatusIpRouterRipWildcardSitesEntryTxFilter OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipWildcardSitesEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.16.1.12 +lcsStatusIpRouterRipWildcardSitesEntryRipSend OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipWildcardSitesEntry 12 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.19.20 +lcsStatusIpRouterRipAllRoutesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterRipAllRoutesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRip 20 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.19.20.1 +lcsStatusIpRouterRipAllRoutesEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterRipAllRoutesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterRipAllRoutesEntryIpAddress, + lcsStatusIpRouterRipAllRoutesEntryIpNetmask, + lcsStatusIpRouterRipAllRoutesEntryRtgTag, + lcsStatusIpRouterRipAllRoutesEntryGateway + } + ::= { lcsStatusIpRouterRipAllRoutesTable 1 } + +LcsStatusIpRouterRipAllRoutesEntry ::= SEQUENCE { + lcsStatusIpRouterRipAllRoutesEntryIpAddress IpAddress, + lcsStatusIpRouterRipAllRoutesEntryIpNetmask IpAddress, + lcsStatusIpRouterRipAllRoutesEntryTime Integer32, + lcsStatusIpRouterRipAllRoutesEntryDistance Integer32, + lcsStatusIpRouterRipAllRoutesEntryGateway IpAddress, + lcsStatusIpRouterRipAllRoutesEntryRtgTag Integer32, + lcsStatusIpRouterRipAllRoutesEntryPeer DisplayString, + lcsStatusIpRouterRipAllRoutesEntryVlanId Integer32, + lcsStatusIpRouterRipAllRoutesEntryNetworkName DisplayString, + lcsStatusIpRouterRipAllRoutesEntryPort INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.20.1.1 +lcsStatusIpRouterRipAllRoutesEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipAllRoutesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.20.1.2 +lcsStatusIpRouterRipAllRoutesEntryIpNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipAllRoutesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.20.1.3 +lcsStatusIpRouterRipAllRoutesEntryTime OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipAllRoutesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.20.1.4 +lcsStatusIpRouterRipAllRoutesEntryDistance OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipAllRoutesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.20.1.5 +lcsStatusIpRouterRipAllRoutesEntryGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipAllRoutesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.20.1.6 +lcsStatusIpRouterRipAllRoutesEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipAllRoutesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.20.1.8 +lcsStatusIpRouterRipAllRoutesEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipAllRoutesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.20.1.10 +lcsStatusIpRouterRipAllRoutesEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipAllRoutesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.20.1.11 +lcsStatusIpRouterRipAllRoutesEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipAllRoutesEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.19.20.1.12 +lcsStatusIpRouterRipAllRoutesEntryPort OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (256), + eLan2 (257), + eLan3 (258), + eLan4 (259), + eLan5 (260), + eWlan1 (512), + eWlan2 (513), + eP2p11 (768), + eP2p12 (769), + eP2p13 (770), + eP2p14 (771), + eP2p15 (772), + eP2p16 (773), + eP2p21 (774), + eP2p22 (775), + eP2p23 (776), + eP2p24 (777), + eP2p25 (778), + eP2p26 (779), + eP2p17 (799), + eP2p18 (800), + eP2p19 (801), + eP2p110 (802), + eP2p111 (803), + eP2p112 (804), + eP2p113 (805), + eP2p114 (806), + eP2p115 (807), + eP2p116 (808), + eP2p27 (831), + eP2p28 (832), + eP2p29 (833), + eP2p210 (834), + eP2p211 (835), + eP2p212 (836), + eP2p213 (837), + eP2p214 (838), + eP2p215 (839), + eP2p216 (840), + eWlan12 (1024), + eWlan13 (1025), + eWlan14 (1026), + eWlan15 (1027), + eWlan16 (1028), + eWlan17 (1029), + eWlan18 (1030), + eWlan22 (1031), + eWlan23 (1032), + eWlan24 (1033), + eWlan25 (1034), + eWlan26 (1035), + eWlan27 (1036), + eWlan28 (1037), + eBrg1 (1536), + eBrg2 (1537), + eBrg3 (1538), + eBrg4 (1539), + eBrg5 (1540), + eBrg6 (1541), + eBrg7 (1542), + eBrg8 (1543), + eWlcTunnel1 (1792), + eWlcTunnel2 (1793), + eWlcTunnel3 (1794), + eWlcTunnel4 (1795), + eWlcTunnel5 (1796), + eWlcTunnel6 (1797), + eWlcTunnel7 (1798), + eWlcTunnel8 (1799), + eWlcTunnel9 (1800), + eWlcTunnel10 (1801), + eWlcTunnel11 (1802), + eWlcTunnel12 (1803), + eWlcTunnel13 (1804), + eWlcTunnel14 (1805), + eWlcTunnel15 (1806), + eWlcTunnel16 (1807), + eWlcTunnel17 (1808), + eWlcTunnel18 (1809), + eWlcTunnel19 (1810), + eWlcTunnel20 (1811), + eWlcTunnel21 (1812), + eWlcTunnel22 (1813), + eWlcTunnel23 (1814), + eWlcTunnel24 (1815), + eWlcTunnel25 (1816), + eWlcTunnel26 (1817), + eWlcTunnel27 (1818), + eWlcTunnel28 (1819), + eWlcTunnel29 (1820), + eWlcTunnel30 (1821), + eWlcTunnel31 (1822), + eWlcTunnel32 (1823), + eWlcTunnelAutowds (1824), + eBundle1 (2048), + eBundle2 (2049), + eAny (65535) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterRipAllRoutesEntry 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.20 +lcsStatusIpRouterDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 20 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.21 +lcsStatusIpRouterServiceTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterServiceTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 21 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.21.1 +lcsStatusIpRouterServiceTableEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterServiceTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterServiceTableEntryService + } + ::= { lcsStatusIpRouterServiceTableTable 1 } + +LcsStatusIpRouterServiceTableEntry ::= SEQUENCE { + lcsStatusIpRouterServiceTableEntryService INTEGER, + lcsStatusIpRouterServiceTableEntryPacketRx Counter32, + lcsStatusIpRouterServiceTableEntryPacketTx Counter32, + lcsStatusIpRouterServiceTableEntryPacketRel DisplayString, + lcsStatusIpRouterServiceTableEntryKbytesRx Counter32, + lcsStatusIpRouterServiceTableEntryKbytesTx Counter32, + lcsStatusIpRouterServiceTableEntryKbytesRel DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.21.1.1 +lcsStatusIpRouterServiceTableEntryService OBJECT-TYPE + SYNTAX INTEGER { + eIcmp (1), + eFtp (2), + eHttp (3), + eSmtp (4), + eDns (5), + eTelnet (6), + eTftp (7), + eDhcp (8), + ePop3 (9), + eNetbios (10), + eImap2 (11), + eNews (12), + eIrc (13), + eSnmp (14), + eOther (15), + eTotal (16) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterServiceTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.21.1.2 +lcsStatusIpRouterServiceTableEntryPacketRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterServiceTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.21.1.3 +lcsStatusIpRouterServiceTableEntryPacketTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterServiceTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.21.1.4 +lcsStatusIpRouterServiceTableEntryPacketRel OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterServiceTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.21.1.5 +lcsStatusIpRouterServiceTableEntryKbytesRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterServiceTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.21.1.6 +lcsStatusIpRouterServiceTableEntryKbytesTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterServiceTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.21.1.7 +lcsStatusIpRouterServiceTableEntryKbytesRel OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterServiceTableEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.22 +lcsStatusIpRouterFilterListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterFilterListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 22 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.22.1 +lcsStatusIpRouterFilterListEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterFilterListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterFilterListEntryIdx + } + ::= { lcsStatusIpRouterFilterListTable 1 } + +LcsStatusIpRouterFilterListEntry ::= SEQUENCE { + lcsStatusIpRouterFilterListEntryIdx Integer32, + lcsStatusIpRouterFilterListEntryProt Integer32, + lcsStatusIpRouterFilterListEntrySrcAddress IpAddress, + lcsStatusIpRouterFilterListEntrySrcNetmask IpAddress, + lcsStatusIpRouterFilterListEntrySSt Integer32, + lcsStatusIpRouterFilterListEntrySEnd Integer32, + lcsStatusIpRouterFilterListEntryDstAddress IpAddress, + lcsStatusIpRouterFilterListEntryDstNetmask IpAddress, + lcsStatusIpRouterFilterListEntryDSt Integer32, + lcsStatusIpRouterFilterListEntryDEnd Integer32, + lcsStatusIpRouterFilterListEntryAction DisplayString, + lcsStatusIpRouterFilterListEntrySrcMac DisplayString, + lcsStatusIpRouterFilterListEntryDstMac DisplayString, + lcsStatusIpRouterFilterListEntryLinked INTEGER, + lcsStatusIpRouterFilterListEntryPrio Integer32, + lcsStatusIpRouterFilterListEntryRtgTag Integer32, + lcsStatusIpRouterFilterListEntrySrcTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.22.1.1 +lcsStatusIpRouterFilterListEntryIdx OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterFilterListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.22.1.2 +lcsStatusIpRouterFilterListEntryProt OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterFilterListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.22.1.3 +lcsStatusIpRouterFilterListEntrySrcAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterFilterListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.22.1.4 +lcsStatusIpRouterFilterListEntrySrcNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterFilterListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.22.1.5 +lcsStatusIpRouterFilterListEntrySSt OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterFilterListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.22.1.6 +lcsStatusIpRouterFilterListEntrySEnd OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterFilterListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.22.1.7 +lcsStatusIpRouterFilterListEntryDstAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterFilterListEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.22.1.8 +lcsStatusIpRouterFilterListEntryDstNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterFilterListEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.22.1.9 +lcsStatusIpRouterFilterListEntryDSt OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterFilterListEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.22.1.10 +lcsStatusIpRouterFilterListEntryDEnd OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterFilterListEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.22.1.11 +lcsStatusIpRouterFilterListEntryAction OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterFilterListEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.22.1.13 +lcsStatusIpRouterFilterListEntrySrcMac OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterFilterListEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.22.1.14 +lcsStatusIpRouterFilterListEntryDstMac OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterFilterListEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.22.1.15 +lcsStatusIpRouterFilterListEntryLinked OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterFilterListEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.22.1.16 +lcsStatusIpRouterFilterListEntryPrio OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterFilterListEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.22.1.17 +lcsStatusIpRouterFilterListEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterFilterListEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.22.1.18 +lcsStatusIpRouterFilterListEntrySrcTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpRouterFilterListEntry 18 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.23 +lcsStatusIpRouterConnectionListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterConnectionListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 23 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.23.1 +lcsStatusIpRouterConnectionListEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterConnectionListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterConnectionListEntrySrcAddress, + lcsStatusIpRouterConnectionListEntryDstAddress, + lcsStatusIpRouterConnectionListEntryProt, + lcsStatusIpRouterConnectionListEntrySrcPort, + lcsStatusIpRouterConnectionListEntryDstPort + } + ::= { lcsStatusIpRouterConnectionListTable 1 } + +LcsStatusIpRouterConnectionListEntry ::= SEQUENCE { + lcsStatusIpRouterConnectionListEntrySrcAddress IpAddress, + lcsStatusIpRouterConnectionListEntryDstAddress IpAddress, + lcsStatusIpRouterConnectionListEntryProt Integer32, + lcsStatusIpRouterConnectionListEntrySrcPort Integer32, + lcsStatusIpRouterConnectionListEntryDstPort Integer32, + lcsStatusIpRouterConnectionListEntryTimeout Integer32, + lcsStatusIpRouterConnectionListEntryFlags Integer32, + lcsStatusIpRouterConnectionListEntryFilterRule DisplayString, + lcsStatusIpRouterConnectionListEntrySrcRoute DisplayString, + lcsStatusIpRouterConnectionListEntryDestRoute DisplayString, + lcsStatusIpRouterConnectionListEntryRtgTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.23.1.1 +lcsStatusIpRouterConnectionListEntrySrcAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterConnectionListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.23.1.2 +lcsStatusIpRouterConnectionListEntryDstAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterConnectionListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.23.1.3 +lcsStatusIpRouterConnectionListEntryProt OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterConnectionListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.23.1.4 +lcsStatusIpRouterConnectionListEntrySrcPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterConnectionListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.23.1.5 +lcsStatusIpRouterConnectionListEntryDstPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterConnectionListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.23.1.6 +lcsStatusIpRouterConnectionListEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterConnectionListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.23.1.7 +lcsStatusIpRouterConnectionListEntryFlags OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterConnectionListEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.23.1.8 +lcsStatusIpRouterConnectionListEntryFilterRule OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterConnectionListEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.23.1.9 +lcsStatusIpRouterConnectionListEntrySrcRoute OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterConnectionListEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.23.1.10 +lcsStatusIpRouterConnectionListEntryDestRoute OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterConnectionListEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.23.1.11 +lcsStatusIpRouterConnectionListEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterConnectionListEntry 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.24 +lcsStatusIpRouterHostBlockListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterHostBlockListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 24 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.24.1 +lcsStatusIpRouterHostBlockListEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterHostBlockListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterHostBlockListEntrySrcAddress + } + ::= { lcsStatusIpRouterHostBlockListTable 1 } + +LcsStatusIpRouterHostBlockListEntry ::= SEQUENCE { + lcsStatusIpRouterHostBlockListEntrySrcAddress IpAddress, + lcsStatusIpRouterHostBlockListEntryTimeout Integer32, + lcsStatusIpRouterHostBlockListEntryFilterRule DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.24.1.1 +lcsStatusIpRouterHostBlockListEntrySrcAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterHostBlockListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.24.1.2 +lcsStatusIpRouterHostBlockListEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterHostBlockListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.24.1.3 +lcsStatusIpRouterHostBlockListEntryFilterRule OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterHostBlockListEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.25 +lcsStatusIpRouterPortBlockListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterPortBlockListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 25 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.25.1 +lcsStatusIpRouterPortBlockListEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterPortBlockListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterPortBlockListEntryDstAddress + } + ::= { lcsStatusIpRouterPortBlockListTable 1 } + +LcsStatusIpRouterPortBlockListEntry ::= SEQUENCE { + lcsStatusIpRouterPortBlockListEntryDstAddress IpAddress, + lcsStatusIpRouterPortBlockListEntryProt Integer32, + lcsStatusIpRouterPortBlockListEntryDstPort Integer32, + lcsStatusIpRouterPortBlockListEntryTimeout Integer32, + lcsStatusIpRouterPortBlockListEntryFilterRule DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.25.1.1 +lcsStatusIpRouterPortBlockListEntryDstAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterPortBlockListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.25.1.2 +lcsStatusIpRouterPortBlockListEntryProt OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterPortBlockListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.25.1.3 +lcsStatusIpRouterPortBlockListEntryDstPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterPortBlockListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.25.1.4 +lcsStatusIpRouterPortBlockListEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterPortBlockListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.25.1.5 +lcsStatusIpRouterPortBlockListEntryFilterRule OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterPortBlockListEntry 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.26 +lcsStatusIpRouterLogTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 26 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.26.1 +lcsStatusIpRouterLogTableEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterLogTableEntryIdx + } + ::= { lcsStatusIpRouterLogTableTable 1 } + +LcsStatusIpRouterLogTableEntry ::= SEQUENCE { + lcsStatusIpRouterLogTableEntryIdx Integer32, + lcsStatusIpRouterLogTableEntrySystemTime DisplayString, + lcsStatusIpRouterLogTableEntrySrcAddress IpAddress, + lcsStatusIpRouterLogTableEntryDstAddress IpAddress, + lcsStatusIpRouterLogTableEntryProt Integer32, + lcsStatusIpRouterLogTableEntrySrcPort Integer32, + lcsStatusIpRouterLogTableEntryDstPort Integer32, + lcsStatusIpRouterLogTableEntryFilterRule DisplayString, + lcsStatusIpRouterLogTableEntryLimit Integer32, + lcsStatusIpRouterLogTableEntryThreshold Integer32, + lcsStatusIpRouterLogTableEntryAction Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.26.1.1 +lcsStatusIpRouterLogTableEntryIdx OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterLogTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.26.1.2 +lcsStatusIpRouterLogTableEntrySystemTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterLogTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.26.1.3 +lcsStatusIpRouterLogTableEntrySrcAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterLogTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.26.1.4 +lcsStatusIpRouterLogTableEntryDstAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterLogTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.26.1.5 +lcsStatusIpRouterLogTableEntryProt OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterLogTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.26.1.6 +lcsStatusIpRouterLogTableEntrySrcPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterLogTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.26.1.7 +lcsStatusIpRouterLogTableEntryDstPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterLogTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.26.1.8 +lcsStatusIpRouterLogTableEntryFilterRule OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterLogTableEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.26.1.9 +lcsStatusIpRouterLogTableEntryLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterLogTableEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.26.1.10 +lcsStatusIpRouterLogTableEntryThreshold OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterLogTableEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.26.1.11 +lcsStatusIpRouterLogTableEntryAction OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterLogTableEntry 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.27 +lcsStatusIpRouterHoConnListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterHoConnListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 27 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.27.1 +lcsStatusIpRouterHoConnListEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterHoConnListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterHoConnListEntryDstAddress + } + ::= { lcsStatusIpRouterHoConnListTable 1 } + +LcsStatusIpRouterHoConnListEntry ::= SEQUENCE { + lcsStatusIpRouterHoConnListEntryDstAddress IpAddress, + lcsStatusIpRouterHoConnListEntryNumHoConn Integer32, + lcsStatusIpRouterHoConnListEntryTimeout Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.27.1.1 +lcsStatusIpRouterHoConnListEntryDstAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterHoConnListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.27.1.2 +lcsStatusIpRouterHoConnListEntryNumHoConn OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterHoConnListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.27.1.3 +lcsStatusIpRouterHoConnListEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterHoConnListEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.28 +lcsStatusIpRouterQosTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterQosEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 28 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.28.1 +lcsStatusIpRouterQosEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterQosEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterQosEntryIfc + } + ::= { lcsStatusIpRouterQosTable 1 } + +LcsStatusIpRouterQosEntry ::= SEQUENCE { + lcsStatusIpRouterQosEntryIfc INTEGER, + lcsStatusIpRouterQosEntryPeer DisplayString, + lcsStatusIpRouterQosEntryDownstreamRate Integer32, + lcsStatusIpRouterQosEntryRxReserved Integer32, + lcsStatusIpRouterQosEntryRxBlocksPending Integer32, + lcsStatusIpRouterQosEntryFragmentSize Integer32, + lcsStatusIpRouterQosEntryPmtuSize Integer32, + lcsStatusIpRouterQosEntryUpstreamRate Integer32, + lcsStatusIpRouterQosEntryTxReserved Integer32, + lcsStatusIpRouterQosEntryTxBlocksPending Integer32, + lcsStatusIpRouterQosEntryRxRequested Integer32, + lcsStatusIpRouterQosEntryTxRequested Integer32, + lcsStatusIpRouterQosEntryTxFavoured Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.28.1.1 +lcsStatusIpRouterQosEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eCh01 (257), + eCh02 (258), + eModem (513), + eDslCh1 (2049), + eDslCh2 (2050), + eDslCh3 (2051), + eDslCh4 (2052), + eDslCh5 (2053), + eDslCh6 (2054), + eDslCh7 (2055), + eDslCh8 (2056), + eAdsl1 (8193), + eAdsl2 (8194), + eAdsl3 (8195), + eAdsl4 (8196), + eAdsl5 (8197), + eAdsl6 (8198), + eAdsl7 (8199), + eAdsl8 (8200), + eVdsl1 (16385), + eVdsl2 (16386), + eVdsl3 (16387), + eVdsl4 (16388), + eVdsl5 (16389), + eVdsl6 (16390), + eVdsl7 (16391), + eVdsl8 (16392) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterQosEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.28.1.2 +lcsStatusIpRouterQosEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterQosEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.28.1.3 +lcsStatusIpRouterQosEntryDownstreamRate OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterQosEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.28.1.4 +lcsStatusIpRouterQosEntryRxReserved OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterQosEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.28.1.5 +lcsStatusIpRouterQosEntryRxBlocksPending OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterQosEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.28.1.6 +lcsStatusIpRouterQosEntryFragmentSize OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterQosEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.28.1.7 +lcsStatusIpRouterQosEntryPmtuSize OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterQosEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.28.1.8 +lcsStatusIpRouterQosEntryUpstreamRate OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterQosEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.28.1.9 +lcsStatusIpRouterQosEntryTxReserved OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterQosEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.28.1.10 +lcsStatusIpRouterQosEntryTxBlocksPending OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterQosEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.28.1.11 +lcsStatusIpRouterQosEntryRxRequested OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterQosEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.28.1.12 +lcsStatusIpRouterQosEntryTxRequested OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterQosEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.28.1.13 +lcsStatusIpRouterQosEntryTxFavoured OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterQosEntry 13 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.29 +lcsStatusIpRouterOpenPortListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterOpenPortListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 29 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.29.1 +lcsStatusIpRouterOpenPortListEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterOpenPortListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterOpenPortListEntrySrcAddress, + lcsStatusIpRouterOpenPortListEntryDstAddress, + lcsStatusIpRouterOpenPortListEntryProt, + lcsStatusIpRouterOpenPortListEntryDstPort + } + ::= { lcsStatusIpRouterOpenPortListTable 1 } + +LcsStatusIpRouterOpenPortListEntry ::= SEQUENCE { + lcsStatusIpRouterOpenPortListEntrySrcAddress IpAddress, + lcsStatusIpRouterOpenPortListEntryDstAddress IpAddress, + lcsStatusIpRouterOpenPortListEntryProt Integer32, + lcsStatusIpRouterOpenPortListEntryDstPort Integer32, + lcsStatusIpRouterOpenPortListEntryTimeout Integer32, + lcsStatusIpRouterOpenPortListEntryFilterRule DisplayString, + lcsStatusIpRouterOpenPortListEntrySrcRoute DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.29.1.1 +lcsStatusIpRouterOpenPortListEntrySrcAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterOpenPortListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.29.1.2 +lcsStatusIpRouterOpenPortListEntryDstAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterOpenPortListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.29.1.3 +lcsStatusIpRouterOpenPortListEntryProt OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterOpenPortListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.29.1.5 +lcsStatusIpRouterOpenPortListEntryDstPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterOpenPortListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.29.1.6 +lcsStatusIpRouterOpenPortListEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterOpenPortListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.29.1.8 +lcsStatusIpRouterOpenPortListEntryFilterRule OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterOpenPortListEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.29.1.9 +lcsStatusIpRouterOpenPortListEntrySrcRoute OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterOpenPortListEntry 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.30 +lcsStatusIpRouterActIpRoutingTabTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterActIpRoutingTabEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 30 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.30.1 +lcsStatusIpRouterActIpRoutingTabEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterActIpRoutingTabEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterActIpRoutingTabEntryIpAddress, + lcsStatusIpRouterActIpRoutingTabEntryIpNetmask, + lcsStatusIpRouterActIpRoutingTabEntryRtgTag + } + ::= { lcsStatusIpRouterActIpRoutingTabTable 1 } + +LcsStatusIpRouterActIpRoutingTabEntry ::= SEQUENCE { + lcsStatusIpRouterActIpRoutingTabEntryIpAddress IpAddress, + lcsStatusIpRouterActIpRoutingTabEntryIpNetmask IpAddress, + lcsStatusIpRouterActIpRoutingTabEntryRtgTag Integer32, + lcsStatusIpRouterActIpRoutingTabEntryGateway IpAddress, + lcsStatusIpRouterActIpRoutingTabEntryPeer DisplayString, + lcsStatusIpRouterActIpRoutingTabEntryDistance Integer32, + lcsStatusIpRouterActIpRoutingTabEntryMasquerade INTEGER, + lcsStatusIpRouterActIpRoutingTabEntryType INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.30.1.1 +lcsStatusIpRouterActIpRoutingTabEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterActIpRoutingTabEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.30.1.2 +lcsStatusIpRouterActIpRoutingTabEntryIpNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterActIpRoutingTabEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.30.1.3 +lcsStatusIpRouterActIpRoutingTabEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterActIpRoutingTabEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.30.1.4 +lcsStatusIpRouterActIpRoutingTabEntryGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterActIpRoutingTabEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.30.1.5 +lcsStatusIpRouterActIpRoutingTabEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterActIpRoutingTabEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.30.1.6 +lcsStatusIpRouterActIpRoutingTabEntryDistance OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterActIpRoutingTabEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.30.1.7 +lcsStatusIpRouterActIpRoutingTabEntryMasquerade OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eOn (1), + eIntranet (2), + eUnknown (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterActIpRoutingTabEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.30.1.8 +lcsStatusIpRouterActIpRoutingTabEntryType OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eStatic (1), + eRip (2), + eVpn (3), + eCapwap (4), + eRas (5), + eIntranet (6), + eDmz (7), + eDisabled (8) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterActIpRoutingTabEntry 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.31 +lcsStatusIpRouterL4Errors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 31 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.10.32 +lcsStatusIpRouterLoadBalancer OBJECT IDENTIFIER ::= { lcsStatusIpRouter 32 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.32.1 +lcsStatusIpRouterLoadBalancerOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterLoadBalancer 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.32.2 +lcsStatusIpRouterLoadBalancerConnectionsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterLoadBalancerConnectionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterLoadBalancer 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.32.2.1 +lcsStatusIpRouterLoadBalancerConnectionsEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterLoadBalancerConnectionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterLoadBalancerConnectionsEntryPeer, + lcsStatusIpRouterLoadBalancerConnectionsEntryBundlePeer + } + ::= { lcsStatusIpRouterLoadBalancerConnectionsTable 1 } + +LcsStatusIpRouterLoadBalancerConnectionsEntry ::= SEQUENCE { + lcsStatusIpRouterLoadBalancerConnectionsEntryPeer DisplayString, + lcsStatusIpRouterLoadBalancerConnectionsEntryBundlePeer DisplayString, + lcsStatusIpRouterLoadBalancerConnectionsEntryState INTEGER, + lcsStatusIpRouterLoadBalancerConnectionsEntryTcpIpSessions Integer32, + lcsStatusIpRouterLoadBalancerConnectionsEntryPptpSessions Integer32, + lcsStatusIpRouterLoadBalancerConnectionsEntryVpnSessions Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.32.2.1.1 +lcsStatusIpRouterLoadBalancerConnectionsEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterLoadBalancerConnectionsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.32.2.1.2 +lcsStatusIpRouterLoadBalancerConnectionsEntryBundlePeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterLoadBalancerConnectionsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.32.2.1.3 +lcsStatusIpRouterLoadBalancerConnectionsEntryState OBJECT-TYPE + SYNTAX INTEGER { + eReady (2), + eConnection (7), + eDisconnecting (8) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterLoadBalancerConnectionsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.32.2.1.4 +lcsStatusIpRouterLoadBalancerConnectionsEntryTcpIpSessions OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterLoadBalancerConnectionsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.32.2.1.5 +lcsStatusIpRouterLoadBalancerConnectionsEntryPptpSessions OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterLoadBalancerConnectionsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.32.2.1.6 +lcsStatusIpRouterLoadBalancerConnectionsEntryVpnSessions OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterLoadBalancerConnectionsEntry 6 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.10.33 +lcsStatusIpRouterVrrp OBJECT IDENTIFIER ::= { lcsStatusIpRouter 33 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.33.1 +lcsStatusIpRouterVrrpRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrp 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.33.2 +lcsStatusIpRouterVrrpTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.33.3 +lcsStatusIpRouterVrrpError OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.33.4 +lcsStatusIpRouterVrrpDrop OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrp 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.33.5 +lcsStatusIpRouterVrrpOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrp 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.33.6 +lcsStatusIpRouterVrrpInternalServices OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrp 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.33.7 +lcsStatusIpRouterVrrpQueueErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrp 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.33.10 +lcsStatusIpRouterVrrpVirtualRouterTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterVrrpVirtualRouterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrp 10 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.33.10.1 +lcsStatusIpRouterVrrpVirtualRouterEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterVrrpVirtualRouterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterVrrpVirtualRouterEntryRouterId + } + ::= { lcsStatusIpRouterVrrpVirtualRouterTable 1 } + +LcsStatusIpRouterVrrpVirtualRouterEntry ::= SEQUENCE { + lcsStatusIpRouterVrrpVirtualRouterEntryRouterId Integer32, + lcsStatusIpRouterVrrpVirtualRouterEntryVirtAddress IpAddress, + lcsStatusIpRouterVrrpVirtualRouterEntryPrio Integer32, + lcsStatusIpRouterVrrpVirtualRouterEntryBPrio Integer32, + lcsStatusIpRouterVrrpVirtualRouterEntryPeer DisplayString, + lcsStatusIpRouterVrrpVirtualRouterEntryState INTEGER, + lcsStatusIpRouterVrrpVirtualRouterEntryBackup INTEGER, + lcsStatusIpRouterVrrpVirtualRouterEntryMaster IpAddress, + lcsStatusIpRouterVrrpVirtualRouterEntryVlanId Integer32, + lcsStatusIpRouterVrrpVirtualRouterEntryNetworkName DisplayString, + lcsStatusIpRouterVrrpVirtualRouterEntryPort INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.33.10.1.1 +lcsStatusIpRouterVrrpVirtualRouterEntryRouterId OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrpVirtualRouterEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.33.10.1.2 +lcsStatusIpRouterVrrpVirtualRouterEntryVirtAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrpVirtualRouterEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.33.10.1.3 +lcsStatusIpRouterVrrpVirtualRouterEntryPrio OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrpVirtualRouterEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.33.10.1.4 +lcsStatusIpRouterVrrpVirtualRouterEntryBPrio OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrpVirtualRouterEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.33.10.1.5 +lcsStatusIpRouterVrrpVirtualRouterEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrpVirtualRouterEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.33.10.1.6 +lcsStatusIpRouterVrrpVirtualRouterEntryState OBJECT-TYPE + SYNTAX INTEGER { + eInit (0), + eListen (1), + eStandby (2), + eMaster (3), + eDown (4), + eReconnect (5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrpVirtualRouterEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.33.10.1.7 +lcsStatusIpRouterVrrpVirtualRouterEntryBackup OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrpVirtualRouterEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.33.10.1.8 +lcsStatusIpRouterVrrpVirtualRouterEntryMaster OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrpVirtualRouterEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.33.10.1.10 +lcsStatusIpRouterVrrpVirtualRouterEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrpVirtualRouterEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.33.10.1.11 +lcsStatusIpRouterVrrpVirtualRouterEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrpVirtualRouterEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.33.10.1.12 +lcsStatusIpRouterVrrpVirtualRouterEntryPort OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (256), + eLan2 (257), + eLan3 (258), + eLan4 (259), + eLan5 (260), + eWlan1 (512), + eWlan2 (513), + eP2p11 (768), + eP2p12 (769), + eP2p13 (770), + eP2p14 (771), + eP2p15 (772), + eP2p16 (773), + eP2p21 (774), + eP2p22 (775), + eP2p23 (776), + eP2p24 (777), + eP2p25 (778), + eP2p26 (779), + eP2p17 (799), + eP2p18 (800), + eP2p19 (801), + eP2p110 (802), + eP2p111 (803), + eP2p112 (804), + eP2p113 (805), + eP2p114 (806), + eP2p115 (807), + eP2p116 (808), + eP2p27 (831), + eP2p28 (832), + eP2p29 (833), + eP2p210 (834), + eP2p211 (835), + eP2p212 (836), + eP2p213 (837), + eP2p214 (838), + eP2p215 (839), + eP2p216 (840), + eWlan12 (1024), + eWlan13 (1025), + eWlan14 (1026), + eWlan15 (1027), + eWlan16 (1028), + eWlan17 (1029), + eWlan18 (1030), + eWlan22 (1031), + eWlan23 (1032), + eWlan24 (1033), + eWlan25 (1034), + eWlan26 (1035), + eWlan27 (1036), + eWlan28 (1037), + eBrg1 (1536), + eBrg2 (1537), + eBrg3 (1538), + eBrg4 (1539), + eBrg5 (1540), + eBrg6 (1541), + eBrg7 (1542), + eBrg8 (1543), + eWlcTunnel1 (1792), + eWlcTunnel2 (1793), + eWlcTunnel3 (1794), + eWlcTunnel4 (1795), + eWlcTunnel5 (1796), + eWlcTunnel6 (1797), + eWlcTunnel7 (1798), + eWlcTunnel8 (1799), + eWlcTunnel9 (1800), + eWlcTunnel10 (1801), + eWlcTunnel11 (1802), + eWlcTunnel12 (1803), + eWlcTunnel13 (1804), + eWlcTunnel14 (1805), + eWlcTunnel15 (1806), + eWlcTunnel16 (1807), + eWlcTunnel17 (1808), + eWlcTunnel18 (1809), + eWlcTunnel19 (1810), + eWlcTunnel20 (1811), + eWlcTunnel21 (1812), + eWlcTunnel22 (1813), + eWlcTunnel23 (1814), + eWlcTunnel24 (1815), + eWlcTunnel25 (1816), + eWlcTunnel26 (1817), + eWlcTunnel27 (1818), + eWlcTunnel28 (1819), + eWlcTunnel29 (1820), + eWlcTunnel30 (1821), + eWlcTunnel31 (1822), + eWlcTunnel32 (1823), + eWlcTunnelAutowds (1824), + eBundle1 (2048), + eBundle2 (2049), + eAny (65535) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrpVirtualRouterEntry 12 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.33.11 +lcsStatusIpRouterVrrpMacListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterVrrpMacListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrp 11 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.33.11.1 +lcsStatusIpRouterVrrpMacListEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterVrrpMacListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterVrrpMacListEntryVirtAddress + } + ::= { lcsStatusIpRouterVrrpMacListTable 1 } + +LcsStatusIpRouterVrrpMacListEntry ::= SEQUENCE { + lcsStatusIpRouterVrrpMacListEntryVirtAddress IpAddress, + lcsStatusIpRouterVrrpMacListEntryMacAddress MacAddress, + lcsStatusIpRouterVrrpMacListEntryRouterId Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.33.11.1.1 +lcsStatusIpRouterVrrpMacListEntryVirtAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrpMacListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.33.11.1.2 +lcsStatusIpRouterVrrpMacListEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrpMacListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.33.11.1.3 +lcsStatusIpRouterVrrpMacListEntryRouterId OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrpMacListEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.10.33.12 +lcsStatusIpRouterVrrpEventLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpRouterVrrpEventLogEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrp 12 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.10.33.12.1 +lcsStatusIpRouterVrrpEventLogEntry OBJECT-TYPE + SYNTAX LcsStatusIpRouterVrrpEventLogEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpRouterVrrpEventLogEntryIdx + } + ::= { lcsStatusIpRouterVrrpEventLogTable 1 } + +LcsStatusIpRouterVrrpEventLogEntry ::= SEQUENCE { + lcsStatusIpRouterVrrpEventLogEntryIdx Integer32, + lcsStatusIpRouterVrrpEventLogEntrySystemTime DisplayString, + lcsStatusIpRouterVrrpEventLogEntrySrcAddress IpAddress, + lcsStatusIpRouterVrrpEventLogEntryVrid Integer32, + lcsStatusIpRouterVrrpEventLogEntryEvent INTEGER, + lcsStatusIpRouterVrrpEventLogEntryInfo DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.33.12.1.1 +lcsStatusIpRouterVrrpEventLogEntryIdx OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrpEventLogEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.33.12.1.2 +lcsStatusIpRouterVrrpEventLogEntrySystemTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrpEventLogEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.33.12.1.3 +lcsStatusIpRouterVrrpEventLogEntrySrcAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrpEventLogEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.33.12.1.4 +lcsStatusIpRouterVrrpEventLogEntryVrid OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrpEventLogEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.33.12.1.5 +lcsStatusIpRouterVrrpEventLogEntryEvent OBJECT-TYPE + SYNTAX INTEGER { + eInvalidTtl (1), + eInvalidVersion (2), + eBadNumberOfVirtualAddresses (3), + eBadAuthenticationType (4), + eBadAdvertisementInterval (5), + eInvalidVrid (6), + eInvalidRouterAddress (7), + eInvalidPriority (8), + eVirtualRouterStopped (9), + eVirtualRouterStarted (10), + eLinkUp (11), + eLinkDown (12), + eNewMaster (13), + eBackupStarted (14), + eBackupEnded (15) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrpEventLogEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.10.33.12.1.6 +lcsStatusIpRouterVrrpEventLogEntryInfo OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrpEventLogEntry 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.33.20 +lcsStatusIpRouterVrrpDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouterVrrp 20 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.34 +lcsStatusIpRouterRules OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 34 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.10.35 +lcsStatusIpRouterFilter OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpRouter 35 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.11 +lcsStatusConfig OBJECT IDENTIFIER ::= { lcsStatus 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.1 +lcsStatusConfigLanActiveConnections OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfig 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.2 +lcsStatusConfigLanTotalConnections OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfig 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.3 +lcsStatusConfigWanActiveConnections OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfig 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.4 +lcsStatusConfigWanTotalConnections OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfig 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.5 +lcsStatusConfigOutbandActiveConnections OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfig 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.6 +lcsStatusConfigOutbandTotalConnections OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfig 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.7 +lcsStatusConfigOutbandBitrate OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfig 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.8 +lcsStatusConfigLoginErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfig 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.9 +lcsStatusConfigLoginLocks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfig 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.10 +lcsStatusConfigLoginRejects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfig 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.11 +lcsStatusConfigDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfig 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.11.12 +lcsStatusConfigEventLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusConfigEventLogEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfig 12 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.11.12.1 +lcsStatusConfigEventLogEntry OBJECT-TYPE + SYNTAX LcsStatusConfigEventLogEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusConfigEventLogEntryIdx + } + ::= { lcsStatusConfigEventLogTable 1 } + +LcsStatusConfigEventLogEntry ::= SEQUENCE { + lcsStatusConfigEventLogEntryIdx Integer32, + lcsStatusConfigEventLogEntryEvent INTEGER, + lcsStatusConfigEventLogEntryAccess INTEGER, + lcsStatusConfigEventLogEntryIpAddress IpAddress, + lcsStatusConfigEventLogEntryInfo1 DisplayString, + lcsStatusConfigEventLogEntryInfo2 DisplayString, + lcsStatusConfigEventLogEntrySystemTime DisplayString, + lcsStatusConfigEventLogEntryIpAddressNew DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.12.1.1 +lcsStatusConfigEventLogEntryIdx OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigEventLogEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.12.1.2 +lcsStatusConfigEventLogEntryEvent OBJECT-TYPE + SYNTAX INTEGER { + eFwUplStart (4), + eUplsucc (5), + eUplfailto (6), + eUplfailincl (7), + eUplfailbaddev (8), + eLogin (9), + eLogout (10), + eCnfuplstart (11), + eCnfdnlstart (12), + eCnfdnlsucc (13), + eErrlogin (29), + eScrptuplstart (79), + eScrptdnlstart (80), + eUplinvversion (7000), + eUplfileexists (7001) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigEventLogEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.12.1.3 +lcsStatusConfigEventLogEntryAccess OBJECT-TYPE + SYNTAX INTEGER { + eOutband (0), + eTelnet (1), + eTftp (2), + eHttp (3), + eSnmp (4), + eHttps (5), + eTelnetSsl (6), + eSsh (7), + eLl2m (8), + ePpp (254), + eUnknown (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigEventLogEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.12.1.4 +lcsStatusConfigEventLogEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "" + ::= { lcsStatusConfigEventLogEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.12.1.5 +lcsStatusConfigEventLogEntryInfo1 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigEventLogEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.12.1.6 +lcsStatusConfigEventLogEntryInfo2 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigEventLogEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.12.1.7 +lcsStatusConfigEventLogEntrySystemTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigEventLogEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.12.1.8 +lcsStatusConfigEventLogEntryIpAddressNew OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigEventLogEntry 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.13 +lcsStatusConfigStartScan OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfig 13 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.11.14 +lcsStatusConfigScanResultsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusConfigScanResultsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfig 14 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.11.14.1 +lcsStatusConfigScanResultsEntry OBJECT-TYPE + SYNTAX LcsStatusConfigScanResultsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusConfigScanResultsEntryIpAddress, + lcsStatusConfigScanResultsEntryRtgTag + } + ::= { lcsStatusConfigScanResultsTable 1 } + +LcsStatusConfigScanResultsEntry ::= SEQUENCE { + lcsStatusConfigScanResultsEntryIpAddress IpAddress, + lcsStatusConfigScanResultsEntryName DisplayString, + lcsStatusConfigScanResultsEntryDeviceType DisplayString, + lcsStatusConfigScanResultsEntryVersion DisplayString, + lcsStatusConfigScanResultsEntryState INTEGER, + lcsStatusConfigScanResultsEntryCapiPort Integer32, + lcsStatusConfigScanResultsEntryHttpPort Integer32, + lcsStatusConfigScanResultsEntryHttpsPort Integer32, + lcsStatusConfigScanResultsEntryRtgTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.14.1.1 +lcsStatusConfigScanResultsEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigScanResultsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.14.1.2 +lcsStatusConfigScanResultsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigScanResultsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.14.1.3 +lcsStatusConfigScanResultsEntryDeviceType OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigScanResultsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.14.1.4 +lcsStatusConfigScanResultsEntryVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..30)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigScanResultsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.14.1.5 +lcsStatusConfigScanResultsEntryState OBJECT-TYPE + SYNTAX INTEGER { + eScanning (0), + eReady (1), + eError (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigScanResultsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.14.1.6 +lcsStatusConfigScanResultsEntryCapiPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigScanResultsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.14.1.7 +lcsStatusConfigScanResultsEntryHttpPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigScanResultsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.14.1.8 +lcsStatusConfigScanResultsEntryHttpsPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigScanResultsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.14.1.9 +lcsStatusConfigScanResultsEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigScanResultsEntry 9 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.11.15 +lcsStatusConfigAntiTheftProtection OBJECT IDENTIFIER ::= { lcsStatusConfig 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.15.1 +lcsStatusConfigAntiTheftProtectionState OBJECT-TYPE + SYNTAX INTEGER { + eDisabled (0), + eActive (1), + eSuccessfull (2), + eLocked (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigAntiTheftProtection 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.15.2 +lcsStatusConfigAntiTheftProtectionSendingCallTo OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..14)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigAntiTheftProtection 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.15.3 +lcsStatusConfigAntiTheftProtectionWaitingForCallFrom OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..14)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigAntiTheftProtection 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.15.4 +lcsStatusConfigAntiTheftProtectionLastSeenCallFrom OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..14)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigAntiTheftProtection 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.15.5 +lcsStatusConfigAntiTheftProtectionCallAccepted OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigAntiTheftProtection 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.15.6 +lcsStatusConfigAntiTheftProtectionLastError OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eUnallocatedNumber (1), + eNoRouteToDestination (3), + eNormalCallClearing (16), + eUserBusy (17), + eNoUserResponding (18), + eUserAlertingNoAnswer (19), + eCallRejected (21), + eNumberChanged (22), + eNonSelectedUserClearing (26), + eDestinationOutOfOrder (27), + eNormalUnspecified (31), + eNoChannelAvailable (34), + eTempFailure (41), + eSwitchingEquipmentCongestion (42), + eFacilityNotSubscribed (50), + eFacilityNotAvailable (63), + eInvalidCallReferenceNumber (81), + eIncompatibleDestination (88) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigAntiTheftProtection 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.15.7 +lcsStatusConfigAntiTheftProtectionIncomingCall OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigAntiTheftProtection 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.15.8 +lcsStatusConfigAntiTheftProtectionMethod OBJECT-TYPE + SYNTAX INTEGER { + eBasicCall (0), + eFacility (1), + eGps (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigAntiTheftProtection 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.15.9 +lcsStatusConfigAntiTheftProtectionPositionValid OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigAntiTheftProtection 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.15.10 +lcsStatusConfigAntiTheftProtectionExpectedLongitudeDeg OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigAntiTheftProtection 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.15.11 +lcsStatusConfigAntiTheftProtectionCurrentLongitudeDeg OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigAntiTheftProtection 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.15.12 +lcsStatusConfigAntiTheftProtectionExpectedLatitudeDeg OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..11)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigAntiTheftProtection 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.15.13 +lcsStatusConfigAntiTheftProtectionCurrentLatitudeDeg OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..11)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigAntiTheftProtection 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.15.14 +lcsStatusConfigAntiTheftProtectionDeltaLongitudeM OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigAntiTheftProtection 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.15.15 +lcsStatusConfigAntiTheftProtectionDeltaLatitudeM OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigAntiTheftProtection 15 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.11.16 +lcsStatusConfigFeaturesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusConfigFeaturesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfig 16 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.11.16.1 +lcsStatusConfigFeaturesEntry OBJECT-TYPE + SYNTAX LcsStatusConfigFeaturesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusConfigFeaturesEntryFeature, + lcsStatusConfigFeaturesEntryIndex + } + ::= { lcsStatusConfigFeaturesTable 1 } + +LcsStatusConfigFeaturesEntry ::= SEQUENCE { + lcsStatusConfigFeaturesEntryFeature INTEGER, + lcsStatusConfigFeaturesEntryExpires DisplayString, + lcsStatusConfigFeaturesEntryExpire Gauge32, + lcsStatusConfigFeaturesEntryState INTEGER, + lcsStatusConfigFeaturesEntryIndex Integer32, + lcsStatusConfigFeaturesEntryCount Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.16.1.1 +lcsStatusConfigFeaturesEntryFeature OBJECT-TYPE + SYNTAX INTEGER { + eIpx (1), + eLanBridge (2), + eLancapi (3), + eLeasedLine (4), + eSwitchedLine (5), + eDslInterface (6), + eFax (7), + eModem (8), + eVpn5 (9), + eVpn25 (10), + eCommonCriteria (11), + eProductionOk (12), + eVpn100 (13), + eWlc4025100 (14), + eWlanPointToPoint (15), + ePublicSpot (16), + eVpn200 (17), + eVpn500 (18), + eVpn1000 (19), + eHermes1Wpa (20), + eVpn3 (21), + eUmts (22), + eDynamicVpn (23), + eWlan5ghz (24), + eWlanNoEncryption (25), + eVoipAdvanced32 (26), + eVoipBasic (27), + eWlanFccRestrictions (28), + eWlc402550 (29), + eWlc400612 (30), + eVoipAdvanced8 (31), + eContentfilterAdditive (36), + eWlcPublicSpot (37), + eWlanMonitorMode (38), + eWlanNo5ghz (39), + eWlcApUpgrade (40), + eWlanDfs3 (41), + eInProduction (42), + eNetioServer (43), + eLanWlanBridge (44), + eEthernetIp (45), + eProfinet (46), + eWlanFilteredAveraging (47), + eVpn50 (48), + eWlcApBasic (49), + ePms (50), + ePrp (53) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigFeaturesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.16.1.2 +lcsStatusConfigFeaturesEntryExpires OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigFeaturesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.16.1.3 +lcsStatusConfigFeaturesEntryExpire OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigFeaturesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.16.1.4 +lcsStatusConfigFeaturesEntryState OBJECT-TYPE + SYNTAX INTEGER { + eLocked (0), + eActive (1), + eHidden (2), + eExpired (3), + eUnused (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigFeaturesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.16.1.5 +lcsStatusConfigFeaturesEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigFeaturesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.16.1.6 +lcsStatusConfigFeaturesEntryCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigFeaturesEntry 6 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.11.65 +lcsStatusConfigLl2m OBJECT IDENTIFIER ::= { lcsStatusConfig 65 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.65.1 +lcsStatusConfigLl2mRxPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigLl2m 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.65.2 +lcsStatusConfigLl2mRxBroadcastPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigLl2m 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.65.3 +lcsStatusConfigLl2mRxMulticastPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigLl2m 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.65.4 +lcsStatusConfigLl2mRxUnicastPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigLl2m 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.65.5 +lcsStatusConfigLl2mRxDiscard OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigLl2m 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.65.6 +lcsStatusConfigLl2mRxMalformed OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigLl2m 6 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.11.65.20 +lcsStatusConfigLl2mServer OBJECT IDENTIFIER ::= { lcsStatusConfigLl2m 20 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.65.20.1 +lcsStatusConfigLl2mServerRxPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigLl2mServer 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.65.20.2 +lcsStatusConfigLl2mServerRxBroadcastPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigLl2mServer 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.65.20.3 +lcsStatusConfigLl2mServerRxMulticastPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigLl2mServer 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.65.20.4 +lcsStatusConfigLl2mServerRxUnicastPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigLl2mServer 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.65.20.5 +lcsStatusConfigLl2mServerRxDiscard OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigLl2mServer 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.65.20.99 +lcsStatusConfigLl2mServerDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigLl2mServer 99 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.11.65.30 +lcsStatusConfigLl2mClient OBJECT IDENTIFIER ::= { lcsStatusConfigLl2m 30 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.65.30.1 +lcsStatusConfigLl2mClientRxPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigLl2mClient 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.65.30.2 +lcsStatusConfigLl2mClientRxBroadcastPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigLl2mClient 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.65.30.3 +lcsStatusConfigLl2mClientRxMulticastPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigLl2mClient 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.65.30.4 +lcsStatusConfigLl2mClientRxUnicastPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigLl2mClient 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.65.30.5 +lcsStatusConfigLl2mClientRxDiscard OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigLl2mClient 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.65.30.99 +lcsStatusConfigLl2mClientDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigLl2mClient 99 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.65.99 +lcsStatusConfigLl2mDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigLl2m 99 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.11.70 +lcsStatusConfigDownloadStatus OBJECT IDENTIFIER ::= { lcsStatusConfig 70 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.70.1 +lcsStatusConfigDownloadStatusFirmwareSuccesses OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigDownloadStatus 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.70.2 +lcsStatusConfigDownloadStatusFirmwareFailures OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigDownloadStatus 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.70.3 +lcsStatusConfigDownloadStatusConfigurationSuccesses OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigDownloadStatus 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.70.4 +lcsStatusConfigDownloadStatusConfigurationFailures OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigDownloadStatus 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.70.5 +lcsStatusConfigDownloadStatusScriptSuccesses OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigDownloadStatus 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.70.6 +lcsStatusConfigDownloadStatusScriptFailures OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigDownloadStatus 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.70.7 +lcsStatusConfigDownloadStatusFileSuccesses OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigDownloadStatus 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.70.8 +lcsStatusConfigDownloadStatusFileFailures OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigDownloadStatus 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.11.70.20 +lcsStatusConfigDownloadStatusLastOperationsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusConfigDownloadStatusLastOperationsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigDownloadStatus 20 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.11.70.20.1 +lcsStatusConfigDownloadStatusLastOperationsEntry OBJECT-TYPE + SYNTAX LcsStatusConfigDownloadStatusLastOperationsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusConfigDownloadStatusLastOperationsEntryIndex + } + ::= { lcsStatusConfigDownloadStatusLastOperationsTable 1 } + +LcsStatusConfigDownloadStatusLastOperationsEntry ::= SEQUENCE { + lcsStatusConfigDownloadStatusLastOperationsEntryIndex Integer32, + lcsStatusConfigDownloadStatusLastOperationsEntryIdentifier Integer32, + lcsStatusConfigDownloadStatusLastOperationsEntryType INTEGER, + lcsStatusConfigDownloadStatusLastOperationsEntryUrl DisplayString, + lcsStatusConfigDownloadStatusLastOperationsEntryStatus INTEGER, + lcsStatusConfigDownloadStatusLastOperationsEntryFailureReason DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.70.20.1.1 +lcsStatusConfigDownloadStatusLastOperationsEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigDownloadStatusLastOperationsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.70.20.1.2 +lcsStatusConfigDownloadStatusLastOperationsEntryIdentifier OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigDownloadStatusLastOperationsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.70.20.1.3 +lcsStatusConfigDownloadStatusLastOperationsEntryType OBJECT-TYPE + SYNTAX INTEGER { + eConfiguration (0), + eFirmware (1), + eScript (2), + eFile (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigDownloadStatusLastOperationsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.70.20.1.4 +lcsStatusConfigDownloadStatusLastOperationsEntryUrl OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..252)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigDownloadStatusLastOperationsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.70.20.1.5 +lcsStatusConfigDownloadStatusLastOperationsEntryStatus OBJECT-TYPE + SYNTAX INTEGER { + eIdle (0), + ePending (1), + eSuccess (2), + eFailure (3), + eUnknown (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigDownloadStatusLastOperationsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.11.70.20.1.6 +lcsStatusConfigDownloadStatusLastOperationsEntryFailureReason OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..100)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigDownloadStatusLastOperationsEntry 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.11.70.99 +lcsStatusConfigDownloadStatusDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConfigDownloadStatus 99 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.12 +lcsStatusQueue OBJECT IDENTIFIER ::= { lcsStatus 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.12.1 +lcsStatusQueueLanHeapPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusQueue 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.12.2 +lcsStatusQueueQueuePackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusQueue 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.12.3 +lcsStatusQueueWanHeapPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusQueue 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.12.4 +lcsStatusQueueWanQueuePackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusQueue 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.12.7 +lcsStatusQueueArpQueryQueuePackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusQueue 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.12.8 +lcsStatusQueueArpQueuePackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusQueue 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.12.9 +lcsStatusQueueIpQueuePackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusQueue 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.12.10 +lcsStatusQueueIpUrgentQueuePackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusQueue 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.12.11 +lcsStatusQueueIcmpQueuePackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusQueue 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.12.12 +lcsStatusQueueTcpQueuePackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusQueue 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.12.13 +lcsStatusQueueTftpServerQueuePackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusQueue 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.12.14 +lcsStatusQueueSnmpQueuePackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusQueue 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.12.22 +lcsStatusQueueProtHeapPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusQueue 22 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.12.27 +lcsStatusQueueDhcpServerQueuePackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusQueue 27 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.12.28 +lcsStatusQueueDhcpClientQueuePackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusQueue 28 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.12.29 +lcsStatusQueueIprRipQueuePackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusQueue 29 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.12.30 +lcsStatusQueueDnsTxQueuePackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusQueue 30 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.12.31 +lcsStatusQueueDnsRxQueuePackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusQueue 31 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.12.40 +lcsStatusQueueWlanManagementHeapPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusQueue 40 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.13 +lcsStatusConnectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusConnectionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatus 13 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.13.1 +lcsStatusConnectionEntry OBJECT-TYPE + SYNTAX LcsStatusConnectionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusConnectionEntryIfc + } + ::= { lcsStatusConnectionTable 1 } + +LcsStatusConnectionEntry ::= SEQUENCE { + lcsStatusConnectionEntryIfc INTEGER, + lcsStatusConnectionEntryConnections Integer32, + lcsStatusConnectionEntryActive Integer32, + lcsStatusConnectionEntryPassive Integer32, + lcsStatusConnectionEntryErrors Integer32, + lcsStatusConnectionEntryConTime DisplayString, + lcsStatusConnectionEntryCharge Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.13.1.1 +lcsStatusConnectionEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eCh01 (257), + eCh02 (258), + eModem (513), + eDslCh1 (2049), + eDslCh2 (2050), + eDslCh3 (2051), + eDslCh4 (2052), + eDslCh5 (2053), + eDslCh6 (2054), + eDslCh7 (2055), + eDslCh8 (2056), + eAdsl1 (8193), + eAdsl2 (8194), + eAdsl3 (8195), + eAdsl4 (8196), + eAdsl5 (8197), + eAdsl6 (8198), + eAdsl7 (8199), + eAdsl8 (8200), + eVdsl1 (16385), + eVdsl2 (16386), + eVdsl3 (16387), + eVdsl4 (16388), + eVdsl5 (16389), + eVdsl6 (16390), + eVdsl7 (16391), + eVdsl8 (16392) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConnectionEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.13.1.2 +lcsStatusConnectionEntryConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConnectionEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.13.1.3 +lcsStatusConnectionEntryActive OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConnectionEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.13.1.4 +lcsStatusConnectionEntryPassive OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConnectionEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.13.1.5 +lcsStatusConnectionEntryErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConnectionEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.13.1.6 +lcsStatusConnectionEntryConTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConnectionEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.13.1.7 +lcsStatusConnectionEntryCharge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusConnectionEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.14 +lcsStatusInfoConnectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusInfoConnectionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatus 14 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.14.1 +lcsStatusInfoConnectionEntry OBJECT-TYPE + SYNTAX LcsStatusInfoConnectionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusInfoConnectionEntryIfc + } + ::= { lcsStatusInfoConnectionTable 1 } + +LcsStatusInfoConnectionEntry ::= SEQUENCE { + lcsStatusInfoConnectionEntryIfc INTEGER, + lcsStatusInfoConnectionEntryStatus DisplayString, + lcsStatusInfoConnectionEntryMode INTEGER, + lcsStatusInfoConnectionEntryDialupRemote DisplayString, + lcsStatusInfoConnectionEntryPeer DisplayString, + lcsStatusInfoConnectionEntryB1Dt Integer32, + lcsStatusInfoConnectionEntryB2Dt Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.14.1.1 +lcsStatusInfoConnectionEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eCh01 (257), + eCh02 (258), + eModem (513), + eDslCh1 (2049), + eDslCh2 (2050), + eDslCh3 (2051), + eDslCh4 (2052), + eDslCh5 (2053), + eDslCh6 (2054), + eDslCh7 (2055), + eDslCh8 (2056), + eAdsl1 (8193), + eAdsl2 (8194), + eAdsl3 (8195), + eAdsl4 (8196), + eAdsl5 (8197), + eAdsl6 (8198), + eAdsl7 (8199), + eAdsl8 (8200), + eVdsl1 (16385), + eVdsl2 (16386), + eVdsl3 (16387), + eVdsl4 (16388), + eVdsl5 (16389), + eVdsl6 (16390), + eVdsl7 (16391), + eVdsl8 (16392) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusInfoConnectionEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.14.1.2 +lcsStatusInfoConnectionEntryStatus OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusInfoConnectionEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.14.1.3 +lcsStatusInfoConnectionEntryMode OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eActive (4), + ePassive (5), + eCallback (9) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusInfoConnectionEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.14.1.4 +lcsStatusInfoConnectionEntryDialupRemote OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusInfoConnectionEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.14.1.5 +lcsStatusInfoConnectionEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusInfoConnectionEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.14.1.6 +lcsStatusInfoConnectionEntryB1Dt OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusInfoConnectionEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.14.1.7 +lcsStatusInfoConnectionEntryB2Dt OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusInfoConnectionEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.15 +lcsStatusLayerConnectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLayerConnectionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatus 15 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.15.1 +lcsStatusLayerConnectionEntry OBJECT-TYPE + SYNTAX LcsStatusLayerConnectionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLayerConnectionEntryIfc + } + ::= { lcsStatusLayerConnectionTable 1 } + +LcsStatusLayerConnectionEntry ::= SEQUENCE { + lcsStatusLayerConnectionEntryIfc INTEGER, + lcsStatusLayerConnectionEntryWanLayer DisplayString, + lcsStatusLayerConnectionEntryEncaps INTEGER, + lcsStatusLayerConnectionEntryLay3 INTEGER, + lcsStatusLayerConnectionEntryLay2 INTEGER, + lcsStatusLayerConnectionEntryL2Opt INTEGER, + lcsStatusLayerConnectionEntryLay1 INTEGER, + lcsStatusLayerConnectionEntryL1Parameter INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.15.1.1 +lcsStatusLayerConnectionEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eCh01 (257), + eCh02 (258), + eModem (513), + eDslCh1 (2049), + eDslCh2 (2050), + eDslCh3 (2051), + eDslCh4 (2052), + eDslCh5 (2053), + eDslCh6 (2054), + eDslCh7 (2055), + eDslCh8 (2056), + eAdsl1 (8193), + eAdsl2 (8194), + eAdsl3 (8195), + eAdsl4 (8196), + eAdsl5 (8197), + eAdsl6 (8198), + eAdsl7 (8199), + eAdsl8 (8200), + eVdsl1 (16385), + eVdsl2 (16386), + eVdsl3 (16387), + eVdsl4 (16388), + eVdsl5 (16389), + eVdsl6 (16390), + eVdsl7 (16391), + eVdsl8 (16392) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLayerConnectionEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.15.1.2 +lcsStatusLayerConnectionEntryWanLayer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..9)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLayerConnectionEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.15.1.3 +lcsStatusLayerConnectionEntryEncaps OBJECT-TYPE + SYNTAX INTEGER { + eEther (0), + eLlcMux (1), + eLlcEth (3), + eVcMux (4), + eTrans (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLayerConnectionEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.15.1.4 +lcsStatusLayerConnectionEntryLay3 OBJECT-TYPE + SYNTAX INTEGER { + eNONE (0), + ePpp (4), + eAppp (5), + eScppp (6), + eScappp (7), + eSctrans (8), + eDhcp (9), + eTRANS (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLayerConnectionEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.15.1.5 +lcsStatusLayerConnectionEntryLay2 OBJECT-TYPE + SYNTAX INTEGER { + eX75lapb (0), + eTrans (1), + ePppoe (5), + eSscop (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLayerConnectionEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.15.1.6 +lcsStatusLayerConnectionEntryL2Opt OBJECT-TYPE + SYNTAX INTEGER { + eCompr (0), + eBundle (1), + eBndPlusCmpr (2), + eNone (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLayerConnectionEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.15.1.7 +lcsStatusLayerConnectionEntryLay1 OBJECT-TYPE + SYNTAX INTEGER { + eHdlc64k (0), + eHdlc56k (1), + eAdsl (2), + eV1109k6 (3), + eEth (4), + eModem (5), + eSerial (6), + eVdsl (9), + eV11019k2 (67), + eV11038k4 (131) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLayerConnectionEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.15.1.8 +lcsStatusLayerConnectionEntryL1Parameter OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eV21300 (1), + eV23600 (2), + eV231200 (3), + eV221200 (4), + eV22bis2400 (5), + eV32qam4800 (6), + eV32qam9600 (7), + eV32bis7200 (8), + eV32tcm9600 (9), + eV32bis12000 (10), + eV32bis14400 (11), + eV342400 (12), + eV344800 (13), + eV347200 (14), + eV349600 (15), + eV3412000 (16), + eV3414400 (17), + eV3416800 (18), + eV3419200 (19), + eV3421600 (20), + eV3424000 (21), + eV3426400 (22), + eV3428800 (23), + eV3431200 (24), + eV3433600 (25), + eV9028000 (26), + eV9029333 (27), + eV9030667 (28), + eV9032000 (29), + eV9033333 (30), + eV9034667 (31), + eV9036000 (32), + eV9037333 (33), + eV9038667 (34), + eV9040000 (35), + eV9041333 (36), + eV9042667 (37), + eV9044000 (38), + eV9045333 (39), + eV9046667 (40), + eV9048000 (41), + eV9049333 (42), + eV9050667 (43), + eV9052000 (44), + eV9053333 (45), + eV9054667 (46), + eV9056000 (47) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLayerConnectionEntry 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.16 +lcsStatusCallInformationTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusCallInformationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatus 16 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.16.1 +lcsStatusCallInformationEntry OBJECT-TYPE + SYNTAX LcsStatusCallInformationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusCallInformationEntrySystemTime, + lcsStatusCallInformationEntryCounter + } + ::= { lcsStatusCallInformationTable 1 } + +LcsStatusCallInformationEntry ::= SEQUENCE { + lcsStatusCallInformationEntrySystemTime Gauge32, + lcsStatusCallInformationEntryIfc INTEGER, + lcsStatusCallInformationEntryClipCaller DisplayString, + lcsStatusCallInformationEntryDialCaller DisplayString, + lcsStatusCallInformationEntryCapab INTEGER, + lcsStatusCallInformationEntryBChan Integer32, + lcsStatusCallInformationEntryCounter Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.16.1.1 +lcsStatusCallInformationEntrySystemTime OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCallInformationEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.16.1.2 +lcsStatusCallInformationEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eS01 (257), + eModem (513), + eDsl1 (2049), + eDsl2 (2050), + eDsl3 (2051), + eDsl4 (2052), + eAdsl (8193), + eVdsl (16385) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCallInformationEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.16.1.3 +lcsStatusCallInformationEntryClipCaller OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCallInformationEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.16.1.4 +lcsStatusCallInformationEntryDialCaller OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCallInformationEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.16.1.5 +lcsStatusCallInformationEntryCapab OBJECT-TYPE + SYNTAX INTEGER { + eHdlc64k (0), + eHdlc56k (1), + eV1109k6 (3), + eModem (5), + eA31khz (13), + eSpeech (14), + eFaxG23 (15), + eV11019k2 (67), + eV11038k4 (131), + eUnknown (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCallInformationEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.16.1.6 +lcsStatusCallInformationEntryBChan OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCallInformationEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.16.1.7 +lcsStatusCallInformationEntryCounter OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCallInformationEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.17 +lcsStatusRemoteConnectionsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusRemoteConnectionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatus 17 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.17.1 +lcsStatusRemoteConnectionsEntry OBJECT-TYPE + SYNTAX LcsStatusRemoteConnectionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusRemoteConnectionsEntryConnStart, + lcsStatusRemoteConnectionsEntryCounter + } + ::= { lcsStatusRemoteConnectionsTable 1 } + +LcsStatusRemoteConnectionsEntry ::= SEQUENCE { + lcsStatusRemoteConnectionsEntryConnStart DisplayString, + lcsStatusRemoteConnectionsEntryRemoteId DisplayString, + lcsStatusRemoteConnectionsEntryMode INTEGER, + lcsStatusRemoteConnectionsEntryIfc INTEGER, + lcsStatusRemoteConnectionsEntryConnTime DisplayString, + lcsStatusRemoteConnectionsEntryCharge Integer32, + lcsStatusRemoteConnectionsEntryCounter Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.17.1.1 +lcsStatusRemoteConnectionsEntryConnStart OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusRemoteConnectionsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.17.1.2 +lcsStatusRemoteConnectionsEntryRemoteId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusRemoteConnectionsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.17.1.3 +lcsStatusRemoteConnectionsEntryMode OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eActive (4), + ePassive (5), + eCallback (9) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusRemoteConnectionsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.17.1.4 +lcsStatusRemoteConnectionsEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eCh01 (257), + eCh02 (258), + eModem (513), + eDslCh1 (2049), + eDslCh2 (2050), + eDslCh3 (2051), + eDslCh4 (2052), + eDslCh5 (2053), + eDslCh6 (2054), + eDslCh7 (2055), + eDslCh8 (2056), + eAdsl1 (8193), + eAdsl2 (8194), + eAdsl3 (8195), + eAdsl4 (8196), + eAdsl5 (8197), + eAdsl6 (8198), + eAdsl7 (8199), + eAdsl8 (8200), + eVdsl1 (16385), + eVdsl2 (16386), + eVdsl3 (16387), + eVdsl4 (16388), + eVdsl5 (16389), + eVdsl6 (16390), + eVdsl7 (16391), + eVdsl8 (16392) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusRemoteConnectionsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.17.1.5 +lcsStatusRemoteConnectionsEntryConnTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusRemoteConnectionsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.17.1.6 +lcsStatusRemoteConnectionsEntryCharge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusRemoteConnectionsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.17.1.8 +lcsStatusRemoteConnectionsEntryCounter OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusRemoteConnectionsEntry 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.18 +lcsStatusCurrentTime OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatus 18 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.21 +lcsStatusTime OBJECT IDENTIFIER ::= { lcsStatus 21 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.21.1 +lcsStatusTimeCurrentTime OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTime 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.21.2 +lcsStatusTimeSource OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eManual (1), + eIsdn (2), + eLan (3), + eRam (4), + eLanconfig (8), + eNtp (9), + eCapwap (10), + eRtc (11), + eGps (12) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTime 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.21.3 +lcsStatusTimeSetCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTime 3 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.21.4 +lcsStatusTimeIsdn OBJECT IDENTIFIER ::= { lcsStatusTime 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.21.4.1 +lcsStatusTimeIsdnConnection OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTimeIsdn 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.21.4.2 +lcsStatusTimeIsdnInformation OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTimeIsdn 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.21.4.3 +lcsStatusTimeIsdnInfoError OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTimeIsdn 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.21.4.4 +lcsStatusTimeIsdnUnits OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTimeIsdn 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.21.4.5 +lcsStatusTimeIsdnDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTimeIsdn 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.21.7 +lcsStatusTimeUtcInSeconds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTime 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.21.10 +lcsStatusTimeTimezone OBJECT-TYPE + SYNTAX INTEGER { + e0 (0), + eplus1 (1), + eplus2 (2), + eplus3 (3), + eplus4 (4), + eplus5 (5), + eplus6 (6), + eplus7 (7), + eplus8 (8), + eplus9 (9), + eplus10 (10), + eplus11 (11), + eplus12 (12), + eplus13 (13), + eplus14 (14), + eminus12 (244), + eminus11 (245), + eminus10 (246), + eminus9 (247), + eminus8 (248), + eminus7 (249), + eminus6 (250), + eminus5 (251), + eminus4 (252), + eminus3 (253), + eminus2 (254), + eminus1 (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTime 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.21.11 +lcsStatusTimeDaylightSavingTime OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eEuropeEu (2), + eRussia (3), + eUsa (4), + eUserDefined (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTime 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.21.12 +lcsStatusTimeDstClockChangesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTimeDstClockChangesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTime 12 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.21.12.1 +lcsStatusTimeDstClockChangesEntry OBJECT-TYPE + SYNTAX LcsStatusTimeDstClockChangesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTimeDstClockChangesEntryEvent + } + ::= { lcsStatusTimeDstClockChangesTable 1 } + +LcsStatusTimeDstClockChangesEntry ::= SEQUENCE { + lcsStatusTimeDstClockChangesEntryEvent INTEGER, + lcsStatusTimeDstClockChangesEntryIndex INTEGER, + lcsStatusTimeDstClockChangesEntryDay INTEGER, + lcsStatusTimeDstClockChangesEntryMonth INTEGER, + lcsStatusTimeDstClockChangesEntryHour Integer32, + lcsStatusTimeDstClockChangesEntryMinute Integer32, + lcsStatusTimeDstClockChangesEntryTimeType INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.21.12.1.1 +lcsStatusTimeDstClockChangesEntryEvent OBJECT-TYPE + SYNTAX INTEGER { + eStart (1), + eEnd (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTimeDstClockChangesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.21.12.1.2 +lcsStatusTimeDstClockChangesEntryIndex OBJECT-TYPE + SYNTAX INTEGER { + eFirst (1), + eSecond (2), + eThird (3), + eFourth (4), + e4Last (252), + e3Last (253), + e2Last (254), + eLast (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTimeDstClockChangesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.21.12.1.3 +lcsStatusTimeDstClockChangesEntryDay OBJECT-TYPE + SYNTAX INTEGER { + eSunday (0), + eMonday (1), + eTuesday (2), + eWednesday (3), + eThursday (4), + eFriday (5), + eSaturday (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTimeDstClockChangesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.21.12.1.4 +lcsStatusTimeDstClockChangesEntryMonth OBJECT-TYPE + SYNTAX INTEGER { + eJanuary (1), + eFebruary (2), + eMarch (3), + eApril (4), + eMay (5), + eJune (6), + eJuly (7), + eAugust (8), + eSeptember (9), + eOctober (10), + eNovember (11), + eDecember (12) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTimeDstClockChangesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.21.12.1.5 +lcsStatusTimeDstClockChangesEntryHour OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTimeDstClockChangesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.21.12.1.6 +lcsStatusTimeDstClockChangesEntryMinute OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTimeDstClockChangesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.21.12.1.7 +lcsStatusTimeDstClockChangesEntryTimeType OBJECT-TYPE + SYNTAX INTEGER { + eLst (0), + eUtc (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTimeDstClockChangesEntry 7 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.22 +lcsStatusLcr OBJECT IDENTIFIER ::= { lcsStatus 22 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.22.1 +lcsStatusLcrTotalCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLcr 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.22.2 +lcsStatusLcrFoundEvents OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLcr 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.22.3 +lcsStatusLcrNotfoundErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLcr 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.22.4 +lcsStatusLcrMissingtimeErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLcr 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.22.6 +lcsStatusLcrProviderTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLcrProviderEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLcr 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.22.6.1 +lcsStatusLcrProviderEntry OBJECT-TYPE + SYNTAX LcsStatusLcrProviderEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLcrProviderEntryProvider + } + ::= { lcsStatusLcrProviderTable 1 } + +LcsStatusLcrProviderEntry ::= SEQUENCE { + lcsStatusLcrProviderEntryProvider DisplayString, + lcsStatusLcrProviderEntryFailures Integer32, + lcsStatusLcrProviderEntrySuccesses Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.22.6.1.1 +lcsStatusLcrProviderEntryProvider OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLcrProviderEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.22.6.1.2 +lcsStatusLcrProviderEntryFailures OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLcrProviderEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.22.6.1.3 +lcsStatusLcrProviderEntrySuccesses OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLcrProviderEntry 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.22.7 +lcsStatusLcrDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLcr 7 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.22.31 +lcsStatusLcrPppoe OBJECT IDENTIFIER ::= { lcsStatusLcr 31 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.22.31.1 +lcsStatusLcrPppoeTxPadi OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLcrPppoe 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.22.31.2 +lcsStatusLcrPppoeRxPado OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLcrPppoe 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.22.31.3 +lcsStatusLcrPppoeTxPadr OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLcrPppoe 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.22.31.4 +lcsStatusLcrPppoeRxPads OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLcrPppoe 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.22.31.5 +lcsStatusLcrPppoeTxPadt OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLcrPppoe 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.22.31.6 +lcsStatusLcrPppoeRxPadt OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLcrPppoe 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.22.31.7 +lcsStatusLcrPppoeTxProtocol OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLcrPppoe 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.22.31.8 +lcsStatusLcrPppoeRxProtocol OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLcrPppoe 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.22.31.9 +lcsStatusLcrPppoeTxData OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLcrPppoe 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.22.31.10 +lcsStatusLcrPppoeRxData OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLcrPppoe 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.22.31.11 +lcsStatusLcrPppoeRxBad OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLcrPppoe 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.22.31.12 +lcsStatusLcrPppoeAcName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLcrPppoe 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.22.31.13 +lcsStatusLcrPppoeService OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLcrPppoe 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.22.31.30 +lcsStatusLcrPppoeDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLcrPppoe 30 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.24 +lcsStatusCharging OBJECT IDENTIFIER ::= { lcsStatus 24 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.1 +lcsStatusChargingSpareDslBroadbandMinutes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCharging 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.24.2 +lcsStatusChargingTimeTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusChargingTimeTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCharging 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.24.2.1 +lcsStatusChargingTimeTableEntry OBJECT-TYPE + SYNTAX LcsStatusChargingTimeTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusChargingTimeTableEntryIfc + } + ::= { lcsStatusChargingTimeTableTable 1 } + +LcsStatusChargingTimeTableEntry ::= SEQUENCE { + lcsStatusChargingTimeTableEntryIfc INTEGER, + lcsStatusChargingTimeTableEntryBudgetMinutes Integer32, + lcsStatusChargingTimeTableEntrySpareMinutes Integer32, + lcsStatusChargingTimeTableEntryMinutesActive Integer32, + lcsStatusChargingTimeTableEntryMinutesPassive Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.2.1.1 +lcsStatusChargingTimeTableEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eRouterDslBroadband (1), + eRouterSerial (2), + eLancapi (3), + eAb1 (4), + eAb2 (5), + eAb3 (6), + eAb4 (7), + eTimeModul (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChargingTimeTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.2.1.2 +lcsStatusChargingTimeTableEntryBudgetMinutes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChargingTimeTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.2.1.3 +lcsStatusChargingTimeTableEntrySpareMinutes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChargingTimeTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.2.1.4 +lcsStatusChargingTimeTableEntryMinutesActive OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChargingTimeTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.2.1.5 +lcsStatusChargingTimeTableEntryMinutesPassive OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChargingTimeTableEntry 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.3 +lcsStatusChargingDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCharging 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.4 +lcsStatusChargingSpareUnits OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCharging 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.24.5 +lcsStatusChargingTableBudgetTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusChargingTableBudgetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCharging 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.24.5.1 +lcsStatusChargingTableBudgetEntry OBJECT-TYPE + SYNTAX LcsStatusChargingTableBudgetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusChargingTableBudgetEntryIfc + } + ::= { lcsStatusChargingTableBudgetTable 1 } + +LcsStatusChargingTableBudgetEntry ::= SEQUENCE { + lcsStatusChargingTableBudgetEntryIfc INTEGER, + lcsStatusChargingTableBudgetEntryBudgetUnits Integer32, + lcsStatusChargingTableBudgetEntrySpareBudget Integer32, + lcsStatusChargingTableBudgetEntryTotalUnits Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.5.1.1 +lcsStatusChargingTableBudgetEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eRouterSerial (1), + eLancapi (2), + eAb1 (3), + eAb2 (4), + eAb3 (5), + eAb4 (6), + eTimeModul (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChargingTableBudgetEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.5.1.2 +lcsStatusChargingTableBudgetEntryBudgetUnits OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChargingTableBudgetEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.5.1.3 +lcsStatusChargingTableBudgetEntrySpareBudget OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChargingTableBudgetEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.5.1.4 +lcsStatusChargingTableBudgetEntryTotalUnits OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChargingTableBudgetEntry 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.6 +lcsStatusChargingSpareDaysPerPeriod OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCharging 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.7 +lcsStatusChargingRouterUnits OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCharging 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.8 +lcsStatusChargingTotalUnits OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCharging 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.9 +lcsStatusChargingRouterDslBroadbandMinutesActive OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCharging 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.10 +lcsStatusChargingSpareDialupMinutes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCharging 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.11 +lcsStatusChargingDialupMinutesActive OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCharging 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.24.12 +lcsStatusChargingVolumeBudgetsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusChargingVolumeBudgetsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusCharging 12 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.24.12.1 +lcsStatusChargingVolumeBudgetsEntry OBJECT-TYPE + SYNTAX LcsStatusChargingVolumeBudgetsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusChargingVolumeBudgetsEntryPeer + } + ::= { lcsStatusChargingVolumeBudgetsTable 1 } + +LcsStatusChargingVolumeBudgetsEntry ::= SEQUENCE { + lcsStatusChargingVolumeBudgetsEntryPeer DisplayString, + lcsStatusChargingVolumeBudgetsEntryDataMb Integer32, + lcsStatusChargingVolumeBudgetsEntryDataKb Integer32, + lcsStatusChargingVolumeBudgetsEntryLimitMb Integer32, + lcsStatusChargingVolumeBudgetsEntryPercent Integer32, + lcsStatusChargingVolumeBudgetsEntryFlags BITS, + lcsStatusChargingVolumeBudgetsEntryMonth Integer32, + lcsStatusChargingVolumeBudgetsEntryYear Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.12.1.1 +lcsStatusChargingVolumeBudgetsEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingVolumeBudgetsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.12.1.2 +lcsStatusChargingVolumeBudgetsEntryDataMb OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingVolumeBudgetsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.12.1.3 +lcsStatusChargingVolumeBudgetsEntryDataKb OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingVolumeBudgetsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.12.1.4 +lcsStatusChargingVolumeBudgetsEntryLimitMb OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingVolumeBudgetsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.12.1.5 +lcsStatusChargingVolumeBudgetsEntryPercent OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingVolumeBudgetsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.12.1.6 +lcsStatusChargingVolumeBudgetsEntryFlags OBJECT-TYPE + SYNTAX BITS { + eChargeLocked (5), + eExhausted (6), + eAlert (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingVolumeBudgetsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.12.1.7 +lcsStatusChargingVolumeBudgetsEntryMonth OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingVolumeBudgetsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.12.1.8 +lcsStatusChargingVolumeBudgetsEntryYear OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingVolumeBudgetsEntry 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.24.13 +lcsStatusChargingArchiveTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusChargingArchiveEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusCharging 13 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.24.13.1 +lcsStatusChargingArchiveEntry OBJECT-TYPE + SYNTAX LcsStatusChargingArchiveEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusChargingArchiveEntryPeer + } + ::= { lcsStatusChargingArchiveTable 1 } + +LcsStatusChargingArchiveEntry ::= SEQUENCE { + lcsStatusChargingArchiveEntryPeer DisplayString, + lcsStatusChargingArchiveEntryCurrMonth Integer32, + lcsStatusChargingArchiveEntryCurrYear Integer32, + lcsStatusChargingArchiveEntryCurrLimit Integer32, + lcsStatusChargingArchiveEntryCurrFlags Integer32, + lcsStatusChargingArchiveEntryMbJan Integer32, + lcsStatusChargingArchiveEntryKbJan Integer32, + lcsStatusChargingArchiveEntryMbFeb Integer32, + lcsStatusChargingArchiveEntryKbFeb Integer32, + lcsStatusChargingArchiveEntryMbMar Integer32, + lcsStatusChargingArchiveEntryKbMar Integer32, + lcsStatusChargingArchiveEntryMbApr Integer32, + lcsStatusChargingArchiveEntryKbApr Integer32, + lcsStatusChargingArchiveEntryMbMay Integer32, + lcsStatusChargingArchiveEntryKbMay Integer32, + lcsStatusChargingArchiveEntryMbJun Integer32, + lcsStatusChargingArchiveEntryKbJun Integer32, + lcsStatusChargingArchiveEntryMbJul Integer32, + lcsStatusChargingArchiveEntryKbJul Integer32, + lcsStatusChargingArchiveEntryMbAug Integer32, + lcsStatusChargingArchiveEntryKbAug Integer32, + lcsStatusChargingArchiveEntryMbSep Integer32, + lcsStatusChargingArchiveEntryKbSep Integer32, + lcsStatusChargingArchiveEntryMbOct Integer32, + lcsStatusChargingArchiveEntryKbOct Integer32, + lcsStatusChargingArchiveEntryMbNov Integer32, + lcsStatusChargingArchiveEntryKbNov Integer32, + lcsStatusChargingArchiveEntryMbDec Integer32, + lcsStatusChargingArchiveEntryKbDec Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.1 +lcsStatusChargingArchiveEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.2 +lcsStatusChargingArchiveEntryCurrMonth OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.3 +lcsStatusChargingArchiveEntryCurrYear OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.4 +lcsStatusChargingArchiveEntryCurrLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.5 +lcsStatusChargingArchiveEntryCurrFlags OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.6 +lcsStatusChargingArchiveEntryMbJan OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.7 +lcsStatusChargingArchiveEntryKbJan OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.8 +lcsStatusChargingArchiveEntryMbFeb OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.9 +lcsStatusChargingArchiveEntryKbFeb OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.10 +lcsStatusChargingArchiveEntryMbMar OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.11 +lcsStatusChargingArchiveEntryKbMar OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.12 +lcsStatusChargingArchiveEntryMbApr OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.13 +lcsStatusChargingArchiveEntryKbApr OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.14 +lcsStatusChargingArchiveEntryMbMay OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.15 +lcsStatusChargingArchiveEntryKbMay OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.16 +lcsStatusChargingArchiveEntryMbJun OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.17 +lcsStatusChargingArchiveEntryKbJun OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.18 +lcsStatusChargingArchiveEntryMbJul OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.19 +lcsStatusChargingArchiveEntryKbJul OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.20 +lcsStatusChargingArchiveEntryMbAug OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.21 +lcsStatusChargingArchiveEntryKbAug OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.22 +lcsStatusChargingArchiveEntryMbSep OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.23 +lcsStatusChargingArchiveEntryKbSep OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.24 +lcsStatusChargingArchiveEntryMbOct OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 24 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.25 +lcsStatusChargingArchiveEntryKbOct OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 25 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.26 +lcsStatusChargingArchiveEntryMbNov OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 26 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.27 +lcsStatusChargingArchiveEntryKbNov OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 27 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.28 +lcsStatusChargingArchiveEntryMbDec OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 28 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.24.13.1.29 +lcsStatusChargingArchiveEntryKbDec OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusChargingArchiveEntry 29 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.14 +lcsStatusChargingClearArchive OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusCharging 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.15 +lcsStatusChargingActivateAdditionalBudget OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusCharging 15 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.24.31 +lcsStatusChargingPppoe OBJECT IDENTIFIER ::= { lcsStatusCharging 31 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.31.1 +lcsStatusChargingPppoeTxPadi OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChargingPppoe 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.31.2 +lcsStatusChargingPppoeRxPado OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChargingPppoe 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.31.3 +lcsStatusChargingPppoeTxPadr OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChargingPppoe 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.31.4 +lcsStatusChargingPppoeRxPads OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChargingPppoe 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.31.5 +lcsStatusChargingPppoeTxPadt OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChargingPppoe 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.31.6 +lcsStatusChargingPppoeRxPadt OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChargingPppoe 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.31.7 +lcsStatusChargingPppoeTxProtocol OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChargingPppoe 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.31.8 +lcsStatusChargingPppoeRxProtocol OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChargingPppoe 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.31.9 +lcsStatusChargingPppoeTxData OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChargingPppoe 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.31.10 +lcsStatusChargingPppoeRxData OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChargingPppoe 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.31.11 +lcsStatusChargingPppoeRxBad OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChargingPppoe 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.31.12 +lcsStatusChargingPppoeAcName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChargingPppoe 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.31.13 +lcsStatusChargingPppoeService OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChargingPppoe 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.24.31.30 +lcsStatusChargingPppoeDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChargingPppoe 30 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.25 +lcsStatusDslol OBJECT IDENTIFIER ::= { lcsStatus 25 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.1 +lcsStatusDslolRxPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.2 +lcsStatusDslolTxPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.3 +lcsStatusDslolRxErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.4 +lcsStatusDslolTxErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.5 +lcsStatusDslolRxNoConnection OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.6 +lcsStatusDslolNicErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.7 +lcsStatusDslolQueuePackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.8 +lcsStatusDslolQueueErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.9 +lcsStatusDslolRxBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.10 +lcsStatusDslolTxBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.11 +lcsStatusDslolRxUnicasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.12 +lcsStatusDslolTxBroadcasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.13 +lcsStatusDslolTxUnicasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.14 +lcsStatusDslolLinkActive OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.17 +lcsStatusDslolRxCrcErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 17 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.18 +lcsStatusDslolRxAlignErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 18 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.19 +lcsStatusDslolCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 19 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.20 +lcsStatusDslolSingleCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 20 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.21 +lcsStatusDslolMultipleCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 21 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.22 +lcsStatusDslolLateCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 22 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.23 +lcsStatusDslolExcessiveCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 23 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.25.24 +lcsStatusDslolDslol OBJECT IDENTIFIER ::= { lcsStatusDslol 24 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.24.1 +lcsStatusDslolDslolIpConfiguration OBJECT-TYPE + SYNTAX INTEGER { + eInvalid (0), + eValid (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslolDslol 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.24.2 +lcsStatusDslolDslolIpNetwork OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslolDslol 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.24.3 +lcsStatusDslolDslolIpNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslolDslol 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.24.4 +lcsStatusDslolDslolGatewayIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslolDslol 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.24.5 +lcsStatusDslolDslolGatewayMac OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslolDslol 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.24.6 +lcsStatusDslolDslolCatchDhcp OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslolDslol 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.24.7 +lcsStatusDslolDslolExclusiveMode OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslolDslol 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.25 +lcsStatusDslolRxTooShort OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 25 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.26 +lcsStatusDslolRxTooLong OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 26 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.27 +lcsStatusDslolTxCarrier OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 27 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.28 +lcsStatusDslolTxDeferred OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 28 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.30 +lcsStatusDslolDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslol 30 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.25.31 +lcsStatusDslolPppoe OBJECT IDENTIFIER ::= { lcsStatusDslol 31 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.31.1 +lcsStatusDslolPppoeTxPadi OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslolPppoe 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.31.2 +lcsStatusDslolPppoeRxPado OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslolPppoe 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.31.3 +lcsStatusDslolPppoeTxPadr OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslolPppoe 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.31.4 +lcsStatusDslolPppoeRxPads OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslolPppoe 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.31.5 +lcsStatusDslolPppoeTxPadt OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslolPppoe 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.31.6 +lcsStatusDslolPppoeRxPadt OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslolPppoe 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.31.7 +lcsStatusDslolPppoeTxProtocol OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslolPppoe 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.31.8 +lcsStatusDslolPppoeRxProtocol OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslolPppoe 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.31.9 +lcsStatusDslolPppoeTxData OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslolPppoe 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.31.10 +lcsStatusDslolPppoeRxData OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslolPppoe 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.31.11 +lcsStatusDslolPppoeRxBad OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslolPppoe 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.31.12 +lcsStatusDslolPppoeAcName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslolPppoe 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.31.13 +lcsStatusDslolPppoeService OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslolPppoe 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.25.31.30 +lcsStatusDslolPppoeDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslolPppoe 30 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.26 +lcsStatusVpn OBJECT IDENTIFIER ::= { lcsStatus 26 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.1 +lcsStatusVpnPeers OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.2 +lcsStatusVpnRules OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.4 +lcsStatusVpnTunnel OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.5 +lcsStatusVpnIkeSas OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.6 +lcsStatusVpnEspSas OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.7 +lcsStatusVpnAhSas OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.26.8 +lcsStatusVpnIkeTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusVpnIkeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 8 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.26.8.1 +lcsStatusVpnIkeEntry OBJECT-TYPE + SYNTAX LcsStatusVpnIkeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusVpnIkeEntryIdx + } + ::= { lcsStatusVpnIkeTable 1 } + +LcsStatusVpnIkeEntry ::= SEQUENCE { + lcsStatusVpnIkeEntryIdx DisplayString, + lcsStatusVpnIkeEntryPeer DisplayString, + lcsStatusVpnIkeEntryDestAddress IpAddress, + lcsStatusVpnIkeEntrySrcAddress IpAddress, + lcsStatusVpnIkeEntryCryptAlg DisplayString, + lcsStatusVpnIkeEntryHashAlg DisplayString, + lcsStatusVpnIkeEntryAge Integer32, + lcsStatusVpnIkeEntryInitiator DisplayString, + lcsStatusVpnIkeEntrySoftSec Integer32, + lcsStatusVpnIkeEntryMaxSec Integer32, + lcsStatusVpnIkeEntryKbyte Integer32, + lcsStatusVpnIkeEntrySoftKbyte Integer32, + lcsStatusVpnIkeEntryMaxKbyte Integer32, + lcsStatusVpnIkeEntryIkeAuthMode INTEGER, + lcsStatusVpnIkeEntryDstPort Integer32, + lcsStatusVpnIkeEntrySrcPort Integer32, + lcsStatusVpnIkeEntryDestAddressNew DisplayString, + lcsStatusVpnIkeEntrySrcAddressNew DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.8.1.1 +lcsStatusVpnIkeEntryIdx OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIkeEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.8.1.2 +lcsStatusVpnIkeEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIkeEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.8.1.3 +lcsStatusVpnIkeEntryDestAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "" + ::= { lcsStatusVpnIkeEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.8.1.4 +lcsStatusVpnIkeEntrySrcAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "" + ::= { lcsStatusVpnIkeEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.8.1.5 +lcsStatusVpnIkeEntryCryptAlg OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIkeEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.8.1.6 +lcsStatusVpnIkeEntryHashAlg OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIkeEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.8.1.8 +lcsStatusVpnIkeEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIkeEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.8.1.9 +lcsStatusVpnIkeEntryInitiator OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIkeEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.8.1.10 +lcsStatusVpnIkeEntrySoftSec OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIkeEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.8.1.11 +lcsStatusVpnIkeEntryMaxSec OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIkeEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.8.1.12 +lcsStatusVpnIkeEntryKbyte OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIkeEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.8.1.13 +lcsStatusVpnIkeEntrySoftKbyte OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIkeEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.8.1.14 +lcsStatusVpnIkeEntryMaxKbyte OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIkeEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.8.1.15 +lcsStatusVpnIkeEntryIkeAuthMode OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + ePreShared (1), + eDss (2), + eRsaSig (3), + eRsaEnc (4), + eRsaEncRev (5), + eElGamalEnc (6), + eElGamalEncRev (7), + eEcdsaSig (8), + ePreSharedInitXauth (65001), + ePreSharedRespXauth (65002), + eDssInitXauth (65003), + eDssRespXauth (65004), + eRsaInitXauth (65005), + eRsaRespXauth (65006) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIkeEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.8.1.16 +lcsStatusVpnIkeEntryDstPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIkeEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.8.1.17 +lcsStatusVpnIkeEntrySrcPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIkeEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.8.1.18 +lcsStatusVpnIkeEntryDestAddressNew OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIkeEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.8.1.19 +lcsStatusVpnIkeEntrySrcAddressNew OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIkeEntry 19 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.26.9 +lcsStatusVpnEspTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusVpnEspEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.26.9.1 +lcsStatusVpnEspEntry OBJECT-TYPE + SYNTAX LcsStatusVpnEspEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusVpnEspEntryIdx + } + ::= { lcsStatusVpnEspTable 1 } + +LcsStatusVpnEspEntry ::= SEQUENCE { + lcsStatusVpnEspEntryIdx DisplayString, + lcsStatusVpnEspEntryPeer DisplayString, + lcsStatusVpnEspEntryDestAddress IpAddress, + lcsStatusVpnEspEntrySrcAddress IpAddress, + lcsStatusVpnEspEntryMode DisplayString, + lcsStatusVpnEspEntryCryptAlg DisplayString, + lcsStatusVpnEspEntryHashAlg DisplayString, + lcsStatusVpnEspEntrySpi DisplayString, + lcsStatusVpnEspEntryAge Integer32, + lcsStatusVpnEspEntrySoftSec Integer32, + lcsStatusVpnEspEntryMaxSec Integer32, + lcsStatusVpnEspEntryKbyte Integer32, + lcsStatusVpnEspEntrySoftKbyte Integer32, + lcsStatusVpnEspEntryMaxKbyte Integer32, + lcsStatusVpnEspEntryDestAddressNew DisplayString, + lcsStatusVpnEspEntrySrcAddressNew DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.9.1.1 +lcsStatusVpnEspEntryIdx OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnEspEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.9.1.2 +lcsStatusVpnEspEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnEspEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.9.1.3 +lcsStatusVpnEspEntryDestAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "" + ::= { lcsStatusVpnEspEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.9.1.4 +lcsStatusVpnEspEntrySrcAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "" + ::= { lcsStatusVpnEspEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.9.1.5 +lcsStatusVpnEspEntryMode OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnEspEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.9.1.6 +lcsStatusVpnEspEntryCryptAlg OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnEspEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.9.1.7 +lcsStatusVpnEspEntryHashAlg OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnEspEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.9.1.9 +lcsStatusVpnEspEntrySpi OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnEspEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.9.1.10 +lcsStatusVpnEspEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnEspEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.9.1.11 +lcsStatusVpnEspEntrySoftSec OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnEspEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.9.1.12 +lcsStatusVpnEspEntryMaxSec OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnEspEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.9.1.13 +lcsStatusVpnEspEntryKbyte OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnEspEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.9.1.14 +lcsStatusVpnEspEntrySoftKbyte OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnEspEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.9.1.15 +lcsStatusVpnEspEntryMaxKbyte OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnEspEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.9.1.16 +lcsStatusVpnEspEntryDestAddressNew OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnEspEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.9.1.17 +lcsStatusVpnEspEntrySrcAddressNew OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnEspEntry 17 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.26.10 +lcsStatusVpnAhTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusVpnAhEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 10 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.26.10.1 +lcsStatusVpnAhEntry OBJECT-TYPE + SYNTAX LcsStatusVpnAhEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusVpnAhEntryIdx + } + ::= { lcsStatusVpnAhTable 1 } + +LcsStatusVpnAhEntry ::= SEQUENCE { + lcsStatusVpnAhEntryIdx DisplayString, + lcsStatusVpnAhEntryPeer DisplayString, + lcsStatusVpnAhEntryDestAddress IpAddress, + lcsStatusVpnAhEntrySrcAddress IpAddress, + lcsStatusVpnAhEntryMode DisplayString, + lcsStatusVpnAhEntryCryptAlg DisplayString, + lcsStatusVpnAhEntryHashAlg DisplayString, + lcsStatusVpnAhEntrySpi DisplayString, + lcsStatusVpnAhEntryAge Integer32, + lcsStatusVpnAhEntrySoftSec Integer32, + lcsStatusVpnAhEntryMaxSec Integer32, + lcsStatusVpnAhEntryKbyte Integer32, + lcsStatusVpnAhEntrySoftKbyte Integer32, + lcsStatusVpnAhEntryMaxKbyte Integer32, + lcsStatusVpnAhEntryDestAddressNew DisplayString, + lcsStatusVpnAhEntrySrcAddressNew DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.10.1.1 +lcsStatusVpnAhEntryIdx OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnAhEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.10.1.2 +lcsStatusVpnAhEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnAhEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.10.1.3 +lcsStatusVpnAhEntryDestAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "" + ::= { lcsStatusVpnAhEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.10.1.4 +lcsStatusVpnAhEntrySrcAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "" + ::= { lcsStatusVpnAhEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.10.1.5 +lcsStatusVpnAhEntryMode OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnAhEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.10.1.6 +lcsStatusVpnAhEntryCryptAlg OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnAhEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.10.1.7 +lcsStatusVpnAhEntryHashAlg OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnAhEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.10.1.9 +lcsStatusVpnAhEntrySpi OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnAhEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.10.1.10 +lcsStatusVpnAhEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnAhEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.10.1.11 +lcsStatusVpnAhEntrySoftSec OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnAhEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.10.1.12 +lcsStatusVpnAhEntryMaxSec OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnAhEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.10.1.13 +lcsStatusVpnAhEntryKbyte OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnAhEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.10.1.14 +lcsStatusVpnAhEntrySoftKbyte OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnAhEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.10.1.15 +lcsStatusVpnAhEntryMaxKbyte OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnAhEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.10.1.16 +lcsStatusVpnAhEntryDestAddressNew OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnAhEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.10.1.17 +lcsStatusVpnAhEntrySrcAddressNew OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnAhEntry 17 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.12 +lcsStatusVpnDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.13 +lcsStatusVpnIpcompSas OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 13 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.26.14 +lcsStatusVpnIpcompTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusVpnIpcompEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 14 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.26.14.1 +lcsStatusVpnIpcompEntry OBJECT-TYPE + SYNTAX LcsStatusVpnIpcompEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusVpnIpcompEntryIdx + } + ::= { lcsStatusVpnIpcompTable 1 } + +LcsStatusVpnIpcompEntry ::= SEQUENCE { + lcsStatusVpnIpcompEntryIdx DisplayString, + lcsStatusVpnIpcompEntryPeer DisplayString, + lcsStatusVpnIpcompEntryDestAddress IpAddress, + lcsStatusVpnIpcompEntrySrcAddress IpAddress, + lcsStatusVpnIpcompEntryMode DisplayString, + lcsStatusVpnIpcompEntryCryptAlg DisplayString, + lcsStatusVpnIpcompEntryHashAlg DisplayString, + lcsStatusVpnIpcompEntrySpi DisplayString, + lcsStatusVpnIpcompEntryAge Integer32, + lcsStatusVpnIpcompEntrySoftSec Integer32, + lcsStatusVpnIpcompEntryMaxSec Integer32, + lcsStatusVpnIpcompEntryKbyte Integer32, + lcsStatusVpnIpcompEntrySoftKbyte Integer32, + lcsStatusVpnIpcompEntryMaxKbyte Integer32, + lcsStatusVpnIpcompEntryDestAddressNew DisplayString, + lcsStatusVpnIpcompEntrySrcAddressNew DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.14.1.1 +lcsStatusVpnIpcompEntryIdx OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIpcompEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.14.1.2 +lcsStatusVpnIpcompEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIpcompEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.14.1.3 +lcsStatusVpnIpcompEntryDestAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "" + ::= { lcsStatusVpnIpcompEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.14.1.4 +lcsStatusVpnIpcompEntrySrcAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "" + ::= { lcsStatusVpnIpcompEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.14.1.5 +lcsStatusVpnIpcompEntryMode OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIpcompEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.14.1.6 +lcsStatusVpnIpcompEntryCryptAlg OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIpcompEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.14.1.7 +lcsStatusVpnIpcompEntryHashAlg OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIpcompEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.14.1.9 +lcsStatusVpnIpcompEntrySpi OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIpcompEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.14.1.10 +lcsStatusVpnIpcompEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIpcompEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.14.1.11 +lcsStatusVpnIpcompEntrySoftSec OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIpcompEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.14.1.12 +lcsStatusVpnIpcompEntryMaxSec OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIpcompEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.14.1.13 +lcsStatusVpnIpcompEntryKbyte OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIpcompEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.14.1.14 +lcsStatusVpnIpcompEntrySoftKbyte OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIpcompEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.14.1.15 +lcsStatusVpnIpcompEntryMaxKbyte OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIpcompEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.14.1.16 +lcsStatusVpnIpcompEntryDestAddressNew OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIpcompEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.14.1.17 +lcsStatusVpnIpcompEntrySrcAddressNew OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnIpcompEntry 17 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.26.17 +lcsStatusVpnConnectionsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusVpnConnectionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 17 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.26.17.1 +lcsStatusVpnConnectionsEntry OBJECT-TYPE + SYNTAX LcsStatusVpnConnectionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusVpnConnectionsEntryPeer + } + ::= { lcsStatusVpnConnectionsTable 1 } + +LcsStatusVpnConnectionsEntry ::= SEQUENCE { + lcsStatusVpnConnectionsEntryPeer DisplayString, + lcsStatusVpnConnectionsEntryPhysConn DisplayString, + lcsStatusVpnConnectionsEntryRemoteGw IpAddress, + lcsStatusVpnConnectionsEntryCryptAlg DisplayString, + lcsStatusVpnConnectionsEntryCryptLength Integer32, + lcsStatusVpnConnectionsEntryHashAlg DisplayString, + lcsStatusVpnConnectionsEntryHashLength Integer32, + lcsStatusVpnConnectionsEntryHmacAlg DisplayString, + lcsStatusVpnConnectionsEntryHmacLength Integer32, + lcsStatusVpnConnectionsEntryComprAlg DisplayString, + lcsStatusVpnConnectionsEntryState INTEGER, + lcsStatusVpnConnectionsEntryMode INTEGER, + lcsStatusVpnConnectionsEntryShTime Integer32, + lcsStatusVpnConnectionsEntryB1Dt Integer32, + lcsStatusVpnConnectionsEntryLastError INTEGER, + lcsStatusVpnConnectionsEntryClientSn INTEGER, + lcsStatusVpnConnectionsEntryNatDetection INTEGER, + lcsStatusVpnConnectionsEntryConnTime Gauge32, + lcsStatusVpnConnectionsEntrySslEncaps INTEGER, + lcsStatusVpnConnectionsEntryRemoteGwNew DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.17.1.1 +lcsStatusVpnConnectionsEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnConnectionsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.17.1.2 +lcsStatusVpnConnectionsEntryPhysConn OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnConnectionsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.17.1.3 +lcsStatusVpnConnectionsEntryRemoteGw OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "" + ::= { lcsStatusVpnConnectionsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.17.1.4 +lcsStatusVpnConnectionsEntryCryptAlg OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..14)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnConnectionsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.17.1.5 +lcsStatusVpnConnectionsEntryCryptLength OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnConnectionsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.17.1.6 +lcsStatusVpnConnectionsEntryHashAlg OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..14)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnConnectionsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.17.1.7 +lcsStatusVpnConnectionsEntryHashLength OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnConnectionsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.17.1.8 +lcsStatusVpnConnectionsEntryHmacAlg OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..14)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnConnectionsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.17.1.9 +lcsStatusVpnConnectionsEntryHmacLength OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnConnectionsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.17.1.10 +lcsStatusVpnConnectionsEntryComprAlg OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..14)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnConnectionsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.17.1.11 +lcsStatusVpnConnectionsEntryState OBJECT-TYPE + SYNTAX INTEGER { + eInit (0), + eSetupWan (1), + eReady (2), + eWaitForCb (3), + eDial (4), + eIncomingCall (5), + eProtocol (6), + eConnection (7), + eDisconnecting (8), + eCallBack (9), + eBundleConnect (10), + eProtocol2 (11), + eReserved (12), + eBundle (13) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnConnectionsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.17.1.12 +lcsStatusVpnConnectionsEntryMode OBJECT-TYPE + SYNTAX INTEGER { + ePassive (0), + eActive (128) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnConnectionsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.17.1.13 +lcsStatusVpnConnectionsEntryShTime OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnConnectionsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.17.1.14 +lcsStatusVpnConnectionsEntryB1Dt OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnConnectionsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.17.1.16 +lcsStatusVpnConnectionsEntryLastError OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eIcmpConnError (275), + eIfcILicenseExceeded (4353), + eIfcINoChannelAvailable (4354), + eIfcINoRouteToRemoteGateway (4355), + eIfcINoPppTableEntryMatched (4356), + eIfcIConnectionTimeoutDynamic (4357), + eIfcIConnectionTimeoutIkeIpsec (4358), + eIfcINoPollTableEntryMatched (4360), + eIfcINameResolutionFailed (4361), + eIfcINegotiatorChargeLocked (4369), + eIfcINegotiatorTimeLocked (4370), + eIfcINegotiatorNoDialNumber (4371), + eIfcINegotiatorNoRemote (4372), + eIfcINegotiatorRemoteBlocked (4373), + eIfcINegotiatorNoMulticonnect (4374), + eIfcINegotiatorLineError (4375), + eIfcIPhysicalChargeLocked (4385), + eIfcIPhysicalTimeLocked (4386), + eIfcIPhysicalNoDialNumber (4387), + eIfcIPhysicalNoRemote (4388), + eIfcIPhysicalNoServerAddress (4389), + eIfcIPhysicalRemoteLocked (4390), + eIfcIPhysicalNoMulticonnect (4391), + eIfcIConnectionLimitReached (4393), + eIfcRLicenseExceeded (4609), + eIfcRNoChannelAvailable (4610), + eIfcRNoRouteToRemoteGateway (4611), + eIfcRNoPppTableEntryMatched (4612), + eIfcRConnectionTimeoutDynamic (4613), + eIfcRConnectionTimeoutIkeIpsec (4614), + eIfcRConnectionLimitReached (4649), + eIfcXLinePollingFailed (4871), + eIfcXPhysicalLineError (4904), + eIkeINoProposalMatched (8451), + eIkeIIkeKeyMismatch (8458), + eIkeIDpdTimeout (8461), + eIkeIUnableToGetIssuerCert (8462), + eIkeIUnableToGetCrl (8463), + eIkeIUnableToDecryptCertSignature (8464), + eIkeIUnableToDecryptCrlSignature (8465), + eIkeIUnableToDecodeIssuerPublicKey (8466), + eIkeICertSignatureFailure (8467), + eIkeICrlSignatureFailure (8468), + eIkeICertNotYetValid (8469), + eIkeICertHasExpired (8470), + eIkeICrlNotYetValid (8471), + eIkeICrlHasExpired (8472), + eIkeIErrorInCertNotBeforeField (8473), + eIkeIErrorInCertNotAfterField (8474), + eIkeIErrorInCrlLastUpdateField (8475), + eIkeIErrorInCrlNextUpdateField (8476), + eIkeIOutOfMem (8477), + eIkeIDepthZeroSelfSignedCert (8478), + eIkeISelfSignedCertInChain (8479), + eIkeIUnableToGetIssuerCertLocally (8480), + eIkeIUnableToVerifyLeafSignature (8481), + eIkeICertChainTooLong (8482), + eIkeICertRevoked (8483), + eIkeIInvalidCa (8484), + eIkeIPathLengthExceeded (8485), + eIkeIInvalidPurpose (8486), + eIkeICertUntrusted (8487), + eIkeICertRejected (8488), + eIkeISubjectIssuerMismatch (8489), + eIkeIAkidSkidMismatch (8490), + eIkeIAkidIssuerSerialMismatch (8491), + eIkeIKeyusageNoCertsign (8492), + eIkeIUnableToGetCrlIssuer (8493), + eIkeIUnhandledCriticalExtension (8494), + eIkeIKeyusageNoCrlSign (8495), + eIkeIUnhandledCriticalCrlExtension (8496), + eIkeICrlHasExceededExceedance (8497), + eIkeIApplicationVerification (8498), + eIkeICertRevokedUnspecified (8499), + eIkeICertRevokedKeyCompromise (8500), + eIkeICertRevokedCaCompromise (8501), + eIkeICertRevokedAffiliationChanged (8502), + eIkeICertRevokedSuperseded (8503), + eIkeICertRevokedCessationOfOperation (8504), + eIkeICertRevokedCertificateHold (8505), + eIkeICertRevokedRemoveFromCrl (8506), + eIkeICertRevokedPrivilegeWithdrawn (8507), + eIkeICertRevokedAACompromise (8508), + eIkeICertRevokedUnknownReason (8509), + eIkeIOutOfMemory (8702), + eIkeIGeneralFailure (8703), + eIkeRLicenseExceeded (8705), + eIkeRExchangeTypeMismatch (8706), + eIkeRNoProposalMatched (8707), + eIkeRIkeGroupMismatch (8708), + eIkeRLifeTypeUnsupported (8709), + eIkeRLifeDurationMismatch (8710), + eIkeRIdTypeUnsupported (8711), + eIkeRIdTypeMismatch (8712), + eIkeRNoRuleMatchedId (8713), + eIkeRIkeKeyMismatch (8714), + eIkeRLicenseDemosnExceeded (8715), + eIkeRLicenseSnExceeded (8716), + eIkeRDpdTimeout (8717), + eIkeRUnableToGetIssuerCert (8718), + eIkeRUnableToGetCrl (8719), + eIkeRUnableToDecryptCertSignature (8720), + eIkeRUnableToDecryptCrlSignature (8721), + eIkeRUnableToDecodeIssuerPublicKey (8722), + eIkeRCertSignatureFailure (8723), + eIkeRCrlSignatureFailure (8724), + eIkeRCertNotYetValid (8725), + eIkeRCertHasExpired (8726), + eIkeRCrlNotYetValid (8727), + eIkeRCrlHasExpired (8728), + eIkeRErrorInCertNotBeforeField (8729), + eIkeRErrorInCertNotAfterField (8730), + eIkeRErrorInCrlLastUpdateField (8731), + eIkeRErrorInCrlNextUpdateField (8732), + eIkeROutOfMem (8733), + eIkeRDepthZeroSelfSignedCert (8734), + eIkeRSelfSignedCertInChain (8735), + eIkeRUnableToGetIssuerCertLocally (8736), + eIkeRUnableToVerifyLeafSignature (8737), + eIkeRCertChainTooLong (8738), + eIkeRCertRevoked (8739), + eIkeRInvalidCa (8740), + eIkeRPathLengthExceeded (8741), + eIkeRInvalidPurpose (8742), + eIkeRCertUntrusted (8743), + eIkeRCertRejected (8744), + eIkeRSubjectIssuerMismatch (8745), + eIkeRAkidSkidMismatch (8746), + eIkeRAkidIssuerSerialMismatch (8747), + eIkeRKeyusageNoCertsign (8748), + eIkeRUnableToGetCrlIssuer (8749), + eIkeRUnhandledCriticalExtension (8750), + eIkeRKeyusageNoCrlSign (8751), + eIkeRUnhandledCriticalCrlExtension (8752), + eIkeRCrlHasExceededExceedance (8753), + eIkeRApplicationVerification (8754), + eIkeRCertRevokedUnspecified (8755), + eIkeRCertRevokedKeyCompromise (8756), + eIkeRCertRevokedCaCompromise (8757), + eIkeRCertRevokedAffiliationChanged (8758), + eIkeRCertRevokedSuperseded (8759), + eIkeRCertRevokedCessationOfOperation (8760), + eIkeRCertRevokedCertificateHold (8761), + eIkeRCertRevokedRemoveFromCrl (8762), + eIkeRCertRevokedPrivilegeWithdrawn (8763), + eIkeRCertRevokedAACompromise (8764), + eIkeRCertRevokedUnknownReason (8765), + eIkeRConnLimitReached (8784), + eIkeROutOfMemory (8958), + eIkeRGeneralFailure (8959), + eIpsecINoProposalMatched (12546), + eIpsecRNoRuleMatchedIds (12801), + eIpsecRNoProposalMatched (12802), + eIpsecRPfsGroupMismatch (12803), + eRemoteDisconnected (17153), + eManualDisconnect (17154), + eShortholdExpired (17155), + ePhysicalDisconnected (17156), + eInvalidPhysicalChannel (17157), + eDynamicVpnReconnect (17158), + eConfigurationChanged (17159), + eRemovedFromConfig (17160) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnConnectionsEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.17.1.17 +lcsStatusVpnConnectionsEntryClientSn OBJECT-TYPE + SYNTAX INTEGER { + eNotAvailable (-1), + eDemoVersion (0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnConnectionsEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.17.1.18 +lcsStatusVpnConnectionsEntryNatDetection OBJECT-TYPE + SYNTAX INTEGER { + eNoNat (0), + eNatLocal (1), + eNatRemote (2), + eNatBoth (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnConnectionsEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.17.1.19 +lcsStatusVpnConnectionsEntryConnTime OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnConnectionsEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.17.1.20 +lcsStatusVpnConnectionsEntrySslEncaps OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnConnectionsEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.17.1.21 +lcsStatusVpnConnectionsEntryRemoteGwNew OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpnConnectionsEntry 21 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.20 +lcsStatusVpnRxPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 20 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.21 +lcsStatusVpnTxPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 21 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.22 +lcsStatusVpnTxDropped OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 22 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.23 +lcsStatusVpnRxErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 23 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.25 +lcsStatusVpnTxInvalid OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 25 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.26 +lcsStatusVpnTxNoSa OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 26 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.27 +lcsStatusVpnTxNoPolicy OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 27 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.28 +lcsStatusVpnRxEspAuthFail OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 28 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.29 +lcsStatusVpnRxAhAuthFail OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 29 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.30 +lcsStatusVpnRxIpcompFail OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 30 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.31 +lcsStatusVpnRxEspReplay OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 31 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.32 +lcsStatusVpnRxAhReplay OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 32 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.33 +lcsStatusVpnRxBadSpi OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 33 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.34 +lcsStatusVpnRxInvalid OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 34 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.35 +lcsStatusVpnRxNoSa OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 35 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.36 +lcsStatusVpnQueueError OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVpn 36 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.26.37 +lcsStatusVpnDhGroups OBJECT IDENTIFIER ::= { lcsStatusVpn 37 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.26.37.5 +lcsStatusVpnDhGroupsPrecalculationTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusVpnDhGroupsPrecalculationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusVpnDhGroups 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.26.37.5.1 +lcsStatusVpnDhGroupsPrecalculationEntry OBJECT-TYPE + SYNTAX LcsStatusVpnDhGroupsPrecalculationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusVpnDhGroupsPrecalculationEntryDhGroup + } + ::= { lcsStatusVpnDhGroupsPrecalculationTable 1 } + +LcsStatusVpnDhGroupsPrecalculationEntry ::= SEQUENCE { + lcsStatusVpnDhGroupsPrecalculationEntryDhGroup Integer32, + lcsStatusVpnDhGroupsPrecalculationEntryRuleDependentTarget Integer32, + lcsStatusVpnDhGroupsPrecalculationEntryConfiguredTarget Integer32, + lcsStatusVpnDhGroupsPrecalculationEntryActualTarget Integer32, + lcsStatusVpnDhGroupsPrecalculationEntryCurrentStock Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.37.5.1.1 +lcsStatusVpnDhGroupsPrecalculationEntryDhGroup OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusVpnDhGroupsPrecalculationEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.37.5.1.2 +lcsStatusVpnDhGroupsPrecalculationEntryRuleDependentTarget OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusVpnDhGroupsPrecalculationEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.37.5.1.3 +lcsStatusVpnDhGroupsPrecalculationEntryConfiguredTarget OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusVpnDhGroupsPrecalculationEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.37.5.1.4 +lcsStatusVpnDhGroupsPrecalculationEntryActualTarget OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusVpnDhGroupsPrecalculationEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.26.37.5.1.5 +lcsStatusVpnDhGroupsPrecalculationEntryCurrentStock OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusVpnDhGroupsPrecalculationEntry 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.26.38 +lcsStatusVpnDeleteConnErrors OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusVpn 38 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.27 +lcsStatusPptp OBJECT IDENTIFIER ::= { lcsStatus 27 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.27.1 +lcsStatusPptpRxPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptp 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.27.2 +lcsStatusPptpTxPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.27.3 +lcsStatusPptpEchoRetries OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.27.4 +lcsStatusPptpAckTimeouts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptp 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.27.5 +lcsStatusPptpDroppedPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptp 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.27.6 +lcsStatusPptpRxErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptp 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.27.7 +lcsStatusPptpTcpErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptp 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.27.8 +lcsStatusPptpCallErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptp 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.27.9 +lcsStatusPptpConnectionsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusPptpConnectionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptp 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.27.9.1 +lcsStatusPptpConnectionsEntry OBJECT-TYPE + SYNTAX LcsStatusPptpConnectionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusPptpConnectionsEntryChannel + } + ::= { lcsStatusPptpConnectionsTable 1 } + +LcsStatusPptpConnectionsEntry ::= SEQUENCE { + lcsStatusPptpConnectionsEntryChannel DisplayString, + lcsStatusPptpConnectionsEntryState INTEGER, + lcsStatusPptpConnectionsEntryMode INTEGER, + lcsStatusPptpConnectionsEntryShTime Integer32, + lcsStatusPptpConnectionsEntryPhysConnection DisplayString, + lcsStatusPptpConnectionsEntryPeerAddress IpAddress, + lcsStatusPptpConnectionsEntryIpAddress IpAddress, + lcsStatusPptpConnectionsEntryDnsDefault IpAddress, + lcsStatusPptpConnectionsEntryNbnsDefault IpAddress, + lcsStatusPptpConnectionsEntryLastError INTEGER, + lcsStatusPptpConnectionsEntryDnsBackup IpAddress, + lcsStatusPptpConnectionsEntryNbnsBackup IpAddress, + lcsStatusPptpConnectionsEntryConnTime Gauge32, + lcsStatusPptpConnectionsEntryGateway IpAddress, + lcsStatusPptpConnectionsEntryEncryption INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.27.9.1.1 +lcsStatusPptpConnectionsEntryChannel OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptpConnectionsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.27.9.1.3 +lcsStatusPptpConnectionsEntryState OBJECT-TYPE + SYNTAX INTEGER { + eInit (0), + eSetupWan (1), + eReady (2), + eWaitForCb (3), + eDial (4), + eIncomingCall (5), + eProtocol (6), + eConnection (7), + eDisconnecting (8), + eCallBack (9), + eBundleConnect (10), + eProtocol2 (11), + eReserved (12), + eBundle (13) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptpConnectionsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.27.9.1.4 +lcsStatusPptpConnectionsEntryMode OBJECT-TYPE + SYNTAX INTEGER { + ePassive (0), + eActive (128) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptpConnectionsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.27.9.1.5 +lcsStatusPptpConnectionsEntryShTime OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptpConnectionsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.27.9.1.6 +lcsStatusPptpConnectionsEntryPhysConnection OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptpConnectionsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.27.9.1.7 +lcsStatusPptpConnectionsEntryPeerAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptpConnectionsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.27.9.1.8 +lcsStatusPptpConnectionsEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptpConnectionsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.27.9.1.9 +lcsStatusPptpConnectionsEntryDnsDefault OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptpConnectionsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.27.9.1.10 +lcsStatusPptpConnectionsEntryNbnsDefault OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptpConnectionsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.27.9.1.11 +lcsStatusPptpConnectionsEntryLastError OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eRemoteDoubled (267), + eIcmpConnError (275), + eDhcpTimeout (277), + ePptpNoResponse (278), + eVpnNoResponse (279), + eArpNoResponse (280), + ePptpNoChannel (513), + ePptpBadFormat (514), + ePptpBadValue (515), + ePptpNoRessource (516), + ePptpBadCallId (517), + ePptpGenError (518), + ePptpNoAddress (519), + ePptpDnsResolvError (520), + ePptpTcpConnError (521), + eRemoteDisconnected (17153), + eManualDisconnect (17154), + eShortholdExpired (17155), + ePhysicalDisconnected (17156), + eInvalidPhysicalChannel (17157), + eDynamicVpnReconnect (17158), + eConfigurationChanged (17159), + eRemovedFromConfig (17160), + eLcpRejected (32768), + eAuthError (32769), + eAuthRejected (32770), + eLcpConnError (32771), + ePapRejected (32784), + ePapRxTimeout (32785), + ePapTxTimeout (32786), + eWrongPapReq (32787), + ePapNakReceived (32788), + eUnknPapPeer (32789), + eChapRejected (32800), + eChapRxTimeout (32801), + eChapTxTimeout (32802), + eWrongChapResp (32803), + eChapFailRecvd (32804), + eUnknChapPeer (32805), + eIpxcpRejected (32816), + eWrongIpxcpNet (32817), + eIpxcpNetReject (32818), + eIpxcpRouteUnkn (32819), + eIpcpRejected (32832), + eCcpRejected (32848), + eNoNcpAvailable (33008) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptpConnectionsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.27.9.1.12 +lcsStatusPptpConnectionsEntryDnsBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptpConnectionsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.27.9.1.13 +lcsStatusPptpConnectionsEntryNbnsBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptpConnectionsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.27.9.1.14 +lcsStatusPptpConnectionsEntryConnTime OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptpConnectionsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.27.9.1.15 +lcsStatusPptpConnectionsEntryGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptpConnectionsEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.27.9.1.16 +lcsStatusPptpConnectionsEntryEncryption OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + e128Bits (64), + e56Bits (192), + e40Bits (224) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPptpConnectionsEntry 16 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.27.10 +lcsStatusPptpTunnel OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptp 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.27.11 +lcsStatusPptpDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptp 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.27.12 +lcsStatusPptpFlowControlQueue OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPptp 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.27.13 +lcsStatusPptpEncryptedTunnel OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPptp 13 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.28 +lcsStatusPppoe OBJECT IDENTIFIER ::= { lcsStatus 28 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.28.1 +lcsStatusPppoeTxPadi OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppoe 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.28.2 +lcsStatusPppoeRxPado OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppoe 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.28.3 +lcsStatusPppoeTxPadr OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppoe 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.28.4 +lcsStatusPppoeRxPads OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppoe 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.28.5 +lcsStatusPppoeTxPadt OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppoe 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.28.6 +lcsStatusPppoeRxPadt OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppoe 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.28.7 +lcsStatusPppoeTxProtocol OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppoe 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.28.8 +lcsStatusPppoeRxProtocol OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppoe 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.28.9 +lcsStatusPppoeTxData OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppoe 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.28.10 +lcsStatusPppoeRxData OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppoe 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.28.11 +lcsStatusPppoeRxBad OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppoe 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.28.12 +lcsStatusPppoeAcName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppoe 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.28.13 +lcsStatusPppoeService OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppoe 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.28.30 +lcsStatusPppoeDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPppoe 30 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.31 +lcsStatusLanBridge OBJECT IDENTIFIER ::= { lcsStatus 31 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.31.1 +lcsStatusLanBridgeAddressTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanBridgeAddressTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridge 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.31.1.1 +lcsStatusLanBridgeAddressTableEntry OBJECT-TYPE + SYNTAX LcsStatusLanBridgeAddressTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanBridgeAddressTableEntryIndex + } + ::= { lcsStatusLanBridgeAddressTableTable 1 } + +LcsStatusLanBridgeAddressTableEntry ::= SEQUENCE { + lcsStatusLanBridgeAddressTableEntryIndex Integer32, + lcsStatusLanBridgeAddressTableEntryAge Integer32, + lcsStatusLanBridgeAddressTableEntryMacAddress MacAddress, + lcsStatusLanBridgeAddressTableEntryEthernetPort INTEGER, + lcsStatusLanBridgeAddressTableEntryBrgAddr MacAddress, + lcsStatusLanBridgeAddressTableEntryVlanId Integer32, + lcsStatusLanBridgeAddressTableEntryBridgeGroup INTEGER, + lcsStatusLanBridgeAddressTableEntryPort DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.1.1.1 +lcsStatusLanBridgeAddressTableEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeAddressTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.1.1.2 +lcsStatusLanBridgeAddressTableEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeAddressTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.1.1.3 +lcsStatusLanBridgeAddressTableEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeAddressTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.1.1.5 +lcsStatusLanBridgeAddressTableEntryEthernetPort OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eUplink (1), + eEth1 (2), + eEth2 (3), + eEth3 (4), + eEth4 (5), + eWan (16), + eSfp1 (32) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeAddressTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.1.1.6 +lcsStatusLanBridgeAddressTableEntryBrgAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeAddressTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.1.1.7 +lcsStatusLanBridgeAddressTableEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeAddressTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.1.1.8 +lcsStatusLanBridgeAddressTableEntryBridgeGroup OBJECT-TYPE + SYNTAX INTEGER { + eBrg1 (0), + eBrg2 (1), + eBrg3 (2), + eBrg4 (3), + eBrg5 (4), + eBrg6 (5), + eBrg7 (6), + eBrg8 (7), + eNone (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeAddressTableEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.1.1.9 +lcsStatusLanBridgeAddressTableEntryPort OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeAddressTableEntry 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.31.8 +lcsStatusLanBridgeIsolatedMode OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridge 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.31.9 +lcsStatusLanBridgeConnectionTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanBridgeConnectionTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridge 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.31.9.1 +lcsStatusLanBridgeConnectionTableEntry OBJECT-TYPE + SYNTAX LcsStatusLanBridgeConnectionTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanBridgeConnectionTableEntryIndex + } + ::= { lcsStatusLanBridgeConnectionTableTable 1 } + +LcsStatusLanBridgeConnectionTableEntry ::= SEQUENCE { + lcsStatusLanBridgeConnectionTableEntryIndex Integer32, + lcsStatusLanBridgeConnectionTableEntryProtocol DisplayString, + lcsStatusLanBridgeConnectionTableEntrySubProtocol Integer32, + lcsStatusLanBridgeConnectionTableEntrySourceAddress IpAddress, + lcsStatusLanBridgeConnectionTableEntrySourcePort Integer32, + lcsStatusLanBridgeConnectionTableEntryDestPort Integer32, + lcsStatusLanBridgeConnectionTableEntryDestAddress IpAddress, + lcsStatusLanBridgeConnectionTableEntryDestMac DisplayString, + lcsStatusLanBridgeConnectionTableEntryAge Integer32, + lcsStatusLanBridgeConnectionTableEntryInterface INTEGER, + lcsStatusLanBridgeConnectionTableEntryName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.9.1.1 +lcsStatusLanBridgeConnectionTableEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeConnectionTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.9.1.3 +lcsStatusLanBridgeConnectionTableEntryProtocol OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..4)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeConnectionTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.9.1.4 +lcsStatusLanBridgeConnectionTableEntrySubProtocol OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeConnectionTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.9.1.5 +lcsStatusLanBridgeConnectionTableEntrySourceAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeConnectionTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.9.1.6 +lcsStatusLanBridgeConnectionTableEntrySourcePort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeConnectionTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.9.1.7 +lcsStatusLanBridgeConnectionTableEntryDestPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeConnectionTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.9.1.8 +lcsStatusLanBridgeConnectionTableEntryDestAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeConnectionTableEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.9.1.9 +lcsStatusLanBridgeConnectionTableEntryDestMac OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeConnectionTableEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.9.1.10 +lcsStatusLanBridgeConnectionTableEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeConnectionTableEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.9.1.11 +lcsStatusLanBridgeConnectionTableEntryInterface OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (256), + eLan2 (257), + eLan3 (258), + eLan4 (259), + eLan5 (260), + eWlan1 (512), + eWlan2 (513), + eP2p11 (768), + eP2p12 (769), + eP2p13 (770), + eP2p14 (771), + eP2p15 (772), + eP2p16 (773), + eP2p21 (774), + eP2p22 (775), + eP2p23 (776), + eP2p24 (777), + eP2p25 (778), + eP2p26 (779), + eP2p17 (799), + eP2p18 (800), + eP2p19 (801), + eP2p110 (802), + eP2p111 (803), + eP2p112 (804), + eP2p113 (805), + eP2p114 (806), + eP2p115 (807), + eP2p116 (808), + eP2p27 (831), + eP2p28 (832), + eP2p29 (833), + eP2p210 (834), + eP2p211 (835), + eP2p212 (836), + eP2p213 (837), + eP2p214 (838), + eP2p215 (839), + eP2p216 (840), + eWlan12 (1024), + eWlan13 (1025), + eWlan14 (1026), + eWlan15 (1027), + eWlan16 (1028), + eWlan17 (1029), + eWlan18 (1030), + eWlan22 (1031), + eWlan23 (1032), + eWlan24 (1033), + eWlan25 (1034), + eWlan26 (1035), + eWlan27 (1036), + eWlan28 (1037), + eBrg1 (1536), + eBrg2 (1537), + eBrg3 (1538), + eBrg4 (1539), + eBrg5 (1540), + eBrg6 (1541), + eBrg7 (1542), + eBrg8 (1543), + eWlcTunnel1 (1792), + eWlcTunnel2 (1793), + eWlcTunnel3 (1794), + eWlcTunnel4 (1795), + eWlcTunnel5 (1796), + eWlcTunnel6 (1797), + eWlcTunnel7 (1798), + eWlcTunnel8 (1799), + eWlcTunnel9 (1800), + eWlcTunnel10 (1801), + eWlcTunnel11 (1802), + eWlcTunnel12 (1803), + eWlcTunnel13 (1804), + eWlcTunnel14 (1805), + eWlcTunnel15 (1806), + eWlcTunnel16 (1807), + eWlcTunnel17 (1808), + eWlcTunnel18 (1809), + eWlcTunnel19 (1810), + eWlcTunnel20 (1811), + eWlcTunnel21 (1812), + eWlcTunnel22 (1813), + eWlcTunnel23 (1814), + eWlcTunnel24 (1815), + eWlcTunnel25 (1816), + eWlcTunnel26 (1817), + eWlcTunnel27 (1818), + eWlcTunnel28 (1819), + eWlcTunnel29 (1820), + eWlcTunnel30 (1821), + eWlcTunnel31 (1822), + eWlcTunnel32 (1823), + eWlcTunnelAutowds (1824), + eBundle1 (2048), + eBundle2 (2049), + eAny (65535) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeConnectionTableEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.9.1.12 +lcsStatusLanBridgeConnectionTableEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanBridgeConnectionTableEntry 12 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.31.10 +lcsStatusLanBridgeDhcpTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanBridgeDhcpTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridge 10 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.31.10.1 +lcsStatusLanBridgeDhcpTableEntry OBJECT-TYPE + SYNTAX LcsStatusLanBridgeDhcpTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanBridgeDhcpTableEntryMacAddress + } + ::= { lcsStatusLanBridgeDhcpTableTable 1 } + +LcsStatusLanBridgeDhcpTableEntry ::= SEQUENCE { + lcsStatusLanBridgeDhcpTableEntryMacAddress MacAddress, + lcsStatusLanBridgeDhcpTableEntryIpAddress IpAddress, + lcsStatusLanBridgeDhcpTableEntryLastUpdate Integer32, + lcsStatusLanBridgeDhcpTableEntryPort DisplayString, + lcsStatusLanBridgeDhcpTableEntrySrcPort DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.10.1.1 +lcsStatusLanBridgeDhcpTableEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeDhcpTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.10.1.4 +lcsStatusLanBridgeDhcpTableEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeDhcpTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.10.1.5 +lcsStatusLanBridgeDhcpTableEntryLastUpdate OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeDhcpTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.10.1.6 +lcsStatusLanBridgeDhcpTableEntryPort OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeDhcpTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.10.1.7 +lcsStatusLanBridgeDhcpTableEntrySrcPort OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeDhcpTableEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.31.11 +lcsStatusLanBridgePortDataTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanBridgePortDataEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridge 11 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.31.11.1 +lcsStatusLanBridgePortDataEntry OBJECT-TYPE + SYNTAX LcsStatusLanBridgePortDataEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanBridgePortDataEntryPort + } + ::= { lcsStatusLanBridgePortDataTable 1 } + +LcsStatusLanBridgePortDataEntry ::= SEQUENCE { + lcsStatusLanBridgePortDataEntryPort DisplayString, + lcsStatusLanBridgePortDataEntryPointToPointPort INTEGER, + lcsStatusLanBridgePortDataEntryOperatingState INTEGER, + lcsStatusLanBridgePortDataEntryBridgeGroup INTEGER, + lcsStatusLanBridgePortDataEntryInPackets Integer32, + lcsStatusLanBridgePortDataEntryOutPackets Integer32, + lcsStatusLanBridgePortDataEntryInDiscards Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.11.1.1 +lcsStatusLanBridgePortDataEntryPort OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgePortDataEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.11.1.2 +lcsStatusLanBridgePortDataEntryPointToPointPort OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgePortDataEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.11.1.3 +lcsStatusLanBridgePortDataEntryOperatingState OBJECT-TYPE + SYNTAX INTEGER { + eUp (1), + eDown (2), + eTesting (3), + eUnknown (4), + eDormant (5), + eNotPresent (6), + eLowerLayerDown (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgePortDataEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.11.1.5 +lcsStatusLanBridgePortDataEntryBridgeGroup OBJECT-TYPE + SYNTAX INTEGER { + eBrg1 (0), + eBrg2 (1), + eBrg3 (2), + eBrg4 (3), + eBrg5 (4), + eBrg6 (5), + eBrg7 (6), + eBrg8 (7), + eNone (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgePortDataEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.11.1.6 +lcsStatusLanBridgePortDataEntryInPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgePortDataEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.11.1.7 +lcsStatusLanBridgePortDataEntryOutPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgePortDataEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.11.1.8 +lcsStatusLanBridgePortDataEntryInDiscards OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgePortDataEntry 8 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.31.20 +lcsStatusLanBridgeSpanningTree OBJECT IDENTIFIER ::= { lcsStatusLanBridge 20 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.31.20.1 +lcsStatusLanBridgeSpanningTreeOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeSpanningTree 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.31.20.2 +lcsStatusLanBridgeSpanningTreeBridgeId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeSpanningTree 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.31.20.3 +lcsStatusLanBridgeSpanningTreeRootBridge OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeSpanningTree 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.31.20.5 +lcsStatusLanBridgeSpanningTreeRootPathCost OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeSpanningTree 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.31.20.6 +lcsStatusLanBridgeSpanningTreePortTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanBridgeSpanningTreePortTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeSpanningTree 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.31.20.6.1 +lcsStatusLanBridgeSpanningTreePortTableEntry OBJECT-TYPE + SYNTAX LcsStatusLanBridgeSpanningTreePortTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanBridgeSpanningTreePortTableEntryDescription + } + ::= { lcsStatusLanBridgeSpanningTreePortTableTable 1 } + +LcsStatusLanBridgeSpanningTreePortTableEntry ::= SEQUENCE { + lcsStatusLanBridgeSpanningTreePortTableEntryDescription DisplayString, + lcsStatusLanBridgeSpanningTreePortTableEntryPriority Integer32, + lcsStatusLanBridgeSpanningTreePortTableEntryState INTEGER, + lcsStatusLanBridgeSpanningTreePortTableEntryRoot DisplayString, + lcsStatusLanBridgeSpanningTreePortTableEntryBridge DisplayString, + lcsStatusLanBridgeSpanningTreePortTableEntryPathCost Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.20.6.1.1 +lcsStatusLanBridgeSpanningTreePortTableEntryDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..18)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeSpanningTreePortTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.20.6.1.2 +lcsStatusLanBridgeSpanningTreePortTableEntryPriority OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeSpanningTreePortTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.20.6.1.3 +lcsStatusLanBridgeSpanningTreePortTableEntryState OBJECT-TYPE + SYNTAX INTEGER { + eDisabled (0), + eListening (1), + eLearning (2), + eForwarding (3), + eBlocking (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeSpanningTreePortTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.20.6.1.4 +lcsStatusLanBridgeSpanningTreePortTableEntryRoot OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeSpanningTreePortTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.20.6.1.5 +lcsStatusLanBridgeSpanningTreePortTableEntryBridge OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeSpanningTreePortTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.20.6.1.6 +lcsStatusLanBridgeSpanningTreePortTableEntryPathCost OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeSpanningTreePortTableEntry 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.31.20.7 +lcsStatusLanBridgeSpanningTreeProtocolVersion OBJECT-TYPE + SYNTAX INTEGER { + eClassic (0), + eRapid (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeSpanningTree 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.31.20.8 +lcsStatusLanBridgeSpanningTreePathCostComputation OBJECT-TYPE + SYNTAX INTEGER { + eClassic (0), + eRapid (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeSpanningTree 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.31.20.9 +lcsStatusLanBridgeSpanningTreeBridgePriority OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeSpanningTree 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.31.20.10 +lcsStatusLanBridgeSpanningTreeRstpPortTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanBridgeSpanningTreeRstpPortTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeSpanningTree 10 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.31.20.10.1 +lcsStatusLanBridgeSpanningTreeRstpPortTableEntry OBJECT-TYPE + SYNTAX LcsStatusLanBridgeSpanningTreeRstpPortTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanBridgeSpanningTreeRstpPortTableEntryDescription + } + ::= { lcsStatusLanBridgeSpanningTreeRstpPortTableTable 1 } + +LcsStatusLanBridgeSpanningTreeRstpPortTableEntry ::= SEQUENCE { + lcsStatusLanBridgeSpanningTreeRstpPortTableEntryDescription DisplayString, + lcsStatusLanBridgeSpanningTreeRstpPortTableEntryRole INTEGER, + lcsStatusLanBridgeSpanningTreeRstpPortTableEntryLearning INTEGER, + lcsStatusLanBridgeSpanningTreeRstpPortTableEntryForwarding INTEGER, + lcsStatusLanBridgeSpanningTreeRstpPortTableEntryEdgePort INTEGER, + lcsStatusLanBridgeSpanningTreeRstpPortTableEntryProtocolVersion INTEGER, + lcsStatusLanBridgeSpanningTreeRstpPortTableEntryPathCost Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.20.10.1.1 +lcsStatusLanBridgeSpanningTreeRstpPortTableEntryDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeSpanningTreeRstpPortTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.20.10.1.2 +lcsStatusLanBridgeSpanningTreeRstpPortTableEntryRole OBJECT-TYPE + SYNTAX INTEGER { + eRoot (0), + eDesignated (1), + eAlternate (2), + eBackup (3), + eDisabled (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeSpanningTreeRstpPortTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.20.10.1.3 +lcsStatusLanBridgeSpanningTreeRstpPortTableEntryLearning OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeSpanningTreeRstpPortTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.20.10.1.4 +lcsStatusLanBridgeSpanningTreeRstpPortTableEntryForwarding OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeSpanningTreeRstpPortTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.20.10.1.5 +lcsStatusLanBridgeSpanningTreeRstpPortTableEntryEdgePort OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeSpanningTreeRstpPortTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.20.10.1.6 +lcsStatusLanBridgeSpanningTreeRstpPortTableEntryProtocolVersion OBJECT-TYPE + SYNTAX INTEGER { + eClassic (0), + eRapid (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeSpanningTreeRstpPortTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.20.10.1.7 +lcsStatusLanBridgeSpanningTreeRstpPortTableEntryPathCost OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeSpanningTreeRstpPortTableEntry 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.31.20.11 +lcsStatusLanBridgeSpanningTreeRootPort OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeSpanningTree 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.31.20.12 +lcsStatusLanBridgeSpanningTreeLogTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanBridgeSpanningTreeLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanBridgeSpanningTree 12 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.31.20.12.1 +lcsStatusLanBridgeSpanningTreeLogTableEntry OBJECT-TYPE + SYNTAX LcsStatusLanBridgeSpanningTreeLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanBridgeSpanningTreeLogTableEntryIndex + } + ::= { lcsStatusLanBridgeSpanningTreeLogTableTable 1 } + +LcsStatusLanBridgeSpanningTreeLogTableEntry ::= SEQUENCE { + lcsStatusLanBridgeSpanningTreeLogTableEntryIndex Integer32, + lcsStatusLanBridgeSpanningTreeLogTableEntryTime DisplayString, + lcsStatusLanBridgeSpanningTreeLogTableEntryEvent DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.20.12.1.1 +lcsStatusLanBridgeSpanningTreeLogTableEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanBridgeSpanningTreeLogTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.20.12.1.2 +lcsStatusLanBridgeSpanningTreeLogTableEntryTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanBridgeSpanningTreeLogTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.20.12.1.3 +lcsStatusLanBridgeSpanningTreeLogTableEntryEvent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..69)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanBridgeSpanningTreeLogTableEntry 3 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.31.30 +lcsStatusLanBridgeIgmpSnooping OBJECT IDENTIFIER ::= { lcsStatusLanBridge 30 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.31.30.1 +lcsStatusLanBridgeIgmpSnoopingOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eAuto (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeIgmpSnooping 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.31.30.2 +lcsStatusLanBridgeIgmpSnoopingPortStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanBridgeIgmpSnoopingPortStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeIgmpSnooping 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.31.30.2.1 +lcsStatusLanBridgeIgmpSnoopingPortStatusEntry OBJECT-TYPE + SYNTAX LcsStatusLanBridgeIgmpSnoopingPortStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanBridgeIgmpSnoopingPortStatusEntryPort + } + ::= { lcsStatusLanBridgeIgmpSnoopingPortStatusTable 1 } + +LcsStatusLanBridgeIgmpSnoopingPortStatusEntry ::= SEQUENCE { + lcsStatusLanBridgeIgmpSnoopingPortStatusEntryPort DisplayString, + lcsStatusLanBridgeIgmpSnoopingPortStatusEntryRouterPort INTEGER, + lcsStatusLanBridgeIgmpSnoopingPortStatusEntryIpv4Packets Counter32, + lcsStatusLanBridgeIgmpSnoopingPortStatusEntryDataPackets Counter32, + lcsStatusLanBridgeIgmpSnoopingPortStatusEntryControlPackets Counter32, + lcsStatusLanBridgeIgmpSnoopingPortStatusEntryBadPackets Counter32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.30.2.1.1 +lcsStatusLanBridgeIgmpSnoopingPortStatusEntryPort OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..18)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeIgmpSnoopingPortStatusEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.30.2.1.2 +lcsStatusLanBridgeIgmpSnoopingPortStatusEntryRouterPort OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eAuto (1), + eYes (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeIgmpSnoopingPortStatusEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.30.2.1.10 +lcsStatusLanBridgeIgmpSnoopingPortStatusEntryIpv4Packets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeIgmpSnoopingPortStatusEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.30.2.1.12 +lcsStatusLanBridgeIgmpSnoopingPortStatusEntryDataPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeIgmpSnoopingPortStatusEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.30.2.1.13 +lcsStatusLanBridgeIgmpSnoopingPortStatusEntryControlPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeIgmpSnoopingPortStatusEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.30.2.1.14 +lcsStatusLanBridgeIgmpSnoopingPortStatusEntryBadPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeIgmpSnoopingPortStatusEntry 14 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.31.30.3 +lcsStatusLanBridgeIgmpSnoopingGroupsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanBridgeIgmpSnoopingGroupsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeIgmpSnooping 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.31.30.3.1 +lcsStatusLanBridgeIgmpSnoopingGroupsEntry OBJECT-TYPE + SYNTAX LcsStatusLanBridgeIgmpSnoopingGroupsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanBridgeIgmpSnoopingGroupsEntryAddress, + lcsStatusLanBridgeIgmpSnoopingGroupsEntryVlanId + } + ::= { lcsStatusLanBridgeIgmpSnoopingGroupsTable 1 } + +LcsStatusLanBridgeIgmpSnoopingGroupsEntry ::= SEQUENCE { + lcsStatusLanBridgeIgmpSnoopingGroupsEntryAddress IpAddress, + lcsStatusLanBridgeIgmpSnoopingGroupsEntryDynamicMembers DisplayString, + lcsStatusLanBridgeIgmpSnoopingGroupsEntryStaticMembers DisplayString, + lcsStatusLanBridgeIgmpSnoopingGroupsEntryVlanId Integer32, + lcsStatusLanBridgeIgmpSnoopingGroupsEntryAllowLearning INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.30.3.1.1 +lcsStatusLanBridgeIgmpSnoopingGroupsEntryAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeIgmpSnoopingGroupsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.30.3.1.2 +lcsStatusLanBridgeIgmpSnoopingGroupsEntryDynamicMembers OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeIgmpSnoopingGroupsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.30.3.1.3 +lcsStatusLanBridgeIgmpSnoopingGroupsEntryStaticMembers OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeIgmpSnoopingGroupsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.30.3.1.4 +lcsStatusLanBridgeIgmpSnoopingGroupsEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeIgmpSnoopingGroupsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.30.3.1.5 +lcsStatusLanBridgeIgmpSnoopingGroupsEntryAllowLearning OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeIgmpSnoopingGroupsEntry 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.31.30.4 +lcsStatusLanBridgeIgmpSnoopingSimulatedQueriersTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLanBridgeIgmpSnoopingSimulatedQueriersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeIgmpSnooping 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.31.30.4.1 +lcsStatusLanBridgeIgmpSnoopingSimulatedQueriersEntry OBJECT-TYPE + SYNTAX LcsStatusLanBridgeIgmpSnoopingSimulatedQueriersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLanBridgeIgmpSnoopingSimulatedQueriersEntryName + } + ::= { lcsStatusLanBridgeIgmpSnoopingSimulatedQueriersTable 1 } + +LcsStatusLanBridgeIgmpSnoopingSimulatedQueriersEntry ::= SEQUENCE { + lcsStatusLanBridgeIgmpSnoopingSimulatedQueriersEntryName DisplayString, + lcsStatusLanBridgeIgmpSnoopingSimulatedQueriersEntryBridgeGroup INTEGER, + lcsStatusLanBridgeIgmpSnoopingSimulatedQueriersEntryVlanId Integer32, + lcsStatusLanBridgeIgmpSnoopingSimulatedQueriersEntryStatus INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.30.4.1.1 +lcsStatusLanBridgeIgmpSnoopingSimulatedQueriersEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeIgmpSnoopingSimulatedQueriersEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.30.4.1.3 +lcsStatusLanBridgeIgmpSnoopingSimulatedQueriersEntryBridgeGroup OBJECT-TYPE + SYNTAX INTEGER { + eBrg1 (0), + eBrg2 (1), + eBrg3 (2), + eBrg4 (3), + eBrg5 (4), + eBrg6 (5), + eBrg7 (6), + eBrg8 (7), + eNone (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeIgmpSnoopingSimulatedQueriersEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.30.4.1.4 +lcsStatusLanBridgeIgmpSnoopingSimulatedQueriersEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeIgmpSnoopingSimulatedQueriersEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.31.30.4.1.5 +lcsStatusLanBridgeIgmpSnoopingSimulatedQueriersEntryStatus OBJECT-TYPE + SYNTAX INTEGER { + eInitial (0), + eQuerier (1), + eNonQuerier (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeIgmpSnoopingSimulatedQueriersEntry 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.31.30.5 +lcsStatusLanBridgeIgmpSnoopingFilterActive OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLanBridgeIgmpSnooping 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.31.30.10 +lcsStatusLanBridgeIgmpSnoopingIpv4Packets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeIgmpSnooping 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.31.30.12 +lcsStatusLanBridgeIgmpSnoopingDataPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeIgmpSnooping 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.31.30.13 +lcsStatusLanBridgeIgmpSnoopingControlPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeIgmpSnooping 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.31.30.14 +lcsStatusLanBridgeIgmpSnoopingBadPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeIgmpSnooping 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.31.30.99 +lcsStatusLanBridgeIgmpSnoopingDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridgeIgmpSnooping 99 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.31.99 +lcsStatusLanBridgeDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusLanBridge 99 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.32 +lcsStatusDhcpClient OBJECT IDENTIFIER ::= { lcsStatus 32 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.32.20 +lcsStatusDhcpClientWanIpListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusDhcpClientWanIpListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDhcpClient 20 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.32.20.1 +lcsStatusDhcpClientWanIpListEntry OBJECT-TYPE + SYNTAX LcsStatusDhcpClientWanIpListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusDhcpClientWanIpListEntryIfc + } + ::= { lcsStatusDhcpClientWanIpListTable 1 } + +LcsStatusDhcpClientWanIpListEntry ::= SEQUENCE { + lcsStatusDhcpClientWanIpListEntryIfc INTEGER, + lcsStatusDhcpClientWanIpListEntryIpAddress IpAddress, + lcsStatusDhcpClientWanIpListEntryIpNetmask IpAddress, + lcsStatusDhcpClientWanIpListEntryGateway IpAddress, + lcsStatusDhcpClientWanIpListEntryDnsDefault IpAddress, + lcsStatusDhcpClientWanIpListEntryDnsBackup IpAddress, + lcsStatusDhcpClientWanIpListEntryNbnsDefault IpAddress, + lcsStatusDhcpClientWanIpListEntryNbnsBackup IpAddress, + lcsStatusDhcpClientWanIpListEntryDhcpServer IpAddress, + lcsStatusDhcpClientWanIpListEntryDomain DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.32.20.1.1 +lcsStatusDhcpClientWanIpListEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eCh01 (257), + eCh02 (258), + eModem (513), + eDslCh1 (2049), + eDslCh2 (2050), + eDslCh3 (2051), + eDslCh4 (2052), + eDslCh5 (2053), + eDslCh6 (2054), + eDslCh7 (2055), + eDslCh8 (2056), + eAdsl1 (8193), + eAdsl2 (8194), + eAdsl3 (8195), + eAdsl4 (8196), + eAdsl5 (8197), + eAdsl6 (8198), + eAdsl7 (8199), + eAdsl8 (8200), + eVdsl1 (16385), + eVdsl2 (16386), + eVdsl3 (16387), + eVdsl4 (16388), + eVdsl5 (16389), + eVdsl6 (16390), + eVdsl7 (16391), + eVdsl8 (16392) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDhcpClientWanIpListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.32.20.1.2 +lcsStatusDhcpClientWanIpListEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDhcpClientWanIpListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.32.20.1.3 +lcsStatusDhcpClientWanIpListEntryIpNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDhcpClientWanIpListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.32.20.1.4 +lcsStatusDhcpClientWanIpListEntryGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDhcpClientWanIpListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.32.20.1.5 +lcsStatusDhcpClientWanIpListEntryDnsDefault OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDhcpClientWanIpListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.32.20.1.6 +lcsStatusDhcpClientWanIpListEntryDnsBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDhcpClientWanIpListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.32.20.1.7 +lcsStatusDhcpClientWanIpListEntryNbnsDefault OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDhcpClientWanIpListEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.32.20.1.8 +lcsStatusDhcpClientWanIpListEntryNbnsBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDhcpClientWanIpListEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.32.20.1.9 +lcsStatusDhcpClientWanIpListEntryDhcpServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDhcpClientWanIpListEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.32.20.1.10 +lcsStatusDhcpClientWanIpListEntryDomain OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDhcpClientWanIpListEntry 10 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.32.21 +lcsStatusDhcpClientLanIpListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusDhcpClientLanIpListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDhcpClient 21 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.32.21.1 +lcsStatusDhcpClientLanIpListEntry OBJECT-TYPE + SYNTAX LcsStatusDhcpClientLanIpListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusDhcpClientLanIpListEntryIfc + } + ::= { lcsStatusDhcpClientLanIpListTable 1 } + +LcsStatusDhcpClientLanIpListEntry ::= SEQUENCE { + lcsStatusDhcpClientLanIpListEntryIfc DisplayString, + lcsStatusDhcpClientLanIpListEntryIpAddress IpAddress, + lcsStatusDhcpClientLanIpListEntryIpNetmask IpAddress, + lcsStatusDhcpClientLanIpListEntryGateway IpAddress, + lcsStatusDhcpClientLanIpListEntryDnsDefault IpAddress, + lcsStatusDhcpClientLanIpListEntryDnsBackup IpAddress, + lcsStatusDhcpClientLanIpListEntryNbnsDefault IpAddress, + lcsStatusDhcpClientLanIpListEntryNbnsBackup IpAddress, + lcsStatusDhcpClientLanIpListEntryDhcpServer IpAddress, + lcsStatusDhcpClientLanIpListEntryDomain DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.32.21.1.1 +lcsStatusDhcpClientLanIpListEntryIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDhcpClientLanIpListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.32.21.1.2 +lcsStatusDhcpClientLanIpListEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDhcpClientLanIpListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.32.21.1.3 +lcsStatusDhcpClientLanIpListEntryIpNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDhcpClientLanIpListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.32.21.1.4 +lcsStatusDhcpClientLanIpListEntryGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDhcpClientLanIpListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.32.21.1.5 +lcsStatusDhcpClientLanIpListEntryDnsDefault OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDhcpClientLanIpListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.32.21.1.6 +lcsStatusDhcpClientLanIpListEntryDnsBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDhcpClientLanIpListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.32.21.1.7 +lcsStatusDhcpClientLanIpListEntryNbnsDefault OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDhcpClientLanIpListEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.32.21.1.8 +lcsStatusDhcpClientLanIpListEntryNbnsBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDhcpClientLanIpListEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.32.21.1.9 +lcsStatusDhcpClientLanIpListEntryDhcpServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDhcpClientLanIpListEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.32.21.1.10 +lcsStatusDhcpClientLanIpListEntryDomain OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDhcpClientLanIpListEntry 10 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.33 +lcsStatusIsdn OBJECT IDENTIFIER ::= { lcsStatus 33 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.33.1 +lcsStatusIsdnLine OBJECT IDENTIFIER ::= { lcsStatusIsdn 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.33.1.1 +lcsStatusIsdnLineS0Table OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIsdnLineS0Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnLine 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.33.1.1.1 +lcsStatusIsdnLineS0Entry OBJECT-TYPE + SYNTAX LcsStatusIsdnLineS0Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIsdnLineS0EntryIfc + } + ::= { lcsStatusIsdnLineS0Table 1 } + +LcsStatusIsdnLineS0Entry ::= SEQUENCE { + lcsStatusIsdnLineS0EntryIfc INTEGER, + lcsStatusIsdnLineS0EntryOperating INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.1.1.1.1 +lcsStatusIsdnLineS0EntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eS01 (257), + eModem (513), + eDsl1 (2049), + eDsl2 (2050), + eDsl3 (2051), + eDsl4 (2052), + eAdsl (8193), + eVdsl (16385) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnLineS0Entry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.1.1.1.2 +lcsStatusIsdnLineS0EntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnLineS0Entry 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.33.2 +lcsStatusIsdnFraming OBJECT IDENTIFIER ::= { lcsStatusIsdn 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.33.2.1 +lcsStatusIsdnFramingS0Table OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIsdnFramingS0Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnFraming 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.33.2.1.1 +lcsStatusIsdnFramingS0Entry OBJECT-TYPE + SYNTAX LcsStatusIsdnFramingS0Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIsdnFramingS0EntryIfc + } + ::= { lcsStatusIsdnFramingS0Table 1 } + +LcsStatusIsdnFramingS0Entry ::= SEQUENCE { + lcsStatusIsdnFramingS0EntryIfc INTEGER, + lcsStatusIsdnFramingS0EntryState DisplayString, + lcsStatusIsdnFramingS0EntryB1Frame BITS, + lcsStatusIsdnFramingS0EntryB2Frame BITS + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.2.1.1.1 +lcsStatusIsdnFramingS0EntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eS01 (257), + eModem (513), + eDsl1 (2049), + eDsl2 (2050), + eDsl3 (2051), + eDsl4 (2052), + eAdsl (8193), + eVdsl (16385) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnFramingS0Entry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.2.1.1.2 +lcsStatusIsdnFramingS0EntryState OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnFramingS0Entry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.2.1.1.3 +lcsStatusIsdnFramingS0EntryB1Frame OBJECT-TYPE + SYNTAX BITS { + eNone (0), + eTxData (5), + eRxData (6), + eLoop (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnFramingS0Entry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.2.1.1.4 +lcsStatusIsdnFramingS0EntryB2Frame OBJECT-TYPE + SYNTAX BITS { + eNone (0), + eTxData (5), + eRxData (6), + eLoop (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnFramingS0Entry 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.33.2.2 +lcsStatusIsdnFramingPcmSyncSource OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnFraming 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.33.3 +lcsStatusIsdnSignaling OBJECT IDENTIFIER ::= { lcsStatusIsdn 3 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.33.3.1 +lcsStatusIsdnSignalingLayer2 OBJECT IDENTIFIER ::= { lcsStatusIsdnSignaling 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.33.3.1.1 +lcsStatusIsdnSignalingLayer2LapdTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIsdnSignalingLayer2LapdEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingLayer2 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.33.3.1.1.1 +lcsStatusIsdnSignalingLayer2LapdEntry OBJECT-TYPE + SYNTAX LcsStatusIsdnSignalingLayer2LapdEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIsdnSignalingLayer2LapdEntryChannel + } + ::= { lcsStatusIsdnSignalingLayer2LapdTable 1 } + +LcsStatusIsdnSignalingLayer2LapdEntry ::= SEQUENCE { + lcsStatusIsdnSignalingLayer2LapdEntryChannel INTEGER, + lcsStatusIsdnSignalingLayer2LapdEntryTei INTEGER, + lcsStatusIsdnSignalingLayer2LapdEntryL2Activation INTEGER, + lcsStatusIsdnSignalingLayer2LapdEntryConnections Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.1.1.1.1 +lcsStatusIsdnSignalingLayer2LapdEntryChannel OBJECT-TYPE + SYNTAX INTEGER { + e11 (1), + e12 (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingLayer2LapdEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.1.1.1.2 +lcsStatusIsdnSignalingLayer2LapdEntryTei OBJECT-TYPE + SYNTAX INTEGER { + eNone (128) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingLayer2LapdEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.1.1.1.3 +lcsStatusIsdnSignalingLayer2LapdEntryL2Activation OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingLayer2LapdEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.1.1.1.4 +lcsStatusIsdnSignalingLayer2LapdEntryConnections OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingLayer2LapdEntry 4 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.33.3.3 +lcsStatusIsdnSignalingManagement OBJECT IDENTIFIER ::= { lcsStatusIsdnSignaling 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.33.3.3.1 +lcsStatusIsdnSignalingManagementDInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIsdnSignalingManagementDInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingManagement 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.33.3.3.1.1 +lcsStatusIsdnSignalingManagementDInfoEntry OBJECT-TYPE + SYNTAX LcsStatusIsdnSignalingManagementDInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIsdnSignalingManagementDInfoEntryChannel + } + ::= { lcsStatusIsdnSignalingManagementDInfoTable 1 } + +LcsStatusIsdnSignalingManagementDInfoEntry ::= SEQUENCE { + lcsStatusIsdnSignalingManagementDInfoEntryChannel INTEGER, + lcsStatusIsdnSignalingManagementDInfoEntryProtocol INTEGER, + lcsStatusIsdnSignalingManagementDInfoEntryLayer2 INTEGER, + lcsStatusIsdnSignalingManagementDInfoEntryTei INTEGER, + lcsStatusIsdnSignalingManagementDInfoEntryS0Activation INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.3.1.1.1 +lcsStatusIsdnSignalingManagementDInfoEntryChannel OBJECT-TYPE + SYNTAX INTEGER { + eS01 (257), + eModem (513), + eDsl1 (2049), + eDsl2 (2050), + eDsl3 (2051), + eDsl4 (2052), + eAdsl (8193), + eVdsl (16385) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingManagementDInfoEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.3.1.1.2 +lcsStatusIsdnSignalingManagementDInfoEntryProtocol OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eDss1 (1), + e1tr6 (2), + eP2pDss1 (4), + eAuto (255), + eNtP2pDss1 (16384), + eNtDss1 (32768), + eRevNtP2pDss1 (65536), + eRevNtDss1 (131072) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingManagementDInfoEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.3.1.1.3 +lcsStatusIsdnSignalingManagementDInfoEntryLayer2 OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingManagementDInfoEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.3.1.1.4 +lcsStatusIsdnSignalingManagementDInfoEntryTei OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingManagementDInfoEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.3.1.1.5 +lcsStatusIsdnSignalingManagementDInfoEntryS0Activation OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingManagementDInfoEntry 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.33.3.3.2 +lcsStatusIsdnSignalingManagementErrorStatisticTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIsdnSignalingManagementErrorStatisticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingManagement 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.33.3.3.2.1 +lcsStatusIsdnSignalingManagementErrorStatisticEntry OBJECT-TYPE + SYNTAX LcsStatusIsdnSignalingManagementErrorStatisticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIsdnSignalingManagementErrorStatisticEntryIfc + } + ::= { lcsStatusIsdnSignalingManagementErrorStatisticTable 1 } + +LcsStatusIsdnSignalingManagementErrorStatisticEntry ::= SEQUENCE { + lcsStatusIsdnSignalingManagementErrorStatisticEntryIfc INTEGER, + lcsStatusIsdnSignalingManagementErrorStatisticEntryA Integer32, + lcsStatusIsdnSignalingManagementErrorStatisticEntryB Integer32, + lcsStatusIsdnSignalingManagementErrorStatisticEntryC Integer32, + lcsStatusIsdnSignalingManagementErrorStatisticEntryD Integer32, + lcsStatusIsdnSignalingManagementErrorStatisticEntryE Integer32, + lcsStatusIsdnSignalingManagementErrorStatisticEntryF Integer32, + lcsStatusIsdnSignalingManagementErrorStatisticEntryG Integer32, + lcsStatusIsdnSignalingManagementErrorStatisticEntryH Integer32, + lcsStatusIsdnSignalingManagementErrorStatisticEntryI Integer32, + lcsStatusIsdnSignalingManagementErrorStatisticEntryJ Integer32, + lcsStatusIsdnSignalingManagementErrorStatisticEntryK Integer32, + lcsStatusIsdnSignalingManagementErrorStatisticEntryL Integer32, + lcsStatusIsdnSignalingManagementErrorStatisticEntryM Integer32, + lcsStatusIsdnSignalingManagementErrorStatisticEntryN Integer32, + lcsStatusIsdnSignalingManagementErrorStatisticEntryO Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.3.2.1.1 +lcsStatusIsdnSignalingManagementErrorStatisticEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eS01 (257), + eModem (513), + eDsl1 (2049), + eDsl2 (2050), + eDsl3 (2051), + eDsl4 (2052), + eAdsl (8193), + eVdsl (16385) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingManagementErrorStatisticEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.3.2.1.2 +lcsStatusIsdnSignalingManagementErrorStatisticEntryA OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingManagementErrorStatisticEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.3.2.1.3 +lcsStatusIsdnSignalingManagementErrorStatisticEntryB OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingManagementErrorStatisticEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.3.2.1.4 +lcsStatusIsdnSignalingManagementErrorStatisticEntryC OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingManagementErrorStatisticEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.3.2.1.5 +lcsStatusIsdnSignalingManagementErrorStatisticEntryD OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingManagementErrorStatisticEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.3.2.1.6 +lcsStatusIsdnSignalingManagementErrorStatisticEntryE OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingManagementErrorStatisticEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.3.2.1.7 +lcsStatusIsdnSignalingManagementErrorStatisticEntryF OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingManagementErrorStatisticEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.3.2.1.8 +lcsStatusIsdnSignalingManagementErrorStatisticEntryG OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingManagementErrorStatisticEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.3.2.1.9 +lcsStatusIsdnSignalingManagementErrorStatisticEntryH OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingManagementErrorStatisticEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.3.2.1.10 +lcsStatusIsdnSignalingManagementErrorStatisticEntryI OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingManagementErrorStatisticEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.3.2.1.11 +lcsStatusIsdnSignalingManagementErrorStatisticEntryJ OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingManagementErrorStatisticEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.3.2.1.12 +lcsStatusIsdnSignalingManagementErrorStatisticEntryK OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingManagementErrorStatisticEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.3.2.1.13 +lcsStatusIsdnSignalingManagementErrorStatisticEntryL OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingManagementErrorStatisticEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.3.2.1.14 +lcsStatusIsdnSignalingManagementErrorStatisticEntryM OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingManagementErrorStatisticEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.3.2.1.15 +lcsStatusIsdnSignalingManagementErrorStatisticEntryN OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingManagementErrorStatisticEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.3.3.2.1.16 +lcsStatusIsdnSignalingManagementErrorStatisticEntryO OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnSignalingManagementErrorStatisticEntry 16 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.33.20 +lcsStatusIsdnPcmSwitch OBJECT IDENTIFIER ::= { lcsStatusIsdn 20 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.33.20.1 +lcsStatusIsdnPcmSwitchPcmConnectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIsdnPcmSwitchPcmConnectionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnPcmSwitch 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.33.20.1.1 +lcsStatusIsdnPcmSwitchPcmConnectionEntry OBJECT-TYPE + SYNTAX LcsStatusIsdnPcmSwitchPcmConnectionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIsdnPcmSwitchPcmConnectionEntryDevice, + lcsStatusIsdnPcmSwitchPcmConnectionEntryType, + lcsStatusIsdnPcmSwitchPcmConnectionEntryNumber + } + ::= { lcsStatusIsdnPcmSwitchPcmConnectionTable 1 } + +LcsStatusIsdnPcmSwitchPcmConnectionEntry ::= SEQUENCE { + lcsStatusIsdnPcmSwitchPcmConnectionEntryDevice Integer32, + lcsStatusIsdnPcmSwitchPcmConnectionEntryType INTEGER, + lcsStatusIsdnPcmSwitchPcmConnectionEntryNumber Integer32, + lcsStatusIsdnPcmSwitchPcmConnectionEntryFifo DisplayString, + lcsStatusIsdnPcmSwitchPcmConnectionEntryFlow DisplayString, + lcsStatusIsdnPcmSwitchPcmConnectionEntryChannel DisplayString, + lcsStatusIsdnPcmSwitchPcmConnectionEntryTimeslot DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.20.1.1.1 +lcsStatusIsdnPcmSwitchPcmConnectionEntryDevice OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnPcmSwitchPcmConnectionEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.20.1.1.2 +lcsStatusIsdnPcmSwitchPcmConnectionEntryType OBJECT-TYPE + SYNTAX INTEGER { + eFifo (0), + ePcmTs (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnPcmSwitchPcmConnectionEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.20.1.1.3 +lcsStatusIsdnPcmSwitchPcmConnectionEntryNumber OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnPcmSwitchPcmConnectionEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.20.1.1.4 +lcsStatusIsdnPcmSwitchPcmConnectionEntryFifo OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..7)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnPcmSwitchPcmConnectionEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.20.1.1.5 +lcsStatusIsdnPcmSwitchPcmConnectionEntryFlow OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..29)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnPcmSwitchPcmConnectionEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.20.1.1.6 +lcsStatusIsdnPcmSwitchPcmConnectionEntryChannel OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..4)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnPcmSwitchPcmConnectionEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.33.20.1.1.7 +lcsStatusIsdnPcmSwitchPcmConnectionEntryTimeslot OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdnPcmSwitchPcmConnectionEntry 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.33.99 +lcsStatusIsdnDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIsdn 99 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.35 +lcsStatusSnmp OBJECT IDENTIFIER ::= { lcsStatus 35 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.35.1 +lcsStatusSnmpEventTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusSnmpEventEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusSnmp 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.35.1.1 +lcsStatusSnmpEventEntry OBJECT-TYPE + SYNTAX LcsStatusSnmpEventEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusSnmpEventEntryTrapName, + lcsStatusSnmpEventEntryVendorName + } + ::= { lcsStatusSnmpEventTable 1 } + +LcsStatusSnmpEventEntry ::= SEQUENCE { + lcsStatusSnmpEventEntryTrapName INTEGER, + lcsStatusSnmpEventEntryVendorName INTEGER, + lcsStatusSnmpEventEntryCount Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.35.1.1.1 +lcsStatusSnmpEventEntryTrapName OBJECT-TYPE + SYNTAX INTEGER { + eWarmstart (1), + eLinkdown (2), + eLinkup (3), + eAuthfail (4), + eEpgnloss (5), + eEnterprise (6), + eColdstart (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusSnmpEventEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.35.1.1.2 +lcsStatusSnmpEventEntryVendorName OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eStatChan (1), + eFwUplStart (4), + eUplsucc (5), + eUplfailto (6), + eUplfailincl (7), + eUplfailbaddev (8), + eLogin (9), + eLogout (10), + eCnfuplstart (11), + eCnfdnlstart (12), + eCnfdnlsucc (13), + eBssscan (14), + eBssstart (15), + eBssjoin (16), + eAuthstation (17), + eDeauthstation (18), + eAssstation (19), + eReassstation (20), + eDisassstation (21), + eAssrej (22), + eCardhung (25), + eIpfwflt (26), + eVpnconn (27), + ePptpconn (28), + eErrlogin (29), + eKeyhandshakeTimeout (33), + eSupervision (35), + eLdblconn (38), + ePppoesconn (39), + eVrrp (41), + eExceirp (42), + eIdleTimeout (46), + eAdminDeassoc (47), + eWlanovertemp (48), + eWlanovertempend (49), + eWlanundertemp (50), + eWlanundertempend (51), + eMacchkfail (52), + eRoamed (53), + eConnected (54), + eClLostconn (55), + eClAuthfail (56), + eClAssocfail (57), + eClConnected (58), + eCl8021xFail (59), + eCastatchg (61), + eNewpendreq (62), + eMissingAp (63), + eActiveAp (64), + eNewAp (65), + eStations (66), + eNetworks (67), + eNetworkcounts (68), + eApCounter (69), + eUtmcontentfilter (72), + eCerttabmod (73), + ePendlistmod (74), + eNextdoorAp (75), + eWlcTunnels (76), + eLicensemgtexpire (77), + eVdslstate (78), + eScrptuplstart (79), + eScrptdnlstart (80), + eIpv6fwflt (81), + eWwanStates (82), + eDS-Lite (83), + eVolumebudget (84), + eL2TP-Endpoints (85), + eL2TP-Connections (86), + eSpgtreePortstatchg (1000), + eSpgtreeRstpstatchg (1001), + eSpgtreeRootportchg (1002), + eHttpTunnelOpen (2000), + eHttpTunnelClose (2001), + eLanauthuseradd (3000), + eLanauthuserdel (3001), + eLanauthsessionstart (3002), + eLanauthsessionend (3003), + eTempmonovertemp (4000), + eTempmonnoovertemp (4001), + eTempmonundertemp (4002), + eTempmonnoundertemp (4003), + eVoltmonovervolt (4500), + eVoltmonnoovervolt (4501), + eVoltmonundervolt (4502), + eVoltmonnoundervolt (4503), + eLanDownshift (5001), + eLanOvertempThrottle (5002), + eLanOvertempThrottleEnd (5003), + eLanOvertempThrottleRecommend (5004), + eEthPortDownshift (5101), + eWlanConfadaptRadiochannel (6100), + eWlanConfadaptRadiomode (6101), + eWlanConfadaptBasicRate (6102), + eWlanConfadaptEapolRate (6103), + eWlanConfadaptEncryption (6104), + eWlanAlarmP2pSignal (6200), + eWlanAlarmP2pTxtotretries (6201), + eWlanAlarmP2pTxerrors (6202), + eWlanAlarmNetwSignal (6203), + eWlanAlarmNetwTxtotretries (6204), + eWlanAlarmNetwTxerrors (6205), + eWlanAlarmClientSignal (6206), + eWlanAlarmClientTxtotretries (6207), + eWlanAlarmClientTxerrors (6208), + eWlanDfsAllblocked (6300), + eUplinvversion (7000), + eUplfileexists (7001), + eSmsinboxmsgchanged (8000), + eSmsoutboxmsgchanged (8001), + eSmsoutboxcleared (8002), + eSmsinboxcleared (8003), + eSimstatuschanged (8100) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusSnmpEventEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.35.1.1.3 +lcsStatusSnmpEventEntryCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusSnmpEventEntry 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.35.2 +lcsStatusSnmpRejectedRequests OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusSnmp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.35.3 +lcsStatusSnmpQueueBlockErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusSnmp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.35.4 +lcsStatusSnmpDroppedPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusSnmp 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.35.6 +lcsStatusSnmpLogTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusSnmpLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusSnmp 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.35.6.1 +lcsStatusSnmpLogTableEntry OBJECT-TYPE + SYNTAX LcsStatusSnmpLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusSnmpLogTableEntryIndex + } + ::= { lcsStatusSnmpLogTableTable 1 } + +LcsStatusSnmpLogTableEntry ::= SEQUENCE { + lcsStatusSnmpLogTableEntryIndex Integer32, + lcsStatusSnmpLogTableEntryTime DisplayString, + lcsStatusSnmpLogTableEntryEvent DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.35.6.1.1 +lcsStatusSnmpLogTableEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusSnmpLogTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.35.6.1.2 +lcsStatusSnmpLogTableEntryTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..21)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusSnmpLogTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.35.6.1.3 +lcsStatusSnmpLogTableEntryEvent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..252)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusSnmpLogTableEntry 3 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.41 +lcsStatusAdsl OBJECT IDENTIFIER ::= { lcsStatus 41 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.1 +lcsStatusAdslLineState OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eDown (1), + eIdle (2), + eHandshake (3), + eTraining (4), + eShowtime (5), + eShutdown (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdsl 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.2 +lcsStatusAdslLineType OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdsl 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.3 +lcsStatusAdslStandard OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eT1dot413 (2), + eGdotLite (3), + eGdotDMT (4), + eAdsl2 (21), + eAdsl2plus (22), + eAdsl2AnnexM (31), + eAdsl2plusAnnexM (32), + eAdsl2AnnexI (33), + eAdsl2plusAnnexI (34), + eAdsl2AnnexJ (35), + eAdsl2plusAnnexJ (36), + eAdsl2AnnexL (37), + eVdsl2 (40), + eUnknown (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdsl 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.4 +lcsStatusAdslDataRateUpstreamKbps OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdsl 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.5 +lcsStatusAdslDataRateDownstreamKbps OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdsl 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.6 +lcsStatusAdslSnrDownstreamDb OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdsl 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.7 +lcsStatusAdslSnrUpstreamDb OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdsl 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.8 +lcsStatusAdslAttenuationDownstreamDb OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdsl 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.9 +lcsStatusAdslAttenuationUpstreamDb OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdsl 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.10 +lcsStatusAdslInterleaveUpstreamMs OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..7)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdsl 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.11 +lcsStatusAdslInterleaveDownstreamMs OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..7)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdsl 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.41.12 +lcsStatusAdslConnectionHistoryTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusAdslConnectionHistoryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdsl 12 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.41.12.1 +lcsStatusAdslConnectionHistoryEntry OBJECT-TYPE + SYNTAX LcsStatusAdslConnectionHistoryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusAdslConnectionHistoryEntryIndex + } + ::= { lcsStatusAdslConnectionHistoryTable 1 } + +LcsStatusAdslConnectionHistoryEntry ::= SEQUENCE { + lcsStatusAdslConnectionHistoryEntrySyncTime Gauge32, + lcsStatusAdslConnectionHistoryEntryStandard INTEGER, + lcsStatusAdslConnectionHistoryEntryDsDatarate Integer32, + lcsStatusAdslConnectionHistoryEntryUsDatarate Integer32, + lcsStatusAdslConnectionHistoryEntryDsAttenuation DisplayString, + lcsStatusAdslConnectionHistoryEntryDsSnr DisplayString, + lcsStatusAdslConnectionHistoryEntryDisconnectTime Gauge32, + lcsStatusAdslConnectionHistoryEntryIndex Integer32, + lcsStatusAdslConnectionHistoryEntryReason INTEGER, + lcsStatusAdslConnectionHistoryEntryUsAttenuation DisplayString, + lcsStatusAdslConnectionHistoryEntryUsSnr DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.12.1.1 +lcsStatusAdslConnectionHistoryEntrySyncTime OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslConnectionHistoryEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.12.1.2 +lcsStatusAdslConnectionHistoryEntryStandard OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eT1dot413 (2), + eGdotLite (3), + eGdotDMT (4), + eAdsl2 (21), + eAdsl2plus (22), + eAdsl2AnnexM (31), + eAdsl2plusAnnexM (32), + eAdsl2AnnexI (33), + eAdsl2plusAnnexI (34), + eAdsl2AnnexJ (35), + eAdsl2plusAnnexJ (36), + eAdsl2AnnexL (37), + eVdsl2 (40), + eUnknown (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslConnectionHistoryEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.12.1.3 +lcsStatusAdslConnectionHistoryEntryDsDatarate OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslConnectionHistoryEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.12.1.4 +lcsStatusAdslConnectionHistoryEntryUsDatarate OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslConnectionHistoryEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.12.1.5 +lcsStatusAdslConnectionHistoryEntryDsAttenuation OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..1)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslConnectionHistoryEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.12.1.6 +lcsStatusAdslConnectionHistoryEntryDsSnr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..1)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslConnectionHistoryEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.12.1.7 +lcsStatusAdslConnectionHistoryEntryDisconnectTime OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslConnectionHistoryEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.12.1.8 +lcsStatusAdslConnectionHistoryEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslConnectionHistoryEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.12.1.9 +lcsStatusAdslConnectionHistoryEntryReason OBJECT-TYPE + SYNTAX INTEGER { + eModemReboot (1), + eRetrain (2), + eSilence (3), + eLineError (4), + eProtocol (5), + eLineType (6), + eAutomode (7), + eTimeout (8), + eVcParameters (13) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslConnectionHistoryEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.12.1.10 +lcsStatusAdslConnectionHistoryEntryUsAttenuation OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..1)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslConnectionHistoryEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.12.1.11 +lcsStatusAdslConnectionHistoryEntryUsSnr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..1)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslConnectionHistoryEntry 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.13 +lcsStatusAdslRetrain OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdsl 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.14 +lcsStatusAdslDslamChipsetManufacturer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdsl 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.23 +lcsStatusAdslModemType OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdsl 23 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.41.25 +lcsStatusAdslAdvanced OBJECT IDENTIFIER ::= { lcsStatusAdsl 25 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.1 +lcsStatusAdslAdvancedLineState OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eDown (1), + eIdle (2), + eHandshake (3), + eTraining (4), + eShowtime (5), + eShutdown (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.2 +lcsStatusAdslAdvancedStandard OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eT1dot413 (2), + eGdotLite (3), + eGdotDMT (4), + eAdsl2 (21), + eAdsl2plus (22), + eAdsl2AnnexM (31), + eAdsl2plusAnnexM (32), + eAdsl2AnnexI (33), + eAdsl2plusAnnexI (34), + eAdsl2AnnexJ (35), + eAdsl2plusAnnexJ (36), + eAdsl2AnnexL (37), + eVdsl2 (40), + eUnknown (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.3 +lcsStatusAdslAdvancedDsDataRateKbps OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.4 +lcsStatusAdslAdvancedDsSnrMarginDb OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.5 +lcsStatusAdslAdvancedDsLineAttenuationDb OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.6 +lcsStatusAdslAdvancedDsInterleaveMs OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..7)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.41.25.13 +lcsStatusAdslAdvancedDsBitLoadingTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusAdslAdvancedDsBitLoadingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 13 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.41.25.13.1 +lcsStatusAdslAdvancedDsBitLoadingEntry OBJECT-TYPE + SYNTAX LcsStatusAdslAdvancedDsBitLoadingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusAdslAdvancedDsBitLoadingEntryBinNumber + } + ::= { lcsStatusAdslAdvancedDsBitLoadingTable 1 } + +LcsStatusAdslAdvancedDsBitLoadingEntry ::= SEQUENCE { + lcsStatusAdslAdvancedDsBitLoadingEntryBinNumber DisplayString, + lcsStatusAdslAdvancedDsBitLoadingEntryX0 Integer32, + lcsStatusAdslAdvancedDsBitLoadingEntryX1 Integer32, + lcsStatusAdslAdvancedDsBitLoadingEntryX2 Integer32, + lcsStatusAdslAdvancedDsBitLoadingEntryX3 Integer32, + lcsStatusAdslAdvancedDsBitLoadingEntryX4 Integer32, + lcsStatusAdslAdvancedDsBitLoadingEntryX5 Integer32, + lcsStatusAdslAdvancedDsBitLoadingEntryX6 Integer32, + lcsStatusAdslAdvancedDsBitLoadingEntryX7 Integer32, + lcsStatusAdslAdvancedDsBitLoadingEntryX8 Integer32, + lcsStatusAdslAdvancedDsBitLoadingEntryX9 Integer32, + lcsStatusAdslAdvancedDsBitLoadingEntryGraph DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.25.13.1.1 +lcsStatusAdslAdvancedDsBitLoadingEntryBinNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvancedDsBitLoadingEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.25.13.1.2 +lcsStatusAdslAdvancedDsBitLoadingEntryX0 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvancedDsBitLoadingEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.25.13.1.3 +lcsStatusAdslAdvancedDsBitLoadingEntryX1 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvancedDsBitLoadingEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.25.13.1.4 +lcsStatusAdslAdvancedDsBitLoadingEntryX2 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvancedDsBitLoadingEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.25.13.1.5 +lcsStatusAdslAdvancedDsBitLoadingEntryX3 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvancedDsBitLoadingEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.25.13.1.6 +lcsStatusAdslAdvancedDsBitLoadingEntryX4 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvancedDsBitLoadingEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.25.13.1.7 +lcsStatusAdslAdvancedDsBitLoadingEntryX5 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvancedDsBitLoadingEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.25.13.1.8 +lcsStatusAdslAdvancedDsBitLoadingEntryX6 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvancedDsBitLoadingEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.25.13.1.9 +lcsStatusAdslAdvancedDsBitLoadingEntryX7 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvancedDsBitLoadingEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.25.13.1.10 +lcsStatusAdslAdvancedDsBitLoadingEntryX8 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvancedDsBitLoadingEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.25.13.1.11 +lcsStatusAdslAdvancedDsBitLoadingEntryX9 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvancedDsBitLoadingEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.25.13.1.12 +lcsStatusAdslAdvancedDsBitLoadingEntryGraph OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvancedDsBitLoadingEntry 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.15 +lcsStatusAdslAdvancedUsDataRateKbps OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.16 +lcsStatusAdslAdvancedUsSnrMarginDb OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 16 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.17 +lcsStatusAdslAdvancedUsLineAttenuationDb OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 17 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.18 +lcsStatusAdslAdvancedUsInterleaveMs OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..7)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 18 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.41.25.25 +lcsStatusAdslAdvancedUsBitLoadingTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusAdslAdvancedUsBitLoadingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 25 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.41.25.25.1 +lcsStatusAdslAdvancedUsBitLoadingEntry OBJECT-TYPE + SYNTAX LcsStatusAdslAdvancedUsBitLoadingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusAdslAdvancedUsBitLoadingEntryBinNumber + } + ::= { lcsStatusAdslAdvancedUsBitLoadingTable 1 } + +LcsStatusAdslAdvancedUsBitLoadingEntry ::= SEQUENCE { + lcsStatusAdslAdvancedUsBitLoadingEntryBinNumber DisplayString, + lcsStatusAdslAdvancedUsBitLoadingEntryX0 Integer32, + lcsStatusAdslAdvancedUsBitLoadingEntryX1 Integer32, + lcsStatusAdslAdvancedUsBitLoadingEntryX2 Integer32, + lcsStatusAdslAdvancedUsBitLoadingEntryX3 Integer32, + lcsStatusAdslAdvancedUsBitLoadingEntryX4 Integer32, + lcsStatusAdslAdvancedUsBitLoadingEntryX5 Integer32, + lcsStatusAdslAdvancedUsBitLoadingEntryX6 Integer32, + lcsStatusAdslAdvancedUsBitLoadingEntryX7 Integer32, + lcsStatusAdslAdvancedUsBitLoadingEntryX8 Integer32, + lcsStatusAdslAdvancedUsBitLoadingEntryX9 Integer32, + lcsStatusAdslAdvancedUsBitLoadingEntryGraph DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.25.25.1.1 +lcsStatusAdslAdvancedUsBitLoadingEntryBinNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvancedUsBitLoadingEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.25.25.1.2 +lcsStatusAdslAdvancedUsBitLoadingEntryX0 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvancedUsBitLoadingEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.25.25.1.3 +lcsStatusAdslAdvancedUsBitLoadingEntryX1 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvancedUsBitLoadingEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.25.25.1.4 +lcsStatusAdslAdvancedUsBitLoadingEntryX2 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvancedUsBitLoadingEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.25.25.1.5 +lcsStatusAdslAdvancedUsBitLoadingEntryX3 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvancedUsBitLoadingEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.25.25.1.6 +lcsStatusAdslAdvancedUsBitLoadingEntryX4 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvancedUsBitLoadingEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.25.25.1.7 +lcsStatusAdslAdvancedUsBitLoadingEntryX5 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvancedUsBitLoadingEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.25.25.1.8 +lcsStatusAdslAdvancedUsBitLoadingEntryX6 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvancedUsBitLoadingEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.25.25.1.9 +lcsStatusAdslAdvancedUsBitLoadingEntryX7 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvancedUsBitLoadingEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.25.25.1.10 +lcsStatusAdslAdvancedUsBitLoadingEntryX8 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvancedUsBitLoadingEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.25.25.1.11 +lcsStatusAdslAdvancedUsBitLoadingEntryX9 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvancedUsBitLoadingEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.41.25.25.1.12 +lcsStatusAdslAdvancedUsBitLoadingEntryGraph OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvancedUsBitLoadingEntry 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.26 +lcsStatusAdslAdvancedRetrain OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 26 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.41 +lcsStatusAdslAdvancedDslamManufacturer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 41 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.42 +lcsStatusAdslAdvancedDslamVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..34)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 42 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.43 +lcsStatusAdslAdvancedDslamSerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..66)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 43 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.44 +lcsStatusAdslAdvancedDslamChipsetManufacturer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 44 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.46 +lcsStatusAdslAdvancedVectoring OBJECT-TYPE + SYNTAX INTEGER { + eNo (1), + eYes (2), + eFriendly (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 46 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.100 +lcsStatusAdslAdvancedDsAttainableDataRateKbps OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 100 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.101 +lcsStatusAdslAdvancedDsInpSymbols OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 101 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.102 +lcsStatusAdslAdvancedDsCrcErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 102 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.103 +lcsStatusAdslAdvancedDsFecErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 103 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.104 +lcsStatusAdslAdvancedDsAtmHecErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 104 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.105 +lcsStatusAdslAdvancedDsDataPathCrcpErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 105 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.106 +lcsStatusAdslAdvancedDsDataPathCrcnpErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 106 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.107 +lcsStatusAdslAdvancedDsDataPathCvpErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 107 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.108 +lcsStatusAdslAdvancedDsDataPathCvnpErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 108 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.109 +lcsStatusAdslAdvancedDsAtmIdleBitErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 109 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.110 +lcsStatusAdslAdvancedDsAtmCells OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 110 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.120 +lcsStatusAdslAdvancedUsAttainableDataRateKbps OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 120 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.121 +lcsStatusAdslAdvancedUsInpSymbols OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 121 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.122 +lcsStatusAdslAdvancedUsCrcErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 122 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.123 +lcsStatusAdslAdvancedUsFecErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 123 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.124 +lcsStatusAdslAdvancedUsAtmHecErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 124 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.125 +lcsStatusAdslAdvancedUsDataPathCrcpErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 125 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.126 +lcsStatusAdslAdvancedUsDataPathCrcnpErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 126 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.127 +lcsStatusAdslAdvancedUsDataPathCvpErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 127 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.128 +lcsStatusAdslAdvancedUsDataPathCvnpErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 128 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.129 +lcsStatusAdslAdvancedUsAtmIdleBitErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 129 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.130 +lcsStatusAdslAdvancedUsAtmCells OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 130 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.140 +lcsStatusAdslAdvancedWanTxPacketCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 140 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.141 +lcsStatusAdslAdvancedWanTxPacketBytes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 141 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.142 +lcsStatusAdslAdvancedWanTxPacketErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 142 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.143 +lcsStatusAdslAdvancedWanTxPacketDrops OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 143 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.144 +lcsStatusAdslAdvancedWanTxOverruns OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 144 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.146 +lcsStatusAdslAdvancedTxPacketCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 146 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.150 +lcsStatusAdslAdvancedWanRxPacketCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 150 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.151 +lcsStatusAdslAdvancedWanRxPacketBytes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 151 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.152 +lcsStatusAdslAdvancedWanRxPacketErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 152 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.153 +lcsStatusAdslAdvancedWanRxPacketDrops OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 153 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.154 +lcsStatusAdslAdvancedWanRxOverruns OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 154 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.25.156 +lcsStatusAdslAdvancedRxPacketCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslAdvanced 156 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.34 +lcsStatusAdslInpDownstreamSymbols OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdsl 34 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.35 +lcsStatusAdslInpUpstreamSymbols OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdsl 35 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.36 +lcsStatusAdslAttainableDataRateDownstreamKbps OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdsl 36 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.37 +lcsStatusAdslAttainableDataRateUpstreamKbps OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdsl 37 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.41 +lcsStatusAdslDslamManufacturer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdsl 41 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.42 +lcsStatusAdslDslamVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..34)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdsl 42 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.43 +lcsStatusAdslDslamSerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..66)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdsl 43 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.46 +lcsStatusAdslVectoring OBJECT-TYPE + SYNTAX INTEGER { + eNo (1), + eYes (2), + eFriendly (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdsl 46 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.41.500 +lcsStatusAdslModem OBJECT IDENTIFIER ::= { lcsStatusAdsl 500 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.500.1 +lcsStatusAdslModemModemState OBJECT-TYPE + SYNTAX INTEGER { + eNoCommunicationsPort (0), + eError (1), + eFileSystem (2), + eBootHeader (3), + eUploadingBootstrap (4), + eUploadingMemoryTest (5), + eMemoryTest (6), + eOptions (7), + eUploadingUBoot (8), + eQuickMemoryTest (9), + eUploadingKernel (10), + eUploadingRamdisk (11), + eUploadingFirmware (12), + eWaitForHeartbeat (13), + eRunning (14), + eUploadingGphyFirmware (15), + eDisabled (16) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslModem 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.500.2 +lcsStatusAdslModemOptions OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslModem 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.500.3 +lcsStatusAdslModemMemoryTest OBJECT-TYPE + SYNTAX INTEGER { + eNotTested (0), + eTimeout (1), + eFailed (2), + eOk (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslModem 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.500.4 +lcsStatusAdslModemRebootModem OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslModem 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.500.5 +lcsStatusAdslModemLink OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslModem 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.500.6 +lcsStatusAdslModemLastError OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslModem 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.500.8 +lcsStatusAdslModemAdslPotsFirmware OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslModem 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.500.9 +lcsStatusAdslModemAdslIsdnFirmware OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslModem 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.500.10 +lcsStatusAdslModemDslApiVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslModem 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.500.11 +lcsStatusAdslModemDspFirmwareVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslModem 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.500.12 +lcsStatusAdslModemHardwareVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslModem 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.500.13 +lcsStatusAdslModemChipsetType OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslModem 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.500.14 +lcsStatusAdslModemDriverVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslModem 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.500.15 +lcsStatusAdslModemBootCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslModem 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.500.16 +lcsStatusAdslModemHybrid OBJECT-TYPE + SYNTAX INTEGER { + eBJ (0), + eInvalid (1), + eB (2), + eA (3), + eUnknown (256) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslModem 16 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.500.20 +lcsStatusAdslModemDefaultLineType OBJECT-TYPE + SYNTAX INTEGER { + eOverPots (2), + eOverIsdn (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslModem 20 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.500.25 +lcsStatusAdslModemPotsFirmware OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslModem 25 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.41.500.26 +lcsStatusAdslModemIsdnFirmware OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusAdslModem 26 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.43 +lcsStatusMail OBJECT IDENTIFIER ::= { lcsStatus 43 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.43.1 +lcsStatusMailBufferedMails OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusMail 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.43.2 +lcsStatusMailSentMails OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusMail 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.43.3 +lcsStatusMailDiscardedMails OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusMail 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.43.4 +lcsStatusMailClearBuffer OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusMail 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.43.5 +lcsStatusMailDeleteStatistics OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusMail 5 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.44 +lcsStatusPublicSpot OBJECT IDENTIFIER ::= { lcsStatus 44 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.44.1 +lcsStatusPublicSpotStationTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusPublicSpotStationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpot 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.44.1.1 +lcsStatusPublicSpotStationTableEntry OBJECT-TYPE + SYNTAX LcsStatusPublicSpotStationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusPublicSpotStationTableEntryMacAddress + } + ::= { lcsStatusPublicSpotStationTableTable 1 } + +LcsStatusPublicSpotStationTableEntry ::= SEQUENCE { + lcsStatusPublicSpotStationTableEntryMacAddress DisplayString, + lcsStatusPublicSpotStationTableEntryIpAddress DisplayString, + lcsStatusPublicSpotStationTableEntryName DisplayString, + lcsStatusPublicSpotStationTableEntryProvider DisplayString, + lcsStatusPublicSpotStationTableEntryTxBytes Integer32, + lcsStatusPublicSpotStationTableEntryRxBytes Integer32, + lcsStatusPublicSpotStationTableEntryTxPackets Integer32, + lcsStatusPublicSpotStationTableEntryRxPackets Integer32, + lcsStatusPublicSpotStationTableEntryLoginTime Integer32, + lcsStatusPublicSpotStationTableEntryState INTEGER, + lcsStatusPublicSpotStationTableEntrySessionId Integer32, + lcsStatusPublicSpotStationTableEntrySecExpire Integer32, + lcsStatusPublicSpotStationTableEntryVolExpire Integer32, + lcsStatusPublicSpotStationTableEntryAccCycle Integer32, + lcsStatusPublicSpotStationTableEntryIdleTimeout Integer32, + lcsStatusPublicSpotStationTableEntryTxLimit Integer32, + lcsStatusPublicSpotStationTableEntryRxLimit Integer32, + lcsStatusPublicSpotStationTableEntryPort DisplayString, + lcsStatusPublicSpotStationTableEntryOrigHost DisplayString, + lcsStatusPublicSpotStationTableEntryVlanId Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.1.1.1 +lcsStatusPublicSpotStationTableEntryMacAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotStationTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.1.1.2 +lcsStatusPublicSpotStationTableEntryIpAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotStationTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.1.1.3 +lcsStatusPublicSpotStationTableEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotStationTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.1.1.4 +lcsStatusPublicSpotStationTableEntryProvider OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotStationTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.1.1.5 +lcsStatusPublicSpotStationTableEntryTxBytes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotStationTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.1.1.6 +lcsStatusPublicSpotStationTableEntryRxBytes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotStationTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.1.1.7 +lcsStatusPublicSpotStationTableEntryTxPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotStationTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.1.1.8 +lcsStatusPublicSpotStationTableEntryRxPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotStationTableEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.1.1.9 +lcsStatusPublicSpotStationTableEntryLoginTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotStationTableEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.1.1.10 +lcsStatusPublicSpotStationTableEntryState OBJECT-TYPE + SYNTAX INTEGER { + eUnauthenticated (0), + eAuthenticated (1), + eDeceased (2), + eAdvertisement (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotStationTableEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.1.1.11 +lcsStatusPublicSpotStationTableEntrySessionId OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotStationTableEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.1.1.12 +lcsStatusPublicSpotStationTableEntrySecExpire OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotStationTableEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.1.1.13 +lcsStatusPublicSpotStationTableEntryVolExpire OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotStationTableEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.1.1.14 +lcsStatusPublicSpotStationTableEntryAccCycle OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotStationTableEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.1.1.16 +lcsStatusPublicSpotStationTableEntryIdleTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotStationTableEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.1.1.17 +lcsStatusPublicSpotStationTableEntryTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotStationTableEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.1.1.18 +lcsStatusPublicSpotStationTableEntryRxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotStationTableEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.1.1.19 +lcsStatusPublicSpotStationTableEntryPort OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..18)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotStationTableEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.1.1.20 +lcsStatusPublicSpotStationTableEntryOrigHost OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotStationTableEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.1.1.21 +lcsStatusPublicSpotStationTableEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPublicSpotStationTableEntry 21 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.44.2 +lcsStatusPublicSpotDeleteStation OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpot 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.44.3 +lcsStatusPublicSpotCleanupTable OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpot 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.44.4 +lcsStatusPublicSpotDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpot 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.44.5 +lcsStatusPublicSpotDisconnectUser OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpot 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.44.6 +lcsStatusPublicSpotLogTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusPublicSpotLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpot 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.44.6.1 +lcsStatusPublicSpotLogTableEntry OBJECT-TYPE + SYNTAX LcsStatusPublicSpotLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusPublicSpotLogTableEntryIndex + } + ::= { lcsStatusPublicSpotLogTableTable 1 } + +LcsStatusPublicSpotLogTableEntry ::= SEQUENCE { + lcsStatusPublicSpotLogTableEntryIndex Integer32, + lcsStatusPublicSpotLogTableEntryTime DisplayString, + lcsStatusPublicSpotLogTableEntryEvent DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.6.1.1 +lcsStatusPublicSpotLogTableEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotLogTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.6.1.2 +lcsStatusPublicSpotLogTableEntryTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..21)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotLogTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.6.1.3 +lcsStatusPublicSpotLogTableEntryEvent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..252)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotLogTableEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.44.7 +lcsStatusPublicSpotRadiusMacCheckCacheTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusPublicSpotRadiusMacCheckCacheEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpot 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.44.7.1 +lcsStatusPublicSpotRadiusMacCheckCacheEntry OBJECT-TYPE + SYNTAX LcsStatusPublicSpotRadiusMacCheckCacheEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusPublicSpotRadiusMacCheckCacheEntryMacAddress + } + ::= { lcsStatusPublicSpotRadiusMacCheckCacheTable 1 } + +LcsStatusPublicSpotRadiusMacCheckCacheEntry ::= SEQUENCE { + lcsStatusPublicSpotRadiusMacCheckCacheEntryMacAddress MacAddress, + lcsStatusPublicSpotRadiusMacCheckCacheEntryState INTEGER, + lcsStatusPublicSpotRadiusMacCheckCacheEntryAge Integer32, + lcsStatusPublicSpotRadiusMacCheckCacheEntryResponseAge Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.7.1.1 +lcsStatusPublicSpotRadiusMacCheckCacheEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotRadiusMacCheckCacheEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.7.1.2 +lcsStatusPublicSpotRadiusMacCheckCacheEntryState OBJECT-TYPE + SYNTAX INTEGER { + ePending (1), + eReject (2), + eAccept (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotRadiusMacCheckCacheEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.7.1.3 +lcsStatusPublicSpotRadiusMacCheckCacheEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotRadiusMacCheckCacheEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.7.1.4 +lcsStatusPublicSpotRadiusMacCheckCacheEntryResponseAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotRadiusMacCheckCacheEntry 4 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.44.8 +lcsStatusPublicSpotAutoReLogin OBJECT IDENTIFIER ::= { lcsStatusPublicSpot 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.44.8.1 +lcsStatusPublicSpotAutoReLoginStationTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusPublicSpotAutoReLoginStationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPublicSpotAutoReLogin 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.44.8.1.1 +lcsStatusPublicSpotAutoReLoginStationTableEntry OBJECT-TYPE + SYNTAX LcsStatusPublicSpotAutoReLoginStationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusPublicSpotAutoReLoginStationTableEntryMacAddress + } + ::= { lcsStatusPublicSpotAutoReLoginStationTableTable 1 } + +LcsStatusPublicSpotAutoReLoginStationTableEntry ::= SEQUENCE { + lcsStatusPublicSpotAutoReLoginStationTableEntryMacAddress MacAddress, + lcsStatusPublicSpotAutoReLoginStationTableEntryIpAddress DisplayString, + lcsStatusPublicSpotAutoReLoginStationTableEntryUserName DisplayString, + lcsStatusPublicSpotAutoReLoginStationTableEntryExistTimeout Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.8.1.1.1 +lcsStatusPublicSpotAutoReLoginStationTableEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPublicSpotAutoReLoginStationTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.8.1.1.2 +lcsStatusPublicSpotAutoReLoginStationTableEntryIpAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPublicSpotAutoReLoginStationTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.8.1.1.3 +lcsStatusPublicSpotAutoReLoginStationTableEntryUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPublicSpotAutoReLoginStationTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.8.1.1.4 +lcsStatusPublicSpotAutoReLoginStationTableEntryExistTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPublicSpotAutoReLoginStationTableEntry 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.44.9 +lcsStatusPublicSpotFlushTemplateCache OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPublicSpot 9 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.44.10 +lcsStatusPublicSpotAdvertisement OBJECT IDENTIFIER ::= { lcsStatusPublicSpot 10 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.44.10.1 +lcsStatusPublicSpotAdvertisementFreeNetworksTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusPublicSpotAdvertisementFreeNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPublicSpotAdvertisement 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.44.10.1.1 +lcsStatusPublicSpotAdvertisementFreeNetworksEntry OBJECT-TYPE + SYNTAX LcsStatusPublicSpotAdvertisementFreeNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusPublicSpotAdvertisementFreeNetworksEntryHostName + } + ::= { lcsStatusPublicSpotAdvertisementFreeNetworksTable 1 } + +LcsStatusPublicSpotAdvertisementFreeNetworksEntry ::= SEQUENCE { + lcsStatusPublicSpotAdvertisementFreeNetworksEntryHostName IpAddress, + lcsStatusPublicSpotAdvertisementFreeNetworksEntryMask IpAddress + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.10.1.1.1 +lcsStatusPublicSpotAdvertisementFreeNetworksEntryHostName OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPublicSpotAdvertisementFreeNetworksEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.10.1.1.2 +lcsStatusPublicSpotAdvertisementFreeNetworksEntryMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPublicSpotAdvertisementFreeNetworksEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.44.10.2 +lcsStatusPublicSpotAdvertisementFreeHostsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusPublicSpotAdvertisementFreeHostsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPublicSpotAdvertisement 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.44.10.2.1 +lcsStatusPublicSpotAdvertisementFreeHostsEntry OBJECT-TYPE + SYNTAX LcsStatusPublicSpotAdvertisementFreeHostsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusPublicSpotAdvertisementFreeHostsEntryAddress, + lcsStatusPublicSpotAdvertisementFreeHostsEntryHostName, + lcsStatusPublicSpotAdvertisementFreeHostsEntrySource + } + ::= { lcsStatusPublicSpotAdvertisementFreeHostsTable 1 } + +LcsStatusPublicSpotAdvertisementFreeHostsEntry ::= SEQUENCE { + lcsStatusPublicSpotAdvertisementFreeHostsEntryAddress IpAddress, + lcsStatusPublicSpotAdvertisementFreeHostsEntryHostName DisplayString, + lcsStatusPublicSpotAdvertisementFreeHostsEntrySource INTEGER, + lcsStatusPublicSpotAdvertisementFreeHostsEntryTtl Integer32, + lcsStatusPublicSpotAdvertisementFreeHostsEntryAge Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.10.2.1.1 +lcsStatusPublicSpotAdvertisementFreeHostsEntryAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPublicSpotAdvertisementFreeHostsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.10.2.1.2 +lcsStatusPublicSpotAdvertisementFreeHostsEntryHostName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPublicSpotAdvertisementFreeHostsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.10.2.1.3 +lcsStatusPublicSpotAdvertisementFreeHostsEntrySource OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eDynamic (1), + eStatic (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPublicSpotAdvertisementFreeHostsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.10.2.1.4 +lcsStatusPublicSpotAdvertisementFreeHostsEntryTtl OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPublicSpotAdvertisementFreeHostsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.10.2.1.5 +lcsStatusPublicSpotAdvertisementFreeHostsEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPublicSpotAdvertisementFreeHostsEntry 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.44.30 +lcsStatusPublicSpotFreeNetworksTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusPublicSpotFreeNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpot 30 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.44.30.1 +lcsStatusPublicSpotFreeNetworksEntry OBJECT-TYPE + SYNTAX LcsStatusPublicSpotFreeNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusPublicSpotFreeNetworksEntryHostName + } + ::= { lcsStatusPublicSpotFreeNetworksTable 1 } + +LcsStatusPublicSpotFreeNetworksEntry ::= SEQUENCE { + lcsStatusPublicSpotFreeNetworksEntryHostName DisplayString, + lcsStatusPublicSpotFreeNetworksEntryAddress IpAddress, + lcsStatusPublicSpotFreeNetworksEntryMask IpAddress, + lcsStatusPublicSpotFreeNetworksEntryTtl Integer32, + lcsStatusPublicSpotFreeNetworksEntryAge Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.30.1.1 +lcsStatusPublicSpotFreeNetworksEntryHostName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotFreeNetworksEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.30.1.2 +lcsStatusPublicSpotFreeNetworksEntryAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotFreeNetworksEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.30.1.3 +lcsStatusPublicSpotFreeNetworksEntryMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotFreeNetworksEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.30.1.4 +lcsStatusPublicSpotFreeNetworksEntryTtl OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotFreeNetworksEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.30.1.5 +lcsStatusPublicSpotFreeNetworksEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpotFreeNetworksEntry 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.44.31 +lcsStatusPublicSpotFreeNetsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusPublicSpotFreeNetsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPublicSpot 31 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.44.31.1 +lcsStatusPublicSpotFreeNetsEntry OBJECT-TYPE + SYNTAX LcsStatusPublicSpotFreeNetsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusPublicSpotFreeNetsEntryAddress + } + ::= { lcsStatusPublicSpotFreeNetsTable 1 } + +LcsStatusPublicSpotFreeNetsEntry ::= SEQUENCE { + lcsStatusPublicSpotFreeNetsEntryAddress IpAddress, + lcsStatusPublicSpotFreeNetsEntryMask IpAddress + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.31.1.1 +lcsStatusPublicSpotFreeNetsEntryAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPublicSpotFreeNetsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.31.1.2 +lcsStatusPublicSpotFreeNetsEntryMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPublicSpotFreeNetsEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.44.32 +lcsStatusPublicSpotFreeHostsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusPublicSpotFreeHostsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPublicSpot 32 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.44.32.1 +lcsStatusPublicSpotFreeHostsEntry OBJECT-TYPE + SYNTAX LcsStatusPublicSpotFreeHostsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusPublicSpotFreeHostsEntryAddress, + lcsStatusPublicSpotFreeHostsEntryHostName, + lcsStatusPublicSpotFreeHostsEntrySource + } + ::= { lcsStatusPublicSpotFreeHostsTable 1 } + +LcsStatusPublicSpotFreeHostsEntry ::= SEQUENCE { + lcsStatusPublicSpotFreeHostsEntryAddress IpAddress, + lcsStatusPublicSpotFreeHostsEntryHostName DisplayString, + lcsStatusPublicSpotFreeHostsEntrySource INTEGER, + lcsStatusPublicSpotFreeHostsEntryTtl Integer32, + lcsStatusPublicSpotFreeHostsEntryAge Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.32.1.1 +lcsStatusPublicSpotFreeHostsEntryAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPublicSpotFreeHostsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.32.1.2 +lcsStatusPublicSpotFreeHostsEntryHostName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPublicSpotFreeHostsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.32.1.3 +lcsStatusPublicSpotFreeHostsEntrySource OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eDynamic (1), + eStatic (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPublicSpotFreeHostsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.32.1.4 +lcsStatusPublicSpotFreeHostsEntryTtl OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPublicSpotFreeHostsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.44.32.1.5 +lcsStatusPublicSpotFreeHostsEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPublicSpotFreeHostsEntry 5 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.46 +lcsStatusIeee8021x OBJECT IDENTIFIER ::= { lcsStatus 46 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.46.1 +lcsStatusIeee8021xStationTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIeee8021xStationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIeee8021x 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.46.1.1 +lcsStatusIeee8021xStationTableEntry OBJECT-TYPE + SYNTAX LcsStatusIeee8021xStationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIeee8021xStationTableEntryMacAddress + } + ::= { lcsStatusIeee8021xStationTableTable 1 } + +LcsStatusIeee8021xStationTableEntry ::= SEQUENCE { + lcsStatusIeee8021xStationTableEntryMacAddress DisplayString, + lcsStatusIeee8021xStationTableEntryAuthIfc DisplayString, + lcsStatusIeee8021xStationTableEntrySessionId DisplayString, + lcsStatusIeee8021xStationTableEntryPortMode INTEGER, + lcsStatusIeee8021xStationTableEntryPortStatus INTEGER, + lcsStatusIeee8021xStationTableEntryUserName DisplayString, + lcsStatusIeee8021xStationTableEntryReplyMsg DisplayString, + lcsStatusIeee8021xStationTableEntryCommIfc DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.46.1.1.1 +lcsStatusIeee8021xStationTableEntryMacAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIeee8021xStationTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.46.1.1.2 +lcsStatusIeee8021xStationTableEntryAuthIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIeee8021xStationTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.46.1.1.3 +lcsStatusIeee8021xStationTableEntrySessionId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIeee8021xStationTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.46.1.1.4 +lcsStatusIeee8021xStationTableEntryPortMode OBJECT-TYPE + SYNTAX INTEGER { + eForceUnauth (0), + eForceAuth (1), + eAuto (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIeee8021xStationTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.46.1.1.5 +lcsStatusIeee8021xStationTableEntryPortStatus OBJECT-TYPE + SYNTAX INTEGER { + eUnauthorized (0), + eAuthorized (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIeee8021xStationTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.46.1.1.6 +lcsStatusIeee8021xStationTableEntryUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIeee8021xStationTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.46.1.1.7 +lcsStatusIeee8021xStationTableEntryReplyMsg OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIeee8021xStationTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.46.1.1.8 +lcsStatusIeee8021xStationTableEntryCommIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIeee8021xStationTableEntry 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.46.2 +lcsStatusIeee8021xForceReauth OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIeee8021x 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.47 +lcsStatusHardwareInfo OBJECT IDENTIFIER ::= { lcsStatus 47 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.1 +lcsStatusHardwareInfoCpuType OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfo 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.2 +lcsStatusHardwareInfoCpuClockMhz OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfo 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.3 +lcsStatusHardwareInfoCpuLoadPercent OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfo 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.4 +lcsStatusHardwareInfoTotalMemoryKbytes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfo 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.5 +lcsStatusHardwareInfoFreeMemoryKbytes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfo 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.6 +lcsStatusHardwareInfoModelNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfo 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.7 +lcsStatusHardwareInfoSerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..18)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfo 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.8 +lcsStatusHardwareInfoBoardRevision OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..1)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfo 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.9 +lcsStatusHardwareInfoSwVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfo 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.10 +lcsStatusHardwareInfoEthernetSwitchType OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..40)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfo 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.11 +lcsStatusHardwareInfoSecurityEngine OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfo 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.12 +lcsStatusHardwareInfoCpuLoad1sPercent OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfo 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.13 +lcsStatusHardwareInfoCpuLoad5sPercent OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfo 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.14 +lcsStatusHardwareInfoCpuLoad60sPercent OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfo 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.15 +lcsStatusHardwareInfoCpuLoad300sPercent OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfo 15 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.47.16 +lcsStatusHardwareInfoSecUnit OBJECT IDENTIFIER ::= { lcsStatusHardwareInfo 16 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.47.16.1 +lcsStatusHardwareInfoSecUnitChannelStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusHardwareInfoSecUnitChannelStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoSecUnit 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.47.16.1.1 +lcsStatusHardwareInfoSecUnitChannelStateEntry OBJECT-TYPE + SYNTAX LcsStatusHardwareInfoSecUnitChannelStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusHardwareInfoSecUnitChannelStateEntryChan + } + ::= { lcsStatusHardwareInfoSecUnitChannelStateTable 1 } + +LcsStatusHardwareInfoSecUnitChannelStateEntry ::= SEQUENCE { + lcsStatusHardwareInfoSecUnitChannelStateEntryChan Integer32, + lcsStatusHardwareInfoSecUnitChannelStateEntryDone Integer32, + lcsStatusHardwareInfoSecUnitChannelStateEntryErrirq Integer32, + lcsStatusHardwareInfoSecUnitChannelStateEntryOverrun Integer32, + lcsStatusHardwareInfoSecUnitChannelStateEntryDoubleFetch Integer32, + lcsStatusHardwareInfoSecUnitChannelStateEntrySingleFetch Integer32, + lcsStatusHardwareInfoSecUnitChannelStateEntryMasterTranferError Integer32, + lcsStatusHardwareInfoSecUnitChannelStateEntryScatGathDLen Integer32, + lcsStatusHardwareInfoSecUnitChannelStateEntryFetchpointerZero Integer32, + lcsStatusHardwareInfoSecUnitChannelStateEntryIllegalHeader Integer32, + lcsStatusHardwareInfoSecUnitChannelStateEntryIllegalAssign Integer32, + lcsStatusHardwareInfoSecUnitChannelStateEntryExeunit Integer32, + lcsStatusHardwareInfoSecUnitChannelStateEntryGatherBound Integer32, + lcsStatusHardwareInfoSecUnitChannelStateEntryGatherLen Integer32, + lcsStatusHardwareInfoSecUnitChannelStateEntryScatterBound Integer32, + lcsStatusHardwareInfoSecUnitChannelStateEntryScatterLen Integer32, + lcsStatusHardwareInfoSecUnitChannelStateEntryOther Integer32, + lcsStatusHardwareInfoSecUnitChannelStateEntryChannelReset Integer32, + lcsStatusHardwareInfoSecUnitChannelStateEntryQueue Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.1.1.1 +lcsStatusHardwareInfoSecUnitChannelStateEntryChan OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoSecUnitChannelStateEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.1.1.2 +lcsStatusHardwareInfoSecUnitChannelStateEntryDone OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoSecUnitChannelStateEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.1.1.3 +lcsStatusHardwareInfoSecUnitChannelStateEntryErrirq OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoSecUnitChannelStateEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.1.1.4 +lcsStatusHardwareInfoSecUnitChannelStateEntryOverrun OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoSecUnitChannelStateEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.1.1.5 +lcsStatusHardwareInfoSecUnitChannelStateEntryDoubleFetch OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoSecUnitChannelStateEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.1.1.6 +lcsStatusHardwareInfoSecUnitChannelStateEntrySingleFetch OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoSecUnitChannelStateEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.1.1.7 +lcsStatusHardwareInfoSecUnitChannelStateEntryMasterTranferError OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoSecUnitChannelStateEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.1.1.8 +lcsStatusHardwareInfoSecUnitChannelStateEntryScatGathDLen OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoSecUnitChannelStateEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.1.1.9 +lcsStatusHardwareInfoSecUnitChannelStateEntryFetchpointerZero OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoSecUnitChannelStateEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.1.1.10 +lcsStatusHardwareInfoSecUnitChannelStateEntryIllegalHeader OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoSecUnitChannelStateEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.1.1.11 +lcsStatusHardwareInfoSecUnitChannelStateEntryIllegalAssign OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoSecUnitChannelStateEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.1.1.12 +lcsStatusHardwareInfoSecUnitChannelStateEntryExeunit OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoSecUnitChannelStateEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.1.1.13 +lcsStatusHardwareInfoSecUnitChannelStateEntryGatherBound OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoSecUnitChannelStateEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.1.1.14 +lcsStatusHardwareInfoSecUnitChannelStateEntryGatherLen OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoSecUnitChannelStateEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.1.1.15 +lcsStatusHardwareInfoSecUnitChannelStateEntryScatterBound OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoSecUnitChannelStateEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.1.1.16 +lcsStatusHardwareInfoSecUnitChannelStateEntryScatterLen OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoSecUnitChannelStateEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.1.1.17 +lcsStatusHardwareInfoSecUnitChannelStateEntryOther OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoSecUnitChannelStateEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.1.1.18 +lcsStatusHardwareInfoSecUnitChannelStateEntryChannelReset OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoSecUnitChannelStateEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.1.1.19 +lcsStatusHardwareInfoSecUnitChannelStateEntryQueue OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoSecUnitChannelStateEntry 19 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.16.2 +lcsStatusHardwareInfoSecUnitDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoSecUnit 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.16.3 +lcsStatusHardwareInfoSecUnitTestRandomNumbers OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoSecUnit 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.47.16.4 +lcsStatusHardwareInfoSecUnitRingStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusHardwareInfoSecUnitRingStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoSecUnit 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.47.16.4.1 +lcsStatusHardwareInfoSecUnitRingStateEntry OBJECT-TYPE + SYNTAX LcsStatusHardwareInfoSecUnitRingStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusHardwareInfoSecUnitRingStateEntryRing + } + ::= { lcsStatusHardwareInfoSecUnitRingStateTable 1 } + +LcsStatusHardwareInfoSecUnitRingStateEntry ::= SEQUENCE { + lcsStatusHardwareInfoSecUnitRingStateEntryRing Integer32, + lcsStatusHardwareInfoSecUnitRingStateEntryDone Integer32, + lcsStatusHardwareInfoSecUnitRingStateEntryError Integer32, + lcsStatusHardwareInfoSecUnitRingStateEntryDecoError Integer32, + lcsStatusHardwareInfoSecUnitRingStateEntryJobRingError Integer32, + lcsStatusHardwareInfoSecUnitRingStateEntryAesChaError Integer32, + lcsStatusHardwareInfoSecUnitRingStateEntryDesChaError Integer32, + lcsStatusHardwareInfoSecUnitRingStateEntryMdhaChaError Integer32, + lcsStatusHardwareInfoSecUnitRingStateEntryPkhaChaError Integer32, + lcsStatusHardwareInfoSecUnitRingStateEntryRngChaError Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.4.1.1 +lcsStatusHardwareInfoSecUnitRingStateEntryRing OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoSecUnitRingStateEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.4.1.2 +lcsStatusHardwareInfoSecUnitRingStateEntryDone OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoSecUnitRingStateEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.4.1.3 +lcsStatusHardwareInfoSecUnitRingStateEntryError OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoSecUnitRingStateEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.4.1.4 +lcsStatusHardwareInfoSecUnitRingStateEntryDecoError OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoSecUnitRingStateEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.4.1.5 +lcsStatusHardwareInfoSecUnitRingStateEntryJobRingError OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoSecUnitRingStateEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.4.1.6 +lcsStatusHardwareInfoSecUnitRingStateEntryAesChaError OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoSecUnitRingStateEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.4.1.7 +lcsStatusHardwareInfoSecUnitRingStateEntryDesChaError OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoSecUnitRingStateEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.4.1.8 +lcsStatusHardwareInfoSecUnitRingStateEntryMdhaChaError OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoSecUnitRingStateEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.4.1.9 +lcsStatusHardwareInfoSecUnitRingStateEntryPkhaChaError OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoSecUnitRingStateEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.4.1.10 +lcsStatusHardwareInfoSecUnitRingStateEntryRngChaError OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoSecUnitRingStateEntry 10 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.47.16.10 +lcsStatusHardwareInfoSecUnitLogTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusHardwareInfoSecUnitLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoSecUnit 10 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.47.16.10.1 +lcsStatusHardwareInfoSecUnitLogTableEntry OBJECT-TYPE + SYNTAX LcsStatusHardwareInfoSecUnitLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusHardwareInfoSecUnitLogTableEntryIndex + } + ::= { lcsStatusHardwareInfoSecUnitLogTableTable 1 } + +LcsStatusHardwareInfoSecUnitLogTableEntry ::= SEQUENCE { + lcsStatusHardwareInfoSecUnitLogTableEntryIndex Integer32, + lcsStatusHardwareInfoSecUnitLogTableEntryTime DisplayString, + lcsStatusHardwareInfoSecUnitLogTableEntryChan Integer32, + lcsStatusHardwareInfoSecUnitLogTableEntryType INTEGER, + lcsStatusHardwareInfoSecUnitLogTableEntryExecutionUnit1 INTEGER, + lcsStatusHardwareInfoSecUnitLogTableEntryExecutionUnit1Isr DisplayString, + lcsStatusHardwareInfoSecUnitLogTableEntryExecutionUnit2 INTEGER, + lcsStatusHardwareInfoSecUnitLogTableEntryExecutionUnit2Isr DisplayString, + lcsStatusHardwareInfoSecUnitLogTableEntryDescriptor DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.10.1.1 +lcsStatusHardwareInfoSecUnitLogTableEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoSecUnitLogTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.10.1.2 +lcsStatusHardwareInfoSecUnitLogTableEntryTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoSecUnitLogTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.10.1.3 +lcsStatusHardwareInfoSecUnitLogTableEntryChan OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoSecUnitLogTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.10.1.4 +lcsStatusHardwareInfoSecUnitLogTableEntryType OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eDoubleFetchFifoWriteOverflow (1), + eSingleFetchFifoWriteOverflow (2), + eMasterDataTransferError (3), + eScatterGatherDataLengthZero (4), + eFetchPointerZero (5), + eIllegalDescriptorHeader (6), + eInvalidEuAssignment (7), + eEuError (8), + eGatherBoundaryError (9), + eGatherReturnLengthError (10), + eScatterBoundaryError (11), + eScatterReturnLengthError (12), + eOverflow (13) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoSecUnitLogTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.10.1.5 +lcsStatusHardwareInfoSecUnitLogTableEntryExecutionUnit1 OBJECT-TYPE + SYNTAX INTEGER { + eNotSet (0), + eAfeu (1), + eDeu (2), + eMdeua (3), + eRng (4), + ePkeu (5), + eAesu (6), + eKeu (7), + eMdeub (11) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoSecUnitLogTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.10.1.6 +lcsStatusHardwareInfoSecUnitLogTableEntryExecutionUnit1Isr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..21)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoSecUnitLogTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.10.1.7 +lcsStatusHardwareInfoSecUnitLogTableEntryExecutionUnit2 OBJECT-TYPE + SYNTAX INTEGER { + eNotSet (0), + eAfeu (1), + eDeu (2), + eMdeua (3), + eRng (4), + ePkeu (5), + eAesu (6), + eKeu (7), + eMdeub (11) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoSecUnitLogTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.10.1.8 +lcsStatusHardwareInfoSecUnitLogTableEntryExecutionUnit2Isr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..21)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoSecUnitLogTableEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.16.10.1.9 +lcsStatusHardwareInfoSecUnitLogTableEntryDescriptor OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..145)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoSecUnitLogTableEntry 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.17 +lcsStatusHardwareInfoOnboardUsbHub OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfo 17 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.20 +lcsStatusHardwareInfoTemperatureDegrees OBJECT-TYPE + SYNTAX Integer32 (-32768..32767) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfo 20 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.47.25 +lcsStatusHardwareInfoPower OBJECT IDENTIFIER ::= { lcsStatusHardwareInfo 25 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.25.1 +lcsStatusHardwareInfoPowerSource OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eAcAdapter (1), + ePoe (2), + eBattery (3), + eWindmill (4), + eSolarPanel (5), + eFuelCell (6), + eHamster (7), + ePerpetuumMobile (8) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoPower 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.25.2 +lcsStatusHardwareInfoPowerPseType OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eType1 (1), + eType2 (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoPower 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.25.3 +lcsStatusHardwareInfoPowerPoePowerValueMw OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoPower 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.25.4 +lcsStatusHardwareInfoPowerDataLinkLayerNegotiation OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoPower 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.47.30 +lcsStatusHardwareInfoPciDeviceListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusHardwareInfoPciDeviceListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfo 30 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.47.30.1 +lcsStatusHardwareInfoPciDeviceListEntry OBJECT-TYPE + SYNTAX LcsStatusHardwareInfoPciDeviceListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusHardwareInfoPciDeviceListEntryHostBridge, + lcsStatusHardwareInfoPciDeviceListEntryBus, + lcsStatusHardwareInfoPciDeviceListEntryDevice, + lcsStatusHardwareInfoPciDeviceListEntryFunction + } + ::= { lcsStatusHardwareInfoPciDeviceListTable 1 } + +LcsStatusHardwareInfoPciDeviceListEntry ::= SEQUENCE { + lcsStatusHardwareInfoPciDeviceListEntryHostBridge Integer32, + lcsStatusHardwareInfoPciDeviceListEntryBus Integer32, + lcsStatusHardwareInfoPciDeviceListEntryDevice Integer32, + lcsStatusHardwareInfoPciDeviceListEntryFunction Integer32, + lcsStatusHardwareInfoPciDeviceListEntryDeviceId DisplayString, + lcsStatusHardwareInfoPciDeviceListEntrySubsystemId DisplayString, + lcsStatusHardwareInfoPciDeviceListEntryClass INTEGER, + lcsStatusHardwareInfoPciDeviceListEntryType INTEGER, + lcsStatusHardwareInfoPciDeviceListEntryInterruptCount Counter64 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.30.1.1 +lcsStatusHardwareInfoPciDeviceListEntryHostBridge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoPciDeviceListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.30.1.2 +lcsStatusHardwareInfoPciDeviceListEntryBus OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoPciDeviceListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.30.1.3 +lcsStatusHardwareInfoPciDeviceListEntryDevice OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoPciDeviceListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.30.1.4 +lcsStatusHardwareInfoPciDeviceListEntryFunction OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoPciDeviceListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.30.1.5 +lcsStatusHardwareInfoPciDeviceListEntryDeviceId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoPciDeviceListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.30.1.6 +lcsStatusHardwareInfoPciDeviceListEntrySubsystemId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoPciDeviceListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.30.1.7 +lcsStatusHardwareInfoPciDeviceListEntryClass OBJECT-TYPE + SYNTAX INTEGER { + eEthernet (131072), + eTokenRing (131328), + eNetwork (163840), + eAudio (262400), + eIsaBridge (393472), + ePciBridge (394240), + ePciBridgeSubtractive (394241), + eCardbusBridge (395008), + eUart16550 (458754), + eUart16950 (458758), + eCommunication (491520), + ePowerpc (729088), + eOhci1394 (786448), + eUsbUhci (787200), + eUsbOhci (787216), + eUsbEhci (787232) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoPciDeviceListEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.30.1.8 +lcsStatusHardwareInfoPciDeviceListEntryType OBJECT-TYPE + SYNTAX INTEGER { + ePci (0), + ePcie (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoPciDeviceListEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.30.1.9 +lcsStatusHardwareInfoPciDeviceListEntryInterruptCount OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoPciDeviceListEntry 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.47.31 +lcsStatusHardwareInfoPciClocksTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusHardwareInfoPciClocksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfo 31 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.47.31.1 +lcsStatusHardwareInfoPciClocksEntry OBJECT-TYPE + SYNTAX LcsStatusHardwareInfoPciClocksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusHardwareInfoPciClocksEntryHostBridge, + lcsStatusHardwareInfoPciClocksEntryBus + } + ::= { lcsStatusHardwareInfoPciClocksTable 1 } + +LcsStatusHardwareInfoPciClocksEntry ::= SEQUENCE { + lcsStatusHardwareInfoPciClocksEntryHostBridge Integer32, + lcsStatusHardwareInfoPciClocksEntryBus Integer32, + lcsStatusHardwareInfoPciClocksEntryClockKhz Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.31.1.1 +lcsStatusHardwareInfoPciClocksEntryHostBridge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoPciClocksEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.31.1.2 +lcsStatusHardwareInfoPciClocksEntryBus OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoPciClocksEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.31.1.3 +lcsStatusHardwareInfoPciClocksEntryClockKhz OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoPciClocksEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.47.32 +lcsStatusHardwareInfoAdvErrorReportingLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusHardwareInfoAdvErrorReportingLogEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfo 32 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.47.32.1 +lcsStatusHardwareInfoAdvErrorReportingLogEntry OBJECT-TYPE + SYNTAX LcsStatusHardwareInfoAdvErrorReportingLogEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusHardwareInfoAdvErrorReportingLogEntryIndex + } + ::= { lcsStatusHardwareInfoAdvErrorReportingLogTable 1 } + +LcsStatusHardwareInfoAdvErrorReportingLogEntry ::= SEQUENCE { + lcsStatusHardwareInfoAdvErrorReportingLogEntryIndex Integer32, + lcsStatusHardwareInfoAdvErrorReportingLogEntryTime DisplayString, + lcsStatusHardwareInfoAdvErrorReportingLogEntrySeverity INTEGER, + lcsStatusHardwareInfoAdvErrorReportingLogEntryMultiple INTEGER, + lcsStatusHardwareInfoAdvErrorReportingLogEntrySource Integer32, + lcsStatusHardwareInfoAdvErrorReportingLogEntryLayer INTEGER, + lcsStatusHardwareInfoAdvErrorReportingLogEntryEvent DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.32.1.1 +lcsStatusHardwareInfoAdvErrorReportingLogEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoAdvErrorReportingLogEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.32.1.2 +lcsStatusHardwareInfoAdvErrorReportingLogEntryTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoAdvErrorReportingLogEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.32.1.3 +lcsStatusHardwareInfoAdvErrorReportingLogEntrySeverity OBJECT-TYPE + SYNTAX INTEGER { + eCorrectable (0), + eUncorrectableNonFatal (1), + eUncorrectableFatal (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoAdvErrorReportingLogEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.32.1.4 +lcsStatusHardwareInfoAdvErrorReportingLogEntryMultiple OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoAdvErrorReportingLogEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.32.1.5 +lcsStatusHardwareInfoAdvErrorReportingLogEntrySource OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoAdvErrorReportingLogEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.32.1.6 +lcsStatusHardwareInfoAdvErrorReportingLogEntryLayer OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + ePhysical (1), + eDataLink (2), + eTransaction (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoAdvErrorReportingLogEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.32.1.7 +lcsStatusHardwareInfoAdvErrorReportingLogEntryEvent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusHardwareInfoAdvErrorReportingLogEntry 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.36 +lcsStatusHardwareInfoPcieCorrErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfo 36 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.37 +lcsStatusHardwareInfoPcieUncorrErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfo 37 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.38 +lcsStatusHardwareInfoPcieLinkResets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfo 38 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.39 +lcsStatusHardwareInfoExtendedName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..127)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfo 39 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.40 +lcsStatusHardwareInfoModLevel OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfo 40 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.41 +lcsStatusHardwareInfoProductionDate OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfo 41 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.47.42 +lcsStatusHardwareInfoEccErrorReportingTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusHardwareInfoEccErrorReportingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfo 42 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.47.42.1 +lcsStatusHardwareInfoEccErrorReportingEntry OBJECT-TYPE + SYNTAX LcsStatusHardwareInfoEccErrorReportingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusHardwareInfoEccErrorReportingEntryIndex + } + ::= { lcsStatusHardwareInfoEccErrorReportingTable 1 } + +LcsStatusHardwareInfoEccErrorReportingEntry ::= SEQUENCE { + lcsStatusHardwareInfoEccErrorReportingEntryIndex Integer32, + lcsStatusHardwareInfoEccErrorReportingEntryTime DisplayString, + lcsStatusHardwareInfoEccErrorReportingEntryEvent DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.42.1.1 +lcsStatusHardwareInfoEccErrorReportingEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoEccErrorReportingEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.42.1.2 +lcsStatusHardwareInfoEccErrorReportingEntryTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoEccErrorReportingEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.47.42.1.3 +lcsStatusHardwareInfoEccErrorReportingEntryEvent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfoEccErrorReportingEntry 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.44 +lcsStatusHardwareInfoPldVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..7)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfo 44 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.45 +lcsStatusHardwareInfoResetButtonState OBJECT-TYPE + SYNTAX INTEGER { + eInactive (0), + eActive (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfo 45 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.47.50 +lcsStatusHardwareInfoWideRangePowerSupplyMv OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusHardwareInfo 50 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.48 +lcsStatusChannelTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusChannelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatus 48 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.48.1 +lcsStatusChannelEntry OBJECT-TYPE + SYNTAX LcsStatusChannelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusChannelEntryChan + } + ::= { lcsStatusChannelTable 1 } + +LcsStatusChannelEntry ::= SEQUENCE { + lcsStatusChannelEntryChan INTEGER, + lcsStatusChannelEntryPlci Integer32, + lcsStatusChannelEntryBus Integer32, + lcsStatusChannelEntryState Integer32, + lcsStatusChannelEntryApp INTEGER, + lcsStatusChannelEntryConnector INTEGER, + lcsStatusChannelEntryCause Integer32, + lcsStatusChannelEntryNumber DisplayString, + lcsStatusChannelEntryCharge Integer32, + lcsStatusChannelEntryExtra DisplayString, + lcsStatusChannelEntryConnTime Integer32, + lcsStatusChannelEntryConnStart Integer32, + lcsStatusChannelEntryIsdnDisplay DisplayString, + lcsStatusChannelEntryPhChan Integer32, + lcsStatusChannelEntryPptpConns Integer32, + lcsStatusChannelEntryVpnConns Integer32, + lcsStatusChannelEntrySubaddress Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.48.1.1 +lcsStatusChannelEntryChan OBJECT-TYPE + SYNTAX INTEGER { + eAdslErr (1), + eAdsl1 (2), + eAdsl2 (3), + eAdsl3 (4), + eAdsl4 (5), + eAdsl5 (6), + eAdsl6 (7), + eAdsl7 (8), + eAdsl8 (9), + eDslErr (257), + eDslCh1 (258), + eDslCh2 (259), + eDslCh3 (260), + eDslCh4 (261), + eDslCh5 (262), + eDslCh6 (263), + eDslCh7 (264), + eDslCh8 (265), + eS01Err (513), + eS01B1 (514), + eS01B2 (515), + eExtErr (1281), + eExt (1282), + eVdslErr (2049), + eVdslCh1 (2050), + eVdslCh2 (2051), + eVdslCh3 (2052), + eVdslCh4 (2053), + eVdslCh5 (2054), + eVdslCh6 (2055), + eVdslCh7 (2056), + eVdslCh8 (2057) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChannelEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.48.1.2 +lcsStatusChannelEntryPlci OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChannelEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.48.1.3 +lcsStatusChannelEntryBus OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChannelEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.48.1.4 +lcsStatusChannelEntryState OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChannelEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.48.1.5 +lcsStatusChannelEntryApp OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eRouter (1), + eCapi (2), + eAB (3), + eTimeModule (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChannelEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.48.1.6 +lcsStatusChannelEntryConnector OBJECT-TYPE + SYNTAX INTEGER { + eUnk (0), + eAct (1), + ePas (2), + ePerm (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChannelEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.48.1.7 +lcsStatusChannelEntryCause OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChannelEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.48.1.8 +lcsStatusChannelEntryNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..40)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChannelEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.48.1.10 +lcsStatusChannelEntryCharge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChannelEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.48.1.11 +lcsStatusChannelEntryExtra OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChannelEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.48.1.12 +lcsStatusChannelEntryConnTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChannelEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.48.1.13 +lcsStatusChannelEntryConnStart OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChannelEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.48.1.14 +lcsStatusChannelEntryIsdnDisplay OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..34)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChannelEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.48.1.15 +lcsStatusChannelEntryPhChan OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChannelEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.48.1.16 +lcsStatusChannelEntryPptpConns OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChannelEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.48.1.17 +lcsStatusChannelEntryVpnConns OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChannelEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.48.1.18 +lcsStatusChannelEntrySubaddress OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusChannelEntry 18 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.49 +lcsStatusModemMobile OBJECT IDENTIFIER ::= { lcsStatus 49 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.1 +lcsStatusModemMobileModemInfo OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.2 +lcsStatusModemMobileConnectInfo OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.3 +lcsStatusModemMobileState OBJECT-TYPE + SYNTAX INTEGER { + eDeactivated (0), + eDeviceDetection (1), + eReset (2), + eInitializing (3), + eModemId (4), + eReady (5), + eConnecting (6), + ePassConnecting (7), + eDataMode (8), + eNetworkScan (9), + eSetPin (10), + ePinInvalid (11), + eUnexpectedResponse (12), + ePukRequired (13), + eNetwork (14), + eWaitForDevice (15), + ePinMissing (16), + eGpsPoll (17), + eHwPoll (18) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.4 +lcsStatusModemMobileOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eModem (1), + eWwan (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.5 +lcsStatusModemMobileDataRate OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.6 +lcsStatusModemMobileSignalDbm OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.7 +lcsStatusModemMobileRegistration OBJECT-TYPE + SYNTAX INTEGER { + eNoNetwork (0), + eHomeNetwork (1), + eSearching (2), + eDenied (3), + eUnknown (4), + eRoaming (5), + eNoNetworkDenied (128), + eSearchingDenied (130), + eRegistrationDenied (131), + eUnknownDenied (132) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.8 +lcsStatusModemMobileNetwork OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.49.9 +lcsStatusModemMobileNetworkListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusModemMobileNetworkListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.49.9.1 +lcsStatusModemMobileNetworkListEntry OBJECT-TYPE + SYNTAX LcsStatusModemMobileNetworkListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusModemMobileNetworkListEntryNetwork + } + ::= { lcsStatusModemMobileNetworkListTable 1 } + +LcsStatusModemMobileNetworkListEntry ::= SEQUENCE { + lcsStatusModemMobileNetworkListEntryNetwork DisplayString, + lcsStatusModemMobileNetworkListEntryState INTEGER, + lcsStatusModemMobileNetworkListEntryMode BITS, + lcsStatusModemMobileNetworkListEntryNumeric Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.49.9.1.1 +lcsStatusModemMobileNetworkListEntryNetwork OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobileNetworkListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.49.9.1.2 +lcsStatusModemMobileNetworkListEntryState OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (1), + eAvailable (2), + eCurrent (3), + eForbidden (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobileNetworkListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.49.9.1.3 +lcsStatusModemMobileNetworkListEntryMode OBJECT-TYPE + SYNTAX BITS { + eUnknown (0), + eLte (29), + eUmts (30), + eGprs (31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobileNetworkListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.49.9.1.4 +lcsStatusModemMobileNetworkListEntryNumeric OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobileNetworkListEntry 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.10 +lcsStatusModemMobileScanNetworks OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.11 +lcsStatusModemMobileInputPuk OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.12 +lcsStatusModemMobileMode OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eUmts (1), + eGprs (2), + eGsm (3), + eEdge (4), + eHsdpa (5), + eHsupa (6), + eHspaPlus (7), + eLte (8), + eHspa (9) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.13 +lcsStatusModemMobilePort OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eOutband (1), + eUsb (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.14 +lcsStatusModemMobileDroppedTxPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.15 +lcsStatusModemMobileHardwareResets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 15 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.49.16 +lcsStatusModemMobileHistoryTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusModemMobileHistoryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 16 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.49.16.1 +lcsStatusModemMobileHistoryEntry OBJECT-TYPE + SYNTAX LcsStatusModemMobileHistoryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusModemMobileHistoryEntryIndex + } + ::= { lcsStatusModemMobileHistoryTable 1 } + +LcsStatusModemMobileHistoryEntry ::= SEQUENCE { + lcsStatusModemMobileHistoryEntryIndex Integer32, + lcsStatusModemMobileHistoryEntryTimestamp Gauge32, + lcsStatusModemMobileHistoryEntrySignalDbm Integer32, + lcsStatusModemMobileHistoryEntryNetwork DisplayString, + lcsStatusModemMobileHistoryEntryMode INTEGER, + lcsStatusModemMobileHistoryEntryRegistration INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.49.16.1.1 +lcsStatusModemMobileHistoryEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobileHistoryEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.49.16.1.2 +lcsStatusModemMobileHistoryEntryTimestamp OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobileHistoryEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.49.16.1.3 +lcsStatusModemMobileHistoryEntrySignalDbm OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobileHistoryEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.49.16.1.4 +lcsStatusModemMobileHistoryEntryNetwork OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..1)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobileHistoryEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.49.16.1.5 +lcsStatusModemMobileHistoryEntryMode OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eUmts (1), + eGprs (2), + eGsm (3), + eEdge (4), + eHsdpa (5), + eHsupa (6), + eHspaPlus (7), + eLte (8), + eHspa (9) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobileHistoryEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.49.16.1.6 +lcsStatusModemMobileHistoryEntryRegistration OBJECT-TYPE + SYNTAX INTEGER { + eNoNetwork (0), + eHomeNetwork (1), + eSearching (2), + eDenied (3), + eUnknown (4), + eRoaming (5), + eNoNetworkDenied (128), + eSearchingDenied (130), + eRegistrationDenied (131), + eUnknownDenied (132) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobileHistoryEntry 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.17 +lcsStatusModemMobileTemperatureStatus OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eNormal (1), + eLow (2), + eHigh (3), + eLowCritical (5), + eHighCritical (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 17 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.18 +lcsStatusModemMobileTemperatureDegc OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 18 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.19 +lcsStatusModemMobileSupplyVoltageStatus OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eNormal (1), + eLow (2), + eHigh (3), + eLowCritical (5), + eHighCritical (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 19 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.20 +lcsStatusModemMobileSupplyVoltageMv OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 20 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.21 +lcsStatusModemMobilePinStatus OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..47)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 21 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.22 +lcsStatusModemMobileRxTimeouts OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 22 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.23 +lcsStatusModemMobileSimIdIccid OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..22)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 23 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.25 +lcsStatusModemMobileFallbackTo2g OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 25 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.26 +lcsStatusModemMobileMobileCountryCode OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eDe (262) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 26 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.27 +lcsStatusModemMobileMobileNetworkCode OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusModemMobile 27 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.28 +lcsStatusModemMobileMobileCellId OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusModemMobile 28 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.29 +lcsStatusModemMobileMobileLocalAreaCode OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusModemMobile 29 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.30 +lcsStatusModemMobileRelease OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusModemMobile 30 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.31 +lcsStatusModemMobileMaxDownstreamRateKbS OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusModemMobile 31 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.32 +lcsStatusModemMobileMaxUpstreamRateKbS OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusModemMobile 32 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.33 +lcsStatusModemMobileMobileBand OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusModemMobile 33 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.34 +lcsStatusModemMobileMobileBandwidthMhz OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusModemMobile 34 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.35 +lcsStatusModemMobileMobileTxChannel OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusModemMobile 35 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.36 +lcsStatusModemMobileMobileRxChannel OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusModemMobile 36 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.37 +lcsStatusModemMobileImei OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusModemMobile 37 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.38 +lcsStatusModemMobileSimInserted OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusModemMobile 38 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.39 +lcsStatusModemMobileImsi OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusModemMobile 39 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.40 +lcsStatusModemMobilePhoneNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusModemMobile 40 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.41 +lcsStatusModemMobileSetApn OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusModemMobile 41 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.42 +lcsStatusModemMobilePinChange OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusModemMobile 42 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.49.43 +lcsStatusModemMobileSimstatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusModemMobileSimstatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusModemMobile 43 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.49.43.1 +lcsStatusModemMobileSimstatusEntry OBJECT-TYPE + SYNTAX LcsStatusModemMobileSimstatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusModemMobileSimstatusEntryIndex + } + ::= { lcsStatusModemMobileSimstatusTable 1 } + +LcsStatusModemMobileSimstatusEntry ::= SEQUENCE { + lcsStatusModemMobileSimstatusEntryIndex Integer32, + lcsStatusModemMobileSimstatusEntrySimstatus INTEGER, + lcsStatusModemMobileSimstatusEntrySimIdIccid DisplayString, + lcsStatusModemMobileSimstatusEntryProvidername DisplayString, + lcsStatusModemMobileSimstatusEntryImsi DisplayString, + lcsStatusModemMobileSimstatusEntryPhoneNumber DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.49.43.1.1 +lcsStatusModemMobileSimstatusEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusModemMobileSimstatusEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.49.43.1.2 +lcsStatusModemMobileSimstatusEntrySimstatus OBJECT-TYPE + SYNTAX INTEGER { + eMissing (0), + eActive (1), + eStandby (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusModemMobileSimstatusEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.49.43.1.3 +lcsStatusModemMobileSimstatusEntrySimIdIccid OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..1)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusModemMobileSimstatusEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.49.43.1.4 +lcsStatusModemMobileSimstatusEntryProvidername OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..1)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusModemMobileSimstatusEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.49.43.1.5 +lcsStatusModemMobileSimstatusEntryImsi OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..1)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusModemMobileSimstatusEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.49.43.1.6 +lcsStatusModemMobileSimstatusEntryPhoneNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..1)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusModemMobileSimstatusEntry 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.49.44 +lcsStatusModemMobileSimstatusRefresh OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusModemMobile 44 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.50 +lcsStatusFileSystem OBJECT IDENTIFIER ::= { lcsStatus 50 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.50.1 +lcsStatusFileSystemContentsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusFileSystemContentsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusFileSystem 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.50.1.1 +lcsStatusFileSystemContentsEntry OBJECT-TYPE + SYNTAX LcsStatusFileSystemContentsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusFileSystemContentsEntryName + } + ::= { lcsStatusFileSystemContentsTable 1 } + +LcsStatusFileSystemContentsEntry ::= SEQUENCE { + lcsStatusFileSystemContentsEntryName DisplayString, + lcsStatusFileSystemContentsEntrySize Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.50.1.1.1 +lcsStatusFileSystemContentsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusFileSystemContentsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.50.1.1.2 +lcsStatusFileSystemContentsEntrySize OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusFileSystemContentsEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.50.2 +lcsStatusFileSystemVolumesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusFileSystemVolumesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusFileSystem 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.50.2.1 +lcsStatusFileSystemVolumesEntry OBJECT-TYPE + SYNTAX LcsStatusFileSystemVolumesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusFileSystemVolumesEntryId + } + ::= { lcsStatusFileSystemVolumesTable 1 } + +LcsStatusFileSystemVolumesEntry ::= SEQUENCE { + lcsStatusFileSystemVolumesEntryId DisplayString, + lcsStatusFileSystemVolumesEntryMountpoints DisplayString, + lcsStatusFileSystemVolumesEntryFilesystem DisplayString, + lcsStatusFileSystemVolumesEntryUnmountable Integer32, + lcsStatusFileSystemVolumesEntryFree DisplayString, + lcsStatusFileSystemVolumesEntrySize DisplayString, + lcsStatusFileSystemVolumesEntryFb Integer32, + lcsStatusFileSystemVolumesEntrySb Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.50.2.1.1 +lcsStatusFileSystemVolumesEntryId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusFileSystemVolumesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.50.2.1.2 +lcsStatusFileSystemVolumesEntryMountpoints OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusFileSystemVolumesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.50.2.1.3 +lcsStatusFileSystemVolumesEntryFilesystem OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusFileSystemVolumesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.50.2.1.4 +lcsStatusFileSystemVolumesEntryUnmountable OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusFileSystemVolumesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.50.2.1.5 +lcsStatusFileSystemVolumesEntryFree OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusFileSystemVolumesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.50.2.1.6 +lcsStatusFileSystemVolumesEntrySize OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusFileSystemVolumesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.50.2.1.7 +lcsStatusFileSystemVolumesEntryFb OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusFileSystemVolumesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.50.2.1.8 +lcsStatusFileSystemVolumesEntrySb OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusFileSystemVolumesEntry 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.50.3 +lcsStatusFileSystemUnmount OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusFileSystem 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.50.4 +lcsStatusFileSystemSecureErase OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusFileSystem 4 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.51 +lcsStatusEthernetPorts OBJECT IDENTIFIER ::= { lcsStatus 51 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.51.1 +lcsStatusEthernetPortsPortsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusEthernetPortsPortsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPorts 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.51.1.1 +lcsStatusEthernetPortsPortsEntry OBJECT-TYPE + SYNTAX LcsStatusEthernetPortsPortsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusEthernetPortsPortsEntryPort + } + ::= { lcsStatusEthernetPortsPortsTable 1 } + +LcsStatusEthernetPortsPortsEntry ::= SEQUENCE { + lcsStatusEthernetPortsPortsEntryPort INTEGER, + lcsStatusEthernetPortsPortsEntryLinkActive INTEGER, + lcsStatusEthernetPortsPortsEntryConnector INTEGER, + lcsStatusEthernetPortsPortsEntryMdiMode INTEGER, + lcsStatusEthernetPortsPortsEntryAssignment INTEGER, + lcsStatusEthernetPortsPortsEntryFlowControl INTEGER, + lcsStatusEthernetPortsPortsEntryPrivateMode INTEGER, + lcsStatusEthernetPortsPortsEntryAutoNegotiation INTEGER, + lcsStatusEthernetPortsPortsEntryDownshift INTEGER, + lcsStatusEthernetPortsPortsEntryClockRole INTEGER, + lcsStatusEthernetPortsPortsEntryPowerSaving INTEGER, + lcsStatusEthernetPortsPortsEntryRemoteFault INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.1.1.1 +lcsStatusEthernetPortsPortsEntryPort OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eUplink (1), + eEth1 (2), + eEth2 (3), + eEth3 (4), + eEth4 (5), + eWan (16), + eSfp1 (32) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsPortsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.1.1.3 +lcsStatusEthernetPortsPortsEntryLinkActive OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsPortsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.1.1.4 +lcsStatusEthernetPortsPortsEntryConnector OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + e10bT (1), + eFd10bTx (2), + e100bTx (3), + eFd100bTx (4), + eFd1000bTx (6), + e10b2 (33), + e10b5 (34), + eFd100bF (68), + eFd1000bF (70), + ePowerDown (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsPortsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.1.1.6 +lcsStatusEthernetPortsPortsEntryMdiMode OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eMdi (1), + eMdix (2), + eNotApplicable (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsPortsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.1.1.7 +lcsStatusEthernetPortsPortsEntryAssignment OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (0), + eLan2 (1), + eLan3 (2), + eLan4 (3), + eLan5 (4), + eDsl1 (512), + eDsl2 (513), + eDsl3 (514), + eDsl4 (515), + eIdle (65533), + eMonitor (65534), + ePowerDown (65535) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsPortsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.1.1.8 +lcsStatusEthernetPortsPortsEntryFlowControl OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eTxOnly (3), + eRxOnly (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsPortsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.1.1.9 +lcsStatusEthernetPortsPortsEntryPrivateMode OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsPortsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.1.1.10 +lcsStatusEthernetPortsPortsEntryAutoNegotiation OBJECT-TYPE + SYNTAX INTEGER { + ePending (0), + eCompleted (1), + eDisabled (2), + eNotAvailable (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsPortsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.1.1.11 +lcsStatusEthernetPortsPortsEntryDownshift OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsPortsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.1.1.12 +lcsStatusEthernetPortsPortsEntryClockRole OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eMaster (1), + eSlave (2), + eFault (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsPortsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.1.1.13 +lcsStatusEthernetPortsPortsEntryPowerSaving OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusEthernetPortsPortsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.1.1.14 +lcsStatusEthernetPortsPortsEntryRemoteFault OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusEthernetPortsPortsEntry 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.51.2 +lcsStatusEthernetPortsCableTest OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPorts 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.51.3 +lcsStatusEthernetPortsCableTestResultsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusEthernetPortsCableTestResultsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPorts 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.51.3.1 +lcsStatusEthernetPortsCableTestResultsEntry OBJECT-TYPE + SYNTAX LcsStatusEthernetPortsCableTestResultsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusEthernetPortsCableTestResultsEntryIfc + } + ::= { lcsStatusEthernetPortsCableTestResultsTable 1 } + +LcsStatusEthernetPortsCableTestResultsEntry ::= SEQUENCE { + lcsStatusEthernetPortsCableTestResultsEntryIfc INTEGER, + lcsStatusEthernetPortsCableTestResultsEntryRxStatus INTEGER, + lcsStatusEthernetPortsCableTestResultsEntryRxDistance DisplayString, + lcsStatusEthernetPortsCableTestResultsEntryTxStatus INTEGER, + lcsStatusEthernetPortsCableTestResultsEntryTxDistance DisplayString, + lcsStatusEthernetPortsCableTestResultsEntryMdi0Status INTEGER, + lcsStatusEthernetPortsCableTestResultsEntryMdi0Distance DisplayString, + lcsStatusEthernetPortsCableTestResultsEntryMdi1Status INTEGER, + lcsStatusEthernetPortsCableTestResultsEntryMdi1Distance DisplayString, + lcsStatusEthernetPortsCableTestResultsEntryMdi2Status INTEGER, + lcsStatusEthernetPortsCableTestResultsEntryMdi2Distance DisplayString, + lcsStatusEthernetPortsCableTestResultsEntryMdi3Status INTEGER, + lcsStatusEthernetPortsCableTestResultsEntryMdi3Distance DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.3.1.1 +lcsStatusEthernetPortsCableTestResultsEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eUplink (1), + eEth1 (2), + eEth2 (3), + eEth3 (4), + eEth4 (5), + eWan (16), + eSfp1 (32) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsCableTestResultsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.3.1.2 +lcsStatusEthernetPortsCableTestResultsEntryRxStatus OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eOk (1), + eOpen (2), + eShort (3), + eImpedanceFault (4), + eFail (5), + eBusy (6), + eLinkUp (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsCableTestResultsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.3.1.3 +lcsStatusEthernetPortsCableTestResultsEntryRxDistance OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsCableTestResultsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.3.1.4 +lcsStatusEthernetPortsCableTestResultsEntryTxStatus OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eOk (1), + eOpen (2), + eShort (3), + eImpedanceFault (4), + eFail (5), + eBusy (6), + eLinkUp (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsCableTestResultsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.3.1.5 +lcsStatusEthernetPortsCableTestResultsEntryTxDistance OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsCableTestResultsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.3.1.6 +lcsStatusEthernetPortsCableTestResultsEntryMdi0Status OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eOk (1), + eOpen (2), + eShort (3), + eImpedanceFault (4), + eFail (5), + eBusy (6), + eLinkUp (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsCableTestResultsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.3.1.7 +lcsStatusEthernetPortsCableTestResultsEntryMdi0Distance OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsCableTestResultsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.3.1.8 +lcsStatusEthernetPortsCableTestResultsEntryMdi1Status OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eOk (1), + eOpen (2), + eShort (3), + eImpedanceFault (4), + eFail (5), + eBusy (6), + eLinkUp (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsCableTestResultsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.3.1.9 +lcsStatusEthernetPortsCableTestResultsEntryMdi1Distance OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsCableTestResultsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.3.1.10 +lcsStatusEthernetPortsCableTestResultsEntryMdi2Status OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eOk (1), + eOpen (2), + eShort (3), + eImpedanceFault (4), + eFail (5), + eBusy (6), + eLinkUp (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsCableTestResultsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.3.1.11 +lcsStatusEthernetPortsCableTestResultsEntryMdi2Distance OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsCableTestResultsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.3.1.12 +lcsStatusEthernetPortsCableTestResultsEntryMdi3Status OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eOk (1), + eOpen (2), + eShort (3), + eImpedanceFault (4), + eFail (5), + eBusy (6), + eLinkUp (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsCableTestResultsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.3.1.13 +lcsStatusEthernetPortsCableTestResultsEntryMdi3Distance OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsCableTestResultsEntry 13 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.51.4 +lcsStatusEthernetPortsErrorsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusEthernetPortsErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPorts 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.51.4.1 +lcsStatusEthernetPortsErrorsEntry OBJECT-TYPE + SYNTAX LcsStatusEthernetPortsErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusEthernetPortsErrorsEntryIfc + } + ::= { lcsStatusEthernetPortsErrorsTable 1 } + +LcsStatusEthernetPortsErrorsEntry ::= SEQUENCE { + lcsStatusEthernetPortsErrorsEntryIfc INTEGER, + lcsStatusEthernetPortsErrorsEntryRxErrors Counter32, + lcsStatusEthernetPortsErrorsEntryTxErrors Counter32, + lcsStatusEthernetPortsErrorsEntryStackErrors Counter32, + lcsStatusEthernetPortsErrorsEntryNicErrors Counter32, + lcsStatusEthernetPortsErrorsEntryQueueErrors Counter32, + lcsStatusEthernetPortsErrorsEntryRxCrcErrors Counter32, + lcsStatusEthernetPortsErrorsEntryCollisions Counter32, + lcsStatusEthernetPortsErrorsEntrySingleCollisions Counter32, + lcsStatusEthernetPortsErrorsEntryMultipleCollisions Counter32, + lcsStatusEthernetPortsErrorsEntryLateCollisions Counter32, + lcsStatusEthernetPortsErrorsEntryExcessiveCollisions Counter32, + lcsStatusEthernetPortsErrorsEntryRxAlignErrors Counter32, + lcsStatusEthernetPortsErrorsEntryRxTooShort Counter32, + lcsStatusEthernetPortsErrorsEntryRxTooLong Counter32, + lcsStatusEthernetPortsErrorsEntryTxCarrier Counter32, + lcsStatusEthernetPortsErrorsEntryTxDeferred Counter32, + lcsStatusEthernetPortsErrorsEntryRxPhyErrors Counter32, + lcsStatusEthernetPortsErrorsEntryRxFifoOverflow Counter32, + lcsStatusEthernetPortsErrorsEntryTxDiscarded Counter32, + lcsStatusEthernetPortsErrorsEntryRxDscrUnderflow Counter32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.4.1.1 +lcsStatusEthernetPortsErrorsEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eEth1 (2), + eEth2 (3), + eEth3 (4), + eEth4 (5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsErrorsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.4.1.2 +lcsStatusEthernetPortsErrorsEntryRxErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsErrorsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.4.1.3 +lcsStatusEthernetPortsErrorsEntryTxErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsErrorsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.4.1.4 +lcsStatusEthernetPortsErrorsEntryStackErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsErrorsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.4.1.5 +lcsStatusEthernetPortsErrorsEntryNicErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsErrorsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.4.1.6 +lcsStatusEthernetPortsErrorsEntryQueueErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsErrorsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.4.1.7 +lcsStatusEthernetPortsErrorsEntryRxCrcErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsErrorsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.4.1.8 +lcsStatusEthernetPortsErrorsEntryCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsErrorsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.4.1.9 +lcsStatusEthernetPortsErrorsEntrySingleCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsErrorsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.4.1.10 +lcsStatusEthernetPortsErrorsEntryMultipleCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsErrorsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.4.1.11 +lcsStatusEthernetPortsErrorsEntryLateCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsErrorsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.4.1.12 +lcsStatusEthernetPortsErrorsEntryExcessiveCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsErrorsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.4.1.13 +lcsStatusEthernetPortsErrorsEntryRxAlignErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsErrorsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.4.1.14 +lcsStatusEthernetPortsErrorsEntryRxTooShort OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsErrorsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.4.1.15 +lcsStatusEthernetPortsErrorsEntryRxTooLong OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsErrorsEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.4.1.16 +lcsStatusEthernetPortsErrorsEntryTxCarrier OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsErrorsEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.4.1.17 +lcsStatusEthernetPortsErrorsEntryTxDeferred OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsErrorsEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.4.1.18 +lcsStatusEthernetPortsErrorsEntryRxPhyErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPortsErrorsEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.4.1.19 +lcsStatusEthernetPortsErrorsEntryRxFifoOverflow OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusEthernetPortsErrorsEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.4.1.20 +lcsStatusEthernetPortsErrorsEntryTxDiscarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusEthernetPortsErrorsEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.4.1.21 +lcsStatusEthernetPortsErrorsEntryRxDscrUnderflow OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusEthernetPortsErrorsEntry 21 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.51.11 +lcsStatusEthernetPortsSfpPortsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusEthernetPortsSfpPortsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusEthernetPorts 11 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.51.11.1 +lcsStatusEthernetPortsSfpPortsEntry OBJECT-TYPE + SYNTAX LcsStatusEthernetPortsSfpPortsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusEthernetPortsSfpPortsEntryPort + } + ::= { lcsStatusEthernetPortsSfpPortsTable 1 } + +LcsStatusEthernetPortsSfpPortsEntry ::= SEQUENCE { + lcsStatusEthernetPortsSfpPortsEntryPort INTEGER, + lcsStatusEthernetPortsSfpPortsEntryVendor DisplayString, + lcsStatusEthernetPortsSfpPortsEntryPartNo DisplayString, + lcsStatusEthernetPortsSfpPortsEntryRevision DisplayString, + lcsStatusEthernetPortsSfpPortsEntrySerialNo DisplayString, + lcsStatusEthernetPortsSfpPortsEntryStatus INTEGER, + lcsStatusEthernetPortsSfpPortsEntryMedium BITS, + lcsStatusEthernetPortsSfpPortsEntryWavelength Integer32, + lcsStatusEthernetPortsSfpPortsEntryDate DisplayString, + lcsStatusEthernetPortsSfpPortsEntryConnector INTEGER, + lcsStatusEthernetPortsSfpPortsEntryTemperature Integer32, + lcsStatusEthernetPortsSfpPortsEntrySupplyVoltage Integer32, + lcsStatusEthernetPortsSfpPortsEntryTxBias Integer32, + lcsStatusEthernetPortsSfpPortsEntryTxPower Integer32, + lcsStatusEthernetPortsSfpPortsEntryRxPower Integer32, + lcsStatusEthernetPortsSfpPortsEntryMonitoring INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.11.1.1 +lcsStatusEthernetPortsSfpPortsEntryPort OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eEth1 (2), + eEth2 (3), + eEth3 (4), + eEth4 (5), + eWan (16), + eSfp1 (32) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusEthernetPortsSfpPortsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.11.1.2 +lcsStatusEthernetPortsSfpPortsEntryVendor OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusEthernetPortsSfpPortsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.11.1.3 +lcsStatusEthernetPortsSfpPortsEntryPartNo OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusEthernetPortsSfpPortsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.11.1.4 +lcsStatusEthernetPortsSfpPortsEntryRevision OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusEthernetPortsSfpPortsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.11.1.5 +lcsStatusEthernetPortsSfpPortsEntrySerialNo OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusEthernetPortsSfpPortsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.11.1.6 +lcsStatusEthernetPortsSfpPortsEntryStatus OBJECT-TYPE + SYNTAX INTEGER { + eNotPresent (0), + eOk (1), + eChksumError (2), + eUnsupported (3), + eTxFault (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusEthernetPortsSfpPortsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.11.1.7 +lcsStatusEthernetPortsSfpPortsEntryMedium OBJECT-TYPE + SYNTAX BITS { + eNone (0), + e100baseFx (2), + e100baseLx (3), + e1000baseT (4), + e1000baseCx (5), + e1000baseLx (6), + e1000baseSx (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusEthernetPortsSfpPortsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.11.1.8 +lcsStatusEthernetPortsSfpPortsEntryWavelength OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusEthernetPortsSfpPortsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.11.1.9 +lcsStatusEthernetPortsSfpPortsEntryDate OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusEthernetPortsSfpPortsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.11.1.10 +lcsStatusEthernetPortsSfpPortsEntryConnector OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eSc (2), + eLc (7), + eSg (10), + eRj45 (34) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusEthernetPortsSfpPortsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.11.1.11 +lcsStatusEthernetPortsSfpPortsEntryTemperature OBJECT-TYPE + SYNTAX Integer32 (-32768..32767) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusEthernetPortsSfpPortsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.11.1.12 +lcsStatusEthernetPortsSfpPortsEntrySupplyVoltage OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusEthernetPortsSfpPortsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.11.1.13 +lcsStatusEthernetPortsSfpPortsEntryTxBias OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusEthernetPortsSfpPortsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.11.1.14 +lcsStatusEthernetPortsSfpPortsEntryTxPower OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusEthernetPortsSfpPortsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.11.1.15 +lcsStatusEthernetPortsSfpPortsEntryRxPower OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusEthernetPortsSfpPortsEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.51.11.1.16 +lcsStatusEthernetPortsSfpPortsEntryMonitoring OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusEthernetPortsSfpPortsEntry 16 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.51.99 +lcsStatusEthernetPortsDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusEthernetPorts 99 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.52 +lcsStatusPppoeServer OBJECT IDENTIFIER ::= { lcsStatus 52 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.52.1 +lcsStatusPppoeServerRxPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppoeServer 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.52.2 +lcsStatusPppoeServerTxPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppoeServer 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.52.5 +lcsStatusPppoeServerDroppedPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppoeServer 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.52.6 +lcsStatusPppoeServerRxErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppoeServer 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.52.8 +lcsStatusPppoeServerSessionErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppoeServer 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.52.9 +lcsStatusPppoeServerConnectionsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusPppoeServerConnectionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppoeServer 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.52.9.1 +lcsStatusPppoeServerConnectionsEntry OBJECT-TYPE + SYNTAX LcsStatusPppoeServerConnectionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusPppoeServerConnectionsEntryChannel, + lcsStatusPppoeServerConnectionsEntryMacAddress + } + ::= { lcsStatusPppoeServerConnectionsTable 1 } + +LcsStatusPppoeServerConnectionsEntry ::= SEQUENCE { + lcsStatusPppoeServerConnectionsEntryChannel DisplayString, + lcsStatusPppoeServerConnectionsEntryMacAddress DisplayString, + lcsStatusPppoeServerConnectionsEntryState INTEGER, + lcsStatusPppoeServerConnectionsEntryLastError INTEGER, + lcsStatusPppoeServerConnectionsEntryShTime Integer32, + lcsStatusPppoeServerConnectionsEntryPeerAddress IpAddress, + lcsStatusPppoeServerConnectionsEntryConnTime Gauge32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.52.9.1.1 +lcsStatusPppoeServerConnectionsEntryChannel OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppoeServerConnectionsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.52.9.1.2 +lcsStatusPppoeServerConnectionsEntryMacAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppoeServerConnectionsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.52.9.1.3 +lcsStatusPppoeServerConnectionsEntryState OBJECT-TYPE + SYNTAX INTEGER { + eInit (0), + eSetupWan (1), + eReady (2), + eWaitForCb (3), + eDial (4), + eIncomingCall (5), + eProtocol (6), + eConnection (7), + eDisconnecting (8), + eCallBack (9), + eBundleConnect (10), + eProtocol2 (11), + eReserved (12), + eBundle (13) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppoeServerConnectionsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.52.9.1.4 +lcsStatusPppoeServerConnectionsEntryLastError OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eRemoteDoubled (267), + eIcmpConnError (275), + eDhcpTimeout (277), + ePptpNoResponse (278), + eVpnNoResponse (279), + eArpNoResponse (280), + ePptpNoChannel (513), + ePptpBadFormat (514), + ePptpBadValue (515), + ePptpNoRessource (516), + ePptpBadCallId (517), + ePptpGenError (518), + eRemoteDisconnected (17153), + eManualDisconnect (17154), + eShortholdExpired (17155), + ePhysicalDisconnected (17156), + eInvalidPhysicalChannel (17157), + eDynamicVpnReconnect (17158), + eConfigurationChanged (17159), + eRemovedFromConfig (17160), + eLcpRejected (32768), + eAuthError (32769), + eAuthRejected (32770), + eLcpConnError (32771), + ePapRejected (32784), + ePapRxTimeout (32785), + ePapTxTimeout (32786), + eWrongPapReq (32787), + ePapNakReceived (32788), + eUnknPapPeer (32789), + eChapRejected (32800), + eChapRxTimeout (32801), + eChapTxTimeout (32802), + eWrongChapResp (32803), + eChapFailRecvd (32804), + eUnknChapPeer (32805), + eIpxcpRejected (32816), + eWrongIpxcpNet (32817), + eIpxcpNetReject (32818), + eIpxcpRouteUnkn (32819), + eIpcpRejected (32832), + eCcpRejected (32848), + eNoNcpAvailable (33008) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppoeServerConnectionsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.52.9.1.5 +lcsStatusPppoeServerConnectionsEntryShTime OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppoeServerConnectionsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.52.9.1.6 +lcsStatusPppoeServerConnectionsEntryPeerAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppoeServerConnectionsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.52.9.1.7 +lcsStatusPppoeServerConnectionsEntryConnTime OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppoeServerConnectionsEntry 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.52.10 +lcsStatusPppoeServerNumConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppoeServer 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.52.11 +lcsStatusPppoeServerDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusPppoeServer 11 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.54 +lcsStatusUsb OBJECT IDENTIFIER ::= { lcsStatus 54 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.54.1 +lcsStatusUsbDevicesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusUsbDevicesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsb 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.54.1.1 +lcsStatusUsbDevicesEntry OBJECT-TYPE + SYNTAX LcsStatusUsbDevicesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusUsbDevicesEntryBus, + lcsStatusUsbDevicesEntryAddress + } + ::= { lcsStatusUsbDevicesTable 1 } + +LcsStatusUsbDevicesEntry ::= SEQUENCE { + lcsStatusUsbDevicesEntryBus DisplayString, + lcsStatusUsbDevicesEntryAddress Integer32, + lcsStatusUsbDevicesEntryVendor DisplayString, + lcsStatusUsbDevicesEntryVendorId Integer32, + lcsStatusUsbDevicesEntryProduct DisplayString, + lcsStatusUsbDevicesEntryProductId Integer32, + lcsStatusUsbDevicesEntryDepth Integer32, + lcsStatusUsbDevicesEntrySpeed Integer32, + lcsStatusUsbDevicesEntryInterfaces Integer32, + lcsStatusUsbDevicesEntryPower Integer32, + lcsStatusUsbDevicesEntryDriver DisplayString, + lcsStatusUsbDevicesEntryParent DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.54.1.1.1 +lcsStatusUsbDevicesEntryBus OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsbDevicesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.54.1.1.2 +lcsStatusUsbDevicesEntryAddress OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsbDevicesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.54.1.1.3 +lcsStatusUsbDevicesEntryVendor OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsbDevicesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.54.1.1.4 +lcsStatusUsbDevicesEntryVendorId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsbDevicesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.54.1.1.5 +lcsStatusUsbDevicesEntryProduct OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsbDevicesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.54.1.1.6 +lcsStatusUsbDevicesEntryProductId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsbDevicesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.54.1.1.8 +lcsStatusUsbDevicesEntryDepth OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsbDevicesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.54.1.1.9 +lcsStatusUsbDevicesEntrySpeed OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsbDevicesEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.54.1.1.10 +lcsStatusUsbDevicesEntryInterfaces OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsbDevicesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.54.1.1.11 +lcsStatusUsbDevicesEntryPower OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsbDevicesEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.54.1.1.12 +lcsStatusUsbDevicesEntryDriver OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsbDevicesEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.54.1.1.13 +lcsStatusUsbDevicesEntryParent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsbDevicesEntry 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.54.2 +lcsStatusUsbReinit OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsb 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.54.3 +lcsStatusUsbStatisticsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusUsbStatisticsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsb 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.54.3.1 +lcsStatusUsbStatisticsEntry OBJECT-TYPE + SYNTAX LcsStatusUsbStatisticsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusUsbStatisticsEntryBus + } + ::= { lcsStatusUsbStatisticsTable 1 } + +LcsStatusUsbStatisticsEntry ::= SEQUENCE { + lcsStatusUsbStatisticsEntryBus DisplayString, + lcsStatusUsbStatisticsEntryProduct DisplayString, + lcsStatusUsbStatisticsEntryTransactions Integer32, + lcsStatusUsbStatisticsEntryInRetransmissions Integer32, + lcsStatusUsbStatisticsEntryInBabbles Integer32, + lcsStatusUsbStatisticsEntryInBufferErrors Integer32, + lcsStatusUsbStatisticsEntryOutRetransmissions Integer32, + lcsStatusUsbStatisticsEntryOutBabbles Integer32, + lcsStatusUsbStatisticsEntryOutBufferErrors Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.54.3.1.1 +lcsStatusUsbStatisticsEntryBus OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsbStatisticsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.54.3.1.2 +lcsStatusUsbStatisticsEntryProduct OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsbStatisticsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.54.3.1.3 +lcsStatusUsbStatisticsEntryTransactions OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsbStatisticsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.54.3.1.10 +lcsStatusUsbStatisticsEntryInRetransmissions OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsbStatisticsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.54.3.1.11 +lcsStatusUsbStatisticsEntryInBabbles OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsbStatisticsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.54.3.1.12 +lcsStatusUsbStatisticsEntryInBufferErrors OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsbStatisticsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.54.3.1.20 +lcsStatusUsbStatisticsEntryOutRetransmissions OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsbStatisticsEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.54.3.1.21 +lcsStatusUsbStatisticsEntryOutBabbles OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsbStatisticsEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.54.3.1.22 +lcsStatusUsbStatisticsEntryOutBufferErrors OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsbStatisticsEntry 22 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.54.4 +lcsStatusUsbClearStatistics OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsb 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.54.5 +lcsStatusUsbQueryHubStatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUsb 5 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.56 +lcsStatusAccounting OBJECT IDENTIFIER ::= { lcsStatus 56 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.56.1 +lcsStatusAccountingCurrentUserTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusAccountingCurrentUserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccounting 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.56.1.1 +lcsStatusAccountingCurrentUserEntry OBJECT-TYPE + SYNTAX LcsStatusAccountingCurrentUserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusAccountingCurrentUserEntryUsername, + lcsStatusAccountingCurrentUserEntryMacAddress, + lcsStatusAccountingCurrentUserEntryPeer, + lcsStatusAccountingCurrentUserEntryConnType + } + ::= { lcsStatusAccountingCurrentUserTable 1 } + +LcsStatusAccountingCurrentUserEntry ::= SEQUENCE { + lcsStatusAccountingCurrentUserEntryUsername DisplayString, + lcsStatusAccountingCurrentUserEntryMacAddress DisplayString, + lcsStatusAccountingCurrentUserEntryPeer DisplayString, + lcsStatusAccountingCurrentUserEntryConnType INTEGER, + lcsStatusAccountingCurrentUserEntryRxKbytes Integer32, + lcsStatusAccountingCurrentUserEntryTxKbytes Integer32, + lcsStatusAccountingCurrentUserEntryTotalTime Gauge32, + lcsStatusAccountingCurrentUserEntryConnections Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.1.1.1 +lcsStatusAccountingCurrentUserEntryUsername OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..28)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingCurrentUserEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.1.1.2 +lcsStatusAccountingCurrentUserEntryMacAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingCurrentUserEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.1.1.3 +lcsStatusAccountingCurrentUserEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingCurrentUserEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.1.1.4 +lcsStatusAccountingCurrentUserEntryConnType OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eDialUp (1), + eLeasedLine (2), + eDslLine (4), + eVpnConn (7), + ePptpConn (8), + eL2tpConn (9), + eDsLiteConn (10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingCurrentUserEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.1.1.5 +lcsStatusAccountingCurrentUserEntryRxKbytes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingCurrentUserEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.1.1.6 +lcsStatusAccountingCurrentUserEntryTxKbytes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingCurrentUserEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.1.1.8 +lcsStatusAccountingCurrentUserEntryTotalTime OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingCurrentUserEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.1.1.9 +lcsStatusAccountingCurrentUserEntryConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingCurrentUserEntry 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.56.2 +lcsStatusAccountingAccountingListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusAccountingAccountingListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccounting 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.56.2.1 +lcsStatusAccountingAccountingListEntry OBJECT-TYPE + SYNTAX LcsStatusAccountingAccountingListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusAccountingAccountingListEntryUsername, + lcsStatusAccountingAccountingListEntryMacAddress, + lcsStatusAccountingAccountingListEntryPeer, + lcsStatusAccountingAccountingListEntryConnType + } + ::= { lcsStatusAccountingAccountingListTable 1 } + +LcsStatusAccountingAccountingListEntry ::= SEQUENCE { + lcsStatusAccountingAccountingListEntryUsername DisplayString, + lcsStatusAccountingAccountingListEntryMacAddress DisplayString, + lcsStatusAccountingAccountingListEntryPeer DisplayString, + lcsStatusAccountingAccountingListEntryConnType INTEGER, + lcsStatusAccountingAccountingListEntryRxKbytes Integer32, + lcsStatusAccountingAccountingListEntryTxKbytes Integer32, + lcsStatusAccountingAccountingListEntryTotalTime Gauge32, + lcsStatusAccountingAccountingListEntryConnections Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.2.1.1 +lcsStatusAccountingAccountingListEntryUsername OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..28)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingAccountingListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.2.1.2 +lcsStatusAccountingAccountingListEntryMacAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingAccountingListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.2.1.3 +lcsStatusAccountingAccountingListEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingAccountingListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.2.1.4 +lcsStatusAccountingAccountingListEntryConnType OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eDialUp (1), + eLeasedLine (2), + eDslLine (4), + eVpnConn (7), + ePptpConn (8), + eL2tpConn (9), + eDsLiteConn (10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingAccountingListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.2.1.5 +lcsStatusAccountingAccountingListEntryRxKbytes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingAccountingListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.2.1.6 +lcsStatusAccountingAccountingListEntryTxKbytes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingAccountingListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.2.1.8 +lcsStatusAccountingAccountingListEntryTotalTime OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingAccountingListEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.2.1.9 +lcsStatusAccountingAccountingListEntryConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingAccountingListEntry 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.56.3 +lcsStatusAccountingLastSnapshotTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusAccountingLastSnapshotEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccounting 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.56.3.1 +lcsStatusAccountingLastSnapshotEntry OBJECT-TYPE + SYNTAX LcsStatusAccountingLastSnapshotEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusAccountingLastSnapshotEntryUsername, + lcsStatusAccountingLastSnapshotEntryMacAddress, + lcsStatusAccountingLastSnapshotEntryPeer, + lcsStatusAccountingLastSnapshotEntryConnType + } + ::= { lcsStatusAccountingLastSnapshotTable 1 } + +LcsStatusAccountingLastSnapshotEntry ::= SEQUENCE { + lcsStatusAccountingLastSnapshotEntryUsername DisplayString, + lcsStatusAccountingLastSnapshotEntryMacAddress DisplayString, + lcsStatusAccountingLastSnapshotEntryPeer DisplayString, + lcsStatusAccountingLastSnapshotEntryConnType INTEGER, + lcsStatusAccountingLastSnapshotEntryRxKbytes Integer32, + lcsStatusAccountingLastSnapshotEntryTxKbytes Integer32, + lcsStatusAccountingLastSnapshotEntryTotalTime Gauge32, + lcsStatusAccountingLastSnapshotEntryConnections Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.3.1.1 +lcsStatusAccountingLastSnapshotEntryUsername OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..28)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingLastSnapshotEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.3.1.2 +lcsStatusAccountingLastSnapshotEntryMacAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingLastSnapshotEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.3.1.3 +lcsStatusAccountingLastSnapshotEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingLastSnapshotEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.3.1.4 +lcsStatusAccountingLastSnapshotEntryConnType OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eDialUp (1), + eLeasedLine (2), + eDslLine (4), + eVpnConn (7), + ePptpConn (8), + eL2tpConn (9), + eDsLiteConn (10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingLastSnapshotEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.3.1.5 +lcsStatusAccountingLastSnapshotEntryRxKbytes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingLastSnapshotEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.3.1.6 +lcsStatusAccountingLastSnapshotEntryTxKbytes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingLastSnapshotEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.3.1.8 +lcsStatusAccountingLastSnapshotEntryTotalTime OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingLastSnapshotEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.3.1.9 +lcsStatusAccountingLastSnapshotEntryConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingLastSnapshotEntry 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.56.4 +lcsStatusAccountingDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccounting 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.56.5 +lcsStatusAccountingTimeLastSnapshotTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusAccountingTimeLastSnapshotEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccounting 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.56.5.1 +lcsStatusAccountingTimeLastSnapshotEntry OBJECT-TYPE + SYNTAX LcsStatusAccountingTimeLastSnapshotEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusAccountingTimeLastSnapshotEntrySystemTime + } + ::= { lcsStatusAccountingTimeLastSnapshotTable 1 } + +LcsStatusAccountingTimeLastSnapshotEntry ::= SEQUENCE { + lcsStatusAccountingTimeLastSnapshotEntrySystemTime Counter32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.56.5.1.1 +lcsStatusAccountingTimeLastSnapshotEntrySystemTime OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusAccountingTimeLastSnapshotEntry 1 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.59 +lcsStatusWtpMngmt OBJECT IDENTIFIER ::= { lcsStatus 59 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.59.1 +lcsStatusWtpMngmtApConnectionsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWtpMngmtApConnectionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmt 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.59.1.1 +lcsStatusWtpMngmtApConnectionsEntry OBJECT-TYPE + SYNTAX LcsStatusWtpMngmtApConnectionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWtpMngmtApConnectionsEntryConnId + } + ::= { lcsStatusWtpMngmtApConnectionsTable 1 } + +LcsStatusWtpMngmtApConnectionsEntry ::= SEQUENCE { + lcsStatusWtpMngmtApConnectionsEntryConnId Integer32, + lcsStatusWtpMngmtApConnectionsEntryIpAddress IpAddress, + lcsStatusWtpMngmtApConnectionsEntryPort Integer32, + lcsStatusWtpMngmtApConnectionsEntryResptime Integer32, + lcsStatusWtpMngmtApConnectionsEntryName DisplayString, + lcsStatusWtpMngmtApConnectionsEntryState INTEGER, + lcsStatusWtpMngmtApConnectionsEntryResult INTEGER, + lcsStatusWtpMngmtApConnectionsEntryPriority INTEGER, + lcsStatusWtpMngmtApConnectionsEntryUtilisation DisplayString, + lcsStatusWtpMngmtApConnectionsEntryFirmwareVersion DisplayString, + lcsStatusWtpMngmtApConnectionsEntryPmtu Integer32, + lcsStatusWtpMngmtApConnectionsEntryDscpForControlPackets INTEGER, + lcsStatusWtpMngmtApConnectionsEntryDscpForDataPackets INTEGER, + lcsStatusWtpMngmtApConnectionsEntryPreference Integer32, + lcsStatusWtpMngmtApConnectionsEntryCpuLoad300sPercent DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.1.1.1 +lcsStatusWtpMngmtApConnectionsEntryConnId OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtApConnectionsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.1.1.2 +lcsStatusWtpMngmtApConnectionsEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtApConnectionsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.1.1.3 +lcsStatusWtpMngmtApConnectionsEntryPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtApConnectionsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.1.1.4 +lcsStatusWtpMngmtApConnectionsEntryResptime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtApConnectionsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.1.1.5 +lcsStatusWtpMngmtApConnectionsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtApConnectionsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.1.1.6 +lcsStatusWtpMngmtApConnectionsEntryState OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eIdle (5), + eDiscovery (10), + eDtlsSetup (15), + eJoin (20), + eConfigure (25), + eImageData (30), + eReset (35), + eDtlsTeardown (40), + eSulking (45), + eRun (100) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtApConnectionsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.1.1.7 +lcsStatusWtpMngmtApConnectionsEntryResult OBJECT-TYPE + SYNTAX INTEGER { + eSuccess (0), + eFailure (1), + eSuccessNat (2), + eJoinFailUnspecified (3), + eJoinFailResourceDepletion (4), + eJoinFailUnknwnSrc (5), + eJoinFailIncorrectData (6), + eJoinFailSessionIdInUse (7), + eJoinFailWtpNotSupported (8), + eJoinFailBindingNotSupp (9), + eResetFailUnableToReset (10), + eResetFailFirmwWriteErr (11), + eConfigurationErrorServProvAnyhow (12), + eConfigurationErrorServNotProv (13), + eImageDataErrorChecksum (14), + eImageDataErrorLength (15), + eImageDataErrorOther (16), + eImageDataErrorAlrPresent (17), + eMessageUnexpectedInvalid (18), + eMessageUnexpectedUnrecognized (19), + eFailMissingMandMsgElem (20), + eFailUnrecognizedMsgElem (21), + eUnsupportedLoaderVersion (300), + eUnsupportedFirmwareVersion (301), + eUnknown (302), + eJoinFailAlreadyConnected (303) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtApConnectionsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.1.1.8 +lcsStatusWtpMngmtApConnectionsEntryPriority OBJECT-TYPE + SYNTAX INTEGER { + eUnspec (0), + ePrimary (1), + eSecondary (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtApConnectionsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.1.1.9 +lcsStatusWtpMngmtApConnectionsEntryUtilisation OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..6)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtApConnectionsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.1.1.10 +lcsStatusWtpMngmtApConnectionsEntryFirmwareVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtApConnectionsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.1.1.11 +lcsStatusWtpMngmtApConnectionsEntryPmtu OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtApConnectionsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.1.1.12 +lcsStatusWtpMngmtApConnectionsEntryDscpForControlPackets OBJECT-TYPE + SYNTAX INTEGER { + eBestEffort (0), + eAssuredForwarding11 (40), + eAssuredForwarding12 (48), + eAssuredForwarding13 (56), + eAssuredForwarding21 (72), + eAssuredForwarding22 (80), + eAssuredForwarding23 (88), + eAssuredForwarding31 (104), + eAssuredForwarding32 (112), + eAssuredForwarding33 (120), + eAssuredForwarding41 (136), + eAssuredForwarding42 (144), + eAssuredForwarding43 (152), + eExpeditedForwarding (184) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtApConnectionsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.1.1.13 +lcsStatusWtpMngmtApConnectionsEntryDscpForDataPackets OBJECT-TYPE + SYNTAX INTEGER { + eBestEffort (0), + eAssuredForwarding11 (40), + eAssuredForwarding12 (48), + eAssuredForwarding13 (56), + eAssuredForwarding21 (72), + eAssuredForwarding22 (80), + eAssuredForwarding23 (88), + eAssuredForwarding31 (104), + eAssuredForwarding32 (112), + eAssuredForwarding33 (120), + eAssuredForwarding41 (136), + eAssuredForwarding42 (144), + eAssuredForwarding43 (152), + eExpeditedForwarding (184) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtApConnectionsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.1.1.14 +lcsStatusWtpMngmtApConnectionsEntryPreference OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtApConnectionsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.1.1.15 +lcsStatusWtpMngmtApConnectionsEntryCpuLoad300sPercent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..7)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtApConnectionsEntry 15 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.59.99 +lcsStatusWtpMngmtGlobalconfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWtpMngmtGlobalconfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmt 99 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.59.99.1 +lcsStatusWtpMngmtGlobalconfigEntry OBJECT-TYPE + SYNTAX LcsStatusWtpMngmtGlobalconfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWtpMngmtGlobalconfigEntryVersion + } + ::= { lcsStatusWtpMngmtGlobalconfigTable 1 } + +LcsStatusWtpMngmtGlobalconfigEntry ::= SEQUENCE { + lcsStatusWtpMngmtGlobalconfigEntryVersion Integer32, + lcsStatusWtpMngmtGlobalconfigEntryIpAddress IpAddress, + lcsStatusWtpMngmtGlobalconfigEntryNetMask IpAddress, + lcsStatusWtpMngmtGlobalconfigEntryGateway IpAddress, + lcsStatusWtpMngmtGlobalconfigEntryDns1 IpAddress, + lcsStatusWtpMngmtGlobalconfigEntryDns2 IpAddress, + lcsStatusWtpMngmtGlobalconfigEntryMgmtVlanid Integer32, + lcsStatusWtpMngmtGlobalconfigEntryMgmtVlantrunk Integer32, + lcsStatusWtpMngmtGlobalconfigEntryDnsSuffix DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.99.1.1 +lcsStatusWtpMngmtGlobalconfigEntryVersion OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtGlobalconfigEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.99.1.2 +lcsStatusWtpMngmtGlobalconfigEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtGlobalconfigEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.99.1.3 +lcsStatusWtpMngmtGlobalconfigEntryNetMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtGlobalconfigEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.99.1.4 +lcsStatusWtpMngmtGlobalconfigEntryGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtGlobalconfigEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.99.1.5 +lcsStatusWtpMngmtGlobalconfigEntryDns1 OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtGlobalconfigEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.99.1.6 +lcsStatusWtpMngmtGlobalconfigEntryDns2 OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtGlobalconfigEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.99.1.8 +lcsStatusWtpMngmtGlobalconfigEntryMgmtVlanid OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtGlobalconfigEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.99.1.9 +lcsStatusWtpMngmtGlobalconfigEntryMgmtVlantrunk OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtGlobalconfigEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.99.1.14 +lcsStatusWtpMngmtGlobalconfigEntryDnsSuffix OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtGlobalconfigEntry 14 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.59.100 +lcsStatusWtpMngmtLastWlcTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWtpMngmtLastWlcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmt 100 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.59.100.1 +lcsStatusWtpMngmtLastWlcEntry OBJECT-TYPE + SYNTAX LcsStatusWtpMngmtLastWlcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWtpMngmtLastWlcEntryIpAddress + } + ::= { lcsStatusWtpMngmtLastWlcTable 1 } + +LcsStatusWtpMngmtLastWlcEntry ::= SEQUENCE { + lcsStatusWtpMngmtLastWlcEntryIpAddress IpAddress, + lcsStatusWtpMngmtLastWlcEntryPort Integer32, + lcsStatusWtpMngmtLastWlcEntryName DisplayString, + lcsStatusWtpMngmtLastWlcEntryRoutetag Integer32, + lcsStatusWtpMngmtLastWlcEntryType Integer32, + lcsStatusWtpMngmtLastWlcEntryMgmtVlanId Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.100.1.1 +lcsStatusWtpMngmtLastWlcEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtLastWlcEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.100.1.2 +lcsStatusWtpMngmtLastWlcEntryPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtLastWlcEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.100.1.3 +lcsStatusWtpMngmtLastWlcEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtLastWlcEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.100.1.4 +lcsStatusWtpMngmtLastWlcEntryRoutetag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtLastWlcEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.100.1.5 +lcsStatusWtpMngmtLastWlcEntryType OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtLastWlcEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.100.1.6 +lcsStatusWtpMngmtLastWlcEntryMgmtVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtLastWlcEntry 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.59.101 +lcsStatusWtpMngmtRadioprofilsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWtpMngmtRadioprofilsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmt 101 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.59.101.1 +lcsStatusWtpMngmtRadioprofilsEntry OBJECT-TYPE + SYNTAX LcsStatusWtpMngmtRadioprofilsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWtpMngmtRadioprofilsEntryName + } + ::= { lcsStatusWtpMngmtRadioprofilsTable 1 } + +LcsStatusWtpMngmtRadioprofilsEntry ::= SEQUENCE { + lcsStatusWtpMngmtRadioprofilsEntryName DisplayString, + lcsStatusWtpMngmtRadioprofilsEntryCountry INTEGER, + lcsStatusWtpMngmtRadioprofilsEntry24ghzMode INTEGER, + lcsStatusWtpMngmtRadioprofilsEntry5ghzMode INTEGER, + lcsStatusWtpMngmtRadioprofilsEntrySubbands INTEGER, + lcsStatusWtpMngmtRadioprofilsEntryQos INTEGER, + lcsStatusWtpMngmtRadioprofilsEntryDtimPeriod Integer32, + lcsStatusWtpMngmtRadioprofilsEntryBackgroundScan Integer32, + lcsStatusWtpMngmtRadioprofilsEntryAntennaGain Integer32, + lcsStatusWtpMngmtRadioprofilsEntryTxPowerReduction Integer32, + lcsStatusWtpMngmtRadioprofilsEntryMgmtVLANId Integer32, + lcsStatusWtpMngmtRadioprofilsEntryMgmtVlanTrunk Integer32, + lcsStatusWtpMngmtRadioprofilsEntryIndoorOnlyOperation INTEGER, + lcsStatusWtpMngmtRadioprofilsEntryMgmtVLANIdnew Integer32, + lcsStatusWtpMngmtRadioprofilsEntryReportSeenClients INTEGER, + lcsStatusWtpMngmtRadioprofilsEntryClientSteering INTEGER, + lcsStatusWtpMngmtRadioprofilsEntryPreferredBand INTEGER, + lcsStatusWtpMngmtRadioprofilsEntryPrReqAgeO Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.101.1.1 +lcsStatusWtpMngmtRadioprofilsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioprofilsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.101.1.4 +lcsStatusWtpMngmtRadioprofilsEntryCountry OBJECT-TYPE + SYNTAX INTEGER { + eDefault (0), + eAlbania (8), + eAlgeria (12), + eArgentina (32), + eAustralia (36), + eAustria (40), + eBahrain (48), + eBangladesh (50), + eBelgium (56), + eBosniaHerzegovina (70), + eBrazil (76), + eBruneiDarussalam (96), + eBulgaria (100), + eBelarus (112), + eCanada (124), + eChile (152), + eChina (156), + eTaiwan (158), + eColombia (170), + eCostaRica (188), + eCroatia (191), + eCyprus (196), + eCzech (203), + eDenmark (208), + eEcuador (218), + eEstonia (233), + eFinland (246), + eFrance (250), + eGermany (276), + eGhana (288), + eGreece (300), + eGuatemala (320), + eHonduras (340), + eHongKong (344), + eHungary (348), + eIceland (352), + eIndia (356), + eIndonesia (360), + eIreland (372), + eIsrael (376), + eItaly (380), + eJapan (392), + eJordan (400), + eSouthKorea (410), + eKuwait (414), + eLebanon (422), + eLatvia (428), + eLiechtenstein (438), + eLithuania (440), + eLuxembourg (442), + eMacau (446), + eMalaysia (458), + eMalta (470), + eMexico (484), + eMoldavia (498), + eMorocco (504), + eOman (512), + eNetherlands (528), + eNewZealand (554), + eNicaragua (558), + eNorway (578), + ePakistan (586), + ePanama (591), + eParaguay (600), + ePeru (604), + ePhilippines (608), + ePoland (616), + ePortugal (620), + ePuertoRico (630), + eQatar (634), + eRomania (642), + eRussia (643), + eSaudiArabia (682), + eSingapore (702), + eSlovak (703), + eSlovenia (705), + eSouthAfrica (710), + eSpain (724), + eSweden (752), + eSwitzerland (756), + eThailand (764), + eUnitedArabEmirates (784), + eTunisia (788), + eTurkey (792), + eUganda (800), + eUkraine (804), + eMacedonia (807), + eEgypt (818), + eUnitedKingdom (826), + eTanzania (834), + eUnitedStatesFcc (840), + eUruguay (858), + eVenezuela (862), + eEurope (998), + eEgalistan (999) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioprofilsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.101.1.6 +lcsStatusWtpMngmtRadioprofilsEntry24ghzMode OBJECT-TYPE + SYNTAX INTEGER { + e11bgMixed (0), + e11gOnly (1), + e11bOnly (2), + e11bgnMixed (4), + e11gnMixed (5), + eGreenfield (6), + eAuto (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioprofilsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.101.1.7 +lcsStatusWtpMngmtRadioprofilsEntry5ghzMode OBJECT-TYPE + SYNTAX INTEGER { + eNormal (0), + e11anMixed (4), + eGreenfield (5), + eAuto (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioprofilsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.101.1.8 +lcsStatusWtpMngmtRadioprofilsEntrySubbands OBJECT-TYPE + SYNTAX INTEGER { + eBand1Plus2Plus3 (0), + eBand1 (1), + eBand2 (2), + eBand3 (3), + eBand1Plus2 (4), + eBand1Plus3 (5), + eBand2Plus3 (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioprofilsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.101.1.9 +lcsStatusWtpMngmtRadioprofilsEntryQos OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioprofilsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.101.1.10 +lcsStatusWtpMngmtRadioprofilsEntryDtimPeriod OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioprofilsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.101.1.11 +lcsStatusWtpMngmtRadioprofilsEntryBackgroundScan OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioprofilsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.101.1.12 +lcsStatusWtpMngmtRadioprofilsEntryAntennaGain OBJECT-TYPE + SYNTAX Integer32 (-128..127) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioprofilsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.101.1.13 +lcsStatusWtpMngmtRadioprofilsEntryTxPowerReduction OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioprofilsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.101.1.14 +lcsStatusWtpMngmtRadioprofilsEntryMgmtVLANId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioprofilsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.101.1.15 +lcsStatusWtpMngmtRadioprofilsEntryMgmtVlanTrunk OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioprofilsEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.101.1.16 +lcsStatusWtpMngmtRadioprofilsEntryIndoorOnlyOperation OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioprofilsEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.101.1.19 +lcsStatusWtpMngmtRadioprofilsEntryMgmtVLANIdnew OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioprofilsEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.101.1.20 +lcsStatusWtpMngmtRadioprofilsEntryReportSeenClients OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioprofilsEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.101.1.21 +lcsStatusWtpMngmtRadioprofilsEntryClientSteering OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eYes (1), + eOn (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtRadioprofilsEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.101.1.22 +lcsStatusWtpMngmtRadioprofilsEntryPreferredBand OBJECT-TYPE + SYNTAX INTEGER { + e24ghz (1), + e5ghz (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtRadioprofilsEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.101.1.23 +lcsStatusWtpMngmtRadioprofilsEntryPrReqAgeO OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioprofilsEntry 23 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.59.102 +lcsStatusWtpMngmtRadioModeTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWtpMngmtRadioModeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmt 102 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.59.102.1 +lcsStatusWtpMngmtRadioModeEntry OBJECT-TYPE + SYNTAX LcsStatusWtpMngmtRadioModeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWtpMngmtRadioModeEntryIndex + } + ::= { lcsStatusWtpMngmtRadioModeTable 1 } + +LcsStatusWtpMngmtRadioModeEntry ::= SEQUENCE { + lcsStatusWtpMngmtRadioModeEntryIndex Integer32, + lcsStatusWtpMngmtRadioModeEntryRadioMode INTEGER, + lcsStatusWtpMngmtRadioModeEntryOperating INTEGER, + lcsStatusWtpMngmtRadioModeEntryChannelList DisplayString, + lcsStatusWtpMngmtRadioModeEntryRadioChannel INTEGER, + lcsStatusWtpMngmtRadioModeEntryAllow40mhz INTEGER, + lcsStatusWtpMngmtRadioModeEntryAntennaMask INTEGER, + lcsStatusWtpMngmtRadioModeEntryAntennaGain Integer32, + lcsStatusWtpMngmtRadioModeEntryTxPowerReduction Integer32, + lcsStatusWtpMngmtRadioModeEntryMaxChannelBandwidth INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.102.1.1 +lcsStatusWtpMngmtRadioModeEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioModeEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.102.1.2 +lcsStatusWtpMngmtRadioModeEntryRadioMode OBJECT-TYPE + SYNTAX INTEGER { + eDefault (0), + e24ghz (1), + e5ghz (2), + eOff (3), + eAuto (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioModeEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.102.1.3 +lcsStatusWtpMngmtRadioModeEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioModeEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.102.1.4 +lcsStatusWtpMngmtRadioModeEntryChannelList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..48)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioModeEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.102.1.5 +lcsStatusWtpMngmtRadioModeEntryRadioChannel OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioModeEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.102.1.6 +lcsStatusWtpMngmtRadioModeEntryAllow40mhz OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eNo (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioModeEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.102.1.7 +lcsStatusWtpMngmtRadioModeEntryAntennaMask OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eAntenna1 (1), + eAntenna1Plus2 (3), + eAntenna1Plus3 (5), + eAntenna1Plus2Plus3 (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioModeEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.102.1.8 +lcsStatusWtpMngmtRadioModeEntryAntennaGain OBJECT-TYPE + SYNTAX Integer32 (-128..127) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioModeEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.102.1.9 +lcsStatusWtpMngmtRadioModeEntryTxPowerReduction OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtRadioModeEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.102.1.10 +lcsStatusWtpMngmtRadioModeEntryMaxChannelBandwidth OBJECT-TYPE + SYNTAX INTEGER { + e20mhz (0), + e40mhz (1), + eAuto (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtRadioModeEntry 10 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.59.103 +lcsStatusWtpMngmtNetwprofilsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWtpMngmtNetwprofilsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "network profiles" + ::= { lcsStatusWtpMngmt 103 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.59.103.1 +lcsStatusWtpMngmtNetwprofilsEntry OBJECT-TYPE + SYNTAX LcsStatusWtpMngmtNetwprofilsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWtpMngmtNetwprofilsEntryName + } + ::= { lcsStatusWtpMngmtNetwprofilsTable 1 } + +LcsStatusWtpMngmtNetwprofilsEntry ::= SEQUENCE { + lcsStatusWtpMngmtNetwprofilsEntryName DisplayString, + lcsStatusWtpMngmtNetwprofilsEntryOperating INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryVlanId Integer32, + lcsStatusWtpMngmtNetwprofilsEntryEncryption INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryWpa1SessionKeytypes INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryWpaVersion INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryKey DisplayString, + lcsStatusWtpMngmtNetwprofilsEntryRadioBand INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryContinuation Integer32, + lcsStatusWtpMngmtNetwprofilsEntryMinTxRate INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryMaxTxRate INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryBasicRate INTEGER, + lcsStatusWtpMngmtNetwprofilsEntry11bPreamble INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryMacFilter INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryClBrgSupport INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryMaxStations Integer32, + lcsStatusWtpMngmtNetwprofilsEntrySsidBroadcast INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryVlanTrunk Integer32, + lcsStatusWtpMngmtNetwprofilsEntrySsid DisplayString, + lcsStatusWtpMngmtNetwprofilsEntryMinHtMcs INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryMaxHtMcs INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryShortGuardInterval INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryMaxSpatialStreams INTEGER, + lcsStatusWtpMngmtNetwprofilsEntrySendAggregates INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryWpa2SessionKeytypes INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryRadiusAccounting INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryVlanMode INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryConnectSsidTo INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryInterStationTraffic INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryVlanIdnew Integer32, + lcsStatusWtpMngmtNetwprofilsEntryRadiusProfile DisplayString, + lcsStatusWtpMngmtNetwprofilsEntryStbcActivated INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryLdpcActivated INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryMinClientStrength Integer32, + lcsStatusWtpMngmtNetwprofilsEntryIeee80211uNetworkProfile DisplayString, + lcsStatusWtpMngmtNetwprofilsEntryOkc INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryWpa2KeyManagement BITS, + lcsStatusWtpMngmtNetwprofilsEntryApsd INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryProtMgmtFrames INTEGER, + lcsStatusWtpMngmtNetwprofilsEntryTxLimit Integer32, + lcsStatusWtpMngmtNetwprofilsEntryRxLimit Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.1 +lcsStatusWtpMngmtNetwprofilsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.4 +lcsStatusWtpMngmtNetwprofilsEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.5 +lcsStatusWtpMngmtNetwprofilsEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.6 +lcsStatusWtpMngmtNetwprofilsEntryEncryption OBJECT-TYPE + SYNTAX INTEGER { + e80211iWpaPsk (0), + e80211iWpa8021x (1), + eWep104Bits (2), + eWep40Bits (3), + eWep104Bits8021x (4), + eWep40Bits8021x (5), + eNone (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.7 +lcsStatusWtpMngmtNetwprofilsEntryWpa1SessionKeytypes OBJECT-TYPE + SYNTAX INTEGER { + eTkipAes (0), + eAes (1), + eTkip (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.8 +lcsStatusWtpMngmtNetwprofilsEntryWpaVersion OBJECT-TYPE + SYNTAX INTEGER { + eWpa12 (0), + eWpa1 (1), + eWpa2 (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.9 +lcsStatusWtpMngmtNetwprofilsEntryKey OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.10 +lcsStatusWtpMngmtNetwprofilsEntryRadioBand OBJECT-TYPE + SYNTAX INTEGER { + e24ghz5ghz (0), + e24ghz (1), + e5ghz (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.11 +lcsStatusWtpMngmtNetwprofilsEntryContinuation OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.12 +lcsStatusWtpMngmtNetwprofilsEntryMinTxRate OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + e1M (1), + e2M (2), + e5M5 (3), + e11M (4), + e6M (5), + e9M (6), + e12M (7), + e18M (8), + e24M (9), + e36M (10), + e48M (11), + e54M (12), + eT72M (13), + eT96M (14), + eT108M (15) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.13 +lcsStatusWtpMngmtNetwprofilsEntryMaxTxRate OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + e1M (1), + e2M (2), + e5M5 (3), + e11M (4), + e6M (5), + e9M (6), + e12M (7), + e18M (8), + e24M (9), + e36M (10), + e48M (11), + e54M (12), + eT72M (13), + eT96M (14), + eT108M (15) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.14 +lcsStatusWtpMngmtNetwprofilsEntryBasicRate OBJECT-TYPE + SYNTAX INTEGER { + e2M (0), + e1M (1), + e5M5 (3), + e11M (4), + e6M (5), + e9M (6), + e12M (7), + e18M (8), + e24M (9), + e36M (10), + e48M (11), + e54M (12), + eT72M (13), + eT96M (14), + eT108M (15) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.15 +lcsStatusWtpMngmtNetwprofilsEntry11bPreamble OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eLong (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.16 +lcsStatusWtpMngmtNetwprofilsEntryMacFilter OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.17 +lcsStatusWtpMngmtNetwprofilsEntryClBrgSupport OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eExclusive (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.18 +lcsStatusWtpMngmtNetwprofilsEntryMaxStations OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.19 +lcsStatusWtpMngmtNetwprofilsEntrySsidBroadcast OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1), + eTightened (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.20 +lcsStatusWtpMngmtNetwprofilsEntryVlanTrunk OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.21 +lcsStatusWtpMngmtNetwprofilsEntrySsid OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.22 +lcsStatusWtpMngmtNetwprofilsEntryMinHtMcs OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eMcs08 (1), + eMcs19 (2), + eMcs210 (3), + eMcs311 (4), + eMcs412 (5), + eMcs513 (6), + eMcs614 (7), + eMcs715 (8) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.23 +lcsStatusWtpMngmtNetwprofilsEntryMaxHtMcs OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eMcs08 (1), + eMcs19 (2), + eMcs210 (3), + eMcs311 (4), + eMcs412 (5), + eMcs513 (6), + eMcs614 (7), + eMcs715 (8) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.24 +lcsStatusWtpMngmtNetwprofilsEntryShortGuardInterval OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eNo (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 24 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.25 +lcsStatusWtpMngmtNetwprofilsEntryMaxSpatialStreams OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eOne (1), + eTwo (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 25 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.26 +lcsStatusWtpMngmtNetwprofilsEntrySendAggregates OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 26 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.27 +lcsStatusWtpMngmtNetwprofilsEntryWpa2SessionKeytypes OBJECT-TYPE + SYNTAX INTEGER { + eTkipAes (0), + eAes (1), + eTkip (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 27 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.28 +lcsStatusWtpMngmtNetwprofilsEntryRadiusAccounting OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 28 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.30 +lcsStatusWtpMngmtNetwprofilsEntryVlanMode OBJECT-TYPE + SYNTAX INTEGER { + eUntagged (0), + eTagged (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 30 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.32 +lcsStatusWtpMngmtNetwprofilsEntryConnectSsidTo OBJECT-TYPE + SYNTAX INTEGER { + eLan (0), + eWlcTunnel1 (1), + eWlcTunnel2 (2), + eWlcTunnel3 (3), + eWlcTunnel4 (4), + eWlcTunnel5 (5), + eWlcTunnel6 (6), + eWlcTunnel7 (7), + eWlcTunnel8 (8), + eWlcTunnel9 (9), + eWlcTunnel10 (10), + eWlcTunnel11 (11), + eWlcTunnel12 (12), + eWlcTunnel13 (13), + eWlcTunnel14 (14), + eWlcTunnel15 (15), + eWlcTunnel16 (16), + eWlcTunnel17 (17), + eWlcTunnel18 (18), + eWlcTunnel19 (19), + eWlcTunnel20 (20), + eWlcTunnel21 (21), + eWlcTunnel22 (22), + eWlcTunnel23 (23), + eWlcTunnel24 (24), + eWlcTunnel25 (25), + eWlcTunnel26 (26), + eWlcTunnel27 (27), + eWlcTunnel28 (28), + eWlcTunnel29 (29), + eWlcTunnel30 (30), + eWlcTunnel31 (31), + eWlcTunnel32 (32), + eWlcTunnelAutowds (33) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 32 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.33 +lcsStatusWtpMngmtNetwprofilsEntryInterStationTraffic OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 33 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.34 +lcsStatusWtpMngmtNetwprofilsEntryVlanIdnew OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 34 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.35 +lcsStatusWtpMngmtNetwprofilsEntryRadiusProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 35 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.36 +lcsStatusWtpMngmtNetwprofilsEntryStbcActivated OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 36 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.37 +lcsStatusWtpMngmtNetwprofilsEntryLdpcActivated OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 37 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.38 +lcsStatusWtpMngmtNetwprofilsEntryMinClientStrength OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 38 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.39 +lcsStatusWtpMngmtNetwprofilsEntryIeee80211uNetworkProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 39 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.40 +lcsStatusWtpMngmtNetwprofilsEntryOkc OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 40 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.41 +lcsStatusWtpMngmtNetwprofilsEntryWpa2KeyManagement OBJECT-TYPE + SYNTAX BITS { + eSha256 (5), + eFastRoaming (6), + eStandard (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 41 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.42 +lcsStatusWtpMngmtNetwprofilsEntryApsd OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 42 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.43 +lcsStatusWtpMngmtNetwprofilsEntryProtMgmtFrames OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eOptional (1), + eMandatory (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 43 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.44 +lcsStatusWtpMngmtNetwprofilsEntryTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 44 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.103.1.45 +lcsStatusWtpMngmtNetwprofilsEntryRxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtNetwprofilsEntry 45 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.59.104 +lcsStatusWtpMngmtApBridgeInterfacesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWtpMngmtApBridgeInterfacesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmt 104 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.59.104.1 +lcsStatusWtpMngmtApBridgeInterfacesEntry OBJECT-TYPE + SYNTAX LcsStatusWtpMngmtApBridgeInterfacesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWtpMngmtApBridgeInterfacesEntryBridgeInterface + } + ::= { lcsStatusWtpMngmtApBridgeInterfacesTable 1 } + +LcsStatusWtpMngmtApBridgeInterfacesEntry ::= SEQUENCE { + lcsStatusWtpMngmtApBridgeInterfacesEntryBridgeInterface INTEGER, + lcsStatusWtpMngmtApBridgeInterfacesEntryRegisteredConnections Integer32, + lcsStatusWtpMngmtApBridgeInterfacesEntryRecvUnicasts Integer32, + lcsStatusWtpMngmtApBridgeInterfacesEntryRecvMulticasts Integer32, + lcsStatusWtpMngmtApBridgeInterfacesEntryRecvBroadcasts Integer32, + lcsStatusWtpMngmtApBridgeInterfacesEntryTransUnicastPackets Integer32, + lcsStatusWtpMngmtApBridgeInterfacesEntryTransMultiBroadPckts Integer32, + lcsStatusWtpMngmtApBridgeInterfacesEntryDroppedPackets Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.104.1.1 +lcsStatusWtpMngmtApBridgeInterfacesEntryBridgeInterface OBJECT-TYPE + SYNTAX INTEGER { + eLan (0), + eWlcTunnel1 (1), + eWlcTunnel2 (2), + eWlcTunnel3 (3), + eWlcTunnel4 (4), + eWlcTunnel5 (5), + eWlcTunnel6 (6), + eWlcTunnel7 (7), + eWlcTunnel8 (8), + eWlcTunnel9 (9), + eWlcTunnel10 (10), + eWlcTunnel11 (11), + eWlcTunnel12 (12), + eWlcTunnel13 (13), + eWlcTunnel14 (14), + eWlcTunnel15 (15), + eWlcTunnel16 (16), + eWlcTunnel17 (17), + eWlcTunnel18 (18), + eWlcTunnel19 (19), + eWlcTunnel20 (20), + eWlcTunnel21 (21), + eWlcTunnel22 (22), + eWlcTunnel23 (23), + eWlcTunnel24 (24), + eWlcTunnel25 (25), + eWlcTunnel26 (26), + eWlcTunnel27 (27), + eWlcTunnel28 (28), + eWlcTunnel29 (29), + eWlcTunnel30 (30), + eWlcTunnel31 (31), + eWlcTunnel32 (32), + eWlcTunnelAutowds (33) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtApBridgeInterfacesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.104.1.2 +lcsStatusWtpMngmtApBridgeInterfacesEntryRegisteredConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtApBridgeInterfacesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.104.1.3 +lcsStatusWtpMngmtApBridgeInterfacesEntryRecvUnicasts OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtApBridgeInterfacesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.104.1.4 +lcsStatusWtpMngmtApBridgeInterfacesEntryRecvMulticasts OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtApBridgeInterfacesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.104.1.5 +lcsStatusWtpMngmtApBridgeInterfacesEntryRecvBroadcasts OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtApBridgeInterfacesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.104.1.6 +lcsStatusWtpMngmtApBridgeInterfacesEntryTransUnicastPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtApBridgeInterfacesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.104.1.7 +lcsStatusWtpMngmtApBridgeInterfacesEntryTransMultiBroadPckts OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtApBridgeInterfacesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.104.1.8 +lcsStatusWtpMngmtApBridgeInterfacesEntryDroppedPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtApBridgeInterfacesEntry 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.59.105 +lcsStatusWtpMngmtRadiusServerProfilesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWtpMngmtRadiusServerProfilesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt 105 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.59.105.1 +lcsStatusWtpMngmtRadiusServerProfilesEntry OBJECT-TYPE + SYNTAX LcsStatusWtpMngmtRadiusServerProfilesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWtpMngmtRadiusServerProfilesEntryName + } + ::= { lcsStatusWtpMngmtRadiusServerProfilesTable 1 } + +LcsStatusWtpMngmtRadiusServerProfilesEntry ::= SEQUENCE { + lcsStatusWtpMngmtRadiusServerProfilesEntryName DisplayString, + lcsStatusWtpMngmtRadiusServerProfilesEntryAccountIp IpAddress, + lcsStatusWtpMngmtRadiusServerProfilesEntryAccountPort Integer32, + lcsStatusWtpMngmtRadiusServerProfilesEntryAccountSecret DisplayString, + lcsStatusWtpMngmtRadiusServerProfilesEntryAccountLoopback DisplayString, + lcsStatusWtpMngmtRadiusServerProfilesEntryAccountProtocol INTEGER, + lcsStatusWtpMngmtRadiusServerProfilesEntryAccessIp IpAddress, + lcsStatusWtpMngmtRadiusServerProfilesEntryAccessPort Integer32, + lcsStatusWtpMngmtRadiusServerProfilesEntryAccessSecret DisplayString, + lcsStatusWtpMngmtRadiusServerProfilesEntryAccessLoopback DisplayString, + lcsStatusWtpMngmtRadiusServerProfilesEntryAccessProtocol INTEGER, + lcsStatusWtpMngmtRadiusServerProfilesEntryBackup DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.105.1.1 +lcsStatusWtpMngmtRadiusServerProfilesEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtRadiusServerProfilesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.105.1.2 +lcsStatusWtpMngmtRadiusServerProfilesEntryAccountIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtRadiusServerProfilesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.105.1.3 +lcsStatusWtpMngmtRadiusServerProfilesEntryAccountPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtRadiusServerProfilesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.105.1.4 +lcsStatusWtpMngmtRadiusServerProfilesEntryAccountSecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtRadiusServerProfilesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.105.1.5 +lcsStatusWtpMngmtRadiusServerProfilesEntryAccountLoopback OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtRadiusServerProfilesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.105.1.6 +lcsStatusWtpMngmtRadiusServerProfilesEntryAccountProtocol OBJECT-TYPE + SYNTAX INTEGER { + eRadius (0), + eRadsec (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtRadiusServerProfilesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.105.1.7 +lcsStatusWtpMngmtRadiusServerProfilesEntryAccessIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtRadiusServerProfilesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.105.1.8 +lcsStatusWtpMngmtRadiusServerProfilesEntryAccessPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtRadiusServerProfilesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.105.1.9 +lcsStatusWtpMngmtRadiusServerProfilesEntryAccessSecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtRadiusServerProfilesEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.105.1.10 +lcsStatusWtpMngmtRadiusServerProfilesEntryAccessLoopback OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtRadiusServerProfilesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.105.1.11 +lcsStatusWtpMngmtRadiusServerProfilesEntryAccessProtocol OBJECT-TYPE + SYNTAX INTEGER { + eRadius (0), + eRadsec (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtRadiusServerProfilesEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.105.1.12 +lcsStatusWtpMngmtRadiusServerProfilesEntryBackup OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtRadiusServerProfilesEntry 12 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.59.106 +lcsStatusWtpMngmtAutowdsProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWtpMngmtAutowdsProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt 106 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.59.106.1 +lcsStatusWtpMngmtAutowdsProfileEntry OBJECT-TYPE + SYNTAX LcsStatusWtpMngmtAutowdsProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWtpMngmtAutowdsProfileEntryName + } + ::= { lcsStatusWtpMngmtAutowdsProfileTable 1 } + +LcsStatusWtpMngmtAutowdsProfileEntry ::= SEQUENCE { + lcsStatusWtpMngmtAutowdsProfileEntryName DisplayString, + lcsStatusWtpMngmtAutowdsProfileEntrySsid DisplayString, + lcsStatusWtpMngmtAutowdsProfileEntryKey DisplayString, + lcsStatusWtpMngmtAutowdsProfileEntryEnabled INTEGER, + lcsStatusWtpMngmtAutowdsProfileEntryAllowExprInt INTEGER, + lcsStatusWtpMngmtAutowdsProfileEntryTimeTillPreconfScan Integer32, + lcsStatusWtpMngmtAutowdsProfileEntryTimeTillExpressScan Integer32, + lcsStatusWtpMngmtAutowdsProfileEntryInterfacePairing INTEGER, + lcsStatusWtpMngmtAutowdsProfileEntrySlaveRadioMultiHop INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.106.1.1 +lcsStatusWtpMngmtAutowdsProfileEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsProfileEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.106.1.3 +lcsStatusWtpMngmtAutowdsProfileEntrySsid OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsProfileEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.106.1.4 +lcsStatusWtpMngmtAutowdsProfileEntryKey OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsProfileEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.106.1.6 +lcsStatusWtpMngmtAutowdsProfileEntryEnabled OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsProfileEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.106.1.7 +lcsStatusWtpMngmtAutowdsProfileEntryAllowExprInt OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Allow-Express-Integration" + ::= { lcsStatusWtpMngmtAutowdsProfileEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.106.1.15 +lcsStatusWtpMngmtAutowdsProfileEntryTimeTillPreconfScan OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsProfileEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.106.1.16 +lcsStatusWtpMngmtAutowdsProfileEntryTimeTillExpressScan OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsProfileEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.106.1.17 +lcsStatusWtpMngmtAutowdsProfileEntryInterfacePairing OBJECT-TYPE + SYNTAX INTEGER { + eAutomatic (0), + eStrict (1), + eMixed (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsProfileEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.106.1.18 +lcsStatusWtpMngmtAutowdsProfileEntrySlaveRadioMultiHop OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eSingleRadioApOnly (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsProfileEntry 18 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.59.107 +lcsStatusWtpMngmtAutowdsTopologyTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWtpMngmtAutowdsTopologyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt 107 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.59.107.1 +lcsStatusWtpMngmtAutowdsTopologyEntry OBJECT-TYPE + SYNTAX LcsStatusWtpMngmtAutowdsTopologyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWtpMngmtAutowdsTopologyEntryAutowdsProfile, + lcsStatusWtpMngmtAutowdsTopologyEntryPriority, + lcsStatusWtpMngmtAutowdsTopologyEntrySlaveApName, + lcsStatusWtpMngmtAutowdsTopologyEntrySlaveApWlanIfc, + lcsStatusWtpMngmtAutowdsTopologyEntrySlaveApWlanMac + } + ::= { lcsStatusWtpMngmtAutowdsTopologyTable 1 } + +LcsStatusWtpMngmtAutowdsTopologyEntry ::= SEQUENCE { + lcsStatusWtpMngmtAutowdsTopologyEntryAutowdsProfile DisplayString, + lcsStatusWtpMngmtAutowdsTopologyEntryPriority Integer32, + lcsStatusWtpMngmtAutowdsTopologyEntrySlaveApName DisplayString, + lcsStatusWtpMngmtAutowdsTopologyEntrySlaveApWlanIfc INTEGER, + lcsStatusWtpMngmtAutowdsTopologyEntrySlaveApWlanMac DisplayString, + lcsStatusWtpMngmtAutowdsTopologyEntryMasterApName DisplayString, + lcsStatusWtpMngmtAutowdsTopologyEntryMasterApWlanIfc INTEGER, + lcsStatusWtpMngmtAutowdsTopologyEntryMasterApWlanMac DisplayString, + lcsStatusWtpMngmtAutowdsTopologyEntryKey DisplayString, + lcsStatusWtpMngmtAutowdsTopologyEntryEnabled INTEGER, + lcsStatusWtpMngmtAutowdsTopologyEntrySlaveTxLimit Integer32, + lcsStatusWtpMngmtAutowdsTopologyEntryMasterTxLimit Integer32, + lcsStatusWtpMngmtAutowdsTopologyEntryLinkLossTimeout Integer32, + lcsStatusWtpMngmtAutowdsTopologyEntryContinuation Integer32, + lcsStatusWtpMngmtAutowdsTopologyEntryGenerated INTEGER, + lcsStatusWtpMngmtAutowdsTopologyEntryP2pIndex Integer32, + lcsStatusWtpMngmtAutowdsTopologyEntryP2pRole INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.107.1.1 +lcsStatusWtpMngmtAutowdsTopologyEntryAutowdsProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsTopologyEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.107.1.2 +lcsStatusWtpMngmtAutowdsTopologyEntryPriority OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsTopologyEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.107.1.3 +lcsStatusWtpMngmtAutowdsTopologyEntrySlaveApName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsTopologyEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.107.1.4 +lcsStatusWtpMngmtAutowdsTopologyEntrySlaveApWlanIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsTopologyEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.107.1.5 +lcsStatusWtpMngmtAutowdsTopologyEntrySlaveApWlanMac OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsTopologyEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.107.1.6 +lcsStatusWtpMngmtAutowdsTopologyEntryMasterApName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsTopologyEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.107.1.7 +lcsStatusWtpMngmtAutowdsTopologyEntryMasterApWlanIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsTopologyEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.107.1.8 +lcsStatusWtpMngmtAutowdsTopologyEntryMasterApWlanMac OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsTopologyEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.107.1.9 +lcsStatusWtpMngmtAutowdsTopologyEntryKey OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsTopologyEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.107.1.10 +lcsStatusWtpMngmtAutowdsTopologyEntryEnabled OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsTopologyEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.107.1.12 +lcsStatusWtpMngmtAutowdsTopologyEntrySlaveTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsTopologyEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.107.1.13 +lcsStatusWtpMngmtAutowdsTopologyEntryMasterTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsTopologyEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.107.1.14 +lcsStatusWtpMngmtAutowdsTopologyEntryLinkLossTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsTopologyEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.107.1.16 +lcsStatusWtpMngmtAutowdsTopologyEntryContinuation OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtAutowdsTopologyEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.107.1.17 +lcsStatusWtpMngmtAutowdsTopologyEntryGenerated OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsTopologyEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.107.1.19 +lcsStatusWtpMngmtAutowdsTopologyEntryP2pIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsTopologyEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.107.1.20 +lcsStatusWtpMngmtAutowdsTopologyEntryP2pRole OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eSlave (1), + eMaster (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsTopologyEntry 20 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.59.108 +lcsStatusWtpMngmt11u OBJECT IDENTIFIER ::= { lcsStatusWtpMngmt 108 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.59.108.1 +lcsStatusWtpMngmt11u11u-NwTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWtpMngmt11u11u-NwEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IEEE802.11u-Networks" + ::= { lcsStatusWtpMngmt11u 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.59.108.1.1 +lcsStatusWtpMngmt11u11u-NwEntry OBJECT-TYPE + SYNTAX LcsStatusWtpMngmt11u11u-NwEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWtpMngmt11u11u-NwEntryName + } + ::= { lcsStatusWtpMngmt11u11u-NwTable 1 } + +LcsStatusWtpMngmt11u11u-NwEntry ::= SEQUENCE { + lcsStatusWtpMngmt11u11u-NwEntryName DisplayString, + lcsStatusWtpMngmt11u11u-NwEntryOper INTEGER, + lcsStatusWtpMngmt11u11u-NwEntryHs20 INTEGER, + lcsStatusWtpMngmt11u11u-NwEntryInet INTEGER, + lcsStatusWtpMngmt11u11u-NwEntryNwType INTEGER, + lcsStatusWtpMngmt11u11u-NwEntryAsra INTEGER, + lcsStatusWtpMngmt11u11u-NwEntryHESSIDT INTEGER, + lcsStatusWtpMngmt11u11u-NwEntryHESSIDM MacAddress, + lcsStatusWtpMngmt11u11u-NwEntryANQP-Prof DisplayString, + lcsStatusWtpMngmt11u11u-NwEntryHs20-Prof DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.1.1.1 +lcsStatusWtpMngmt11u11u-NwEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11u11u-NwEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.1.1.2 +lcsStatusWtpMngmt11u11u-NwEntryOper OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Operating" + ::= { lcsStatusWtpMngmt11u11u-NwEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.1.1.3 +lcsStatusWtpMngmt11u11u-NwEntryHs20 OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Hotspot2.0" + ::= { lcsStatusWtpMngmt11u11u-NwEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.1.1.4 +lcsStatusWtpMngmt11u11u-NwEntryInet OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Internet" + ::= { lcsStatusWtpMngmt11u11u-NwEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.1.1.5 +lcsStatusWtpMngmt11u11u-NwEntryNwType OBJECT-TYPE + SYNTAX INTEGER { + ePrivate (0), + ePrivateGuestacc (1), + ePublicCharge (2), + ePublicFree (3), + ePersonalDev (4), + eEmergency (5), + eExperimental (14), + eWildcard (15) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Network-Type" + ::= { lcsStatusWtpMngmt11u11u-NwEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.1.1.6 +lcsStatusWtpMngmt11u11u-NwEntryAsra OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Asra" + ::= { lcsStatusWtpMngmt11u11u-NwEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.1.1.7 +lcsStatusWtpMngmt11u11u-NwEntryHESSIDT OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eUser (1), + eNone (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "HESSID-Type" + ::= { lcsStatusWtpMngmt11u11u-NwEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.1.1.8 +lcsStatusWtpMngmt11u11u-NwEntryHESSIDM OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "HESSID-MAC" + ::= { lcsStatusWtpMngmt11u11u-NwEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.1.1.10 +lcsStatusWtpMngmt11u11u-NwEntryANQP-Prof OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ANQP-Profile" + ::= { lcsStatusWtpMngmt11u11u-NwEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.1.1.12 +lcsStatusWtpMngmt11u11u-NwEntryHs20-Prof OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "HS20-Profile" + ::= { lcsStatusWtpMngmt11u11u-NwEntry 12 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.59.108.2 +lcsStatusWtpMngmt11uANQP-ProfsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWtpMngmt11uANQP-ProfsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ANQP-Profiles" + ::= { lcsStatusWtpMngmt11u 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.59.108.2.1 +lcsStatusWtpMngmt11uANQP-ProfsEntry OBJECT-TYPE + SYNTAX LcsStatusWtpMngmt11uANQP-ProfsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWtpMngmt11uANQP-ProfsEntryName + } + ::= { lcsStatusWtpMngmt11uANQP-ProfsTable 1 } + +LcsStatusWtpMngmt11uANQP-ProfsEntry ::= SEQUENCE { + lcsStatusWtpMngmt11uANQP-ProfsEntryName DisplayString, + lcsStatusWtpMngmt11uANQP-ProfsEntryIncOUI DisplayString, + lcsStatusWtpMngmt11uANQP-ProfsEntryAddOUI DisplayString, + lcsStatusWtpMngmt11uANQP-ProfsEntryDomainList DisplayString, + lcsStatusWtpMngmt11uANQP-ProfsEntryNaiRealmList DisplayString, + lcsStatusWtpMngmt11uANQP-ProfsEntryCellularList DisplayString, + lcsStatusWtpMngmt11uANQP-ProfsEntryNetList DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.2.1.1 +lcsStatusWtpMngmt11uANQP-ProfsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uANQP-ProfsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.2.1.2 +lcsStatusWtpMngmt11uANQP-ProfsEntryIncOUI OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Include-in-Beacon-OUI" + ::= { lcsStatusWtpMngmt11uANQP-ProfsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.2.1.3 +lcsStatusWtpMngmt11uANQP-ProfsEntryAddOUI OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Additional-OUI" + ::= { lcsStatusWtpMngmt11uANQP-ProfsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.2.1.4 +lcsStatusWtpMngmt11uANQP-ProfsEntryDomainList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uANQP-ProfsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.2.1.5 +lcsStatusWtpMngmt11uANQP-ProfsEntryNaiRealmList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uANQP-ProfsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.2.1.6 +lcsStatusWtpMngmt11uANQP-ProfsEntryCellularList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uANQP-ProfsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.2.1.7 +lcsStatusWtpMngmt11uANQP-ProfsEntryNetList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Network-Auth-Type-List" + ::= { lcsStatusWtpMngmt11uANQP-ProfsEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.59.108.3 +lcsStatusWtpMngmt11uHs20-ProfsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWtpMngmt11uHs20-ProfsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Hotspot2.0-Profiles" + ::= { lcsStatusWtpMngmt11u 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.59.108.3.1 +lcsStatusWtpMngmt11uHs20-ProfsEntry OBJECT-TYPE + SYNTAX LcsStatusWtpMngmt11uHs20-ProfsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWtpMngmt11uHs20-ProfsEntryName + } + ::= { lcsStatusWtpMngmt11uHs20-ProfsTable 1 } + +LcsStatusWtpMngmt11uHs20-ProfsEntry ::= SEQUENCE { + lcsStatusWtpMngmt11uHs20-ProfsEntryName DisplayString, + lcsStatusWtpMngmt11uHs20-ProfsEntryOperatorName DisplayString, + lcsStatusWtpMngmt11uHs20-ProfsEntryConnCaps DisplayString, + lcsStatusWtpMngmt11uHs20-ProfsEntryOpClass DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.3.1.1 +lcsStatusWtpMngmt11uHs20-ProfsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uHs20-ProfsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.3.1.2 +lcsStatusWtpMngmt11uHs20-ProfsEntryOperatorName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uHs20-ProfsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.3.1.3 +lcsStatusWtpMngmt11uHs20-ProfsEntryConnCaps OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..250)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Connection-Capabilities" + ::= { lcsStatusWtpMngmt11uHs20-ProfsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.3.1.4 +lcsStatusWtpMngmt11uHs20-ProfsEntryOpClass OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Operating-Class" + ::= { lcsStatusWtpMngmt11uHs20-ProfsEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.59.108.4 +lcsStatusWtpMngmt11uNetAuthTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWtpMngmt11uNetAuthEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Network-Authentication-Type" + ::= { lcsStatusWtpMngmt11u 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.59.108.4.1 +lcsStatusWtpMngmt11uNetAuthEntry OBJECT-TYPE + SYNTAX LcsStatusWtpMngmt11uNetAuthEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWtpMngmt11uNetAuthEntryName + } + ::= { lcsStatusWtpMngmt11uNetAuthTable 1 } + +LcsStatusWtpMngmt11uNetAuthEntry ::= SEQUENCE { + lcsStatusWtpMngmt11uNetAuthEntryName DisplayString, + lcsStatusWtpMngmt11uNetAuthEntryNetType INTEGER, + lcsStatusWtpMngmt11uNetAuthEntryReUrl DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.4.1.1 +lcsStatusWtpMngmt11uNetAuthEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uNetAuthEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.4.1.2 +lcsStatusWtpMngmt11uNetAuthEntryNetType OBJECT-TYPE + SYNTAX INTEGER { + eAcceptTermsCond (0), + eOnlineEnrollment (1), + eHttpRedirection (2), + eDnsRedirection (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Network-Auth-Type" + ::= { lcsStatusWtpMngmt11uNetAuthEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.4.1.3 +lcsStatusWtpMngmt11uNetAuthEntryReUrl OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Redirect-URL" + ::= { lcsStatusWtpMngmt11uNetAuthEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.59.108.5 +lcsStatusWtpMngmt11uCellListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWtpMngmt11uCellListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Cellular-Network-Information-List" + ::= { lcsStatusWtpMngmt11u 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.59.108.5.1 +lcsStatusWtpMngmt11uCellListEntry OBJECT-TYPE + SYNTAX LcsStatusWtpMngmt11uCellListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWtpMngmt11uCellListEntryName + } + ::= { lcsStatusWtpMngmt11uCellListTable 1 } + +LcsStatusWtpMngmt11uCellListEntry ::= SEQUENCE { + lcsStatusWtpMngmt11uCellListEntryName DisplayString, + lcsStatusWtpMngmt11uCellListEntryCountry DisplayString, + lcsStatusWtpMngmt11uCellListEntryNetwork DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.5.1.1 +lcsStatusWtpMngmt11uCellListEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uCellListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.5.1.2 +lcsStatusWtpMngmt11uCellListEntryCountry OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Country-Code" + ::= { lcsStatusWtpMngmt11uCellListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.5.1.3 +lcsStatusWtpMngmt11uCellListEntryNetwork OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Network-Code" + ::= { lcsStatusWtpMngmt11uCellListEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.59.108.6 +lcsStatusWtpMngmt11uVenueNameTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWtpMngmt11uVenueNameEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11u 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.59.108.6.1 +lcsStatusWtpMngmt11uVenueNameEntry OBJECT-TYPE + SYNTAX LcsStatusWtpMngmt11uVenueNameEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWtpMngmt11uVenueNameEntryName, + lcsStatusWtpMngmt11uVenueNameEntryLanguage + } + ::= { lcsStatusWtpMngmt11uVenueNameTable 1 } + +LcsStatusWtpMngmt11uVenueNameEntry ::= SEQUENCE { + lcsStatusWtpMngmt11uVenueNameEntryName DisplayString, + lcsStatusWtpMngmt11uVenueNameEntryLanguage INTEGER, + lcsStatusWtpMngmt11uVenueNameEntryVenueName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.6.1.1 +lcsStatusWtpMngmt11uVenueNameEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uVenueNameEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.6.1.2 +lcsStatusWtpMngmt11uVenueNameEntryLanguage OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eEnglish (1), + eGerman (2), + eChinese (3), + eSpanish (4), + eFrench (5), + eItalian (6), + eRussian (7), + eDutch (8), + eTurkish (9), + ePortuguese (10), + ePolish (11), + eCzech (12), + eArabic (13) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uVenueNameEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.6.1.3 +lcsStatusWtpMngmt11uVenueNameEntryVenueName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uVenueNameEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.59.108.7 +lcsStatusWtpMngmt11uNAIsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWtpMngmt11uNAIsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "NAI-Realms" + ::= { lcsStatusWtpMngmt11u 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.59.108.7.1 +lcsStatusWtpMngmt11uNAIsEntry OBJECT-TYPE + SYNTAX LcsStatusWtpMngmt11uNAIsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWtpMngmt11uNAIsEntryName + } + ::= { lcsStatusWtpMngmt11uNAIsTable 1 } + +LcsStatusWtpMngmt11uNAIsEntry ::= SEQUENCE { + lcsStatusWtpMngmt11uNAIsEntryName DisplayString, + lcsStatusWtpMngmt11uNAIsEntryNaiRealm DisplayString, + lcsStatusWtpMngmt11uNAIsEntryEapMethod INTEGER, + lcsStatusWtpMngmt11uNAIsEntryAuthPar DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.7.1.1 +lcsStatusWtpMngmt11uNAIsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uNAIsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.7.1.2 +lcsStatusWtpMngmt11uNAIsEntryNaiRealm OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uNAIsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.7.1.3 +lcsStatusWtpMngmt11uNAIsEntryEapMethod OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eEapTls (13), + eEapSim (18), + eEapTtls (21), + eEapAka (23) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uNAIsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.7.1.4 +lcsStatusWtpMngmt11uNAIsEntryAuthPar OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Auth-Parameter-List" + ::= { lcsStatusWtpMngmt11uNAIsEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.59.108.8 +lcsStatusWtpMngmt11uOperatorListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWtpMngmt11uOperatorListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11u 8 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.59.108.8.1 +lcsStatusWtpMngmt11uOperatorListEntry OBJECT-TYPE + SYNTAX LcsStatusWtpMngmt11uOperatorListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWtpMngmt11uOperatorListEntryName, + lcsStatusWtpMngmt11uOperatorListEntryLanguage + } + ::= { lcsStatusWtpMngmt11uOperatorListTable 1 } + +LcsStatusWtpMngmt11uOperatorListEntry ::= SEQUENCE { + lcsStatusWtpMngmt11uOperatorListEntryName DisplayString, + lcsStatusWtpMngmt11uOperatorListEntryLanguage INTEGER, + lcsStatusWtpMngmt11uOperatorListEntryOperatorName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.8.1.1 +lcsStatusWtpMngmt11uOperatorListEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uOperatorListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.8.1.2 +lcsStatusWtpMngmt11uOperatorListEntryLanguage OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eEnglish (1), + eGerman (2), + eChinese (3), + eSpanish (4), + eFrench (5), + eItalian (6), + eRussian (7), + eDutch (8), + eTurkish (9), + ePortuguese (10), + ePolish (11), + eCzech (12), + eArabic (13) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uOperatorListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.8.1.3 +lcsStatusWtpMngmt11uOperatorListEntryOperatorName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uOperatorListEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.59.108.9 +lcsStatusWtpMngmt11uGeneralTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWtpMngmt11uGeneralEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11u 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.59.108.9.1 +lcsStatusWtpMngmt11uGeneralEntry OBJECT-TYPE + SYNTAX LcsStatusWtpMngmt11uGeneralEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWtpMngmt11uGeneralEntryName + } + ::= { lcsStatusWtpMngmt11uGeneralTable 1 } + +LcsStatusWtpMngmt11uGeneralEntry ::= SEQUENCE { + lcsStatusWtpMngmt11uGeneralEntryName DisplayString, + lcsStatusWtpMngmt11uGeneralEntryLinkStatus INTEGER, + lcsStatusWtpMngmt11uGeneralEntryDownlinkSpeed Integer32, + lcsStatusWtpMngmt11uGeneralEntryUplinkSpeed Integer32, + lcsStatusWtpMngmt11uGeneralEntryIpv4AddrType INTEGER, + lcsStatusWtpMngmt11uGeneralEntryIpv6AddrType INTEGER, + lcsStatusWtpMngmt11uGeneralEntryVenueGroup INTEGER, + lcsStatusWtpMngmt11uGeneralEntryVenueType Integer32, + lcsStatusWtpMngmt11uGeneralEntryVenueName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.9.1.1 +lcsStatusWtpMngmt11uGeneralEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uGeneralEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.9.1.2 +lcsStatusWtpMngmt11uGeneralEntryLinkStatus OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eLinkUp (1), + eLinkDown (2), + eLinkTest (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uGeneralEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.9.1.3 +lcsStatusWtpMngmt11uGeneralEntryDownlinkSpeed OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uGeneralEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.9.1.4 +lcsStatusWtpMngmt11uGeneralEntryUplinkSpeed OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uGeneralEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.9.1.5 +lcsStatusWtpMngmt11uGeneralEntryIpv4AddrType OBJECT-TYPE + SYNTAX INTEGER { + eNotAvailable (0), + ePublicAddrAvailable (1), + ePortRestrAddrAvail (2), + eSingleNatPrivAddrAvail (3), + eDoubleNatPrivAddrAvail (4), + ePortRestrSingleNatAddrAvail (5), + ePortRestrDoubleNatAddrAvail (6), + eAvailabilityNotKnown (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uGeneralEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.9.1.6 +lcsStatusWtpMngmt11uGeneralEntryIpv6AddrType OBJECT-TYPE + SYNTAX INTEGER { + eNotAvailable (0), + eAvailable (1), + eAvailabilityNotKnown (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uGeneralEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.9.1.7 +lcsStatusWtpMngmt11uGeneralEntryVenueGroup OBJECT-TYPE + SYNTAX INTEGER { + eUnspecified (0), + eAssembly (1), + eBusiness (2), + eEducational (3), + eFactoryAndIndustrial (4), + eInstitutional (5), + eMercantile (6), + eResindential (7), + eStorage (8), + eUtilityAndMiscellaneous (9), + eVehicular (10), + eOutdoor (11) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uGeneralEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.9.1.8 +lcsStatusWtpMngmt11uGeneralEntryVenueType OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uGeneralEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.108.9.1.9 +lcsStatusWtpMngmt11uGeneralEntryVenueName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmt11uGeneralEntry 9 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.59.109 +lcsStatusWtpMngmtAutowdsOperation OBJECT IDENTIFIER ::= { lcsStatusWtpMngmt 109 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.59.109.1 +lcsStatusWtpMngmtAutowdsOperationActiveScanMode OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eExpress (1), + ePreconfigured (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWtpMngmtAutowdsOperation 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.59.120 +lcsStatusWtpMngmtLogTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWtpMngmtLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmt 120 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.59.120.1 +lcsStatusWtpMngmtLogTableEntry OBJECT-TYPE + SYNTAX LcsStatusWtpMngmtLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWtpMngmtLogTableEntryIndex + } + ::= { lcsStatusWtpMngmtLogTableTable 1 } + +LcsStatusWtpMngmtLogTableEntry ::= SEQUENCE { + lcsStatusWtpMngmtLogTableEntryIndex Integer32, + lcsStatusWtpMngmtLogTableEntryTime DisplayString, + lcsStatusWtpMngmtLogTableEntryEvent DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.120.1.1 +lcsStatusWtpMngmtLogTableEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtLogTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.120.1.2 +lcsStatusWtpMngmtLogTableEntryTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtLogTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.59.120.1.6 +lcsStatusWtpMngmtLogTableEntryEvent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..80)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWtpMngmtLogTableEntry 6 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.60 +lcsStatusLldp OBJECT IDENTIFIER ::= { lcsStatus 60 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.60.1 +lcsStatusLldpRemoteTablesLastChange OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..21)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldp 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.60.2 +lcsStatusLldpRemoteTablesInserts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.60.3 +lcsStatusLldpRemoteTablesDeletes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.60.4 +lcsStatusLldpRemoteTablesDrops OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldp 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.60.5 +lcsStatusLldpRemoteTablesAgeouts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldp 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.60.7 +lcsStatusLldpPortsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLldpPortsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldp 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.60.7.1 +lcsStatusLldpPortsEntry OBJECT-TYPE + SYNTAX LcsStatusLldpPortsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLldpPortsEntryName + } + ::= { lcsStatusLldpPortsTable 1 } + +LcsStatusLldpPortsEntry ::= SEQUENCE { + lcsStatusLldpPortsEntryName DisplayString, + lcsStatusLldpPortsEntryTxFrames Counter32, + lcsStatusLldpPortsEntryRxFrames Counter32, + lcsStatusLldpPortsEntryFramesDiscarded Counter32, + lcsStatusLldpPortsEntryFramesErrors Counter32, + lcsStatusLldpPortsEntryTlvsDiscarded Counter32, + lcsStatusLldpPortsEntryTlvsUnrecognized Counter32, + lcsStatusLldpPortsEntryAgeouts Counter32, + lcsStatusLldpPortsEntryTotalEntries Gauge32, + lcsStatusLldpPortsEntryFdbTotalEntries Gauge32, + lcsStatusLldpPortsEntryLldpEntries Gauge32, + lcsStatusLldpPortsEntryOtherEntries Gauge32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.7.1.1 +lcsStatusLldpPortsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpPortsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.7.1.2 +lcsStatusLldpPortsEntryTxFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpPortsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.7.1.3 +lcsStatusLldpPortsEntryRxFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpPortsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.7.1.4 +lcsStatusLldpPortsEntryFramesDiscarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpPortsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.7.1.5 +lcsStatusLldpPortsEntryFramesErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpPortsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.7.1.6 +lcsStatusLldpPortsEntryTlvsDiscarded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpPortsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.7.1.7 +lcsStatusLldpPortsEntryTlvsUnrecognized OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpPortsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.7.1.8 +lcsStatusLldpPortsEntryAgeouts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpPortsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.7.1.9 +lcsStatusLldpPortsEntryTotalEntries OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpPortsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.7.1.10 +lcsStatusLldpPortsEntryFdbTotalEntries OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpPortsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.7.1.11 +lcsStatusLldpPortsEntryLldpEntries OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpPortsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.7.1.12 +lcsStatusLldpPortsEntryOtherEntries OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpPortsEntry 12 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.60.8 +lcsStatusLldpRemoteTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLldpRemoteTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldp 8 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.60.8.1 +lcsStatusLldpRemoteTableEntry OBJECT-TYPE + SYNTAX LcsStatusLldpRemoteTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLldpRemoteTableEntryIndex + } + ::= { lcsStatusLldpRemoteTableTable 1 } + +LcsStatusLldpRemoteTableEntry ::= SEQUENCE { + lcsStatusLldpRemoteTableEntryIndex Integer32, + lcsStatusLldpRemoteTableEntryLastUpdate DisplayString, + lcsStatusLldpRemoteTableEntryChassisIdType INTEGER, + lcsStatusLldpRemoteTableEntryChassisId DisplayString, + lcsStatusLldpRemoteTableEntryPortIdType INTEGER, + lcsStatusLldpRemoteTableEntryPortId DisplayString, + lcsStatusLldpRemoteTableEntryTtl Integer32, + lcsStatusLldpRemoteTableEntryTtlRemaining Integer32, + lcsStatusLldpRemoteTableEntryPortDescriptor DisplayString, + lcsStatusLldpRemoteTableEntrySystemName DisplayString, + lcsStatusLldpRemoteTableEntrySystemDescriptor DisplayString, + lcsStatusLldpRemoteTableEntryCapabilitiesSupported BITS, + lcsStatusLldpRemoteTableEntryCapabilitiesEnabled BITS, + lcsStatusLldpRemoteTableEntryPortVlanId Integer32, + lcsStatusLldpRemoteTableEntrySource INTEGER, + lcsStatusLldpRemoteTableEntryPort DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.8.1.1 +lcsStatusLldpRemoteTableEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.8.1.2 +lcsStatusLldpRemoteTableEntryLastUpdate OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.8.1.4 +lcsStatusLldpRemoteTableEntryChassisIdType OBJECT-TYPE + SYNTAX INTEGER { + eChassisComponent (1), + eInterfaceAlias (2), + ePortComponent (3), + eMacAddress (4), + eNetworkAddress (5), + eInterfaceName (6), + eLocallyAssigned (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.8.1.5 +lcsStatusLldpRemoteTableEntryChassisId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.8.1.6 +lcsStatusLldpRemoteTableEntryPortIdType OBJECT-TYPE + SYNTAX INTEGER { + eInterfaceAlias (1), + ePortComponent (2), + eMacAddress (3), + eNetworkAddress (4), + eInterfaceName (5), + eCircuitId (6), + eLocallyAssigned (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.8.1.7 +lcsStatusLldpRemoteTableEntryPortId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.8.1.8 +lcsStatusLldpRemoteTableEntryTtl OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteTableEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.8.1.9 +lcsStatusLldpRemoteTableEntryTtlRemaining OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteTableEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.8.1.10 +lcsStatusLldpRemoteTableEntryPortDescriptor OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteTableEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.8.1.11 +lcsStatusLldpRemoteTableEntrySystemName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteTableEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.8.1.12 +lcsStatusLldpRemoteTableEntrySystemDescriptor OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteTableEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.8.1.13 +lcsStatusLldpRemoteTableEntryCapabilitiesSupported OBJECT-TYPE + SYNTAX BITS { + eStationOnly (0), + eDocsisCable (1), + eTelephone (2), + eRouter (3), + eWlanAp (4), + eBridge (5), + eRepeater (6), + eOther (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteTableEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.8.1.14 +lcsStatusLldpRemoteTableEntryCapabilitiesEnabled OBJECT-TYPE + SYNTAX BITS { + eStationOnly (0), + eDocsisCable (1), + eTelephone (2), + eRouter (3), + eWlanAp (4), + eBridge (5), + eRepeater (6), + eOther (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteTableEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.8.1.15 +lcsStatusLldpRemoteTableEntryPortVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteTableEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.8.1.16 +lcsStatusLldpRemoteTableEntrySource OBJECT-TYPE + SYNTAX INTEGER { + eLldp (1), + eCdp (2), + eWlan (3), + eFdb (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteTableEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.8.1.17 +lcsStatusLldpRemoteTableEntryPort OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteTableEntry 17 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.60.9 +lcsStatusLldpRemoteManagementAddressesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLldpRemoteManagementAddressesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldp 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.60.9.1 +lcsStatusLldpRemoteManagementAddressesEntry OBJECT-TYPE + SYNTAX LcsStatusLldpRemoteManagementAddressesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLldpRemoteManagementAddressesEntryIndex, + lcsStatusLldpRemoteManagementAddressesEntryAddressType, + lcsStatusLldpRemoteManagementAddressesEntryAddress + } + ::= { lcsStatusLldpRemoteManagementAddressesTable 1 } + +LcsStatusLldpRemoteManagementAddressesEntry ::= SEQUENCE { + lcsStatusLldpRemoteManagementAddressesEntryIndex Integer32, + lcsStatusLldpRemoteManagementAddressesEntryAddressType INTEGER, + lcsStatusLldpRemoteManagementAddressesEntryAddress DisplayString, + lcsStatusLldpRemoteManagementAddressesEntryIfcSubtype INTEGER, + lcsStatusLldpRemoteManagementAddressesEntryIfcId Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.9.1.1 +lcsStatusLldpRemoteManagementAddressesEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteManagementAddressesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.9.1.2 +lcsStatusLldpRemoteManagementAddressesEntryAddressType OBJECT-TYPE + SYNTAX INTEGER { + eIpv4 (1), + eIpv6 (2), + e802 (6), + eIpx (11) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteManagementAddressesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.9.1.3 +lcsStatusLldpRemoteManagementAddressesEntryAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteManagementAddressesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.9.1.4 +lcsStatusLldpRemoteManagementAddressesEntryIfcSubtype OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (1), + eIfindex (2), + eSystemPortNum (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteManagementAddressesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.9.1.5 +lcsStatusLldpRemoteManagementAddressesEntryIfcId OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteManagementAddressesEntry 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.60.10 +lcsStatusLldpRemote8023TableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLldpRemote8023TableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldp 10 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.60.10.1 +lcsStatusLldpRemote8023TableEntry OBJECT-TYPE + SYNTAX LcsStatusLldpRemote8023TableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLldpRemote8023TableEntryIndex + } + ::= { lcsStatusLldpRemote8023TableTable 1 } + +LcsStatusLldpRemote8023TableEntry ::= SEQUENCE { + lcsStatusLldpRemote8023TableEntryIndex Integer32, + lcsStatusLldpRemote8023TableEntryAutoNegotiationSupported INTEGER, + lcsStatusLldpRemote8023TableEntryAutoNegotiationEnabled INTEGER, + lcsStatusLldpRemote8023TableEntryAutoNegotiationCapabilities BITS, + lcsStatusLldpRemote8023TableEntryMauOperationalType INTEGER, + lcsStatusLldpRemote8023TableEntryPortPowerType INTEGER, + lcsStatusLldpRemote8023TableEntryPsePowerSupport INTEGER, + lcsStatusLldpRemote8023TableEntryPsePowerEnabled INTEGER, + lcsStatusLldpRemote8023TableEntryPsePowerPairControl INTEGER, + lcsStatusLldpRemote8023TableEntryPsePowerPair INTEGER, + lcsStatusLldpRemote8023TableEntryPowerClass INTEGER, + lcsStatusLldpRemote8023TableEntryAggregationCapable INTEGER, + lcsStatusLldpRemote8023TableEntryAggregationEnabled INTEGER, + lcsStatusLldpRemote8023TableEntryAggregationPortId Integer32, + lcsStatusLldpRemote8023TableEntryMaxFrameSize Integer32, + lcsStatusLldpRemote8023TableEntryPdRequestedPower Integer32, + lcsStatusLldpRemote8023TableEntryPseAllocatedPower Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.10.1.1 +lcsStatusLldpRemote8023TableEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8023TableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.10.1.2 +lcsStatusLldpRemote8023TableEntryAutoNegotiationSupported OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8023TableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.10.1.3 +lcsStatusLldpRemote8023TableEntryAutoNegotiationEnabled OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8023TableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.10.1.4 +lcsStatusLldpRemote8023TableEntryAutoNegotiationCapabilities OBJECT-TYPE + SYNTAX BITS { + eOther (0), + e10baset (1), + e10basetFd (2), + e100baset4 (3), + e100basetx (4), + e100basetxFd (5), + e100baset2 (6), + e100baset2Fd (7), + ePause (8), + eAsymmetricPause (9), + eSymmetricPause (10), + eAsymmetricSymmetricPause (11), + e1000basex (12), + e1000basexFd (13), + e1000baset (14), + e1000basetFd (15) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8023TableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.10.1.5 +lcsStatusLldpRemote8023TableEntryMauOperationalType OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e10baseaui (1), + e10base2 (4), + e10basetHd (10), + e10basetFd (11), + e100basetxHd (15), + e100basetxFd (16), + e1000basexHd (21), + e1000basexFd (22), + e1000baselxHd (23), + e1000baselxFd (24), + e1000basesxHd (25), + e1000basesxFd (26), + e1000basetxFd (30) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8023TableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.10.1.6 +lcsStatusLldpRemote8023TableEntryPortPowerType OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + ePse (1), + ePd (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8023TableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.10.1.7 +lcsStatusLldpRemote8023TableEntryPsePowerSupport OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8023TableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.10.1.8 +lcsStatusLldpRemote8023TableEntryPsePowerEnabled OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8023TableEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.10.1.9 +lcsStatusLldpRemote8023TableEntryPsePowerPairControl OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8023TableEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.10.1.10 +lcsStatusLldpRemote8023TableEntryPsePowerPair OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eSignal (1), + eSpare (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8023TableEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.10.1.11 +lcsStatusLldpRemote8023TableEntryPowerClass OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eClass0 (1), + eClass1 (2), + eClass2 (3), + eClass3 (4), + eClass4 (5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8023TableEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.10.1.12 +lcsStatusLldpRemote8023TableEntryAggregationCapable OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8023TableEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.10.1.13 +lcsStatusLldpRemote8023TableEntryAggregationEnabled OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8023TableEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.10.1.14 +lcsStatusLldpRemote8023TableEntryAggregationPortId OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8023TableEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.10.1.15 +lcsStatusLldpRemote8023TableEntryMaxFrameSize OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8023TableEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.10.1.16 +lcsStatusLldpRemote8023TableEntryPdRequestedPower OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8023TableEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.10.1.17 +lcsStatusLldpRemote8023TableEntryPseAllocatedPower OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8023TableEntry 17 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.60.11 +lcsStatusLldpRemote8021ProtoVlansTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLldpRemote8021ProtoVlansEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldp 11 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.60.11.1 +lcsStatusLldpRemote8021ProtoVlansEntry OBJECT-TYPE + SYNTAX LcsStatusLldpRemote8021ProtoVlansEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLldpRemote8021ProtoVlansEntryIndex, + lcsStatusLldpRemote8021ProtoVlansEntryVlanId + } + ::= { lcsStatusLldpRemote8021ProtoVlansTable 1 } + +LcsStatusLldpRemote8021ProtoVlansEntry ::= SEQUENCE { + lcsStatusLldpRemote8021ProtoVlansEntryIndex Integer32, + lcsStatusLldpRemote8021ProtoVlansEntryVlanId Integer32, + lcsStatusLldpRemote8021ProtoVlansEntrySupported INTEGER, + lcsStatusLldpRemote8021ProtoVlansEntryEnabled INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.11.1.1 +lcsStatusLldpRemote8021ProtoVlansEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8021ProtoVlansEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.11.1.2 +lcsStatusLldpRemote8021ProtoVlansEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8021ProtoVlansEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.11.1.3 +lcsStatusLldpRemote8021ProtoVlansEntrySupported OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8021ProtoVlansEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.11.1.4 +lcsStatusLldpRemote8021ProtoVlansEntryEnabled OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8021ProtoVlansEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.60.12 +lcsStatusLldpRemote8021VlanNamesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLldpRemote8021VlanNamesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldp 12 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.60.12.1 +lcsStatusLldpRemote8021VlanNamesEntry OBJECT-TYPE + SYNTAX LcsStatusLldpRemote8021VlanNamesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLldpRemote8021VlanNamesEntryIndex, + lcsStatusLldpRemote8021VlanNamesEntryVlanId + } + ::= { lcsStatusLldpRemote8021VlanNamesTable 1 } + +LcsStatusLldpRemote8021VlanNamesEntry ::= SEQUENCE { + lcsStatusLldpRemote8021VlanNamesEntryIndex Integer32, + lcsStatusLldpRemote8021VlanNamesEntryVlanId Integer32, + lcsStatusLldpRemote8021VlanNamesEntryName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.12.1.1 +lcsStatusLldpRemote8021VlanNamesEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8021VlanNamesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.12.1.2 +lcsStatusLldpRemote8021VlanNamesEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8021VlanNamesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.12.1.3 +lcsStatusLldpRemote8021VlanNamesEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8021VlanNamesEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.60.13 +lcsStatusLldpRemote8021ProtocolIdsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLldpRemote8021ProtocolIdsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldp 13 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.60.13.1 +lcsStatusLldpRemote8021ProtocolIdsEntry OBJECT-TYPE + SYNTAX LcsStatusLldpRemote8021ProtocolIdsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLldpRemote8021ProtocolIdsEntryIndex, + lcsStatusLldpRemote8021ProtocolIdsEntryProtocol + } + ::= { lcsStatusLldpRemote8021ProtocolIdsTable 1 } + +LcsStatusLldpRemote8021ProtocolIdsEntry ::= SEQUENCE { + lcsStatusLldpRemote8021ProtocolIdsEntryIndex Integer32, + lcsStatusLldpRemote8021ProtocolIdsEntryProtocol DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.13.1.1 +lcsStatusLldpRemote8021ProtocolIdsEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8021ProtocolIdsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.13.1.3 +lcsStatusLldpRemote8021ProtocolIdsEntryProtocol OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote8021ProtocolIdsEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.60.14 +lcsStatusLldpRemoteUnknownTlvsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLldpRemoteUnknownTlvsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldp 14 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.60.14.1 +lcsStatusLldpRemoteUnknownTlvsEntry OBJECT-TYPE + SYNTAX LcsStatusLldpRemoteUnknownTlvsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLldpRemoteUnknownTlvsEntryIndex, + lcsStatusLldpRemoteUnknownTlvsEntryType + } + ::= { lcsStatusLldpRemoteUnknownTlvsTable 1 } + +LcsStatusLldpRemoteUnknownTlvsEntry ::= SEQUENCE { + lcsStatusLldpRemoteUnknownTlvsEntryIndex Integer32, + lcsStatusLldpRemoteUnknownTlvsEntryType Integer32, + lcsStatusLldpRemoteUnknownTlvsEntryData DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.14.1.1 +lcsStatusLldpRemoteUnknownTlvsEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteUnknownTlvsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.14.1.2 +lcsStatusLldpRemoteUnknownTlvsEntryType OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteUnknownTlvsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.14.1.3 +lcsStatusLldpRemoteUnknownTlvsEntryData OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteUnknownTlvsEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.60.15 +lcsStatusLldpRemoteOrgDefaultInfosTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLldpRemoteOrgDefaultInfosEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldp 15 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.60.15.1 +lcsStatusLldpRemoteOrgDefaultInfosEntry OBJECT-TYPE + SYNTAX LcsStatusLldpRemoteOrgDefaultInfosEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLldpRemoteOrgDefaultInfosEntryIndex, + lcsStatusLldpRemoteOrgDefaultInfosEntryOid, + lcsStatusLldpRemoteOrgDefaultInfosEntrySubtype, + lcsStatusLldpRemoteOrgDefaultInfosEntryTlvIndex + } + ::= { lcsStatusLldpRemoteOrgDefaultInfosTable 1 } + +LcsStatusLldpRemoteOrgDefaultInfosEntry ::= SEQUENCE { + lcsStatusLldpRemoteOrgDefaultInfosEntryIndex Integer32, + lcsStatusLldpRemoteOrgDefaultInfosEntryOid Integer32, + lcsStatusLldpRemoteOrgDefaultInfosEntrySubtype Integer32, + lcsStatusLldpRemoteOrgDefaultInfosEntryTlvIndex Integer32, + lcsStatusLldpRemoteOrgDefaultInfosEntryData DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.15.1.1 +lcsStatusLldpRemoteOrgDefaultInfosEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteOrgDefaultInfosEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.15.1.2 +lcsStatusLldpRemoteOrgDefaultInfosEntryOid OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteOrgDefaultInfosEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.15.1.3 +lcsStatusLldpRemoteOrgDefaultInfosEntrySubtype OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteOrgDefaultInfosEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.15.1.4 +lcsStatusLldpRemoteOrgDefaultInfosEntryTlvIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteOrgDefaultInfosEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.15.1.5 +lcsStatusLldpRemoteOrgDefaultInfosEntryData OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemoteOrgDefaultInfosEntry 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.60.16 +lcsStatusLldpRemote80211TableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusLldpRemote80211TableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldp 16 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.60.16.1 +lcsStatusLldpRemote80211TableEntry OBJECT-TYPE + SYNTAX LcsStatusLldpRemote80211TableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusLldpRemote80211TableEntryIndex + } + ::= { lcsStatusLldpRemote80211TableTable 1 } + +LcsStatusLldpRemote80211TableEntry ::= SEQUENCE { + lcsStatusLldpRemote80211TableEntryIndex Integer32, + lcsStatusLldpRemote80211TableEntrySsid DisplayString, + lcsStatusLldpRemote80211TableEntryRadioChannel Integer32, + lcsStatusLldpRemote80211TableEntryPhyType INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.16.1.1 +lcsStatusLldpRemote80211TableEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote80211TableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.16.1.3 +lcsStatusLldpRemote80211TableEntrySsid OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote80211TableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.16.1.4 +lcsStatusLldpRemote80211TableEntryRadioChannel OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote80211TableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.60.16.1.5 +lcsStatusLldpRemote80211TableEntryPhyType OBJECT-TYPE + SYNTAX INTEGER { + eFhss (1), + eDsss (2), + eInfrared (3), + eOfdm (4), + eHrDsss (5), + eErp (6), + eHt (7), + eVht (9), + ePbcc (254) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusLldpRemote80211TableEntry 5 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.61 +lcsStatusCerts OBJECT IDENTIFIER ::= { lcsStatus 61 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.61.1 +lcsStatusCertsScepClnt OBJECT IDENTIFIER ::= { lcsStatusCerts 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.61.1.4 +lcsStatusCertsScepClntCasTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusCertsScepClntCasEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClnt 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.61.1.4.1 +lcsStatusCertsScepClntCasEntry OBJECT-TYPE + SYNTAX LcsStatusCertsScepClntCasEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusCertsScepClntCasEntryIdx + } + ::= { lcsStatusCertsScepClntCasTable 1 } + +LcsStatusCertsScepClntCasEntry ::= SEQUENCE { + lcsStatusCertsScepClntCasEntryIdx Integer32, + lcsStatusCertsScepClntCasEntryName DisplayString, + lcsStatusCertsScepClntCasEntryExpires DisplayString, + lcsStatusCertsScepClntCasEntryIssued DisplayString, + lcsStatusCertsScepClntCasEntryKeyUsage DisplayString, + lcsStatusCertsScepClntCasEntryIssuer DisplayString, + lcsStatusCertsScepClntCasEntrySubject DisplayString, + lcsStatusCertsScepClntCasEntryStatus DisplayString, + lcsStatusCertsScepClntCasEntryIkeCertificate DisplayString, + lcsStatusCertsScepClntCasEntryMd5Fingerprint DisplayString, + lcsStatusCertsScepClntCasEntrySha1Fingerprint DisplayString, + lcsStatusCertsScepClntCasEntryExpSnmp Counter32, + lcsStatusCertsScepClntCasEntryIssSnmp Counter32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.4.1.1 +lcsStatusCertsScepClntCasEntryIdx OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCasEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.4.1.2 +lcsStatusCertsScepClntCasEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCasEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.4.1.3 +lcsStatusCertsScepClntCasEntryExpires OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCasEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.4.1.4 +lcsStatusCertsScepClntCasEntryIssued OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCasEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.4.1.5 +lcsStatusCertsScepClntCasEntryKeyUsage OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCasEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.4.1.6 +lcsStatusCertsScepClntCasEntryIssuer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCasEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.4.1.7 +lcsStatusCertsScepClntCasEntrySubject OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCasEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.4.1.8 +lcsStatusCertsScepClntCasEntryStatus OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCasEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.4.1.9 +lcsStatusCertsScepClntCasEntryIkeCertificate OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCasEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.4.1.10 +lcsStatusCertsScepClntCasEntryMd5Fingerprint OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCasEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.4.1.11 +lcsStatusCertsScepClntCasEntrySha1Fingerprint OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCasEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.4.1.12 +lcsStatusCertsScepClntCasEntryExpSnmp OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCasEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.4.1.13 +lcsStatusCertsScepClntCasEntryIssSnmp OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCasEntry 13 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.61.1.5 +lcsStatusCertsScepClntRasTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusCertsScepClntRasEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClnt 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.61.1.5.1 +lcsStatusCertsScepClntRasEntry OBJECT-TYPE + SYNTAX LcsStatusCertsScepClntRasEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusCertsScepClntRasEntryIdx + } + ::= { lcsStatusCertsScepClntRasTable 1 } + +LcsStatusCertsScepClntRasEntry ::= SEQUENCE { + lcsStatusCertsScepClntRasEntryIdx Integer32, + lcsStatusCertsScepClntRasEntryName DisplayString, + lcsStatusCertsScepClntRasEntryExpires DisplayString, + lcsStatusCertsScepClntRasEntryIssued DisplayString, + lcsStatusCertsScepClntRasEntryKeyUsage DisplayString, + lcsStatusCertsScepClntRasEntryIssuer DisplayString, + lcsStatusCertsScepClntRasEntrySubject DisplayString, + lcsStatusCertsScepClntRasEntryStatus DisplayString, + lcsStatusCertsScepClntRasEntryExpSnmp Counter32, + lcsStatusCertsScepClntRasEntryIssSnmp Counter32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.5.1.1 +lcsStatusCertsScepClntRasEntryIdx OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntRasEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.5.1.2 +lcsStatusCertsScepClntRasEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntRasEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.5.1.3 +lcsStatusCertsScepClntRasEntryExpires OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntRasEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.5.1.4 +lcsStatusCertsScepClntRasEntryIssued OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntRasEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.5.1.5 +lcsStatusCertsScepClntRasEntryKeyUsage OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntRasEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.5.1.6 +lcsStatusCertsScepClntRasEntryIssuer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntRasEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.5.1.7 +lcsStatusCertsScepClntRasEntrySubject OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntRasEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.5.1.8 +lcsStatusCertsScepClntRasEntryStatus OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntRasEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.5.1.9 +lcsStatusCertsScepClntRasEntryExpSnmp OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntRasEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.5.1.10 +lcsStatusCertsScepClntRasEntryIssSnmp OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntRasEntry 10 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.61.1.6 +lcsStatusCertsScepClntCertsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusCertsScepClntCertsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClnt 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.61.1.6.1 +lcsStatusCertsScepClntCertsEntry OBJECT-TYPE + SYNTAX LcsStatusCertsScepClntCertsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusCertsScepClntCertsEntryIdx + } + ::= { lcsStatusCertsScepClntCertsTable 1 } + +LcsStatusCertsScepClntCertsEntry ::= SEQUENCE { + lcsStatusCertsScepClntCertsEntryIdx Integer32, + lcsStatusCertsScepClntCertsEntryName DisplayString, + lcsStatusCertsScepClntCertsEntryExpires DisplayString, + lcsStatusCertsScepClntCertsEntryIssued DisplayString, + lcsStatusCertsScepClntCertsEntryKeyUsage DisplayString, + lcsStatusCertsScepClntCertsEntrySubjectaltname DisplayString, + lcsStatusCertsScepClntCertsEntryIssuer DisplayString, + lcsStatusCertsScepClntCertsEntrySubject DisplayString, + lcsStatusCertsScepClntCertsEntryStatus DisplayString, + lcsStatusCertsScepClntCertsEntryExpSnmp Counter32, + lcsStatusCertsScepClntCertsEntryIssSnmp Counter32, + lcsStatusCertsScepClntCertsEntryExtendedKeyusage DisplayString, + lcsStatusCertsScepClntCertsEntryFilename DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.6.1.1 +lcsStatusCertsScepClntCertsEntryIdx OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCertsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.6.1.2 +lcsStatusCertsScepClntCertsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCertsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.6.1.3 +lcsStatusCertsScepClntCertsEntryExpires OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCertsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.6.1.4 +lcsStatusCertsScepClntCertsEntryIssued OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCertsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.6.1.5 +lcsStatusCertsScepClntCertsEntryKeyUsage OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCertsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.6.1.6 +lcsStatusCertsScepClntCertsEntrySubjectaltname OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCertsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.6.1.7 +lcsStatusCertsScepClntCertsEntryIssuer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCertsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.6.1.8 +lcsStatusCertsScepClntCertsEntrySubject OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCertsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.6.1.9 +lcsStatusCertsScepClntCertsEntryStatus OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCertsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.6.1.10 +lcsStatusCertsScepClntCertsEntryExpSnmp OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCertsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.6.1.11 +lcsStatusCertsScepClntCertsEntryIssSnmp OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCertsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.6.1.12 +lcsStatusCertsScepClntCertsEntryExtendedKeyusage OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCertsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.1.6.1.13 +lcsStatusCertsScepClntCertsEntryFilename OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClntCertsEntry 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.61.1.8 +lcsStatusCertsScepClntScepClientState OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepClnt 8 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.61.2 +lcsStatusCertsScepCa OBJECT IDENTIFIER ::= { lcsStatusCerts 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.61.2.1 +lcsStatusCertsScepCaCerts OBJECT IDENTIFIER ::= { lcsStatusCertsScepCa 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.61.2.1.1 +lcsStatusCertsScepCaCertsCertsStatusTabTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusCertsScepCaCertsCertsStatusTabEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "certificates status table" + ::= { lcsStatusCertsScepCaCerts 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.61.2.1.1.1 +lcsStatusCertsScepCaCertsCertsStatusTabEntry OBJECT-TYPE + SYNTAX LcsStatusCertsScepCaCertsCertsStatusTabEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusCertsScepCaCertsCertsStatusTabEntryIndex + } + ::= { lcsStatusCertsScepCaCertsCertsStatusTabTable 1 } + +LcsStatusCertsScepCaCertsCertsStatusTabEntry ::= SEQUENCE { + lcsStatusCertsScepCaCertsCertsStatusTabEntryIndex Integer32, + lcsStatusCertsScepCaCertsCertsStatusTabEntrySerialnumber DisplayString, + lcsStatusCertsScepCaCertsCertsStatusTabEntryStatus DisplayString, + lcsStatusCertsScepCaCertsCertsStatusTabEntryCreationDate DisplayString, + lcsStatusCertsScepCaCertsCertsStatusTabEntryEndTime DisplayString, + lcsStatusCertsScepCaCertsCertsStatusTabEntryRevTime DisplayString, + lcsStatusCertsScepCaCertsCertsStatusTabEntryRevReas DisplayString, + lcsStatusCertsScepCaCertsCertsStatusTabEntryMacAddress DisplayString, + lcsStatusCertsScepCaCertsCertsStatusTabEntryDn DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.2.1.1.1.1 +lcsStatusCertsScepCaCertsCertsStatusTabEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaCertsCertsStatusTabEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.2.1.1.1.2 +lcsStatusCertsScepCaCertsCertsStatusTabEntrySerialnumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaCertsCertsStatusTabEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.2.1.1.1.3 +lcsStatusCertsScepCaCertsCertsStatusTabEntryStatus OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaCertsCertsStatusTabEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.2.1.1.1.4 +lcsStatusCertsScepCaCertsCertsStatusTabEntryCreationDate OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaCertsCertsStatusTabEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.2.1.1.1.5 +lcsStatusCertsScepCaCertsCertsStatusTabEntryEndTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ending time" + ::= { lcsStatusCertsScepCaCertsCertsStatusTabEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.2.1.1.1.6 +lcsStatusCertsScepCaCertsCertsStatusTabEntryRevTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "revocation time" + ::= { lcsStatusCertsScepCaCertsCertsStatusTabEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.2.1.1.1.7 +lcsStatusCertsScepCaCertsCertsStatusTabEntryRevReas OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "revoke reason" + ::= { lcsStatusCertsScepCaCertsCertsStatusTabEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.2.1.1.1.8 +lcsStatusCertsScepCaCertsCertsStatusTabEntryMacAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaCertsCertsStatusTabEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.2.1.1.1.9 +lcsStatusCertsScepCaCertsCertsStatusTabEntryDn OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaCertsCertsStatusTabEntry 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.61.2.1.2 +lcsStatusCertsScepCaCertsRevokeCertificate OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaCerts 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.61.2.1.3 +lcsStatusCertsScepCaCertsSetCertificateOnHold OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaCerts 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.61.2.1.4 +lcsStatusCertsScepCaCertsDeclCertsValid OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "declare certificates as valid again" + ::= { lcsStatusCertsScepCaCerts 4 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.61.2.2 +lcsStatusCertsScepCaRequests OBJECT IDENTIFIER ::= { lcsStatusCertsScepCa 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.61.2.2.1 +lcsStatusCertsScepCaRequestsPendReqTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusCertsScepCaRequestsPendReqEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "pending requests" + ::= { lcsStatusCertsScepCaRequests 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.61.2.2.1.1 +lcsStatusCertsScepCaRequestsPendReqEntry OBJECT-TYPE + SYNTAX LcsStatusCertsScepCaRequestsPendReqEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusCertsScepCaRequestsPendReqEntryIndex + } + ::= { lcsStatusCertsScepCaRequestsPendReqTable 1 } + +LcsStatusCertsScepCaRequestsPendReqEntry ::= SEQUENCE { + lcsStatusCertsScepCaRequestsPendReqEntryIndex Integer32, + lcsStatusCertsScepCaRequestsPendReqEntryTransactionId DisplayString, + lcsStatusCertsScepCaRequestsPendReqEntryMacAddress DisplayString, + lcsStatusCertsScepCaRequestsPendReqEntryIpAddress IpAddress, + lcsStatusCertsScepCaRequestsPendReqEntryPkiStatus DisplayString, + lcsStatusCertsScepCaRequestsPendReqEntryReason INTEGER, + lcsStatusCertsScepCaRequestsPendReqEntryRequestFingerprint DisplayString, + lcsStatusCertsScepCaRequestsPendReqEntryDn DisplayString, + lcsStatusCertsScepCaRequestsPendReqEntryReceiveDate DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.2.2.1.1.1 +lcsStatusCertsScepCaRequestsPendReqEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaRequestsPendReqEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.2.2.1.1.2 +lcsStatusCertsScepCaRequestsPendReqEntryTransactionId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaRequestsPendReqEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.2.2.1.1.3 +lcsStatusCertsScepCaRequestsPendReqEntryMacAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaRequestsPendReqEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.2.2.1.1.4 +lcsStatusCertsScepCaRequestsPendReqEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaRequestsPendReqEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.2.2.1.1.5 +lcsStatusCertsScepCaRequestsPendReqEntryPkiStatus OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..7)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaRequestsPendReqEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.2.2.1.1.6 +lcsStatusCertsScepCaRequestsPendReqEntryReason OBJECT-TYPE + SYNTAX INTEGER { + eUnknownReason (0), + eManuallyDeclined (1), + eManuallyGranted (2), + eAutoapproveNotAllowed (3), + eClientCertificateIsNotValid (4), + eClientCertificateIsNotOldEnoughForRenewal (5), + eClientRequestContainsNoChallengePassword (6), + eNoGeneralChallengePasswordAvailableForClients (7), + eRequestContainsBrokenChallengePasswordAttribute (8), + eChallengePasswordDoesNotMatch (9), + eInternalProcessingError (10), + eRequestSignatureVerificationFailed (11), + eNoCertificateRequestAvailable (12), + eRequestSubjectNameDoesNotMatchCertificateSubjectName (13), + eMaximalSizeOfCertificateListReached (14) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaRequestsPendReqEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.2.2.1.1.7 +lcsStatusCertsScepCaRequestsPendReqEntryRequestFingerprint OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..40)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaRequestsPendReqEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.2.2.1.1.8 +lcsStatusCertsScepCaRequestsPendReqEntryDn OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaRequestsPendReqEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.2.2.1.1.9 +lcsStatusCertsScepCaRequestsPendReqEntryReceiveDate OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaRequestsPendReqEntry 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.61.2.2.2 +lcsStatusCertsScepCaRequestsIssueCertificate OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaRequests 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.61.2.2.3 +lcsStatusCertsScepCaRequestsGrantAllCertificates OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaRequests 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.61.2.2.4 +lcsStatusCertsScepCaRequestsDeclineRequest OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaRequests 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.61.2.2.5 +lcsStatusCertsScepCaRequestsDenyAllRequests OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaRequests 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.61.2.2.6 +lcsStatusCertsScepCaRequestsDeletePendingRequest OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaRequests 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.61.2.2.7 +lcsStatusCertsScepCaRequestsDeleteAllPendingRequests OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaRequests 7 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.61.2.3 +lcsStatusCertsScepCaCaStatus OBJECT IDENTIFIER ::= { lcsStatusCertsScepCa 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.61.2.3.1 +lcsStatusCertsScepCaCaStatusCaStatus OBJECT-TYPE + SYNTAX INTEGER { + eDisabled (0), + eActive (1), + eInitializing (2), + eInitializationError (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaCaStatus 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.61.2.3.2 +lcsStatusCertsScepCaCaStatusError OBJECT-TYPE + SYNTAX INTEGER { + eNoError (0), + eNoValidCadn (1), + eNoValidRadn (2), + eNoValidKeyUsageForCaCertificate (3), + eNoValidKeyUsageForRaCertificate (4), + eNoUtcAvailable (6), + eConfiguredKeyLengthDoesNotMatchSavedKeys (7), + eNoGeneralChallengePasswordSet (8), + eValidityPeriodForCaRaIsZero (9), + eValidityPeriodForClientsIsZero (10), + eCouldNotCreateNewCaRaCertificates (11), + eCaRaCertificatesAreNotValid (12), + eSavedKeysDoNotMatchCertificates (13), + eRaCertKeyUsageMismatch (14), + eCaCertKeyUsageMismatch (15), + eCaCertDigestMismatch (16), + eRaCertDigestMismatch (17), + eCadnDoesNotMatchCertificate (18), + eRadnDoesNotMatchCertificate (19), + eNoMemoryAvailable (20), + eRandomPoolNotSeeded (21), + eMaximalSizeOfCertificateListReached (23), + eValidityPeriodForClientsIsTooLong (24) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaCaStatus 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.61.2.3.3 +lcsStatusCertsScepCaCaStatusAdditonalErrorInformation OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaCaStatus 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.61.2.3.4 +lcsStatusCertsScepCaCaStatusFingerprintAlgorithm OBJECT-TYPE + SYNTAX INTEGER { + eMd5 (0), + eSha1 (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaCaStatus 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.61.2.3.5 +lcsStatusCertsScepCaCaStatusCaCertificateFingerprint OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaCaStatus 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.61.2.3.6 +lcsStatusCertsScepCaCaStatusRaCertificateFingerprint OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsScepCaCaStatus 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.61.2.3.7 +lcsStatusCertsScepCaCaStatusLogTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusCertsScepCaCaStatusLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusCertsScepCaCaStatus 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.61.2.3.7.1 +lcsStatusCertsScepCaCaStatusLogTableEntry OBJECT-TYPE + SYNTAX LcsStatusCertsScepCaCaStatusLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusCertsScepCaCaStatusLogTableEntryIndex + } + ::= { lcsStatusCertsScepCaCaStatusLogTableTable 1 } + +LcsStatusCertsScepCaCaStatusLogTableEntry ::= SEQUENCE { + lcsStatusCertsScepCaCaStatusLogTableEntryIndex Integer32, + lcsStatusCertsScepCaCaStatusLogTableEntryTime DisplayString, + lcsStatusCertsScepCaCaStatusLogTableEntryEvent DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.2.3.7.1.1 +lcsStatusCertsScepCaCaStatusLogTableEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusCertsScepCaCaStatusLogTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.2.3.7.1.2 +lcsStatusCertsScepCaCaStatusLogTableEntryTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusCertsScepCaCaStatusLogTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.2.3.7.1.6 +lcsStatusCertsScepCaCaStatusLogTableEntryEvent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..80)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusCertsScepCaCaStatusLogTableEntry 6 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.61.3 +lcsStatusCertsCrls OBJECT IDENTIFIER ::= { lcsStatusCerts 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.61.3.1 +lcsStatusCertsCrlsNumcrls OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsCrls 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.61.3.2 +lcsStatusCertsCrlsCrlsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusCertsCrlsCrlsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsCrls 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.61.3.2.1 +lcsStatusCertsCrlsCrlsEntry OBJECT-TYPE + SYNTAX LcsStatusCertsCrlsCrlsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusCertsCrlsCrlsEntryIdx + } + ::= { lcsStatusCertsCrlsCrlsTable 1 } + +LcsStatusCertsCrlsCrlsEntry ::= SEQUENCE { + lcsStatusCertsCrlsCrlsEntryIdx Integer32, + lcsStatusCertsCrlsCrlsEntryExpires DisplayString, + lcsStatusCertsCrlsCrlsEntryIssued DisplayString, + lcsStatusCertsCrlsCrlsEntryIssuer DisplayString, + lcsStatusCertsCrlsCrlsEntryDistributionPoint DisplayString, + lcsStatusCertsCrlsCrlsEntryStatSnmp Integer32, + lcsStatusCertsCrlsCrlsEntryExpSnmp Counter32, + lcsStatusCertsCrlsCrlsEntryIssSnmp Counter32, + lcsStatusCertsCrlsCrlsEntryStatus DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.3.2.1.1 +lcsStatusCertsCrlsCrlsEntryIdx OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsCrlsCrlsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.3.2.1.2 +lcsStatusCertsCrlsCrlsEntryExpires OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsCrlsCrlsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.3.2.1.3 +lcsStatusCertsCrlsCrlsEntryIssued OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsCrlsCrlsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.3.2.1.4 +lcsStatusCertsCrlsCrlsEntryIssuer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsCrlsCrlsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.3.2.1.5 +lcsStatusCertsCrlsCrlsEntryDistributionPoint OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsCrlsCrlsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.3.2.1.6 +lcsStatusCertsCrlsCrlsEntryStatSnmp OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsCrlsCrlsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.3.2.1.7 +lcsStatusCertsCrlsCrlsEntryExpSnmp OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsCrlsCrlsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.3.2.1.8 +lcsStatusCertsCrlsCrlsEntryIssSnmp OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsCrlsCrlsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.3.2.1.9 +lcsStatusCertsCrlsCrlsEntryStatus OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsCrlsCrlsEntry 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.61.4 +lcsStatusCertsDeviceCertificatesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusCertsDeviceCertificatesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCerts 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.61.4.1 +lcsStatusCertsDeviceCertificatesEntry OBJECT-TYPE + SYNTAX LcsStatusCertsDeviceCertificatesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusCertsDeviceCertificatesEntryFilename + } + ::= { lcsStatusCertsDeviceCertificatesTable 1 } + +LcsStatusCertsDeviceCertificatesEntry ::= SEQUENCE { + lcsStatusCertsDeviceCertificatesEntryFilename DisplayString, + lcsStatusCertsDeviceCertificatesEntryAvailable INTEGER, + lcsStatusCertsDeviceCertificatesEntryExpires DisplayString, + lcsStatusCertsDeviceCertificatesEntryIssued DisplayString, + lcsStatusCertsDeviceCertificatesEntryKeyUsage DisplayString, + lcsStatusCertsDeviceCertificatesEntrySubjectaltname DisplayString, + lcsStatusCertsDeviceCertificatesEntryIssuer DisplayString, + lcsStatusCertsDeviceCertificatesEntrySubject DisplayString, + lcsStatusCertsDeviceCertificatesEntryApplication DisplayString, + lcsStatusCertsDeviceCertificatesEntryExtendedKeyusage DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.4.1.1 +lcsStatusCertsDeviceCertificatesEntryFilename OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsDeviceCertificatesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.4.1.2 +lcsStatusCertsDeviceCertificatesEntryAvailable OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsDeviceCertificatesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.4.1.3 +lcsStatusCertsDeviceCertificatesEntryExpires OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsDeviceCertificatesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.4.1.4 +lcsStatusCertsDeviceCertificatesEntryIssued OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsDeviceCertificatesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.4.1.5 +lcsStatusCertsDeviceCertificatesEntryKeyUsage OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsDeviceCertificatesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.4.1.6 +lcsStatusCertsDeviceCertificatesEntrySubjectaltname OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsDeviceCertificatesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.4.1.7 +lcsStatusCertsDeviceCertificatesEntryIssuer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsDeviceCertificatesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.4.1.8 +lcsStatusCertsDeviceCertificatesEntrySubject OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsDeviceCertificatesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.4.1.9 +lcsStatusCertsDeviceCertificatesEntryApplication OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsDeviceCertificatesEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.4.1.12 +lcsStatusCertsDeviceCertificatesEntryExtendedKeyusage OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsDeviceCertificatesEntry 12 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.61.6 +lcsStatusCertsOcspClient OBJECT IDENTIFIER ::= { lcsStatusCerts 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.61.6.1 +lcsStatusCertsOcspClientCaStatusTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusCertsOcspClientCaStatusTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsOcspClient 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.61.6.1.1 +lcsStatusCertsOcspClientCaStatusTableEntry OBJECT-TYPE + SYNTAX LcsStatusCertsOcspClientCaStatusTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusCertsOcspClientCaStatusTableEntryProfileName + } + ::= { lcsStatusCertsOcspClientCaStatusTableTable 1 } + +LcsStatusCertsOcspClientCaStatusTableEntry ::= SEQUENCE { + lcsStatusCertsOcspClientCaStatusTableEntryProfileName DisplayString, + lcsStatusCertsOcspClientCaStatusTableEntryRequests Integer32, + lcsStatusCertsOcspClientCaStatusTableEntryResponses Integer32, + lcsStatusCertsOcspClientCaStatusTableEntryGoodResponses Integer32, + lcsStatusCertsOcspClientCaStatusTableEntryRevokeResponses Integer32, + lcsStatusCertsOcspClientCaStatusTableEntryUnknownResponses Integer32, + lcsStatusCertsOcspClientCaStatusTableEntrySuccessfulResponses Integer32, + lcsStatusCertsOcspClientCaStatusTableEntryErrorResponses Integer32, + lcsStatusCertsOcspClientCaStatusTableEntryMalformedRequests Integer32, + lcsStatusCertsOcspClientCaStatusTableEntryIntErrorResponses Integer32, + lcsStatusCertsOcspClientCaStatusTableEntryTryLaterResponses Integer32, + lcsStatusCertsOcspClientCaStatusTableEntrySignRequiredResponses Integer32, + lcsStatusCertsOcspClientCaStatusTableEntryUnauthorizedResponses Integer32, + lcsStatusCertsOcspClientCaStatusTableEntrySignerVerifyFailures Integer32, + lcsStatusCertsOcspClientCaStatusTableEntryCertTimedOuts Integer32, + lcsStatusCertsOcspClientCaStatusTableEntryGenericErrors Integer32, + lcsStatusCertsOcspClientCaStatusTableEntryTransportErrors Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.6.1.1.1 +lcsStatusCertsOcspClientCaStatusTableEntryProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsOcspClientCaStatusTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.6.1.1.2 +lcsStatusCertsOcspClientCaStatusTableEntryRequests OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsOcspClientCaStatusTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.6.1.1.3 +lcsStatusCertsOcspClientCaStatusTableEntryResponses OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsOcspClientCaStatusTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.6.1.1.4 +lcsStatusCertsOcspClientCaStatusTableEntryGoodResponses OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsOcspClientCaStatusTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.6.1.1.5 +lcsStatusCertsOcspClientCaStatusTableEntryRevokeResponses OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsOcspClientCaStatusTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.6.1.1.6 +lcsStatusCertsOcspClientCaStatusTableEntryUnknownResponses OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsOcspClientCaStatusTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.6.1.1.7 +lcsStatusCertsOcspClientCaStatusTableEntrySuccessfulResponses OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsOcspClientCaStatusTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.6.1.1.8 +lcsStatusCertsOcspClientCaStatusTableEntryErrorResponses OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsOcspClientCaStatusTableEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.6.1.1.9 +lcsStatusCertsOcspClientCaStatusTableEntryMalformedRequests OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsOcspClientCaStatusTableEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.6.1.1.10 +lcsStatusCertsOcspClientCaStatusTableEntryIntErrorResponses OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsOcspClientCaStatusTableEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.6.1.1.11 +lcsStatusCertsOcspClientCaStatusTableEntryTryLaterResponses OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsOcspClientCaStatusTableEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.6.1.1.12 +lcsStatusCertsOcspClientCaStatusTableEntrySignRequiredResponses OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsOcspClientCaStatusTableEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.6.1.1.13 +lcsStatusCertsOcspClientCaStatusTableEntryUnauthorizedResponses OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsOcspClientCaStatusTableEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.6.1.1.14 +lcsStatusCertsOcspClientCaStatusTableEntrySignerVerifyFailures OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsOcspClientCaStatusTableEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.6.1.1.15 +lcsStatusCertsOcspClientCaStatusTableEntryCertTimedOuts OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsOcspClientCaStatusTableEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.6.1.1.16 +lcsStatusCertsOcspClientCaStatusTableEntryGenericErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsOcspClientCaStatusTableEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.61.6.1.1.17 +lcsStatusCertsOcspClientCaStatusTableEntryTransportErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusCertsOcspClientCaStatusTableEntry 17 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.62 +lcsStatusVlan OBJECT IDENTIFIER ::= { lcsStatus 62 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.62.1 +lcsStatusVlanNetworksTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusVlanNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVlan 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.62.1.1 +lcsStatusVlanNetworksEntry OBJECT-TYPE + SYNTAX LcsStatusVlanNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusVlanNetworksEntryVlanId + } + ::= { lcsStatusVlanNetworksTable 1 } + +LcsStatusVlanNetworksEntry ::= SEQUENCE { + lcsStatusVlanNetworksEntryVlanId Integer32, + lcsStatusVlanNetworksEntryPorts DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.62.1.1.1 +lcsStatusVlanNetworksEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVlanNetworksEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.62.1.1.4 +lcsStatusVlanNetworksEntryPorts OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVlanNetworksEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.62.2 +lcsStatusVlanPortTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusVlanPortTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVlan 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.62.2.1 +lcsStatusVlanPortTableEntry OBJECT-TYPE + SYNTAX LcsStatusVlanPortTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusVlanPortTableEntryPort + } + ::= { lcsStatusVlanPortTableTable 1 } + +LcsStatusVlanPortTableEntry ::= SEQUENCE { + lcsStatusVlanPortTableEntryPort DisplayString, + lcsStatusVlanPortTableEntryAllowAllVlans INTEGER, + lcsStatusVlanPortTableEntryPortVlanId Integer32, + lcsStatusVlanPortTableEntryTaggingMode INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.62.2.1.1 +lcsStatusVlanPortTableEntryPort OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVlanPortTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.62.2.1.4 +lcsStatusVlanPortTableEntryAllowAllVlans OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVlanPortTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.62.2.1.5 +lcsStatusVlanPortTableEntryPortVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVlanPortTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.62.2.1.6 +lcsStatusVlanPortTableEntryTaggingMode OBJECT-TYPE + SYNTAX INTEGER { + eIngressMixed (0), + eNever (1), + eMixed (2), + eAlways (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVlanPortTableEntry 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.62.4 +lcsStatusVlanOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVlan 4 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.63 +lcsStatusGps OBJECT IDENTIFIER ::= { lcsStatus 63 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.63.1 +lcsStatusGpsOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusGps 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.63.2 +lcsStatusGpsFixType OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + e2d (2), + e3d (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusGps 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.63.3 +lcsStatusGpsTimestampGps OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusGps 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.63.4 +lcsStatusGpsLongitudeDeg OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..11)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusGps 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.63.5 +lcsStatusGpsLatitudeDeg OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusGps 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.63.6 +lcsStatusGpsAltitudeM OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusGps 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.63.7 +lcsStatusGpsPositionValid OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusGps 7 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.64 +lcsStatusUtm OBJECT IDENTIFIER ::= { lcsStatus 64 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.64.3 +lcsStatusUtmCf OBJECT IDENTIFIER ::= { lcsStatusUtm 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.1 +lcsStatusUtmCfAllowedUrls OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCf 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.2 +lcsStatusUtmCfOverridddenUrls OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCf 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.3 +lcsStatusUtmCfBlockedUrls OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCf 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.4 +lcsStatusUtmCfWhitelistedUrls OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCf 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.5 +lcsStatusUtmCfBlacklistedUrls OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCf 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.6 +lcsStatusUtmCfErrorCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCf 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.7 +lcsStatusUtmCfUncategorizedUrls OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCf 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.8 +lcsStatusUtmCfStatisticsFlush OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCf 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.64.3.17 +lcsStatusUtmCfLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusUtmCfLogEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCf 17 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.64.3.17.1 +lcsStatusUtmCfLogEntry OBJECT-TYPE + SYNTAX LcsStatusUtmCfLogEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusUtmCfLogEntryIdx + } + ::= { lcsStatusUtmCfLogTable 1 } + +LcsStatusUtmCfLogEntry ::= SEQUENCE { + lcsStatusUtmCfLogEntryIdx Integer32, + lcsStatusUtmCfLogEntrySystemTime Counter32, + lcsStatusUtmCfLogEntryCause INTEGER, + lcsStatusUtmCfLogEntryUserProfile DisplayString, + lcsStatusUtmCfLogEntryCategoryError DisplayString, + lcsStatusUtmCfLogEntryUrl DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.17.1.1 +lcsStatusUtmCfLogEntryIdx OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfLogEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.17.1.2 +lcsStatusUtmCfLogEntrySystemTime OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfLogEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.17.1.3 +lcsStatusUtmCfLogEntryCause OBJECT-TYPE + SYNTAX INTEGER { + eSpamMail (1), + ePhishingMail (2), + eUpdate (3), + eInfected (4), + eBlockedUrl (5), + eError (6), + eLicenseExpired (7), + eLicenseExceeded (8), + eOverride (9), + eProxyLimit (10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfLogEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.17.1.4 +lcsStatusUtmCfLogEntryUserProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfLogEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.17.1.5 +lcsStatusUtmCfLogEntryCategoryError OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfLogEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.17.1.6 +lcsStatusUtmCfLogEntryUrl OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfLogEntry 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.18 +lcsStatusUtmCfLicenseCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCf 18 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.64.3.19 +lcsStatusUtmCfUsersTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusUtmCfUsersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCf 19 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.64.3.19.1 +lcsStatusUtmCfUsersEntry OBJECT-TYPE + SYNTAX LcsStatusUtmCfUsersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusUtmCfUsersEntryIndex + } + ::= { lcsStatusUtmCfUsersTable 1 } + +LcsStatusUtmCfUsersEntry ::= SEQUENCE { + lcsStatusUtmCfUsersEntryIndex Integer32, + lcsStatusUtmCfUsersEntryIpAddress IpAddress, + lcsStatusUtmCfUsersEntryMacAddress DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.19.1.1 +lcsStatusUtmCfUsersEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfUsersEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.19.1.2 +lcsStatusUtmCfUsersEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfUsersEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.19.1.3 +lcsStatusUtmCfUsersEntryMacAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfUsersEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.64.3.20 +lcsStatusUtmCfOverrideLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusUtmCfOverrideLogEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCf 20 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.64.3.20.1 +lcsStatusUtmCfOverrideLogEntry OBJECT-TYPE + SYNTAX LcsStatusUtmCfOverrideLogEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusUtmCfOverrideLogEntryIndex + } + ::= { lcsStatusUtmCfOverrideLogTable 1 } + +LcsStatusUtmCfOverrideLogEntry ::= SEQUENCE { + lcsStatusUtmCfOverrideLogEntryIndex Integer32, + lcsStatusUtmCfOverrideLogEntryDateTime DisplayString, + lcsStatusUtmCfOverrideLogEntryUserIp IpAddress, + lcsStatusUtmCfOverrideLogEntryUserMac DisplayString, + lcsStatusUtmCfOverrideLogEntryTargetUrl DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.20.1.1 +lcsStatusUtmCfOverrideLogEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfOverrideLogEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.20.1.2 +lcsStatusUtmCfOverrideLogEntryDateTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfOverrideLogEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.20.1.3 +lcsStatusUtmCfOverrideLogEntryUserIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfOverrideLogEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.20.1.4 +lcsStatusUtmCfOverrideLogEntryUserMac OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfOverrideLogEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.20.1.5 +lcsStatusUtmCfOverrideLogEntryTargetUrl OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfOverrideLogEntry 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.21 +lcsStatusUtmCfLogFlush OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCf 21 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.64.3.22 +lcsStatusUtmCfCategoryStatisticsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusUtmCfCategoryStatisticsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCf 22 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.64.3.22.1 +lcsStatusUtmCfCategoryStatisticsEntry OBJECT-TYPE + SYNTAX LcsStatusUtmCfCategoryStatisticsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusUtmCfCategoryStatisticsEntryCat + } + ::= { lcsStatusUtmCfCategoryStatisticsTable 1 } + +LcsStatusUtmCfCategoryStatisticsEntry ::= SEQUENCE { + lcsStatusUtmCfCategoryStatisticsEntryCat INTEGER, + lcsStatusUtmCfCategoryStatisticsEntryHit Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.22.1.1 +lcsStatusUtmCfCategoryStatisticsEntryCat OBJECT-TYPE + SYNTAX INTEGER { + ePornographyEroticSex (1), + eSwimwearLingerie (3), + eShopping (4), + eAuctionsClassifiedAds (5), + eGovNonProv (6), + eCitiesRegionsCountries (8), + eEducation (9), + ePoliticalParties (10), + eReligionSpirituality (11), + eIllegalActivities (13), + eComputerCrimeWarezHacking (14), + ePolHateDiscr (15), + eViolenceExtreme (17), + eGamblingLottery (18), + eComputerGames (19), + eToys (20), + eCinTvSocial (21), + eRecrFacThemPark (22), + eArtsMuseumsTheaters (23), + eMusicRadioBroadcast (24), + eLiteratureBooks (25), + eHumorCartoons (26), + eNewsMagazines (27), + eWebmailUnifiedMessaging (28), + eChat (29), + eBlogsBulletinBoards (30), + eMobileTelephony (31), + eDigitalPostcards (32), + eSearchWebPortal (33), + eSoftwareHardware (34), + eCommunicationServices (35), + eItSecurityItInformation (36), + eWebSiteTranslation (37), + eAnonymousProxies (38), + eIllegalDrugs (39), + eAlcoholTobacco (40), + eDatingNetworks (43), + eRestEnter (44), + eTravel (45), + eFashionCosmeticsJewelry (46), + eSports (47), + eArchConstFurn (48), + eEnvironmentClimatePets (49), + ePersonalWebSites (50), + eJobSearch (51), + eFinanceInvestment (52), + eBanking (54), + eVehicles (55), + eWeaponsMilitary (56), + eMedicineHealthSelfHelp (57), + eAbortion (58), + eSpamUrls (60), + eMalware (61), + ePhishingUrls (62), + eInstantMessaging (63), + eGeneralBusiness (67), + eBannerAdvertisements (74), + eWebStorage (80), + eCommandControlServer (81) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Category" + ::= { lcsStatusUtmCfCategoryStatisticsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.22.1.2 +lcsStatusUtmCfCategoryStatisticsEntryHit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfCategoryStatisticsEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.64.3.23 +lcsStatusUtmCfLastSnapshotTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusUtmCfLastSnapshotEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCf 23 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.64.3.23.1 +lcsStatusUtmCfLastSnapshotEntry OBJECT-TYPE + SYNTAX LcsStatusUtmCfLastSnapshotEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusUtmCfLastSnapshotEntryCat + } + ::= { lcsStatusUtmCfLastSnapshotTable 1 } + +LcsStatusUtmCfLastSnapshotEntry ::= SEQUENCE { + lcsStatusUtmCfLastSnapshotEntryCat INTEGER, + lcsStatusUtmCfLastSnapshotEntryHit Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.23.1.1 +lcsStatusUtmCfLastSnapshotEntryCat OBJECT-TYPE + SYNTAX INTEGER { + ePornographyEroticSex (1), + eSwimwearLingerie (3), + eShopping (4), + eAuctionsClassifiedAds (5), + eGovNonProv (6), + eCitiesRegionsCountries (8), + eEducation (9), + ePoliticalParties (10), + eReligionSpirituality (11), + eIllegalActivities (13), + eComputerCrimeWarezHacking (14), + ePolHateDiscr (15), + eViolenceExtreme (17), + eGamblingLottery (18), + eComputerGames (19), + eToys (20), + eCinTvSocial (21), + eRecrFacThemPark (22), + eArtsMuseumsTheaters (23), + eMusicRadioBroadcast (24), + eLiteratureBooks (25), + eHumorCartoons (26), + eNewsMagazines (27), + eWebmailUnifiedMessaging (28), + eChat (29), + eBlogsBulletinBoards (30), + eMobileTelephony (31), + eDigitalPostcards (32), + eSearchWebPortal (33), + eSoftwareHardware (34), + eCommunicationServices (35), + eItSecurityItInformation (36), + eWebSiteTranslation (37), + eAnonymousProxies (38), + eIllegalDrugs (39), + eAlcoholTobacco (40), + eDatingNetworks (43), + eRestEnter (44), + eTravel (45), + eFashionCosmeticsJewelry (46), + eSports (47), + eArchConstFurn (48), + eEnvironmentClimatePets (49), + ePersonalWebSites (50), + eJobSearch (51), + eFinanceInvestment (52), + eBanking (54), + eVehicles (55), + eWeaponsMilitary (56), + eMedicineHealthSelfHelp (57), + eAbortion (58), + eSpamUrls (60), + eMalware (61), + ePhishingUrls (62), + eInstantMessaging (63), + eGeneralBusiness (67), + eBannerAdvertisements (74), + eWebStorage (80), + eCommandControlServer (81) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Category" + ::= { lcsStatusUtmCfLastSnapshotEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.23.1.2 +lcsStatusUtmCfLastSnapshotEntryHit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfLastSnapshotEntry 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.24 +lcsStatusUtmCfSnapshotDate OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCf 24 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.25 +lcsStatusUtmCfCategoryStatisticsFlush OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCf 25 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.64.3.27 +lcsStatusUtmCfPerf OBJECT IDENTIFIER ::= { lcsStatusUtmCf 27 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.27.1 +lcsStatusUtmCfPerfRatingServer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerf 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.27.2 +lcsStatusUtmCfPerfUsedSince OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerf 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.27.3 +lcsStatusUtmCfPerfIniServTime OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerf 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.27.4 +lcsStatusUtmCfPerfProcUrls OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerf 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.27.5 +lcsStatusUtmCfPerfProcTimeouts OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerf 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.27.6 +lcsStatusUtmCfPerfMinProcTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..6)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerf 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.27.7 +lcsStatusUtmCfPerfMaxProcTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..6)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerf 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.27.8 +lcsStatusUtmCfPerfAvgProcTime OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerf 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.27.9 +lcsStatusUtmCfPerf5minProcTime OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerf 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.27.10 +lcsStatusUtmCfPerfServRequests OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerf 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.27.11 +lcsStatusUtmCfPerfServTimeouts OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerf 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.27.12 +lcsStatusUtmCfPerfMinServTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..6)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerf 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.27.13 +lcsStatusUtmCfPerfMaxServTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..6)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerf 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.27.14 +lcsStatusUtmCfPerfAvgServTime OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerf 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.27.15 +lcsStatusUtmCfPerf5minServTime OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerf 15 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.64.3.27.16 +lcsStatusUtmCfPerfPerfLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusUtmCfPerfPerfLogEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Performance Log" + ::= { lcsStatusUtmCfPerf 16 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1 +lcsStatusUtmCfPerfPerfLogEntry OBJECT-TYPE + SYNTAX LcsStatusUtmCfPerfPerfLogEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusUtmCfPerfPerfLogEntryIdx + } + ::= { lcsStatusUtmCfPerfPerfLogTable 1 } + +LcsStatusUtmCfPerfPerfLogEntry ::= SEQUENCE { + lcsStatusUtmCfPerfPerfLogEntryIdx Integer32, + lcsStatusUtmCfPerfPerfLogEntryRatingServer DisplayString, + lcsStatusUtmCfPerfPerfLogEntryUsedSince DisplayString, + lcsStatusUtmCfPerfPerfLogEntryUsedSinceNumerical Counter32, + lcsStatusUtmCfPerfPerfLogEntryIniServTime Integer32, + lcsStatusUtmCfPerfPerfLogEntryProcUrls Integer32, + lcsStatusUtmCfPerfPerfLogEntryProcTimeouts Integer32, + lcsStatusUtmCfPerfPerfLogEntryMinProcTimeNumerical Integer32, + lcsStatusUtmCfPerfPerfLogEntryMaxProcTimeNumerical Integer32, + lcsStatusUtmCfPerfPerfLogEntryAvgProcTimeNumerical Integer32, + lcsStatusUtmCfPerfPerfLogEntry5minProcTimeNumerical Integer32, + lcsStatusUtmCfPerfPerfLogEntryServRequests Integer32, + lcsStatusUtmCfPerfPerfLogEntryServTimeouts Integer32, + lcsStatusUtmCfPerfPerfLogEntryMinServTimeNumerical Integer32, + lcsStatusUtmCfPerfPerfLogEntryMaxServTimeNumerical Integer32, + lcsStatusUtmCfPerfPerfLogEntryAvgServTimeNumerical Integer32, + lcsStatusUtmCfPerfPerfLogEntry5minServTimeNumerical Integer32, + lcsStatusUtmCfPerfPerfLogEntryMinProcTime DisplayString, + lcsStatusUtmCfPerfPerfLogEntryMaxProcTime DisplayString, + lcsStatusUtmCfPerfPerfLogEntryAvgProcTime DisplayString, + lcsStatusUtmCfPerfPerfLogEntry5minProcTime DisplayString, + lcsStatusUtmCfPerfPerfLogEntryMinServTime DisplayString, + lcsStatusUtmCfPerfPerfLogEntryMaxServTime DisplayString, + lcsStatusUtmCfPerfPerfLogEntryAvgServTime DisplayString, + lcsStatusUtmCfPerfPerfLogEntry5minServTime DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.1 +lcsStatusUtmCfPerfPerfLogEntryIdx OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.2 +lcsStatusUtmCfPerfPerfLogEntryRatingServer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.3 +lcsStatusUtmCfPerfPerfLogEntryUsedSince OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.4 +lcsStatusUtmCfPerfPerfLogEntryUsedSinceNumerical OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.5 +lcsStatusUtmCfPerfPerfLogEntryIniServTime OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.6 +lcsStatusUtmCfPerfPerfLogEntryProcUrls OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.7 +lcsStatusUtmCfPerfPerfLogEntryProcTimeouts OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.8 +lcsStatusUtmCfPerfPerfLogEntryMinProcTimeNumerical OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.9 +lcsStatusUtmCfPerfPerfLogEntryMaxProcTimeNumerical OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.10 +lcsStatusUtmCfPerfPerfLogEntryAvgProcTimeNumerical OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.11 +lcsStatusUtmCfPerfPerfLogEntry5minProcTimeNumerical OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.12 +lcsStatusUtmCfPerfPerfLogEntryServRequests OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.13 +lcsStatusUtmCfPerfPerfLogEntryServTimeouts OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.14 +lcsStatusUtmCfPerfPerfLogEntryMinServTimeNumerical OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.15 +lcsStatusUtmCfPerfPerfLogEntryMaxServTimeNumerical OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.16 +lcsStatusUtmCfPerfPerfLogEntryAvgServTimeNumerical OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.17 +lcsStatusUtmCfPerfPerfLogEntry5minServTimeNumerical OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.18 +lcsStatusUtmCfPerfPerfLogEntryMinProcTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.19 +lcsStatusUtmCfPerfPerfLogEntryMaxProcTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.20 +lcsStatusUtmCfPerfPerfLogEntryAvgProcTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.21 +lcsStatusUtmCfPerfPerfLogEntry5minProcTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.22 +lcsStatusUtmCfPerfPerfLogEntryMinServTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.23 +lcsStatusUtmCfPerfPerfLogEntryMaxServTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.24 +lcsStatusUtmCfPerfPerfLogEntryAvgServTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 24 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.27.16.1.25 +lcsStatusUtmCfPerfPerfLogEntry5minServTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfPerfPerfLogEntry 25 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.27.17 +lcsStatusUtmCfPerfResetPerfStat OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Reset Performance Statistics" + ::= { lcsStatusUtmCfPerf 17 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.64.3.28 +lcsStatusUtmCfProxConn OBJECT IDENTIFIER ::= { lcsStatusUtmCf 28 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.28.1 +lcsStatusUtmCfProxConnCurrentConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfProxConn 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.28.2 +lcsStatusUtmCfProxConnProxyConnectionsLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfProxConn 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.28.3 +lcsStatusUtmCfProxConnMaxConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfProxConn 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.28.4 +lcsStatusUtmCfProxConnAvgConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfProxConn 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.28.5 +lcsStatusUtmCfProxConn5minAvgConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfProxConn 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.28.6 +lcsStatusUtmCfProxConnTotalConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfProxConn 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.28.7 +lcsStatusUtmCfProxConnDeniedConnectionAttempts OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfProxConn 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.28.8 +lcsStatusUtmCfProxConnConnectionStatisticsSince OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfProxConn 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.28.9 +lcsStatusUtmCfProxConnResetConnectionStatistics OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfProxConn 9 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.64.3.29 +lcsStatusUtmCfCache OBJECT IDENTIFIER ::= { lcsStatusUtmCf 29 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.29.1 +lcsStatusUtmCfCacheMaximumSize OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfCache 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.29.2 +lcsStatusUtmCfCacheCurrentSize OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfCache 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.29.3 +lcsStatusUtmCfCacheHitRatInPerc OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Hit ratio in percent" + ::= { lcsStatusUtmCfCache 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.64.3.29.4 +lcsStatusUtmCfCacheTop10AllowedHostsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusUtmCfCacheTop10AllowedHostsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfCache 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.64.3.29.4.1 +lcsStatusUtmCfCacheTop10AllowedHostsEntry OBJECT-TYPE + SYNTAX LcsStatusUtmCfCacheTop10AllowedHostsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusUtmCfCacheTop10AllowedHostsEntryHost + } + ::= { lcsStatusUtmCfCacheTop10AllowedHostsTable 1 } + +LcsStatusUtmCfCacheTop10AllowedHostsEntry ::= SEQUENCE { + lcsStatusUtmCfCacheTop10AllowedHostsEntryHost DisplayString, + lcsStatusUtmCfCacheTop10AllowedHostsEntryCat DisplayString, + lcsStatusUtmCfCacheTop10AllowedHostsEntryCount Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.29.4.1.1 +lcsStatusUtmCfCacheTop10AllowedHostsEntryHost OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfCacheTop10AllowedHostsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.29.4.1.2 +lcsStatusUtmCfCacheTop10AllowedHostsEntryCat OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Category" + ::= { lcsStatusUtmCfCacheTop10AllowedHostsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.29.4.1.3 +lcsStatusUtmCfCacheTop10AllowedHostsEntryCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfCacheTop10AllowedHostsEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.64.3.29.5 +lcsStatusUtmCfCacheTop10OverriddenHostsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusUtmCfCacheTop10OverriddenHostsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfCache 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.64.3.29.5.1 +lcsStatusUtmCfCacheTop10OverriddenHostsEntry OBJECT-TYPE + SYNTAX LcsStatusUtmCfCacheTop10OverriddenHostsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusUtmCfCacheTop10OverriddenHostsEntryHost + } + ::= { lcsStatusUtmCfCacheTop10OverriddenHostsTable 1 } + +LcsStatusUtmCfCacheTop10OverriddenHostsEntry ::= SEQUENCE { + lcsStatusUtmCfCacheTop10OverriddenHostsEntryHost DisplayString, + lcsStatusUtmCfCacheTop10OverriddenHostsEntryCat DisplayString, + lcsStatusUtmCfCacheTop10OverriddenHostsEntryCount Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.29.5.1.1 +lcsStatusUtmCfCacheTop10OverriddenHostsEntryHost OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfCacheTop10OverriddenHostsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.29.5.1.2 +lcsStatusUtmCfCacheTop10OverriddenHostsEntryCat OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Category" + ::= { lcsStatusUtmCfCacheTop10OverriddenHostsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.29.5.1.3 +lcsStatusUtmCfCacheTop10OverriddenHostsEntryCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfCacheTop10OverriddenHostsEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.64.3.29.6 +lcsStatusUtmCfCacheTop10BlockedHostsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusUtmCfCacheTop10BlockedHostsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfCache 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.64.3.29.6.1 +lcsStatusUtmCfCacheTop10BlockedHostsEntry OBJECT-TYPE + SYNTAX LcsStatusUtmCfCacheTop10BlockedHostsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusUtmCfCacheTop10BlockedHostsEntryHost + } + ::= { lcsStatusUtmCfCacheTop10BlockedHostsTable 1 } + +LcsStatusUtmCfCacheTop10BlockedHostsEntry ::= SEQUENCE { + lcsStatusUtmCfCacheTop10BlockedHostsEntryHost DisplayString, + lcsStatusUtmCfCacheTop10BlockedHostsEntryCat DisplayString, + lcsStatusUtmCfCacheTop10BlockedHostsEntryCount Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.29.6.1.1 +lcsStatusUtmCfCacheTop10BlockedHostsEntryHost OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfCacheTop10BlockedHostsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.29.6.1.2 +lcsStatusUtmCfCacheTop10BlockedHostsEntryCat OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Category" + ::= { lcsStatusUtmCfCacheTop10BlockedHostsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.64.3.29.6.1.3 +lcsStatusUtmCfCacheTop10BlockedHostsEntryCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfCacheTop10BlockedHostsEntry 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.29.7 +lcsStatusUtmCfCacheCacheFlush OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCfCache 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.64.3.255 +lcsStatusUtmCfOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusUtmCf 255 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.67 +lcsStatusComPorts OBJECT IDENTIFIER ::= { lcsStatus 67 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.67.1 +lcsStatusComPortsDevTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusComPortsDevEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPorts 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.67.1.1 +lcsStatusComPortsDevEntry OBJECT-TYPE + SYNTAX LcsStatusComPortsDevEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusComPortsDevEntryIndex + } + ::= { lcsStatusComPortsDevTable 1 } + +LcsStatusComPortsDevEntry ::= SEQUENCE { + lcsStatusComPortsDevEntryIndex Integer32, + lcsStatusComPortsDevEntryDeviceType INTEGER, + lcsStatusComPortsDevEntryBus INTEGER, + lcsStatusComPortsDevEntryDevice Integer32, + lcsStatusComPortsDevEntryVendor Integer32, + lcsStatusComPortsDevEntryUsbDriver INTEGER, + lcsStatusComPortsDevEntryState INTEGER, + lcsStatusComPortsDevEntryFirmwareVersion DisplayString, + lcsStatusComPortsDevEntryServ INTEGER, + lcsStatusComPortsDevEntryFullName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.1.1.1 +lcsStatusComPortsDevEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsDevEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.1.1.2 +lcsStatusComPortsDevEntryDeviceType OBJECT-TYPE + SYNTAX INTEGER { + eOutband (1), + eOutbandModem (2), + eSierraMinicard8780 (11), + eSierraMinicard8781 (12), + eOptionIcon (17), + eOptionMinicard0201 (19), + eHuaweiE612E630E1750 (21), + e4gSystemsUxs1 (23), + eNovatelMerlinMc950d (26), + eSierraAircard875u (30), + eHuaweiE172E220E870 (31), + eBelkinF5u103 (33), + eProlific2303 (34), + eFtdi8u232am (35), + eGpsNmea (36), + eSierraMinicard8790 (38), + eSierraCompass885 (39), + eQualcomDm (45), + eSierraAircard501 (46), + eHuaweiK4505 (49), + eHuaweiK3765 (51), + eSierraDirectIp (53), + eHuaweiE182 (54), + eSierraMinicard8705 (55), + eSierraMinicard8801 (56), + eHuaweiE1750 (57), + eNokiaCs19 (59), + eHuaweiE398 (60), + eHuaweiE1550 (61), + eSierraMinicard7710 (62), + eHuaweiE352 (64) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsDevEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.1.1.3 +lcsStatusComPortsDevEntryBus OBJECT-TYPE + SYNTAX INTEGER { + eOutband (1), + eCardbus (2), + eUsb (3), + eVirtual (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsDevEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.1.1.4 +lcsStatusComPortsDevEntryDevice OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsDevEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.1.1.5 +lcsStatusComPortsDevEntryVendor OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsDevEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.1.1.11 +lcsStatusComPortsDevEntryUsbDriver OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eUbsa (1), + eUchcom (2), + eUftdi (3), + eUgensa (4), + eUhmodem (5), + eUkyopon (6), + eUplcom (7), + eUslsa (8), + eUcdcacm (10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsDevEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.1.1.13 +lcsStatusComPortsDevEntryState OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eInitialize (1), + eWaitForFirmware (2), + eReady (3), + eInUse (4), + eExclusive (5), + eInitialize2 (6), + eResetting (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsDevEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.1.1.14 +lcsStatusComPortsDevEntryFirmwareVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsDevEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.1.1.15 +lcsStatusComPortsDevEntryServ OBJECT-TYPE + SYNTAX INTEGER { + eWan (1), + eCOMPortServ (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsDevEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.1.1.99 +lcsStatusComPortsDevEntryFullName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsDevEntry 99 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.67.2 +lcsStatusComPortsComPortServer OBJECT IDENTIFIER ::= { lcsStatusComPorts 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.67.2.1 +lcsStatusComPortsComPortServerNetworkStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusComPortsComPortServerNetworkStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServer 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.67.2.1.1 +lcsStatusComPortsComPortServerNetworkStatusEntry OBJECT-TYPE + SYNTAX LcsStatusComPortsComPortServerNetworkStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusComPortsComPortServerNetworkStatusEntryDeviceType, + lcsStatusComPortsComPortServerNetworkStatusEntryPortNumber + } + ::= { lcsStatusComPortsComPortServerNetworkStatusTable 1 } + +LcsStatusComPortsComPortServerNetworkStatusEntry ::= SEQUENCE { + lcsStatusComPortsComPortServerNetworkStatusEntryDeviceType INTEGER, + lcsStatusComPortsComPortServerNetworkStatusEntryPortNumber Integer32, + lcsStatusComPortsComPortServerNetworkStatusEntryConnectionStatus INTEGER, + lcsStatusComPortsComPortServerNetworkStatusEntryLastError INTEGER, + lcsStatusComPortsComPortServerNetworkStatusEntryRemoteAddress IpAddress, + lcsStatusComPortsComPortServerNetworkStatusEntryLocalPort Integer32, + lcsStatusComPortsComPortServerNetworkStatusEntryRemotePort Integer32, + lcsStatusComPortsComPortServerNetworkStatusEntryFullName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.1.1.1 +lcsStatusComPortsComPortServerNetworkStatusEntryDeviceType OBJECT-TYPE + SYNTAX INTEGER { + eOutband (1), + eBelkinF5u103 (33), + eProlific2303 (34), + eFtdi8u232am (35), + eGpsNmea (36), + eQualcomDm (45) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerNetworkStatusEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.1.1.2 +lcsStatusComPortsComPortServerNetworkStatusEntryPortNumber OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerNetworkStatusEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.1.1.4 +lcsStatusComPortsComPortServerNetworkStatusEntryConnectionStatus OBJECT-TYPE + SYNTAX INTEGER { + eIdle (0), + eListening (1), + eConnecting (2), + eConnected (3), + eNotListening (4), + eConErrBackoff (5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerNetworkStatusEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.1.1.5 +lcsStatusComPortsComPortServerNetworkStatusEntryLastError OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eDnsError (1), + eTCPConnErr (2), + eRemDisc (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerNetworkStatusEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.1.1.6 +lcsStatusComPortsComPortServerNetworkStatusEntryRemoteAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerNetworkStatusEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.1.1.7 +lcsStatusComPortsComPortServerNetworkStatusEntryLocalPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerNetworkStatusEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.1.1.8 +lcsStatusComPortsComPortServerNetworkStatusEntryRemotePort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerNetworkStatusEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.1.1.99 +lcsStatusComPortsComPortServerNetworkStatusEntryFullName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerNetworkStatusEntry 99 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.67.2.2 +lcsStatusComPortsComPortServerComPortStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusComPortsComPortServerComPortStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServer 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.67.2.2.1 +lcsStatusComPortsComPortServerComPortStatusEntry OBJECT-TYPE + SYNTAX LcsStatusComPortsComPortServerComPortStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusComPortsComPortServerComPortStatusEntryDeviceType, + lcsStatusComPortsComPortServerComPortStatusEntryPortNumber + } + ::= { lcsStatusComPortsComPortServerComPortStatusTable 1 } + +LcsStatusComPortsComPortServerComPortStatusEntry ::= SEQUENCE { + lcsStatusComPortsComPortServerComPortStatusEntryDeviceType INTEGER, + lcsStatusComPortsComPortServerComPortStatusEntryPortNumber Integer32, + lcsStatusComPortsComPortServerComPortStatusEntryInterfaceStatus INTEGER, + lcsStatusComPortsComPortServerComPortStatusEntryBitRate INTEGER, + lcsStatusComPortsComPortServerComPortStatusEntryDataBits INTEGER, + lcsStatusComPortsComPortServerComPortStatusEntryParity INTEGER, + lcsStatusComPortsComPortServerComPortStatusEntryStopBits INTEGER, + lcsStatusComPortsComPortServerComPortStatusEntryHandshake INTEGER, + lcsStatusComPortsComPortServerComPortStatusEntryFullName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.2.1.1 +lcsStatusComPortsComPortServerComPortStatusEntryDeviceType OBJECT-TYPE + SYNTAX INTEGER { + eOutband (1), + eBelkinF5u103 (33), + eProlific2303 (34), + eFtdi8u232am (35), + eGpsNmea (36), + eQualcomDm (45) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerComPortStatusEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.2.1.2 +lcsStatusComPortsComPortServerComPortStatusEntryPortNumber OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerComPortStatusEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.2.1.4 +lcsStatusComPortsComPortServerComPortStatusEntryInterfaceStatus OBJECT-TYPE + SYNTAX INTEGER { + eNotPresent (0), + eNotReady (1), + eReady (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerComPortStatusEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.2.1.5 +lcsStatusComPortsComPortServerComPortStatusEntryBitRate OBJECT-TYPE + SYNTAX INTEGER { + e110 (110), + e300 (300), + e600 (600), + e1200 (1200), + e2400 (2400), + e4800 (4800), + e9600 (9600), + e19200 (19200), + e38400 (38400), + e57600 (57600), + e115200 (115200), + e125000 (125000), + e230400 (230400) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerComPortStatusEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.2.1.6 +lcsStatusComPortsComPortServerComPortStatusEntryDataBits OBJECT-TYPE + SYNTAX INTEGER { + e7 (7), + e8 (8) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerComPortStatusEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.2.1.7 +lcsStatusComPortsComPortServerComPortStatusEntryParity OBJECT-TYPE + SYNTAX INTEGER { + eNone (1), + eOdd (2), + eEven (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerComPortStatusEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.2.1.8 +lcsStatusComPortsComPortServerComPortStatusEntryStopBits OBJECT-TYPE + SYNTAX INTEGER { + e1 (1), + e2 (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerComPortStatusEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.2.1.9 +lcsStatusComPortsComPortServerComPortStatusEntryHandshake OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eRtsCts (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerComPortStatusEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.2.1.99 +lcsStatusComPortsComPortServerComPortStatusEntryFullName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerComPortStatusEntry 99 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.67.2.3 +lcsStatusComPortsComPortServerByteCountersTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusComPortsComPortServerByteCountersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServer 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.67.2.3.1 +lcsStatusComPortsComPortServerByteCountersEntry OBJECT-TYPE + SYNTAX LcsStatusComPortsComPortServerByteCountersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusComPortsComPortServerByteCountersEntryDeviceType, + lcsStatusComPortsComPortServerByteCountersEntryPortNumber + } + ::= { lcsStatusComPortsComPortServerByteCountersTable 1 } + +LcsStatusComPortsComPortServerByteCountersEntry ::= SEQUENCE { + lcsStatusComPortsComPortServerByteCountersEntryDeviceType INTEGER, + lcsStatusComPortsComPortServerByteCountersEntryPortNumber Integer32, + lcsStatusComPortsComPortServerByteCountersEntrySerialTx Integer32, + lcsStatusComPortsComPortServerByteCountersEntrySerialRx Integer32, + lcsStatusComPortsComPortServerByteCountersEntryNetworkTx Integer32, + lcsStatusComPortsComPortServerByteCountersEntryNetworkRx Integer32, + lcsStatusComPortsComPortServerByteCountersEntryFullName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.3.1.1 +lcsStatusComPortsComPortServerByteCountersEntryDeviceType OBJECT-TYPE + SYNTAX INTEGER { + eOutband (1), + eBelkinF5u103 (33), + eProlific2303 (34), + eFtdi8u232am (35), + eGpsNmea (36), + eQualcomDm (45) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerByteCountersEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.3.1.2 +lcsStatusComPortsComPortServerByteCountersEntryPortNumber OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerByteCountersEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.3.1.4 +lcsStatusComPortsComPortServerByteCountersEntrySerialTx OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerByteCountersEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.3.1.5 +lcsStatusComPortsComPortServerByteCountersEntrySerialRx OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerByteCountersEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.3.1.6 +lcsStatusComPortsComPortServerByteCountersEntryNetworkTx OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerByteCountersEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.3.1.7 +lcsStatusComPortsComPortServerByteCountersEntryNetworkRx OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerByteCountersEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.3.1.99 +lcsStatusComPortsComPortServerByteCountersEntryFullName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerByteCountersEntry 99 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.67.2.4 +lcsStatusComPortsComPortServerComPortErrorsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusComPortsComPortServerComPortErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServer 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.67.2.4.1 +lcsStatusComPortsComPortServerComPortErrorsEntry OBJECT-TYPE + SYNTAX LcsStatusComPortsComPortServerComPortErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusComPortsComPortServerComPortErrorsEntryDeviceType, + lcsStatusComPortsComPortServerComPortErrorsEntryPortNumber + } + ::= { lcsStatusComPortsComPortServerComPortErrorsTable 1 } + +LcsStatusComPortsComPortServerComPortErrorsEntry ::= SEQUENCE { + lcsStatusComPortsComPortServerComPortErrorsEntryDeviceType INTEGER, + lcsStatusComPortsComPortServerComPortErrorsEntryPortNumber Integer32, + lcsStatusComPortsComPortServerComPortErrorsEntryParityErrors Integer32, + lcsStatusComPortsComPortServerComPortErrorsEntryFramingErrors Integer32, + lcsStatusComPortsComPortServerComPortErrorsEntryRxLostErrors Integer32, + lcsStatusComPortsComPortServerComPortErrorsEntryFullName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.4.1.1 +lcsStatusComPortsComPortServerComPortErrorsEntryDeviceType OBJECT-TYPE + SYNTAX INTEGER { + eOutband (1), + eBelkinF5u103 (33), + eProlific2303 (34), + eFtdi8u232am (35), + eGpsNmea (36), + eQualcomDm (45) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerComPortErrorsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.4.1.2 +lcsStatusComPortsComPortServerComPortErrorsEntryPortNumber OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerComPortErrorsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.4.1.4 +lcsStatusComPortsComPortServerComPortErrorsEntryParityErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerComPortErrorsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.4.1.5 +lcsStatusComPortsComPortServerComPortErrorsEntryFramingErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerComPortErrorsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.4.1.6 +lcsStatusComPortsComPortServerComPortErrorsEntryRxLostErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerComPortErrorsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.4.1.99 +lcsStatusComPortsComPortServerComPortErrorsEntryFullName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerComPortErrorsEntry 99 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.67.2.5 +lcsStatusComPortsComPortServerConnTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusComPortsComPortServerConnEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServer 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.67.2.5.1 +lcsStatusComPortsComPortServerConnEntry OBJECT-TYPE + SYNTAX LcsStatusComPortsComPortServerConnEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusComPortsComPortServerConnEntryDeviceType, + lcsStatusComPortsComPortServerConnEntryPortNumber + } + ::= { lcsStatusComPortsComPortServerConnTable 1 } + +LcsStatusComPortsComPortServerConnEntry ::= SEQUENCE { + lcsStatusComPortsComPortServerConnEntryDeviceType INTEGER, + lcsStatusComPortsComPortServerConnEntryPortNumber Integer32, + lcsStatusComPortsComPortServerConnEntryServGrant Integer32, + lcsStatusComPortsComPortServerConnEntryServRej Integer32, + lcsStatusComPortsComPortServerConnEntryClntSucc Integer32, + lcsStatusComPortsComPortServerConnEntryClntDnsErr Integer32, + lcsStatusComPortsComPortServerConnEntryClntTcpErr Integer32, + lcsStatusComPortsComPortServerConnEntryClntRemDisc Integer32, + lcsStatusComPortsComPortServerConnEntryFullName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.5.1.1 +lcsStatusComPortsComPortServerConnEntryDeviceType OBJECT-TYPE + SYNTAX INTEGER { + eOutband (1), + eBelkinF5u103 (33), + eProlific2303 (34), + eFtdi8u232am (35), + eGpsNmea (36), + eQualcomDm (45) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerConnEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.5.1.2 +lcsStatusComPortsComPortServerConnEntryPortNumber OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerConnEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.5.1.4 +lcsStatusComPortsComPortServerConnEntryServGrant OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerConnEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.5.1.5 +lcsStatusComPortsComPortServerConnEntryServRej OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerConnEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.5.1.6 +lcsStatusComPortsComPortServerConnEntryClntSucc OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerConnEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.5.1.7 +lcsStatusComPortsComPortServerConnEntryClntDnsErr OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerConnEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.5.1.8 +lcsStatusComPortsComPortServerConnEntryClntTcpErr OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerConnEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.5.1.9 +lcsStatusComPortsComPortServerConnEntryClntRemDisc OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerConnEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.67.2.5.1.99 +lcsStatusComPortsComPortServerConnEntryFullName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServerConnEntry 99 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.67.2.99 +lcsStatusComPortsComPortServerDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusComPortsComPortServer 99 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.68 +lcsStatusBlockDevices OBJECT IDENTIFIER ::= { lcsStatus 68 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.68.1 +lcsStatusBlockDevicesDeviceListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusBlockDevicesDeviceListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusBlockDevices 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.68.1.1 +lcsStatusBlockDevicesDeviceListEntry OBJECT-TYPE + SYNTAX LcsStatusBlockDevicesDeviceListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusBlockDevicesDeviceListEntryId, + lcsStatusBlockDevicesDeviceListEntryPartition + } + ::= { lcsStatusBlockDevicesDeviceListTable 1 } + +LcsStatusBlockDevicesDeviceListEntry ::= SEQUENCE { + lcsStatusBlockDevicesDeviceListEntryId Integer32, + lcsStatusBlockDevicesDeviceListEntryType DisplayString, + lcsStatusBlockDevicesDeviceListEntryBlocksize Integer32, + lcsStatusBlockDevicesDeviceListEntryBlockcount Integer32, + lcsStatusBlockDevicesDeviceListEntryPartition Integer32, + lcsStatusBlockDevicesDeviceListEntryFirstBlock Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.68.1.1.1 +lcsStatusBlockDevicesDeviceListEntryId OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusBlockDevicesDeviceListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.68.1.1.2 +lcsStatusBlockDevicesDeviceListEntryType OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusBlockDevicesDeviceListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.68.1.1.3 +lcsStatusBlockDevicesDeviceListEntryBlocksize OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusBlockDevicesDeviceListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.68.1.1.4 +lcsStatusBlockDevicesDeviceListEntryBlockcount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusBlockDevicesDeviceListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.68.1.1.5 +lcsStatusBlockDevicesDeviceListEntryPartition OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusBlockDevicesDeviceListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.68.1.1.6 +lcsStatusBlockDevicesDeviceListEntryFirstBlock OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusBlockDevicesDeviceListEntry 6 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.69 +lcsStatusTacacsPlus OBJECT IDENTIFIER ::= { lcsStatus 69 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.69.1 +lcsStatusTacacsPlusAuthenticationErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTacacsPlus 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.69.2 +lcsStatusTacacsPlusAuthorisationErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTacacsPlus 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.69.3 +lcsStatusTacacsPlusDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTacacsPlus 3 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.70 +lcsStatusTemperatureMonitor OBJECT IDENTIFIER ::= { lcsStatus 70 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.70.1 +lcsStatusTemperatureMonitorExtremesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusTemperatureMonitorExtremesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTemperatureMonitor 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.70.1.1 +lcsStatusTemperatureMonitorExtremesEntry OBJECT-TYPE + SYNTAX LcsStatusTemperatureMonitorExtremesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusTemperatureMonitorExtremesEntryType + } + ::= { lcsStatusTemperatureMonitorExtremesTable 1 } + +LcsStatusTemperatureMonitorExtremesEntry ::= SEQUENCE { + lcsStatusTemperatureMonitorExtremesEntryType INTEGER, + lcsStatusTemperatureMonitorExtremesEntryValue Integer32, + lcsStatusTemperatureMonitorExtremesEntryTime DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.70.1.1.1 +lcsStatusTemperatureMonitorExtremesEntryType OBJECT-TYPE + SYNTAX INTEGER { + eMinimum1 (1), + eMaximum1 (2), + eMinimum2 (257), + eMaximum2 (258), + eMinimum3 (513), + eMaximum3 (514), + eMinimum4 (769), + eMaximum4 (770), + eMinimum5 (1025), + eMaximum5 (1026), + eMinimum6 (1281), + eMaximum6 (1282), + eMinimum7 (1537), + eMaximum7 (1538), + eMinimum8 (1793), + eMaximum8 (1794) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTemperatureMonitorExtremesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.70.1.1.2 +lcsStatusTemperatureMonitorExtremesEntryValue OBJECT-TYPE + SYNTAX Integer32 (-32768..32767) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTemperatureMonitorExtremesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.70.1.1.3 +lcsStatusTemperatureMonitorExtremesEntryTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusTemperatureMonitorExtremesEntry 3 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.72 +lcsStatusDsl OBJECT IDENTIFIER ::= { lcsStatus 72 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.72.1 +lcsStatusDslInterfacesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusDslInterfacesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDsl 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.72.1.1 +lcsStatusDslInterfacesEntry OBJECT-TYPE + SYNTAX LcsStatusDslInterfacesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusDslInterfacesEntryIfc + } + ::= { lcsStatusDslInterfacesTable 1 } + +LcsStatusDslInterfacesEntry ::= SEQUENCE { + lcsStatusDslInterfacesEntryIfc DisplayString, + lcsStatusDslInterfacesEntryLinkActive INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.1.1.1 +lcsStatusDslInterfacesEntryIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslInterfacesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.1.1.3 +lcsStatusDslInterfacesEntryLinkActive OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslInterfacesEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.72.2 +lcsStatusDslByteTransportTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusDslByteTransportEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDsl 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.72.2.1 +lcsStatusDslByteTransportEntry OBJECT-TYPE + SYNTAX LcsStatusDslByteTransportEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusDslByteTransportEntryIfc + } + ::= { lcsStatusDslByteTransportTable 1 } + +LcsStatusDslByteTransportEntry ::= SEQUENCE { + lcsStatusDslByteTransportEntryIfc DisplayString, + lcsStatusDslByteTransportEntryTxBytes Counter64, + lcsStatusDslByteTransportEntryRxBytes Counter64 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.2.1.1 +lcsStatusDslByteTransportEntryIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslByteTransportEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.2.1.2 +lcsStatusDslByteTransportEntryTxBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslByteTransportEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.2.1.3 +lcsStatusDslByteTransportEntryRxBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslByteTransportEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.72.3 +lcsStatusDslPacketTransportTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusDslPacketTransportEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDsl 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.72.3.1 +lcsStatusDslPacketTransportEntry OBJECT-TYPE + SYNTAX LcsStatusDslPacketTransportEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusDslPacketTransportEntryIfc + } + ::= { lcsStatusDslPacketTransportTable 1 } + +LcsStatusDslPacketTransportEntry ::= SEQUENCE { + lcsStatusDslPacketTransportEntryIfc DisplayString, + lcsStatusDslPacketTransportEntryRxPackets Counter32, + lcsStatusDslPacketTransportEntryTxPackets Counter32, + lcsStatusDslPacketTransportEntryRxBroadcasts Counter32, + lcsStatusDslPacketTransportEntryRxMulticasts Counter32, + lcsStatusDslPacketTransportEntryRxUnicasts Counter32, + lcsStatusDslPacketTransportEntryTxBroadcasts Counter32, + lcsStatusDslPacketTransportEntryTxMulticasts Counter32, + lcsStatusDslPacketTransportEntryTxUnicasts Counter32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.3.1.1 +lcsStatusDslPacketTransportEntryIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslPacketTransportEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.3.1.2 +lcsStatusDslPacketTransportEntryRxPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslPacketTransportEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.3.1.3 +lcsStatusDslPacketTransportEntryTxPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslPacketTransportEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.3.1.4 +lcsStatusDslPacketTransportEntryRxBroadcasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslPacketTransportEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.3.1.5 +lcsStatusDslPacketTransportEntryRxMulticasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslPacketTransportEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.3.1.6 +lcsStatusDslPacketTransportEntryRxUnicasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslPacketTransportEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.3.1.7 +lcsStatusDslPacketTransportEntryTxBroadcasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslPacketTransportEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.3.1.8 +lcsStatusDslPacketTransportEntryTxMulticasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslPacketTransportEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.3.1.9 +lcsStatusDslPacketTransportEntryTxUnicasts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslPacketTransportEntry 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.72.4 +lcsStatusDslErrorsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusDslErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDsl 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.72.4.1 +lcsStatusDslErrorsEntry OBJECT-TYPE + SYNTAX LcsStatusDslErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusDslErrorsEntryIfc + } + ::= { lcsStatusDslErrorsTable 1 } + +LcsStatusDslErrorsEntry ::= SEQUENCE { + lcsStatusDslErrorsEntryIfc DisplayString, + lcsStatusDslErrorsEntryRxErrors Counter32, + lcsStatusDslErrorsEntryTxErrors Counter32, + lcsStatusDslErrorsEntryStackErrors Counter32, + lcsStatusDslErrorsEntryNicErrors Counter32, + lcsStatusDslErrorsEntryQueueErrors Counter32, + lcsStatusDslErrorsEntryRxCrcErrors Counter32, + lcsStatusDslErrorsEntryCollisions Counter32, + lcsStatusDslErrorsEntrySingleCollisions Counter32, + lcsStatusDslErrorsEntryMultipleCollisions Counter32, + lcsStatusDslErrorsEntryLateCollisions Counter32, + lcsStatusDslErrorsEntryExcessiveCollisions Counter32, + lcsStatusDslErrorsEntryRxAlignErrors Counter32, + lcsStatusDslErrorsEntryRxTooShort Counter32, + lcsStatusDslErrorsEntryRxTooLong Counter32, + lcsStatusDslErrorsEntryTxCarrier Counter32, + lcsStatusDslErrorsEntryTxDeferred Counter32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.4.1.1 +lcsStatusDslErrorsEntryIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslErrorsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.4.1.2 +lcsStatusDslErrorsEntryRxErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslErrorsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.4.1.3 +lcsStatusDslErrorsEntryTxErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslErrorsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.4.1.4 +lcsStatusDslErrorsEntryStackErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslErrorsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.4.1.5 +lcsStatusDslErrorsEntryNicErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslErrorsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.4.1.6 +lcsStatusDslErrorsEntryQueueErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslErrorsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.4.1.7 +lcsStatusDslErrorsEntryRxCrcErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslErrorsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.4.1.8 +lcsStatusDslErrorsEntryCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslErrorsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.4.1.9 +lcsStatusDslErrorsEntrySingleCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslErrorsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.4.1.10 +lcsStatusDslErrorsEntryMultipleCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslErrorsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.4.1.11 +lcsStatusDslErrorsEntryLateCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslErrorsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.4.1.12 +lcsStatusDslErrorsEntryExcessiveCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslErrorsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.4.1.13 +lcsStatusDslErrorsEntryRxAlignErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslErrorsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.4.1.14 +lcsStatusDslErrorsEntryRxTooShort OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslErrorsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.4.1.15 +lcsStatusDslErrorsEntryRxTooLong OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslErrorsEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.4.1.16 +lcsStatusDslErrorsEntryTxCarrier OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslErrorsEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.72.4.1.17 +lcsStatusDslErrorsEntryTxDeferred OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDslErrorsEntry 17 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.72.30 +lcsStatusDslDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusDsl 30 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.73 +lcsStatusWlanMngmt OBJECT IDENTIFIER ::= { lcsStatus 73 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.1 +lcsStatusWlanMngmtControllerState OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eInitScepClient (1), + eCertReqSent (2), + eReady (3), + eTimeNotSet (4), + eNoRandom (5), + eSubcaInitScep (6), + eDisabled (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmt 1 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.73.2 +lcsStatusWlanMngmtApConf OBJECT IDENTIFIER ::= { lcsStatusWlanMngmt 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.1 +lcsStatusWlanMngmtApConfNetwprofilsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConfNetwprofilsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "network profiles" + ::= { lcsStatusWlanMngmtApConf 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.1.1 +lcsStatusWlanMngmtApConfNetwprofilsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConfNetwprofilsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConfNetwprofilsEntryName + } + ::= { lcsStatusWlanMngmtApConfNetwprofilsTable 1 } + +LcsStatusWlanMngmtApConfNetwprofilsEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConfNetwprofilsEntryName DisplayString, + lcsStatusWlanMngmtApConfNetwprofilsEntryOperating INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntryVlanId Integer32, + lcsStatusWlanMngmtApConfNetwprofilsEntryEncryption INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntryWpa1SessionKeytypes INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntryWpaVersion INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntryKey DisplayString, + lcsStatusWlanMngmtApConfNetwprofilsEntryRadioBand INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntryContinuation Integer32, + lcsStatusWlanMngmtApConfNetwprofilsEntryMinTxRate INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntryMaxTxRate INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntryBasicRate INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntry11bPreamble INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntryMacFilter INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntryClBrgSupport INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntryMaxStations Integer32, + lcsStatusWlanMngmtApConfNetwprofilsEntrySsidBroadcast INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntrySsid DisplayString, + lcsStatusWlanMngmtApConfNetwprofilsEntryMinHtMcs INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntryMaxHtMcs INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntryShortGuardInterval INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntryMaxSpatialStreams INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntrySendAggregates INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntryWpa2SessionKeytypes INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntryRadiusAccounting INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntryVlanMode INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntryConnectSsidTo INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntryInterStationTraffic INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntryVlanIdnew Integer32, + lcsStatusWlanMngmtApConfNetwprofilsEntryRadiusProfile DisplayString, + lcsStatusWlanMngmtApConfNetwprofilsEntryStbcActivated INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntryLdpcActivated INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntryMinClientStrength Integer32, + lcsStatusWlanMngmtApConfNetwprofilsEntryIeee80211uNetworkProfile DisplayString, + lcsStatusWlanMngmtApConfNetwprofilsEntryOkc INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntryWpa2KeyManagement BITS, + lcsStatusWlanMngmtApConfNetwprofilsEntryApsd INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntryProtMgmtFrames INTEGER, + lcsStatusWlanMngmtApConfNetwprofilsEntryTxLimit Integer32, + lcsStatusWlanMngmtApConfNetwprofilsEntryRxLimit Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.1 +lcsStatusWlanMngmtApConfNetwprofilsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.4 +lcsStatusWlanMngmtApConfNetwprofilsEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.5 +lcsStatusWlanMngmtApConfNetwprofilsEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.6 +lcsStatusWlanMngmtApConfNetwprofilsEntryEncryption OBJECT-TYPE + SYNTAX INTEGER { + e80211iWpaPsk (0), + e80211iWpa8021x (1), + eWep104Bits (2), + eWep40Bits (3), + eWep104Bits8021x (4), + eWep40Bits8021x (5), + eNone (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.7 +lcsStatusWlanMngmtApConfNetwprofilsEntryWpa1SessionKeytypes OBJECT-TYPE + SYNTAX INTEGER { + eTkipAes (0), + eAes (1), + eTkip (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.8 +lcsStatusWlanMngmtApConfNetwprofilsEntryWpaVersion OBJECT-TYPE + SYNTAX INTEGER { + eWpa12 (0), + eWpa1 (1), + eWpa2 (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.9 +lcsStatusWlanMngmtApConfNetwprofilsEntryKey OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.10 +lcsStatusWlanMngmtApConfNetwprofilsEntryRadioBand OBJECT-TYPE + SYNTAX INTEGER { + e24ghz5ghz (0), + e24ghz (1), + e5ghz (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.11 +lcsStatusWlanMngmtApConfNetwprofilsEntryContinuation OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.12 +lcsStatusWlanMngmtApConfNetwprofilsEntryMinTxRate OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + e1M (1), + e2M (2), + e5M5 (3), + e11M (4), + e6M (5), + e9M (6), + e12M (7), + e18M (8), + e24M (9), + e36M (10), + e48M (11), + e54M (12), + eT72M (13), + eT96M (14), + eT108M (15) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.13 +lcsStatusWlanMngmtApConfNetwprofilsEntryMaxTxRate OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + e1M (1), + e2M (2), + e5M5 (3), + e11M (4), + e6M (5), + e9M (6), + e12M (7), + e18M (8), + e24M (9), + e36M (10), + e48M (11), + e54M (12), + eT72M (13), + eT96M (14), + eT108M (15) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.14 +lcsStatusWlanMngmtApConfNetwprofilsEntryBasicRate OBJECT-TYPE + SYNTAX INTEGER { + e2M (0), + e1M (1), + e5M5 (3), + e11M (4), + e6M (5), + e9M (6), + e12M (7), + e18M (8), + e24M (9), + e36M (10), + e48M (11), + e54M (12), + eT72M (13), + eT96M (14), + eT108M (15) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.15 +lcsStatusWlanMngmtApConfNetwprofilsEntry11bPreamble OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eLong (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.16 +lcsStatusWlanMngmtApConfNetwprofilsEntryMacFilter OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.17 +lcsStatusWlanMngmtApConfNetwprofilsEntryClBrgSupport OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eExclusive (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.18 +lcsStatusWlanMngmtApConfNetwprofilsEntryMaxStations OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.19 +lcsStatusWlanMngmtApConfNetwprofilsEntrySsidBroadcast OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1), + eTightened (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.21 +lcsStatusWlanMngmtApConfNetwprofilsEntrySsid OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.22 +lcsStatusWlanMngmtApConfNetwprofilsEntryMinHtMcs OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eMcs08 (1), + eMcs19 (2), + eMcs210 (3), + eMcs311 (4), + eMcs412 (5), + eMcs513 (6), + eMcs614 (7), + eMcs715 (8) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.23 +lcsStatusWlanMngmtApConfNetwprofilsEntryMaxHtMcs OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eMcs08 (1), + eMcs19 (2), + eMcs210 (3), + eMcs311 (4), + eMcs412 (5), + eMcs513 (6), + eMcs614 (7), + eMcs715 (8) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.24 +lcsStatusWlanMngmtApConfNetwprofilsEntryShortGuardInterval OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eNo (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 24 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.25 +lcsStatusWlanMngmtApConfNetwprofilsEntryMaxSpatialStreams OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eOne (1), + eTwo (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 25 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.26 +lcsStatusWlanMngmtApConfNetwprofilsEntrySendAggregates OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 26 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.27 +lcsStatusWlanMngmtApConfNetwprofilsEntryWpa2SessionKeytypes OBJECT-TYPE + SYNTAX INTEGER { + eTkipAes (0), + eAes (1), + eTkip (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 27 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.28 +lcsStatusWlanMngmtApConfNetwprofilsEntryRadiusAccounting OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 28 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.30 +lcsStatusWlanMngmtApConfNetwprofilsEntryVlanMode OBJECT-TYPE + SYNTAX INTEGER { + eUntagged (0), + eTagged (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 30 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.32 +lcsStatusWlanMngmtApConfNetwprofilsEntryConnectSsidTo OBJECT-TYPE + SYNTAX INTEGER { + eLan (0), + eWlcTunnel1 (1), + eWlcTunnel2 (2), + eWlcTunnel3 (3), + eWlcTunnel4 (4), + eWlcTunnel5 (5), + eWlcTunnel6 (6), + eWlcTunnel7 (7), + eWlcTunnel8 (8), + eWlcTunnel9 (9), + eWlcTunnel10 (10), + eWlcTunnel11 (11), + eWlcTunnel12 (12), + eWlcTunnel13 (13), + eWlcTunnel14 (14), + eWlcTunnel15 (15), + eWlcTunnel16 (16), + eWlcTunnel17 (17), + eWlcTunnel18 (18), + eWlcTunnel19 (19), + eWlcTunnel20 (20), + eWlcTunnel21 (21), + eWlcTunnel22 (22), + eWlcTunnel23 (23), + eWlcTunnel24 (24), + eWlcTunnel25 (25), + eWlcTunnel26 (26), + eWlcTunnel27 (27), + eWlcTunnel28 (28), + eWlcTunnel29 (29), + eWlcTunnel30 (30), + eWlcTunnel31 (31), + eWlcTunnel32 (32), + eWlcTunnelAutowds (33) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 32 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.33 +lcsStatusWlanMngmtApConfNetwprofilsEntryInterStationTraffic OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 33 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.34 +lcsStatusWlanMngmtApConfNetwprofilsEntryVlanIdnew OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 34 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.35 +lcsStatusWlanMngmtApConfNetwprofilsEntryRadiusProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 35 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.36 +lcsStatusWlanMngmtApConfNetwprofilsEntryStbcActivated OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 36 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.37 +lcsStatusWlanMngmtApConfNetwprofilsEntryLdpcActivated OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 37 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.38 +lcsStatusWlanMngmtApConfNetwprofilsEntryMinClientStrength OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 38 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.39 +lcsStatusWlanMngmtApConfNetwprofilsEntryIeee80211uNetworkProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 39 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.40 +lcsStatusWlanMngmtApConfNetwprofilsEntryOkc OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 40 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.41 +lcsStatusWlanMngmtApConfNetwprofilsEntryWpa2KeyManagement OBJECT-TYPE + SYNTAX BITS { + eSha256 (5), + eFastRoaming (6), + eStandard (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 41 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.42 +lcsStatusWlanMngmtApConfNetwprofilsEntryApsd OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 42 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.43 +lcsStatusWlanMngmtApConfNetwprofilsEntryProtMgmtFrames OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eOptional (1), + eMandatory (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 43 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.44 +lcsStatusWlanMngmtApConfNetwprofilsEntryTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 44 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.1.1.45 +lcsStatusWlanMngmtApConfNetwprofilsEntryRxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfNetwprofilsEntry 45 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.2 +lcsStatusWlanMngmtApConfRadioprofilsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConfRadioprofilsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConf 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.2.1 +lcsStatusWlanMngmtApConfRadioprofilsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConfRadioprofilsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConfRadioprofilsEntryName + } + ::= { lcsStatusWlanMngmtApConfRadioprofilsTable 1 } + +LcsStatusWlanMngmtApConfRadioprofilsEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConfRadioprofilsEntryName DisplayString, + lcsStatusWlanMngmtApConfRadioprofilsEntryCountry INTEGER, + lcsStatusWlanMngmtApConfRadioprofilsEntryChannelList DisplayString, + lcsStatusWlanMngmtApConfRadioprofilsEntry24ghzMode INTEGER, + lcsStatusWlanMngmtApConfRadioprofilsEntry5ghzMode INTEGER, + lcsStatusWlanMngmtApConfRadioprofilsEntrySubbands INTEGER, + lcsStatusWlanMngmtApConfRadioprofilsEntryQos INTEGER, + lcsStatusWlanMngmtApConfRadioprofilsEntryDtimPeriod Integer32, + lcsStatusWlanMngmtApConfRadioprofilsEntryBackgroundScan Integer32, + lcsStatusWlanMngmtApConfRadioprofilsEntryAntennaGain Integer32, + lcsStatusWlanMngmtApConfRadioprofilsEntryTxPowerReduction Integer32, + lcsStatusWlanMngmtApConfRadioprofilsEntryMgmtVLANId Integer32, + lcsStatusWlanMngmtApConfRadioprofilsEntryIndoorOnlyOperation INTEGER, + lcsStatusWlanMngmtApConfRadioprofilsEntryActVlanModOfMngdAps INTEGER, + lcsStatusWlanMngmtApConfRadioprofilsEntryMgmtVlanMode INTEGER, + lcsStatusWlanMngmtApConfRadioprofilsEntryMgmtVLANIdnew Integer32, + lcsStatusWlanMngmtApConfRadioprofilsEntryReportSeenClients INTEGER, + lcsStatusWlanMngmtApConfRadioprofilsEntryClientSteering INTEGER, + lcsStatusWlanMngmtApConfRadioprofilsEntryPreferredBand INTEGER, + lcsStatusWlanMngmtApConfRadioprofilsEntryPrReqAgeO Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.2.1.1 +lcsStatusWlanMngmtApConfRadioprofilsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfRadioprofilsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.2.1.4 +lcsStatusWlanMngmtApConfRadioprofilsEntryCountry OBJECT-TYPE + SYNTAX INTEGER { + eDefault (0), + eAlbania (8), + eAlgeria (12), + eArgentina (32), + eAustralia (36), + eAustria (40), + eBahrain (48), + eBangladesh (50), + eBelgium (56), + eBosniaHerzegovina (70), + eBrazil (76), + eBruneiDarussalam (96), + eBulgaria (100), + eBelarus (112), + eCanada (124), + eChile (152), + eChina (156), + eTaiwan (158), + eColombia (170), + eCostaRica (188), + eCroatia (191), + eCyprus (196), + eCzech (203), + eDenmark (208), + eEcuador (218), + eEstonia (233), + eFinland (246), + eFrance (250), + eGermany (276), + eGhana (288), + eGreece (300), + eGuatemala (320), + eHonduras (340), + eHongKong (344), + eHungary (348), + eIceland (352), + eIndia (356), + eIndonesia (360), + eIreland (372), + eIsrael (376), + eItaly (380), + eJapan (392), + eJordan (400), + eSouthKorea (410), + eKuwait (414), + eLebanon (422), + eLatvia (428), + eLiechtenstein (438), + eLithuania (440), + eLuxembourg (442), + eMacau (446), + eMalaysia (458), + eMalta (470), + eMexico (484), + eMoldavia (498), + eMorocco (504), + eOman (512), + eNetherlands (528), + eNewZealand (554), + eNicaragua (558), + eNorway (578), + ePakistan (586), + ePanama (591), + eParaguay (600), + ePeru (604), + ePhilippines (608), + ePoland (616), + ePortugal (620), + ePuertoRico (630), + eQatar (634), + eRomania (642), + eRussia (643), + eSaudiArabia (682), + eSingapore (702), + eSlovak (703), + eSlovenia (705), + eSouthAfrica (710), + eSpain (724), + eSweden (752), + eSwitzerland (756), + eThailand (764), + eUnitedArabEmirates (784), + eTunisia (788), + eTurkey (792), + eUganda (800), + eUkraine (804), + eMacedonia (807), + eEgypt (818), + eUnitedKingdom (826), + eTanzania (834), + eUnitedStatesFcc (840), + eUruguay (858), + eVenezuela (862), + eEurope (998), + eEgalistan (999) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfRadioprofilsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.2.1.5 +lcsStatusWlanMngmtApConfRadioprofilsEntryChannelList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..48)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfRadioprofilsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.2.1.6 +lcsStatusWlanMngmtApConfRadioprofilsEntry24ghzMode OBJECT-TYPE + SYNTAX INTEGER { + e11bgMixed (0), + e11gOnly (1), + e11bOnly (2), + e108mbps (3), + e11bgnMixed (4), + e11gnMixed (5), + eGreenfield (6), + eAuto (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfRadioprofilsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.2.1.7 +lcsStatusWlanMngmtApConfRadioprofilsEntry5ghzMode OBJECT-TYPE + SYNTAX INTEGER { + eNormal (0), + e108mbps (3), + e11anMixed (4), + eGreenfield (5), + e11anacMixed (6), + e11nacMixed (7), + e11acOnly (8), + eAuto (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfRadioprofilsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.2.1.8 +lcsStatusWlanMngmtApConfRadioprofilsEntrySubbands OBJECT-TYPE + SYNTAX INTEGER { + eBand1Plus2Plus3 (0), + eBand1 (1), + eBand2 (2), + eBand3 (3), + eBand1Plus2 (4), + eBand1Plus3 (5), + eBand2Plus3 (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfRadioprofilsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.2.1.9 +lcsStatusWlanMngmtApConfRadioprofilsEntryQos OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfRadioprofilsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.2.1.10 +lcsStatusWlanMngmtApConfRadioprofilsEntryDtimPeriod OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfRadioprofilsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.2.1.11 +lcsStatusWlanMngmtApConfRadioprofilsEntryBackgroundScan OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfRadioprofilsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.2.1.12 +lcsStatusWlanMngmtApConfRadioprofilsEntryAntennaGain OBJECT-TYPE + SYNTAX Integer32 (-128..127) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfRadioprofilsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.2.1.13 +lcsStatusWlanMngmtApConfRadioprofilsEntryTxPowerReduction OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfRadioprofilsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.2.1.14 +lcsStatusWlanMngmtApConfRadioprofilsEntryMgmtVLANId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfRadioprofilsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.2.1.16 +lcsStatusWlanMngmtApConfRadioprofilsEntryIndoorOnlyOperation OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfRadioprofilsEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.2.1.17 +lcsStatusWlanMngmtApConfRadioprofilsEntryActVlanModOfMngdAps OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfRadioprofilsEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.2.1.18 +lcsStatusWlanMngmtApConfRadioprofilsEntryMgmtVlanMode OBJECT-TYPE + SYNTAX INTEGER { + eUntagged (0), + eTagged (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfRadioprofilsEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.2.1.19 +lcsStatusWlanMngmtApConfRadioprofilsEntryMgmtVLANIdnew OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfRadioprofilsEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.2.1.20 +lcsStatusWlanMngmtApConfRadioprofilsEntryReportSeenClients OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfRadioprofilsEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.2.1.21 +lcsStatusWlanMngmtApConfRadioprofilsEntryClientSteering OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eYes (1), + eOn (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfRadioprofilsEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.2.1.22 +lcsStatusWlanMngmtApConfRadioprofilsEntryPreferredBand OBJECT-TYPE + SYNTAX INTEGER { + e24ghz (1), + e5ghz (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfRadioprofilsEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.2.1.23 +lcsStatusWlanMngmtApConfRadioprofilsEntryPrReqAgeO OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfRadioprofilsEntry 23 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.3 +lcsStatusWlanMngmtApConfCommonprofilsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConfCommonprofilsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConf 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.3.1 +lcsStatusWlanMngmtApConfCommonprofilsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConfCommonprofilsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConfCommonprofilsEntryName + } + ::= { lcsStatusWlanMngmtApConfCommonprofilsTable 1 } + +LcsStatusWlanMngmtApConfCommonprofilsEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConfCommonprofilsEntryName DisplayString, + lcsStatusWlanMngmtApConfCommonprofilsEntryNetw DisplayString, + lcsStatusWlanMngmtApConfCommonprofilsEntryApParams DisplayString, + lcsStatusWlanMngmtApConfCommonprofilsEntryContr DisplayString, + lcsStatusWlanMngmtApConfCommonprofilsEntryIeee80211uGeneral DisplayString, + lcsStatusWlanMngmtApConfCommonprofilsEntryConfigurationDelay Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.3.1.1 +lcsStatusWlanMngmtApConfCommonprofilsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfCommonprofilsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.3.1.2 +lcsStatusWlanMngmtApConfCommonprofilsEntryNetw OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfCommonprofilsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.3.1.3 +lcsStatusWlanMngmtApConfCommonprofilsEntryApParams OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfCommonprofilsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.3.1.4 +lcsStatusWlanMngmtApConfCommonprofilsEntryContr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..159)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfCommonprofilsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.3.1.6 +lcsStatusWlanMngmtApConfCommonprofilsEntryIeee80211uGeneral OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfCommonprofilsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.3.1.7 +lcsStatusWlanMngmtApConfCommonprofilsEntryConfigurationDelay OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfCommonprofilsEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.4 +lcsStatusWlanMngmtApConfApsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConfApsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "accesspoints" + ::= { lcsStatusWlanMngmtApConf 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.4.1 +lcsStatusWlanMngmtApConfApsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConfApsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConfApsEntryMacAddress + } + ::= { lcsStatusWlanMngmtApConfApsTable 1 } + +LcsStatusWlanMngmtApConfApsEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConfApsEntryMacAddress DisplayString, + lcsStatusWlanMngmtApConfApsEntryName DisplayString, + lcsStatusWlanMngmtApConfApsEntryLocation DisplayString, + lcsStatusWlanMngmtApConfApsEntryProfile DisplayString, + lcsStatusWlanMngmtApConfApsEntryDeviceParameters DisplayString, + lcsStatusWlanMngmtApConfApsEntryEncryption INTEGER, + lcsStatusWlanMngmtApConfApsEntryWlanModule1 INTEGER, + lcsStatusWlanMngmtApConfApsEntryWlanModule2 INTEGER, + lcsStatusWlanMngmtApConfApsEntryModule1ChannelList DisplayString, + lcsStatusWlanMngmtApConfApsEntryModule2ChannelList DisplayString, + lcsStatusWlanMngmtApConfApsEntryOperating INTEGER, + lcsStatusWlanMngmtApConfApsEntryIpAddress IpAddress, + lcsStatusWlanMngmtApConfApsEntryNetmask IpAddress, + lcsStatusWlanMngmtApConfApsEntryGateway IpAddress, + lcsStatusWlanMngmtApConfApsEntryAllow40mhz INTEGER, + lcsStatusWlanMngmtApConfApsEntryAntennaMask INTEGER, + lcsStatusWlanMngmtApConfApsEntryApIntranet DisplayString, + lcsStatusWlanMngmtApConfApsEntryManageFirmware INTEGER, + lcsStatusWlanMngmtApConfApsEntryMngmtFwAddInfo INTEGER, + lcsStatusWlanMngmtApConfApsEntryModule1AntGain DisplayString, + lcsStatusWlanMngmtApConfApsEntryModule2AntGain DisplayString, + lcsStatusWlanMngmtApConfApsEntryModule1TxReduct DisplayString, + lcsStatusWlanMngmtApConfApsEntryModule2TxReduct DisplayString, + lcsStatusWlanMngmtApConfApsEntryGroups DisplayString, + lcsStatusWlanMngmtApConfApsEntryModule2MaxChannelBandwidth INTEGER, + lcsStatusWlanMngmtApConfApsEntryModule1MaxChannelBandwidth INTEGER, + lcsStatusWlanMngmtApConfApsEntryClientSteeringProfile DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.1 +lcsStatusWlanMngmtApConfApsEntryMacAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.2 +lcsStatusWlanMngmtApConfApsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.3 +lcsStatusWlanMngmtApConfApsEntryLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.4 +lcsStatusWlanMngmtApConfApsEntryProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.5 +lcsStatusWlanMngmtApConfApsEntryDeviceParameters OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.6 +lcsStatusWlanMngmtApConfApsEntryEncryption OBJECT-TYPE + SYNTAX INTEGER { + eDefault (0), + eDtls (1), + eNo (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.7 +lcsStatusWlanMngmtApConfApsEntryWlanModule1 OBJECT-TYPE + SYNTAX INTEGER { + eDefault (0), + e24ghz (1), + e5ghz (2), + eOff (3), + eAuto (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.8 +lcsStatusWlanMngmtApConfApsEntryWlanModule2 OBJECT-TYPE + SYNTAX INTEGER { + eDefault (0), + e24ghz (1), + e5ghz (2), + eOff (3), + eAuto (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.9 +lcsStatusWlanMngmtApConfApsEntryModule1ChannelList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..48)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.10 +lcsStatusWlanMngmtApConfApsEntryModule2ChannelList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..48)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.11 +lcsStatusWlanMngmtApConfApsEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.12 +lcsStatusWlanMngmtApConfApsEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.13 +lcsStatusWlanMngmtApConfApsEntryNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.14 +lcsStatusWlanMngmtApConfApsEntryGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.15 +lcsStatusWlanMngmtApConfApsEntryAllow40mhz OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eNo (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApsEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.16 +lcsStatusWlanMngmtApConfApsEntryAntennaMask OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eAntenna1 (1), + eAntenna1Plus2 (3), + eAntenna1Plus3 (5), + eAntenna1Plus2Plus3 (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApsEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.17 +lcsStatusWlanMngmtApConfApsEntryApIntranet OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApsEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.18 +lcsStatusWlanMngmtApConfApsEntryManageFirmware OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApsEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.19 +lcsStatusWlanMngmtApConfApsEntryMngmtFwAddInfo OBJECT-TYPE + SYNTAX INTEGER { + eDisabledDueToErrorDuringUpdate (1), + eDisabledByManualUpload (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApsEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.20 +lcsStatusWlanMngmtApConfApsEntryModule1AntGain OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..4)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApsEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.21 +lcsStatusWlanMngmtApConfApsEntryModule2AntGain OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..4)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApsEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.22 +lcsStatusWlanMngmtApConfApsEntryModule1TxReduct OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApsEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.23 +lcsStatusWlanMngmtApConfApsEntryModule2TxReduct OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApsEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.24 +lcsStatusWlanMngmtApConfApsEntryGroups OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfApsEntry 24 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.25 +lcsStatusWlanMngmtApConfApsEntryModule2MaxChannelBandwidth OBJECT-TYPE + SYNTAX INTEGER { + e20mhz (0), + e40mhz (1), + e80mhz (2), + eAuto (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfApsEntry 25 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.26 +lcsStatusWlanMngmtApConfApsEntryModule1MaxChannelBandwidth OBJECT-TYPE + SYNTAX INTEGER { + e20mhz (0), + e40mhz (1), + e80mhz (2), + eAuto (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfApsEntry 26 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.4.1.27 +lcsStatusWlanMngmtApConfApsEntryClientSteeringProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfApsEntry 27 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.5 +lcsStatusWlanMngmtApConfNetwProfErrorsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConfNetwProfErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConf 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.5.1 +lcsStatusWlanMngmtApConfNetwProfErrorsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConfNetwProfErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConfNetwProfErrorsEntryIndex + } + ::= { lcsStatusWlanMngmtApConfNetwProfErrorsTable 1 } + +LcsStatusWlanMngmtApConfNetwProfErrorsEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConfNetwProfErrorsEntryIndex Integer32, + lcsStatusWlanMngmtApConfNetwProfErrorsEntryName DisplayString, + lcsStatusWlanMngmtApConfNetwProfErrorsEntryError INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.5.1.1 +lcsStatusWlanMngmtApConfNetwProfErrorsEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwProfErrorsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.5.1.2 +lcsStatusWlanMngmtApConfNetwProfErrorsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwProfErrorsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.5.1.3 +lcsStatusWlanMngmtApConfNetwProfErrorsEntryError OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eInheritanceError (1), + eNoProfile (2), + eProfileNotFound (3), + eNoMemory (4), + eSsidMissing (5), + eNetworkNotFound (6), + eApParametersNotFound (7), + eApIntranetNotFound (8), + eRadiusProfileNotFound (9), + eAutowdsProfileNotFound (10), + eMasterEqualToSlave (11), + eNoProfileEitherGroupFound (12), + eInfoProfileWinsGroup (13), + eGroupWrongDefined (14), + eSsidWlcTunnelMissing (15), + eSsidInterStationTrafficAllowed (16), + eTooManyNetworksForAutowds (17) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfNetwProfErrorsEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.6 +lcsStatusWlanMngmtApConfRadioProfErrorsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConfRadioProfErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConf 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.6.1 +lcsStatusWlanMngmtApConfRadioProfErrorsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConfRadioProfErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConfRadioProfErrorsEntryIndex + } + ::= { lcsStatusWlanMngmtApConfRadioProfErrorsTable 1 } + +LcsStatusWlanMngmtApConfRadioProfErrorsEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConfRadioProfErrorsEntryIndex Integer32, + lcsStatusWlanMngmtApConfRadioProfErrorsEntryName DisplayString, + lcsStatusWlanMngmtApConfRadioProfErrorsEntryError INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.6.1.1 +lcsStatusWlanMngmtApConfRadioProfErrorsEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfRadioProfErrorsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.6.1.2 +lcsStatusWlanMngmtApConfRadioProfErrorsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfRadioProfErrorsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.6.1.3 +lcsStatusWlanMngmtApConfRadioProfErrorsEntryError OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eInheritanceError (1), + eNoProfile (2), + eProfileNotFound (3), + eNoMemory (4), + eSsidMissing (5), + eNetworkNotFound (6), + eApParametersNotFound (7), + eApIntranetNotFound (8), + eRadiusProfileNotFound (9), + eAutowdsProfileNotFound (10), + eMasterEqualToSlave (11), + eNoProfileEitherGroupFound (12), + eInfoProfileWinsGroup (13), + eGroupWrongDefined (14), + eSsidWlcTunnelMissing (15), + eSsidInterStationTrafficAllowed (16), + eTooManyNetworksForAutowds (17) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfRadioProfErrorsEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.7 +lcsStatusWlanMngmtApConfCommProfErrorsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConfCommProfErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConf 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.7.1 +lcsStatusWlanMngmtApConfCommProfErrorsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConfCommProfErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConfCommProfErrorsEntryIndex + } + ::= { lcsStatusWlanMngmtApConfCommProfErrorsTable 1 } + +LcsStatusWlanMngmtApConfCommProfErrorsEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConfCommProfErrorsEntryIndex Integer32, + lcsStatusWlanMngmtApConfCommProfErrorsEntryName DisplayString, + lcsStatusWlanMngmtApConfCommProfErrorsEntryError INTEGER, + lcsStatusWlanMngmtApConfCommProfErrorsEntryNetworkApParameters DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.7.1.1 +lcsStatusWlanMngmtApConfCommProfErrorsEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfCommProfErrorsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.7.1.2 +lcsStatusWlanMngmtApConfCommProfErrorsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfCommProfErrorsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.7.1.3 +lcsStatusWlanMngmtApConfCommProfErrorsEntryError OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eInheritanceError (1), + eNoProfile (2), + eProfileNotFound (3), + eNoMemory (4), + eSsidMissing (5), + eNetworkNotFound (6), + eApParametersNotFound (7), + eApIntranetNotFound (8), + eRadiusProfileNotFound (9), + eAutowdsProfileNotFound (10), + eMasterEqualToSlave (11), + eNoProfileEitherGroupFound (12), + eInfoProfileWinsGroup (13), + eGroupWrongDefined (14), + eSsidWlcTunnelMissing (15), + eSsidInterStationTrafficAllowed (16), + eTooManyNetworksForAutowds (17) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfCommProfErrorsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.7.1.4 +lcsStatusWlanMngmtApConfCommProfErrorsEntryNetworkApParameters OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfCommProfErrorsEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.8 +lcsStatusWlanMngmtApConfApConfErrorsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConfApConfErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConf 8 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.8.1 +lcsStatusWlanMngmtApConfApConfErrorsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConfApConfErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConfApConfErrorsEntryIndex + } + ::= { lcsStatusWlanMngmtApConfApConfErrorsTable 1 } + +LcsStatusWlanMngmtApConfApConfErrorsEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConfApConfErrorsEntryIndex Integer32, + lcsStatusWlanMngmtApConfApConfErrorsEntryName DisplayString, + lcsStatusWlanMngmtApConfApConfErrorsEntryError INTEGER, + lcsStatusWlanMngmtApConfApConfErrorsEntryProfile DisplayString, + lcsStatusWlanMngmtApConfApConfErrorsEntryMacAddress DisplayString, + lcsStatusWlanMngmtApConfApConfErrorsEntryGroup DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.8.1.1 +lcsStatusWlanMngmtApConfApConfErrorsEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApConfErrorsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.8.1.2 +lcsStatusWlanMngmtApConfApConfErrorsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApConfErrorsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.8.1.3 +lcsStatusWlanMngmtApConfApConfErrorsEntryError OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eInheritanceError (1), + eNoProfile (2), + eProfileNotFound (3), + eNoMemory (4), + eSsidMissing (5), + eNetworkNotFound (6), + eApParametersNotFound (7), + eApIntranetNotFound (8), + eRadiusProfileNotFound (9), + eAutowdsProfileNotFound (10), + eMasterEqualToSlave (11), + eNoProfileEitherGroupFound (12), + eInfoProfileWinsGroup (13), + eGroupWrongDefined (14), + eSsidWlcTunnelMissing (15), + eSsidInterStationTrafficAllowed (16), + eTooManyNetworksForAutowds (17) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApConfErrorsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.8.1.4 +lcsStatusWlanMngmtApConfApConfErrorsEntryProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApConfErrorsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.8.1.5 +lcsStatusWlanMngmtApConfApConfErrorsEntryMacAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfApConfErrorsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.8.1.6 +lcsStatusWlanMngmtApConfApConfErrorsEntryGroup OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfApConfErrorsEntry 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.9 +lcsStatusWlanMngmtApConfApIntranetsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConfApIntranetsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConf 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.9.1 +lcsStatusWlanMngmtApConfApIntranetsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConfApIntranetsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConfApIntranetsEntryName + } + ::= { lcsStatusWlanMngmtApConfApIntranetsTable 1 } + +LcsStatusWlanMngmtApConfApIntranetsEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConfApIntranetsEntryName DisplayString, + lcsStatusWlanMngmtApConfApIntranetsEntryParentName DisplayString, + lcsStatusWlanMngmtApConfApIntranetsEntryLocVal DisplayString, + lcsStatusWlanMngmtApConfApIntranetsEntryDomainName DisplayString, + lcsStatusWlanMngmtApConfApIntranetsEntryNetmask IpAddress, + lcsStatusWlanMngmtApConfApIntranetsEntryGateway IpAddress, + lcsStatusWlanMngmtApConfApIntranetsEntryPrimaryDnsSrv IpAddress, + lcsStatusWlanMngmtApConfApIntranetsEntrySecondaryDnsSrv IpAddress, + lcsStatusWlanMngmtApConfApIntranetsEntryIpv4ConfigPoolStart DisplayString, + lcsStatusWlanMngmtApConfApIntranetsEntryIpv4ConfigPoolEnd DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.9.1.1 +lcsStatusWlanMngmtApConfApIntranetsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApIntranetsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.9.1.2 +lcsStatusWlanMngmtApConfApIntranetsEntryParentName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApIntranetsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.9.1.3 +lcsStatusWlanMngmtApConfApIntranetsEntryLocVal OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "local values" + ::= { lcsStatusWlanMngmtApConfApIntranetsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.9.1.4 +lcsStatusWlanMngmtApConfApIntranetsEntryDomainName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApIntranetsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.9.1.5 +lcsStatusWlanMngmtApConfApIntranetsEntryNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApIntranetsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.9.1.6 +lcsStatusWlanMngmtApConfApIntranetsEntryGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApIntranetsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.9.1.7 +lcsStatusWlanMngmtApConfApIntranetsEntryPrimaryDnsSrv OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApIntranetsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.9.1.8 +lcsStatusWlanMngmtApConfApIntranetsEntrySecondaryDnsSrv OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApIntranetsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.9.1.9 +lcsStatusWlanMngmtApConfApIntranetsEntryIpv4ConfigPoolStart OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfApIntranetsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.9.1.10 +lcsStatusWlanMngmtApConfApIntranetsEntryIpv4ConfigPoolEnd OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfApIntranetsEntry 10 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.10 +lcsStatusWlanMngmtApConfApIntranetErrorsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConfApIntranetErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConf 10 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.10.1 +lcsStatusWlanMngmtApConfApIntranetErrorsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConfApIntranetErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConfApIntranetErrorsEntryIndex + } + ::= { lcsStatusWlanMngmtApConfApIntranetErrorsTable 1 } + +LcsStatusWlanMngmtApConfApIntranetErrorsEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConfApIntranetErrorsEntryIndex Integer32, + lcsStatusWlanMngmtApConfApIntranetErrorsEntryName DisplayString, + lcsStatusWlanMngmtApConfApIntranetErrorsEntryError INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.10.1.1 +lcsStatusWlanMngmtApConfApIntranetErrorsEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApIntranetErrorsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.10.1.2 +lcsStatusWlanMngmtApConfApIntranetErrorsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApIntranetErrorsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.10.1.3 +lcsStatusWlanMngmtApConfApIntranetErrorsEntryError OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eInheritanceError (1), + eNoProfile (2), + eProfileNotFound (3), + eNoMemory (4), + eSsidMissing (5), + eNetworkNotFound (6), + eApParametersNotFound (7), + eApIntranetNotFound (8), + eRadiusProfileNotFound (9), + eAutowdsProfileNotFound (10), + eMasterEqualToSlave (11), + eNoProfileEitherGroupFound (12), + eInfoProfileWinsGroup (13), + eGroupWrongDefined (14), + eSsidWlcTunnelMissing (15), + eSsidInterStationTrafficAllowed (16), + eTooManyNetworksForAutowds (17) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfApIntranetErrorsEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.11 +lcsStatusWlanMngmtApConfAutowdsProfilesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConfAutowdsProfilesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf 11 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.11.1 +lcsStatusWlanMngmtApConfAutowdsProfilesEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConfAutowdsProfilesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConfAutowdsProfilesEntryName + } + ::= { lcsStatusWlanMngmtApConfAutowdsProfilesTable 1 } + +LcsStatusWlanMngmtApConfAutowdsProfilesEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConfAutowdsProfilesEntryName DisplayString, + lcsStatusWlanMngmtApConfAutowdsProfilesEntryCommonprofile DisplayString, + lcsStatusWlanMngmtApConfAutowdsProfilesEntrySsid DisplayString, + lcsStatusWlanMngmtApConfAutowdsProfilesEntryKey DisplayString, + lcsStatusWlanMngmtApConfAutowdsProfilesEntryEnabled INTEGER, + lcsStatusWlanMngmtApConfAutowdsProfilesEntryAllowExprInt INTEGER, + lcsStatusWlanMngmtApConfAutowdsProfilesEntryTopologyManagement INTEGER, + lcsStatusWlanMngmtApConfAutowdsProfilesEntrySlaveTxLimit Integer32, + lcsStatusWlanMngmtApConfAutowdsProfilesEntryMasterTxLimit Integer32, + lcsStatusWlanMngmtApConfAutowdsProfilesEntryLinkLossTimeout Integer32, + lcsStatusWlanMngmtApConfAutowdsProfilesEntryContinuation Integer32, + lcsStatusWlanMngmtApConfAutowdsProfilesEntryTimeTillPreconfScan Integer32, + lcsStatusWlanMngmtApConfAutowdsProfilesEntryTimeTillExpressScan Integer32, + lcsStatusWlanMngmtApConfAutowdsProfilesEntryInterfacePairing INTEGER, + lcsStatusWlanMngmtApConfAutowdsProfilesEntrySlaveRadioMultiHop INTEGER, + lcsStatusWlanMngmtApConfAutowdsProfilesEntryRadioBand INTEGER, + lcsStatusWlanMngmtApConfAutowdsProfilesEntrySsidBroadcast INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.11.1.1 +lcsStatusWlanMngmtApConfAutowdsProfilesEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsProfilesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.11.1.2 +lcsStatusWlanMngmtApConfAutowdsProfilesEntryCommonprofile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsProfilesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.11.1.3 +lcsStatusWlanMngmtApConfAutowdsProfilesEntrySsid OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsProfilesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.11.1.4 +lcsStatusWlanMngmtApConfAutowdsProfilesEntryKey OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsProfilesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.11.1.6 +lcsStatusWlanMngmtApConfAutowdsProfilesEntryEnabled OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsProfilesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.11.1.7 +lcsStatusWlanMngmtApConfAutowdsProfilesEntryAllowExprInt OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Allow-Express-Integration" + ::= { lcsStatusWlanMngmtApConfAutowdsProfilesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.11.1.8 +lcsStatusWlanMngmtApConfAutowdsProfilesEntryTopologyManagement OBJECT-TYPE + SYNTAX INTEGER { + eAutomatic (0), + eSemiAutomatic (1), + eManual (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsProfilesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.11.1.10 +lcsStatusWlanMngmtApConfAutowdsProfilesEntrySlaveTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsProfilesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.11.1.11 +lcsStatusWlanMngmtApConfAutowdsProfilesEntryMasterTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsProfilesEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.11.1.12 +lcsStatusWlanMngmtApConfAutowdsProfilesEntryLinkLossTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsProfilesEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.11.1.14 +lcsStatusWlanMngmtApConfAutowdsProfilesEntryContinuation OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfAutowdsProfilesEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.11.1.15 +lcsStatusWlanMngmtApConfAutowdsProfilesEntryTimeTillPreconfScan OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsProfilesEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.11.1.16 +lcsStatusWlanMngmtApConfAutowdsProfilesEntryTimeTillExpressScan OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsProfilesEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.11.1.17 +lcsStatusWlanMngmtApConfAutowdsProfilesEntryInterfacePairing OBJECT-TYPE + SYNTAX INTEGER { + eAutomatic (0), + eStrict (1), + eMixed (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsProfilesEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.11.1.18 +lcsStatusWlanMngmtApConfAutowdsProfilesEntrySlaveRadioMultiHop OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eSingleRadioApOnly (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsProfilesEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.11.1.19 +lcsStatusWlanMngmtApConfAutowdsProfilesEntryRadioBand OBJECT-TYPE + SYNTAX INTEGER { + e24ghz5ghz (0), + e24ghz (1), + e5ghz (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsProfilesEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.11.1.20 +lcsStatusWlanMngmtApConfAutowdsProfilesEntrySsidBroadcast OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsProfilesEntry 20 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.12 +lcsStatusWlanMngmtApConfAutowdsTopologyTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConfAutowdsTopologyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf 12 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.12.1 +lcsStatusWlanMngmtApConfAutowdsTopologyEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConfAutowdsTopologyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConfAutowdsTopologyEntryAutowdsProfile, + lcsStatusWlanMngmtApConfAutowdsTopologyEntryPriority, + lcsStatusWlanMngmtApConfAutowdsTopologyEntrySlaveApName, + lcsStatusWlanMngmtApConfAutowdsTopologyEntrySlaveApWlanIfc, + lcsStatusWlanMngmtApConfAutowdsTopologyEntrySlaveApWlanMac + } + ::= { lcsStatusWlanMngmtApConfAutowdsTopologyTable 1 } + +LcsStatusWlanMngmtApConfAutowdsTopologyEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConfAutowdsTopologyEntryAutowdsProfile DisplayString, + lcsStatusWlanMngmtApConfAutowdsTopologyEntryPriority Integer32, + lcsStatusWlanMngmtApConfAutowdsTopologyEntrySlaveApName DisplayString, + lcsStatusWlanMngmtApConfAutowdsTopologyEntrySlaveApWlanIfc INTEGER, + lcsStatusWlanMngmtApConfAutowdsTopologyEntrySlaveApWlanMac DisplayString, + lcsStatusWlanMngmtApConfAutowdsTopologyEntryMasterApName DisplayString, + lcsStatusWlanMngmtApConfAutowdsTopologyEntryMasterApWlanIfc INTEGER, + lcsStatusWlanMngmtApConfAutowdsTopologyEntryMasterApWlanMac DisplayString, + lcsStatusWlanMngmtApConfAutowdsTopologyEntryKey DisplayString, + lcsStatusWlanMngmtApConfAutowdsTopologyEntryEnabled INTEGER, + lcsStatusWlanMngmtApConfAutowdsTopologyEntrySlaveTxLimit Integer32, + lcsStatusWlanMngmtApConfAutowdsTopologyEntryMasterTxLimit Integer32, + lcsStatusWlanMngmtApConfAutowdsTopologyEntryLinkLossTimeout Integer32, + lcsStatusWlanMngmtApConfAutowdsTopologyEntryContinuation Integer32, + lcsStatusWlanMngmtApConfAutowdsTopologyEntryGenerated INTEGER, + lcsStatusWlanMngmtApConfAutowdsTopologyEntryState INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.12.1.1 +lcsStatusWlanMngmtApConfAutowdsTopologyEntryAutowdsProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopologyEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.12.1.2 +lcsStatusWlanMngmtApConfAutowdsTopologyEntryPriority OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopologyEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.12.1.3 +lcsStatusWlanMngmtApConfAutowdsTopologyEntrySlaveApName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopologyEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.12.1.4 +lcsStatusWlanMngmtApConfAutowdsTopologyEntrySlaveApWlanIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopologyEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.12.1.5 +lcsStatusWlanMngmtApConfAutowdsTopologyEntrySlaveApWlanMac OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopologyEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.12.1.6 +lcsStatusWlanMngmtApConfAutowdsTopologyEntryMasterApName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopologyEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.12.1.7 +lcsStatusWlanMngmtApConfAutowdsTopologyEntryMasterApWlanIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopologyEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.12.1.8 +lcsStatusWlanMngmtApConfAutowdsTopologyEntryMasterApWlanMac OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopologyEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.12.1.9 +lcsStatusWlanMngmtApConfAutowdsTopologyEntryKey OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopologyEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.12.1.10 +lcsStatusWlanMngmtApConfAutowdsTopologyEntryEnabled OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopologyEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.12.1.12 +lcsStatusWlanMngmtApConfAutowdsTopologyEntrySlaveTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopologyEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.12.1.13 +lcsStatusWlanMngmtApConfAutowdsTopologyEntryMasterTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopologyEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.12.1.14 +lcsStatusWlanMngmtApConfAutowdsTopologyEntryLinkLossTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopologyEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.12.1.16 +lcsStatusWlanMngmtApConfAutowdsTopologyEntryContinuation OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfAutowdsTopologyEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.12.1.17 +lcsStatusWlanMngmtApConfAutowdsTopologyEntryGenerated OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopologyEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.12.1.18 +lcsStatusWlanMngmtApConfAutowdsTopologyEntryState OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eActive (1), + eInactive (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopologyEntry 18 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.13 +lcsStatusWlanMngmtApConfAutowdsAutoTopologyTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConfAutowdsAutoTopologyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf 13 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.13.1 +lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConfAutowdsAutoTopologyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryAutowdsProfile, + lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryPriority, + lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntrySlaveApName, + lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntrySlaveApWlanIfc, + lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntrySlaveApWlanMac + } + ::= { lcsStatusWlanMngmtApConfAutowdsAutoTopologyTable 1 } + +LcsStatusWlanMngmtApConfAutowdsAutoTopologyEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryAutowdsProfile DisplayString, + lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryPriority Integer32, + lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntrySlaveApName DisplayString, + lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntrySlaveApWlanIfc INTEGER, + lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntrySlaveApWlanMac DisplayString, + lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryMasterApName DisplayString, + lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryMasterApWlanIfc INTEGER, + lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryMasterApWlanMac DisplayString, + lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryKey DisplayString, + lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryEnabled INTEGER, + lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntrySlaveTxLimit Integer32, + lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryMasterTxLimit Integer32, + lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryLinkLossTimeout Integer32, + lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryContinuation Integer32, + lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryGenerated INTEGER, + lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryState INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.13.1.1 +lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryAutowdsProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.13.1.2 +lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryPriority OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.13.1.3 +lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntrySlaveApName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.13.1.4 +lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntrySlaveApWlanIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.13.1.5 +lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntrySlaveApWlanMac OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.13.1.6 +lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryMasterApName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.13.1.7 +lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryMasterApWlanIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.13.1.8 +lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryMasterApWlanMac OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.13.1.9 +lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryKey OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.13.1.10 +lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryEnabled OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.13.1.12 +lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntrySlaveTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.13.1.13 +lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryMasterTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.13.1.14 +lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryLinkLossTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.13.1.16 +lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryContinuation OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.13.1.17 +lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryGenerated OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.13.1.18 +lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntryState OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eActive (1), + eInactive (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsAutoTopologyEntry 18 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.14 +lcsStatusWlanMngmtApConfAutowdsProfErrTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConfAutowdsProfErrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConf 14 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.14.1 +lcsStatusWlanMngmtApConfAutowdsProfErrEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConfAutowdsProfErrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConfAutowdsProfErrEntryIndex + } + ::= { lcsStatusWlanMngmtApConfAutowdsProfErrTable 1 } + +LcsStatusWlanMngmtApConfAutowdsProfErrEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConfAutowdsProfErrEntryIndex Integer32, + lcsStatusWlanMngmtApConfAutowdsProfErrEntryName DisplayString, + lcsStatusWlanMngmtApConfAutowdsProfErrEntryError INTEGER, + lcsStatusWlanMngmtApConfAutowdsProfErrEntryNetworkApParameters DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.14.1.1 +lcsStatusWlanMngmtApConfAutowdsProfErrEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsProfErrEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.14.1.2 +lcsStatusWlanMngmtApConfAutowdsProfErrEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsProfErrEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.14.1.3 +lcsStatusWlanMngmtApConfAutowdsProfErrEntryError OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eInheritanceError (1), + eNoProfile (2), + eProfileNotFound (3), + eNoMemory (4), + eSsidMissing (5), + eNetworkNotFound (6), + eApParametersNotFound (7), + eApIntranetNotFound (8), + eRadiusProfileNotFound (9), + eAutowdsProfileNotFound (10), + eMasterEqualToSlave (11), + eNoProfileEitherGroupFound (12), + eInfoProfileWinsGroup (13), + eGroupWrongDefined (14), + eSsidWlcTunnelMissing (15), + eSsidInterStationTrafficAllowed (16), + eTooManyNetworksForAutowds (17) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsProfErrEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.14.1.4 +lcsStatusWlanMngmtApConfAutowdsProfErrEntryNetworkApParameters OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsProfErrEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.15 +lcsStatusWlanMngmtApConfAutowdsTopoErrorsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConfAutowdsTopoErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf 15 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.15.1 +lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConfAutowdsTopoErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntryIndex, + lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntryPriority, + lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntrySlaveApName, + lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntrySlaveApWlanIfc + } + ::= { lcsStatusWlanMngmtApConfAutowdsTopoErrorsTable 1 } + +LcsStatusWlanMngmtApConfAutowdsTopoErrorsEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntryIndex Integer32, + lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntryAutowdsProfile DisplayString, + lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntryPriority Integer32, + lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntrySlaveApName DisplayString, + lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntrySlaveApWlanIfc INTEGER, + lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntrySlaveApWlanMac DisplayString, + lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntryMasterApName DisplayString, + lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntryMasterApWlanIfc INTEGER, + lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntryMasterApWlanMac DisplayString, + lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntryError INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.15.1.1 +lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.15.1.2 +lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntryAutowdsProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.15.1.3 +lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntryPriority OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.15.1.4 +lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntrySlaveApName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.15.1.5 +lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntrySlaveApWlanIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.15.1.6 +lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntrySlaveApWlanMac OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.15.1.7 +lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntryMasterApName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.15.1.8 +lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntryMasterApWlanIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.15.1.9 +lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntryMasterApWlanMac OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.15.1.10 +lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntryError OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eInheritanceError (1), + eNoProfile (2), + eProfileNotFound (3), + eNoMemory (4), + eSsidMissing (5), + eNetworkNotFound (6), + eApParametersNotFound (7), + eApIntranetNotFound (8), + eRadiusProfileNotFound (9), + eAutowdsProfileNotFound (10), + eMasterEqualToSlave (11), + eNoProfileEitherGroupFound (12), + eInfoProfileWinsGroup (13), + eGroupWrongDefined (14), + eSsidWlcTunnelMissing (15), + eSsidInterStationTrafficAllowed (16), + eTooManyNetworksForAutowds (17) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfAutowdsTopoErrorsEntry 10 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.73.2.17 +lcsStatusWlanMngmtApConf11u OBJECT IDENTIFIER ::= { lcsStatusWlanMngmtApConf 17 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.17.1 +lcsStatusWlanMngmtApConf11u11u-NwTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConf11u11u-NwEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IEEE802.11u-Networks" + ::= { lcsStatusWlanMngmtApConf11u 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.17.1.1 +lcsStatusWlanMngmtApConf11u11u-NwEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConf11u11u-NwEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConf11u11u-NwEntryName + } + ::= { lcsStatusWlanMngmtApConf11u11u-NwTable 1 } + +LcsStatusWlanMngmtApConf11u11u-NwEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConf11u11u-NwEntryName DisplayString, + lcsStatusWlanMngmtApConf11u11u-NwEntryOper INTEGER, + lcsStatusWlanMngmtApConf11u11u-NwEntryHs20 INTEGER, + lcsStatusWlanMngmtApConf11u11u-NwEntryInet INTEGER, + lcsStatusWlanMngmtApConf11u11u-NwEntryNwType INTEGER, + lcsStatusWlanMngmtApConf11u11u-NwEntryAsra INTEGER, + lcsStatusWlanMngmtApConf11u11u-NwEntryHESSIDT INTEGER, + lcsStatusWlanMngmtApConf11u11u-NwEntryHESSIDM MacAddress, + lcsStatusWlanMngmtApConf11u11u-NwEntryANQP-Prof DisplayString, + lcsStatusWlanMngmtApConf11u11u-NwEntryHs20-Prof DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.1.1.1 +lcsStatusWlanMngmtApConf11u11u-NwEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11u11u-NwEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.1.1.2 +lcsStatusWlanMngmtApConf11u11u-NwEntryOper OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Operating" + ::= { lcsStatusWlanMngmtApConf11u11u-NwEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.1.1.3 +lcsStatusWlanMngmtApConf11u11u-NwEntryHs20 OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Hotspot2.0" + ::= { lcsStatusWlanMngmtApConf11u11u-NwEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.1.1.4 +lcsStatusWlanMngmtApConf11u11u-NwEntryInet OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Internet" + ::= { lcsStatusWlanMngmtApConf11u11u-NwEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.1.1.5 +lcsStatusWlanMngmtApConf11u11u-NwEntryNwType OBJECT-TYPE + SYNTAX INTEGER { + ePrivate (0), + ePrivateGuestacc (1), + ePublicCharge (2), + ePublicFree (3), + ePersonalDev (4), + eEmergency (5), + eExperimental (14), + eWildcard (15) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Network-Type" + ::= { lcsStatusWlanMngmtApConf11u11u-NwEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.1.1.6 +lcsStatusWlanMngmtApConf11u11u-NwEntryAsra OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Asra" + ::= { lcsStatusWlanMngmtApConf11u11u-NwEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.1.1.7 +lcsStatusWlanMngmtApConf11u11u-NwEntryHESSIDT OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eUser (1), + eNone (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "HESSID-Type" + ::= { lcsStatusWlanMngmtApConf11u11u-NwEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.1.1.8 +lcsStatusWlanMngmtApConf11u11u-NwEntryHESSIDM OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "HESSID-MAC" + ::= { lcsStatusWlanMngmtApConf11u11u-NwEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.1.1.10 +lcsStatusWlanMngmtApConf11u11u-NwEntryANQP-Prof OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ANQP-Profile" + ::= { lcsStatusWlanMngmtApConf11u11u-NwEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.1.1.12 +lcsStatusWlanMngmtApConf11u11u-NwEntryHs20-Prof OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "HS20-Profile" + ::= { lcsStatusWlanMngmtApConf11u11u-NwEntry 12 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.17.2 +lcsStatusWlanMngmtApConf11uANQP-ProfsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConf11uANQP-ProfsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ANQP-Profiles" + ::= { lcsStatusWlanMngmtApConf11u 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.17.2.1 +lcsStatusWlanMngmtApConf11uANQP-ProfsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConf11uANQP-ProfsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConf11uANQP-ProfsEntryName + } + ::= { lcsStatusWlanMngmtApConf11uANQP-ProfsTable 1 } + +LcsStatusWlanMngmtApConf11uANQP-ProfsEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConf11uANQP-ProfsEntryName DisplayString, + lcsStatusWlanMngmtApConf11uANQP-ProfsEntryIncOUI DisplayString, + lcsStatusWlanMngmtApConf11uANQP-ProfsEntryAddOUI DisplayString, + lcsStatusWlanMngmtApConf11uANQP-ProfsEntryDomainList DisplayString, + lcsStatusWlanMngmtApConf11uANQP-ProfsEntryNaiRealmList DisplayString, + lcsStatusWlanMngmtApConf11uANQP-ProfsEntryCellularList DisplayString, + lcsStatusWlanMngmtApConf11uANQP-ProfsEntryNetList DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.2.1.1 +lcsStatusWlanMngmtApConf11uANQP-ProfsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uANQP-ProfsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.2.1.2 +lcsStatusWlanMngmtApConf11uANQP-ProfsEntryIncOUI OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Include-in-Beacon-OUI" + ::= { lcsStatusWlanMngmtApConf11uANQP-ProfsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.2.1.3 +lcsStatusWlanMngmtApConf11uANQP-ProfsEntryAddOUI OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Additional-OUI" + ::= { lcsStatusWlanMngmtApConf11uANQP-ProfsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.2.1.4 +lcsStatusWlanMngmtApConf11uANQP-ProfsEntryDomainList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uANQP-ProfsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.2.1.5 +lcsStatusWlanMngmtApConf11uANQP-ProfsEntryNaiRealmList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uANQP-ProfsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.2.1.6 +lcsStatusWlanMngmtApConf11uANQP-ProfsEntryCellularList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uANQP-ProfsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.2.1.7 +lcsStatusWlanMngmtApConf11uANQP-ProfsEntryNetList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Network-Auth-Type-List" + ::= { lcsStatusWlanMngmtApConf11uANQP-ProfsEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.17.3 +lcsStatusWlanMngmtApConf11uHs20-ProfsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConf11uHs20-ProfsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Hotspot2.0-Profiles" + ::= { lcsStatusWlanMngmtApConf11u 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.17.3.1 +lcsStatusWlanMngmtApConf11uHs20-ProfsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConf11uHs20-ProfsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConf11uHs20-ProfsEntryName + } + ::= { lcsStatusWlanMngmtApConf11uHs20-ProfsTable 1 } + +LcsStatusWlanMngmtApConf11uHs20-ProfsEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConf11uHs20-ProfsEntryName DisplayString, + lcsStatusWlanMngmtApConf11uHs20-ProfsEntryOperatorName DisplayString, + lcsStatusWlanMngmtApConf11uHs20-ProfsEntryConnCaps DisplayString, + lcsStatusWlanMngmtApConf11uHs20-ProfsEntryOpClass DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.3.1.1 +lcsStatusWlanMngmtApConf11uHs20-ProfsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uHs20-ProfsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.3.1.2 +lcsStatusWlanMngmtApConf11uHs20-ProfsEntryOperatorName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uHs20-ProfsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.3.1.3 +lcsStatusWlanMngmtApConf11uHs20-ProfsEntryConnCaps OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..250)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Connection-Capabilities" + ::= { lcsStatusWlanMngmtApConf11uHs20-ProfsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.3.1.4 +lcsStatusWlanMngmtApConf11uHs20-ProfsEntryOpClass OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Operating-Class" + ::= { lcsStatusWlanMngmtApConf11uHs20-ProfsEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.17.4 +lcsStatusWlanMngmtApConf11uNetAuthTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConf11uNetAuthEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Network-Authentication-Type" + ::= { lcsStatusWlanMngmtApConf11u 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.17.4.1 +lcsStatusWlanMngmtApConf11uNetAuthEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConf11uNetAuthEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConf11uNetAuthEntryName + } + ::= { lcsStatusWlanMngmtApConf11uNetAuthTable 1 } + +LcsStatusWlanMngmtApConf11uNetAuthEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConf11uNetAuthEntryName DisplayString, + lcsStatusWlanMngmtApConf11uNetAuthEntryNetType INTEGER, + lcsStatusWlanMngmtApConf11uNetAuthEntryReUrl DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.4.1.1 +lcsStatusWlanMngmtApConf11uNetAuthEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uNetAuthEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.4.1.2 +lcsStatusWlanMngmtApConf11uNetAuthEntryNetType OBJECT-TYPE + SYNTAX INTEGER { + eAcceptTermsCond (0), + eOnlineEnrollment (1), + eHttpRedirection (2), + eDnsRedirection (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Network-Auth-Type" + ::= { lcsStatusWlanMngmtApConf11uNetAuthEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.4.1.3 +lcsStatusWlanMngmtApConf11uNetAuthEntryReUrl OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Redirect-URL" + ::= { lcsStatusWlanMngmtApConf11uNetAuthEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.17.5 +lcsStatusWlanMngmtApConf11uCellListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConf11uCellListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Cellular-Network-Information-List" + ::= { lcsStatusWlanMngmtApConf11u 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.17.5.1 +lcsStatusWlanMngmtApConf11uCellListEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConf11uCellListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConf11uCellListEntryName + } + ::= { lcsStatusWlanMngmtApConf11uCellListTable 1 } + +LcsStatusWlanMngmtApConf11uCellListEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConf11uCellListEntryName DisplayString, + lcsStatusWlanMngmtApConf11uCellListEntryCountry DisplayString, + lcsStatusWlanMngmtApConf11uCellListEntryNetwork DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.5.1.1 +lcsStatusWlanMngmtApConf11uCellListEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uCellListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.5.1.2 +lcsStatusWlanMngmtApConf11uCellListEntryCountry OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Country-Code" + ::= { lcsStatusWlanMngmtApConf11uCellListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.5.1.3 +lcsStatusWlanMngmtApConf11uCellListEntryNetwork OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Network-Code" + ::= { lcsStatusWlanMngmtApConf11uCellListEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.17.6 +lcsStatusWlanMngmtApConf11uVenueNameTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConf11uVenueNameEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11u 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.17.6.1 +lcsStatusWlanMngmtApConf11uVenueNameEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConf11uVenueNameEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConf11uVenueNameEntryName, + lcsStatusWlanMngmtApConf11uVenueNameEntryLanguage + } + ::= { lcsStatusWlanMngmtApConf11uVenueNameTable 1 } + +LcsStatusWlanMngmtApConf11uVenueNameEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConf11uVenueNameEntryName DisplayString, + lcsStatusWlanMngmtApConf11uVenueNameEntryLanguage INTEGER, + lcsStatusWlanMngmtApConf11uVenueNameEntryVenueName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.6.1.1 +lcsStatusWlanMngmtApConf11uVenueNameEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uVenueNameEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.6.1.2 +lcsStatusWlanMngmtApConf11uVenueNameEntryLanguage OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eEnglish (1), + eGerman (2), + eChinese (3), + eSpanish (4), + eFrench (5), + eItalian (6), + eRussian (7), + eDutch (8), + eTurkish (9), + ePortuguese (10), + ePolish (11), + eCzech (12), + eArabic (13) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uVenueNameEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.6.1.3 +lcsStatusWlanMngmtApConf11uVenueNameEntryVenueName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uVenueNameEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.17.7 +lcsStatusWlanMngmtApConf11uNAIsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConf11uNAIsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "NAI-Realms" + ::= { lcsStatusWlanMngmtApConf11u 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.17.7.1 +lcsStatusWlanMngmtApConf11uNAIsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConf11uNAIsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConf11uNAIsEntryName + } + ::= { lcsStatusWlanMngmtApConf11uNAIsTable 1 } + +LcsStatusWlanMngmtApConf11uNAIsEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConf11uNAIsEntryName DisplayString, + lcsStatusWlanMngmtApConf11uNAIsEntryNaiRealm DisplayString, + lcsStatusWlanMngmtApConf11uNAIsEntryEapMethod INTEGER, + lcsStatusWlanMngmtApConf11uNAIsEntryAuthPar DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.7.1.1 +lcsStatusWlanMngmtApConf11uNAIsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uNAIsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.7.1.2 +lcsStatusWlanMngmtApConf11uNAIsEntryNaiRealm OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uNAIsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.7.1.3 +lcsStatusWlanMngmtApConf11uNAIsEntryEapMethod OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eEapTls (13), + eEapSim (18), + eEapTtls (21), + eEapAka (23) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uNAIsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.7.1.4 +lcsStatusWlanMngmtApConf11uNAIsEntryAuthPar OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Auth-Parameter-List" + ::= { lcsStatusWlanMngmtApConf11uNAIsEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.17.8 +lcsStatusWlanMngmtApConf11uOperatorListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConf11uOperatorListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11u 8 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.17.8.1 +lcsStatusWlanMngmtApConf11uOperatorListEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConf11uOperatorListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConf11uOperatorListEntryName, + lcsStatusWlanMngmtApConf11uOperatorListEntryLanguage + } + ::= { lcsStatusWlanMngmtApConf11uOperatorListTable 1 } + +LcsStatusWlanMngmtApConf11uOperatorListEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConf11uOperatorListEntryName DisplayString, + lcsStatusWlanMngmtApConf11uOperatorListEntryLanguage INTEGER, + lcsStatusWlanMngmtApConf11uOperatorListEntryOperatorName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.8.1.1 +lcsStatusWlanMngmtApConf11uOperatorListEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uOperatorListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.8.1.2 +lcsStatusWlanMngmtApConf11uOperatorListEntryLanguage OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eEnglish (1), + eGerman (2), + eChinese (3), + eSpanish (4), + eFrench (5), + eItalian (6), + eRussian (7), + eDutch (8), + eTurkish (9), + ePortuguese (10), + ePolish (11), + eCzech (12), + eArabic (13) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uOperatorListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.8.1.3 +lcsStatusWlanMngmtApConf11uOperatorListEntryOperatorName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uOperatorListEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.17.9 +lcsStatusWlanMngmtApConf11uGeneralTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConf11uGeneralEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11u 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.17.9.1 +lcsStatusWlanMngmtApConf11uGeneralEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConf11uGeneralEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConf11uGeneralEntryName + } + ::= { lcsStatusWlanMngmtApConf11uGeneralTable 1 } + +LcsStatusWlanMngmtApConf11uGeneralEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConf11uGeneralEntryName DisplayString, + lcsStatusWlanMngmtApConf11uGeneralEntryLinkStatus INTEGER, + lcsStatusWlanMngmtApConf11uGeneralEntryDownlinkSpeed Integer32, + lcsStatusWlanMngmtApConf11uGeneralEntryUplinkSpeed Integer32, + lcsStatusWlanMngmtApConf11uGeneralEntryIpv4AddrType INTEGER, + lcsStatusWlanMngmtApConf11uGeneralEntryIpv6AddrType INTEGER, + lcsStatusWlanMngmtApConf11uGeneralEntryVenueGroup INTEGER, + lcsStatusWlanMngmtApConf11uGeneralEntryVenueType Integer32, + lcsStatusWlanMngmtApConf11uGeneralEntryVenueName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.9.1.1 +lcsStatusWlanMngmtApConf11uGeneralEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uGeneralEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.9.1.2 +lcsStatusWlanMngmtApConf11uGeneralEntryLinkStatus OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eLinkUp (1), + eLinkDown (2), + eLinkTest (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uGeneralEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.9.1.3 +lcsStatusWlanMngmtApConf11uGeneralEntryDownlinkSpeed OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uGeneralEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.9.1.4 +lcsStatusWlanMngmtApConf11uGeneralEntryUplinkSpeed OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uGeneralEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.9.1.5 +lcsStatusWlanMngmtApConf11uGeneralEntryIpv4AddrType OBJECT-TYPE + SYNTAX INTEGER { + eNotAvailable (0), + ePublicAddrAvailable (1), + ePortRestrAddrAvail (2), + eSingleNatPrivAddrAvail (3), + eDoubleNatPrivAddrAvail (4), + ePortRestrSingleNatAddrAvail (5), + ePortRestrDoubleNatAddrAvail (6), + eAvailabilityNotKnown (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uGeneralEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.9.1.6 +lcsStatusWlanMngmtApConf11uGeneralEntryIpv6AddrType OBJECT-TYPE + SYNTAX INTEGER { + eNotAvailable (0), + eAvailable (1), + eAvailabilityNotKnown (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uGeneralEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.9.1.7 +lcsStatusWlanMngmtApConf11uGeneralEntryVenueGroup OBJECT-TYPE + SYNTAX INTEGER { + eUnspecified (0), + eAssembly (1), + eBusiness (2), + eEducational (3), + eFactoryAndIndustrial (4), + eInstitutional (5), + eMercantile (6), + eResindential (7), + eStorage (8), + eUtilityAndMiscellaneous (9), + eVehicular (10), + eOutdoor (11) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uGeneralEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.9.1.8 +lcsStatusWlanMngmtApConf11uGeneralEntryVenueType OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uGeneralEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.17.9.1.9 +lcsStatusWlanMngmtApConf11uGeneralEntryVenueName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf11uGeneralEntry 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.19 +lcsStatusWlanMngmtApConfCfgAsgGrpTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConfCfgAsgGrpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConf 19 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.19.1 +lcsStatusWlanMngmtApConfCfgAsgGrpEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConfCfgAsgGrpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConfCfgAsgGrpEntryName + } + ::= { lcsStatusWlanMngmtApConfCfgAsgGrpTable 1 } + +LcsStatusWlanMngmtApConfCfgAsgGrpEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConfCfgAsgGrpEntryName DisplayString, + lcsStatusWlanMngmtApConfCfgAsgGrpEntryProfile DisplayString, + lcsStatusWlanMngmtApConfCfgAsgGrpEntryApIntranet DisplayString, + lcsStatusWlanMngmtApConfCfgAsgGrpEntryIpv4ReferencePoolStart DisplayString, + lcsStatusWlanMngmtApConfCfgAsgGrpEntryIpv4ReferencePoolEnd DisplayString, + lcsStatusWlanMngmtApConfCfgAsgGrpEntryClientSteeringProfile DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.19.1.1 +lcsStatusWlanMngmtApConfCfgAsgGrpEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfCfgAsgGrpEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.19.1.2 +lcsStatusWlanMngmtApConfCfgAsgGrpEntryProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfCfgAsgGrpEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.19.1.3 +lcsStatusWlanMngmtApConfCfgAsgGrpEntryApIntranet OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfCfgAsgGrpEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.19.1.4 +lcsStatusWlanMngmtApConfCfgAsgGrpEntryIpv4ReferencePoolStart OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfCfgAsgGrpEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.19.1.5 +lcsStatusWlanMngmtApConfCfgAsgGrpEntryIpv4ReferencePoolEnd OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfCfgAsgGrpEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.19.1.6 +lcsStatusWlanMngmtApConfCfgAsgGrpEntryClientSteeringProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfCfgAsgGrpEntry 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.20 +lcsStatusWlanMngmtApConfGroupsConfigErrorsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConfGroupsConfigErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf 20 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.20.1 +lcsStatusWlanMngmtApConfGroupsConfigErrorsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConfGroupsConfigErrorsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConfGroupsConfigErrorsEntryIndex + } + ::= { lcsStatusWlanMngmtApConfGroupsConfigErrorsTable 1 } + +LcsStatusWlanMngmtApConfGroupsConfigErrorsEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConfGroupsConfigErrorsEntryIndex Integer32, + lcsStatusWlanMngmtApConfGroupsConfigErrorsEntryGroup DisplayString, + lcsStatusWlanMngmtApConfGroupsConfigErrorsEntryError INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.20.1.1 +lcsStatusWlanMngmtApConfGroupsConfigErrorsEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfGroupsConfigErrorsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.20.1.2 +lcsStatusWlanMngmtApConfGroupsConfigErrorsEntryGroup OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfGroupsConfigErrorsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.20.1.3 +lcsStatusWlanMngmtApConfGroupsConfigErrorsEntryError OBJECT-TYPE + SYNTAX INTEGER { + eIntranetNotFound (1), + eProfileNotFound (2), + eGroupNotFound (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfGroupsConfigErrorsEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.2.21 +lcsStatusWlanMngmtApConfTagGroupsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConfTagGroupsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConf 21 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.2.21.1 +lcsStatusWlanMngmtApConfTagGroupsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConfTagGroupsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConfTagGroupsEntryName + } + ::= { lcsStatusWlanMngmtApConfTagGroupsTable 1 } + +LcsStatusWlanMngmtApConfTagGroupsEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConfTagGroupsEntryName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.2.21.1.1 +lcsStatusWlanMngmtApConfTagGroupsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApConfTagGroupsEntry 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.3 +lcsStatusWlanMngmtNumberOfApConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmt 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.4 +lcsStatusWlanMngmtApConnectionsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApConnectionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmt 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.4.1 +lcsStatusWlanMngmtApConnectionsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApConnectionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApConnectionsEntryJob + } + ::= { lcsStatusWlanMngmtApConnectionsTable 1 } + +LcsStatusWlanMngmtApConnectionsEntry ::= SEQUENCE { + lcsStatusWlanMngmtApConnectionsEntryJob Integer32, + lcsStatusWlanMngmtApConnectionsEntryJobId DisplayString, + lcsStatusWlanMngmtApConnectionsEntryApLanMac MacAddress, + lcsStatusWlanMngmtApConnectionsEntryIpAddress IpAddress, + lcsStatusWlanMngmtApConnectionsEntryAuthorized INTEGER, + lcsStatusWlanMngmtApConnectionsEntryState INTEGER, + lcsStatusWlanMngmtApConnectionsEntryConfiguration INTEGER, + lcsStatusWlanMngmtApConnectionsEntryEncrypted INTEGER, + lcsStatusWlanMngmtApConnectionsEntryPmtu Integer32, + lcsStatusWlanMngmtApConnectionsEntryDscpForControlPackets INTEGER, + lcsStatusWlanMngmtApConnectionsEntryDscpForDataPackets INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.4.1.1 +lcsStatusWlanMngmtApConnectionsEntryJob OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConnectionsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.4.1.2 +lcsStatusWlanMngmtApConnectionsEntryJobId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConnectionsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.4.1.3 +lcsStatusWlanMngmtApConnectionsEntryApLanMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConnectionsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.4.1.4 +lcsStatusWlanMngmtApConnectionsEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConnectionsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.4.1.5 +lcsStatusWlanMngmtApConnectionsEntryAuthorized OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eYes (1), + eNo (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConnectionsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.4.1.6 +lcsStatusWlanMngmtApConnectionsEntryState OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eIdle (5), + eDiscovery (10), + eDtlsSetup (15), + eJoin (20), + eConfigure (25), + eImageData (30), + eReset (35), + eDtlsTeardown (40), + eSulking (45), + eRun (100) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConnectionsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.4.1.7 +lcsStatusWlanMngmtApConnectionsEntryConfiguration OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eDefault (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConnectionsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.4.1.8 +lcsStatusWlanMngmtApConnectionsEntryEncrypted OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConnectionsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.4.1.9 +lcsStatusWlanMngmtApConnectionsEntryPmtu OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConnectionsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.4.1.10 +lcsStatusWlanMngmtApConnectionsEntryDscpForControlPackets OBJECT-TYPE + SYNTAX INTEGER { + eBestEffort (0), + eAssuredForwarding11 (40), + eAssuredForwarding12 (48), + eAssuredForwarding13 (56), + eAssuredForwarding21 (72), + eAssuredForwarding22 (80), + eAssuredForwarding23 (88), + eAssuredForwarding31 (104), + eAssuredForwarding32 (112), + eAssuredForwarding33 (120), + eAssuredForwarding41 (136), + eAssuredForwarding42 (144), + eAssuredForwarding43 (152), + eExpeditedForwarding (184) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConnectionsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.4.1.11 +lcsStatusWlanMngmtApConnectionsEntryDscpForDataPackets OBJECT-TYPE + SYNTAX INTEGER { + eBestEffort (0), + eAssuredForwarding11 (40), + eAssuredForwarding12 (48), + eAssuredForwarding13 (56), + eAssuredForwarding21 (72), + eAssuredForwarding22 (80), + eAssuredForwarding23 (88), + eAssuredForwarding31 (104), + eAssuredForwarding32 (112), + eAssuredForwarding33 (120), + eAssuredForwarding41 (136), + eAssuredForwarding42 (144), + eAssuredForwarding43 (152), + eExpeditedForwarding (184) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApConnectionsEntry 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.5 +lcsStatusWlanMngmtExpectedAp OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmt 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.6 +lcsStatusWlanMngmtConnectedExpectedAp OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmt 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.7 +lcsStatusWlanMngmtConnectedManagedAp OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmt 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.8 +lcsStatusWlanMngmtConnectedNewAp OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmt 8 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.73.9 +lcsStatusWlanMngmtApStatus OBJECT IDENTIFIER ::= { lcsStatusWlanMngmt 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.9.1 +lcsStatusWlanMngmtApStatusMissingApTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApStatusMissingApEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatus 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.9.1.1 +lcsStatusWlanMngmtApStatusMissingApEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApStatusMissingApEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApStatusMissingApEntryApLanMac + } + ::= { lcsStatusWlanMngmtApStatusMissingApTable 1 } + +LcsStatusWlanMngmtApStatusMissingApEntry ::= SEQUENCE { + lcsStatusWlanMngmtApStatusMissingApEntryApLanMac MacAddress, + lcsStatusWlanMngmtApStatusMissingApEntryIpAddress IpAddress, + lcsStatusWlanMngmtApStatusMissingApEntryName DisplayString, + lcsStatusWlanMngmtApStatusMissingApEntryLocation DisplayString, + lcsStatusWlanMngmtApStatusMissingApEntryValid INTEGER, + lcsStatusWlanMngmtApStatusMissingApEntryModule DisplayString, + lcsStatusWlanMngmtApStatusMissingApEntryGroups DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.1.1.1 +lcsStatusWlanMngmtApStatusMissingApEntryApLanMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusMissingApEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.1.1.2 +lcsStatusWlanMngmtApStatusMissingApEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusMissingApEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.1.1.3 +lcsStatusWlanMngmtApStatusMissingApEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..82)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusMissingApEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.1.1.4 +lcsStatusWlanMngmtApStatusMissingApEntryLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusMissingApEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.1.1.5 +lcsStatusWlanMngmtApStatusMissingApEntryValid OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusMissingApEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.1.1.21 +lcsStatusWlanMngmtApStatusMissingApEntryModule OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusMissingApEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.1.1.31 +lcsStatusWlanMngmtApStatusMissingApEntryGroups OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApStatusMissingApEntry 31 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.9.2 +lcsStatusWlanMngmtApStatusActiveRadiosTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApStatusActiveRadiosEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatus 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.9.2.1 +lcsStatusWlanMngmtApStatusActiveRadiosEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApStatusActiveRadiosEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApStatusActiveRadiosEntryApLanMac, + lcsStatusWlanMngmtApStatusActiveRadiosEntryIfc + } + ::= { lcsStatusWlanMngmtApStatusActiveRadiosTable 1 } + +LcsStatusWlanMngmtApStatusActiveRadiosEntry ::= SEQUENCE { + lcsStatusWlanMngmtApStatusActiveRadiosEntryApLanMac MacAddress, + lcsStatusWlanMngmtApStatusActiveRadiosEntryIpAddress IpAddress, + lcsStatusWlanMngmtApStatusActiveRadiosEntryName DisplayString, + lcsStatusWlanMngmtApStatusActiveRadiosEntryLocation DisplayString, + lcsStatusWlanMngmtApStatusActiveRadiosEntryValid INTEGER, + lcsStatusWlanMngmtApStatusActiveRadiosEntryApWlanMac MacAddress, + lcsStatusWlanMngmtApStatusActiveRadiosEntryIfc Integer32, + lcsStatusWlanMngmtApStatusActiveRadiosEntryRadioBand Integer32, + lcsStatusWlanMngmtApStatusActiveRadiosEntryRadioChannel Integer32, + lcsStatusWlanMngmtApStatusActiveRadiosEntryClientCount Integer32, + lcsStatusWlanMngmtApStatusActiveRadiosEntryBackgroundScan Integer32, + lcsStatusWlanMngmtApStatusActiveRadiosEntryCardId DisplayString, + lcsStatusWlanMngmtApStatusActiveRadiosEntryCardFirmwareVersion DisplayString, + lcsStatusWlanMngmtApStatusActiveRadiosEntryCardSerialNumber DisplayString, + lcsStatusWlanMngmtApStatusActiveRadiosEntryOperating INTEGER, + lcsStatusWlanMngmtApStatusActiveRadiosEntryTransmitPower DisplayString, + lcsStatusWlanMngmtApStatusActiveRadiosEntryEirp DisplayString, + lcsStatusWlanMngmtApStatusActiveRadiosEntryExcEirp Integer32, + lcsStatusWlanMngmtApStatusActiveRadiosEntryInternal INTEGER, + lcsStatusWlanMngmtApStatusActiveRadiosEntryRadios Integer32, + lcsStatusWlanMngmtApStatusActiveRadiosEntryModule DisplayString, + lcsStatusWlanMngmtApStatusActiveRadiosEntrySerialNumber DisplayString, + lcsStatusWlanMngmtApStatusActiveRadiosEntryVersion DisplayString, + lcsStatusWlanMngmtApStatusActiveRadiosEntryCardState INTEGER, + lcsStatusWlanMngmtApStatusActiveRadiosEntryRadioFldOpt INTEGER, + lcsStatusWlanMngmtApStatusActiveRadiosEntryMinimalModemLoad Integer32, + lcsStatusWlanMngmtApStatusActiveRadiosEntryMaximalModemLoad Integer32, + lcsStatusWlanMngmtApStatusActiveRadiosEntryAverageModemLoad Integer32, + lcsStatusWlanMngmtApStatusActiveRadiosEntryApConnection INTEGER, + lcsStatusWlanMngmtApStatusActiveRadiosEntryGroups DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.1 +lcsStatusWlanMngmtApStatusActiveRadiosEntryApLanMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.2 +lcsStatusWlanMngmtApStatusActiveRadiosEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.3 +lcsStatusWlanMngmtApStatusActiveRadiosEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..82)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.4 +lcsStatusWlanMngmtApStatusActiveRadiosEntryLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.5 +lcsStatusWlanMngmtApStatusActiveRadiosEntryValid OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.6 +lcsStatusWlanMngmtApStatusActiveRadiosEntryApWlanMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.7 +lcsStatusWlanMngmtApStatusActiveRadiosEntryIfc OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.8 +lcsStatusWlanMngmtApStatusActiveRadiosEntryRadioBand OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.9 +lcsStatusWlanMngmtApStatusActiveRadiosEntryRadioChannel OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.10 +lcsStatusWlanMngmtApStatusActiveRadiosEntryClientCount OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.11 +lcsStatusWlanMngmtApStatusActiveRadiosEntryBackgroundScan OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.12 +lcsStatusWlanMngmtApStatusActiveRadiosEntryCardId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..90)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.13 +lcsStatusWlanMngmtApStatusActiveRadiosEntryCardFirmwareVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.14 +lcsStatusWlanMngmtApStatusActiveRadiosEntryCardSerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.15 +lcsStatusWlanMngmtApStatusActiveRadiosEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.16 +lcsStatusWlanMngmtApStatusActiveRadiosEntryTransmitPower OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.17 +lcsStatusWlanMngmtApStatusActiveRadiosEntryEirp OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.18 +lcsStatusWlanMngmtApStatusActiveRadiosEntryExcEirp OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.19 +lcsStatusWlanMngmtApStatusActiveRadiosEntryInternal OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.20 +lcsStatusWlanMngmtApStatusActiveRadiosEntryRadios OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.21 +lcsStatusWlanMngmtApStatusActiveRadiosEntryModule OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.22 +lcsStatusWlanMngmtApStatusActiveRadiosEntrySerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..18)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.23 +lcsStatusWlanMngmtApStatusActiveRadiosEntryVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..25)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.24 +lcsStatusWlanMngmtApStatusActiveRadiosEntryCardState OBJECT-TYPE + SYNTAX INTEGER { + eNormal (0), + eFailure (1), + eInitalizing (2), + eNoCard (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 24 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.25 +lcsStatusWlanMngmtApStatusActiveRadiosEntryRadioFldOpt OBJECT-TYPE + SYNTAX INTEGER { + eInactive (0), + eWaiting (1), + eScanning (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "radio field optimization" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 25 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.26 +lcsStatusWlanMngmtApStatusActiveRadiosEntryMinimalModemLoad OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 26 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.27 +lcsStatusWlanMngmtApStatusActiveRadiosEntryMaximalModemLoad OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 27 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.28 +lcsStatusWlanMngmtApStatusActiveRadiosEntryAverageModemLoad OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 28 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.29 +lcsStatusWlanMngmtApStatusActiveRadiosEntryApConnection OBJECT-TYPE + SYNTAX INTEGER { + eLan (0), + eWlanClient (1), + eWlanAutowds (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 29 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.2.1.31 +lcsStatusWlanMngmtApStatusActiveRadiosEntryGroups OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApStatusActiveRadiosEntry 31 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.9.3 +lcsStatusWlanMngmtApStatusNewApTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApStatusNewApEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatus 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.9.3.1 +lcsStatusWlanMngmtApStatusNewApEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApStatusNewApEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApStatusNewApEntryApLanMac + } + ::= { lcsStatusWlanMngmtApStatusNewApTable 1 } + +LcsStatusWlanMngmtApStatusNewApEntry ::= SEQUENCE { + lcsStatusWlanMngmtApStatusNewApEntryApLanMac MacAddress, + lcsStatusWlanMngmtApStatusNewApEntryIpAddress IpAddress, + lcsStatusWlanMngmtApStatusNewApEntryName DisplayString, + lcsStatusWlanMngmtApStatusNewApEntryLocation DisplayString, + lcsStatusWlanMngmtApStatusNewApEntryValid INTEGER, + lcsStatusWlanMngmtApStatusNewApEntryConfiguration INTEGER, + lcsStatusWlanMngmtApStatusNewApEntryAutowdsIntegration INTEGER, + lcsStatusWlanMngmtApStatusNewApEntryGroups DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.3.1.1 +lcsStatusWlanMngmtApStatusNewApEntryApLanMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusNewApEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.3.1.2 +lcsStatusWlanMngmtApStatusNewApEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusNewApEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.3.1.3 +lcsStatusWlanMngmtApStatusNewApEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..82)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusNewApEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.3.1.4 +lcsStatusWlanMngmtApStatusNewApEntryLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusNewApEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.3.1.5 +lcsStatusWlanMngmtApStatusNewApEntryValid OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusNewApEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.3.1.6 +lcsStatusWlanMngmtApStatusNewApEntryConfiguration OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusNewApEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.3.1.7 +lcsStatusWlanMngmtApStatusNewApEntryAutowdsIntegration OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eExpress (1), + ePreconfigured (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApStatusNewApEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.3.1.8 +lcsStatusWlanMngmtApStatusNewApEntryGroups OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApStatusNewApEntry 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.9.4 +lcsStatusWlanMngmtApStatusNextdoorApTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtApStatusNextdoorApEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatus 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.9.4.1 +lcsStatusWlanMngmtApStatusNextdoorApEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtApStatusNextdoorApEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtApStatusNextdoorApEntryApLanMac + } + ::= { lcsStatusWlanMngmtApStatusNextdoorApTable 1 } + +LcsStatusWlanMngmtApStatusNextdoorApEntry ::= SEQUENCE { + lcsStatusWlanMngmtApStatusNextdoorApEntryApLanMac MacAddress, + lcsStatusWlanMngmtApStatusNextdoorApEntryIpAddress IpAddress, + lcsStatusWlanMngmtApStatusNextdoorApEntryName DisplayString, + lcsStatusWlanMngmtApStatusNextdoorApEntryLocation DisplayString, + lcsStatusWlanMngmtApStatusNextdoorApEntryValid INTEGER, + lcsStatusWlanMngmtApStatusNextdoorApEntryWlcName DisplayString, + lcsStatusWlanMngmtApStatusNextdoorApEntryWlcLanMac MacAddress, + lcsStatusWlanMngmtApStatusNextdoorApEntryGroups DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.4.1.1 +lcsStatusWlanMngmtApStatusNextdoorApEntryApLanMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusNextdoorApEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.4.1.2 +lcsStatusWlanMngmtApStatusNextdoorApEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusNextdoorApEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.4.1.3 +lcsStatusWlanMngmtApStatusNextdoorApEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..82)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusNextdoorApEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.4.1.4 +lcsStatusWlanMngmtApStatusNextdoorApEntryLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusNextdoorApEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.4.1.5 +lcsStatusWlanMngmtApStatusNextdoorApEntryValid OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusNextdoorApEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.4.1.6 +lcsStatusWlanMngmtApStatusNextdoorApEntryWlcName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..82)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusNextdoorApEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.4.1.7 +lcsStatusWlanMngmtApStatusNextdoorApEntryWlcLanMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtApStatusNextdoorApEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.9.4.1.31 +lcsStatusWlanMngmtApStatusNextdoorApEntryGroups OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtApStatusNextdoorApEntry 31 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.10 +lcsStatusWlanMngmtAcceptAp OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmt 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.11 +lcsStatusWlanMngmtDisconnectAp OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmt 11 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.73.20 +lcsStatusWlanMngmtCentralFwMngmt OBJECT IDENTIFIER ::= { lcsStatusWlanMngmt 20 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.20.12 +lcsStatusWlanMngmtCentralFwMngmtAvailFwTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtCentralFwMngmtAvailFwEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "available firmwares" + ::= { lcsStatusWlanMngmtCentralFwMngmt 12 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.20.12.1 +lcsStatusWlanMngmtCentralFwMngmtAvailFwEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtCentralFwMngmtAvailFwEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtCentralFwMngmtAvailFwEntryIndex + } + ::= { lcsStatusWlanMngmtCentralFwMngmtAvailFwTable 1 } + +LcsStatusWlanMngmtCentralFwMngmtAvailFwEntry ::= SEQUENCE { + lcsStatusWlanMngmtCentralFwMngmtAvailFwEntryIndex Integer32, + lcsStatusWlanMngmtCentralFwMngmtAvailFwEntryDevice DisplayString, + lcsStatusWlanMngmtCentralFwMngmtAvailFwEntryVersion DisplayString, + lcsStatusWlanMngmtCentralFwMngmtAvailFwEntryDate DisplayString, + lcsStatusWlanMngmtCentralFwMngmtAvailFwEntryDescription DisplayString, + lcsStatusWlanMngmtCentralFwMngmtAvailFwEntryFileType INTEGER, + lcsStatusWlanMngmtCentralFwMngmtAvailFwEntryFilesize Integer32, + lcsStatusWlanMngmtCentralFwMngmtAvailFwEntryLoaded INTEGER, + lcsStatusWlanMngmtCentralFwMngmtAvailFwEntryRunningUpdates Integer32, + lcsStatusWlanMngmtCentralFwMngmtAvailFwEntryCompatibilityId Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.20.12.1.1 +lcsStatusWlanMngmtCentralFwMngmtAvailFwEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtCentralFwMngmtAvailFwEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.20.12.1.2 +lcsStatusWlanMngmtCentralFwMngmtAvailFwEntryDevice OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtCentralFwMngmtAvailFwEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.20.12.1.3 +lcsStatusWlanMngmtCentralFwMngmtAvailFwEntryVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtCentralFwMngmtAvailFwEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.20.12.1.4 +lcsStatusWlanMngmtCentralFwMngmtAvailFwEntryDate OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtCentralFwMngmtAvailFwEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.20.12.1.5 +lcsStatusWlanMngmtCentralFwMngmtAvailFwEntryDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtCentralFwMngmtAvailFwEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.20.12.1.6 +lcsStatusWlanMngmtCentralFwMngmtAvailFwEntryFileType OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eFirmware (1), + eLoader (2), + eOemFile (3), + eConverter (4), + eMiniFirmware (5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtCentralFwMngmtAvailFwEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.20.12.1.7 +lcsStatusWlanMngmtCentralFwMngmtAvailFwEntryFilesize OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtCentralFwMngmtAvailFwEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.20.12.1.8 +lcsStatusWlanMngmtCentralFwMngmtAvailFwEntryLoaded OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtCentralFwMngmtAvailFwEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.20.12.1.9 +lcsStatusWlanMngmtCentralFwMngmtAvailFwEntryRunningUpdates OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtCentralFwMngmtAvailFwEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.20.12.1.10 +lcsStatusWlanMngmtCentralFwMngmtAvailFwEntryCompatibilityId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtCentralFwMngmtAvailFwEntry 10 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.20.13 +lcsStatusWlanMngmtCentralFwMngmtAvailableScriptsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtCentralFwMngmtAvailableScriptsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtCentralFwMngmt 13 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.20.13.1 +lcsStatusWlanMngmtCentralFwMngmtAvailableScriptsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtCentralFwMngmtAvailableScriptsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtCentralFwMngmtAvailableScriptsEntryIndex + } + ::= { lcsStatusWlanMngmtCentralFwMngmtAvailableScriptsTable 1 } + +LcsStatusWlanMngmtCentralFwMngmtAvailableScriptsEntry ::= SEQUENCE { + lcsStatusWlanMngmtCentralFwMngmtAvailableScriptsEntryIndex Integer32, + lcsStatusWlanMngmtCentralFwMngmtAvailableScriptsEntryName DisplayString, + lcsStatusWlanMngmtCentralFwMngmtAvailableScriptsEntryFilesize Integer32, + lcsStatusWlanMngmtCentralFwMngmtAvailableScriptsEntryCommentary DisplayString, + lcsStatusWlanMngmtCentralFwMngmtAvailableScriptsEntryRunTransm Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.20.13.1.1 +lcsStatusWlanMngmtCentralFwMngmtAvailableScriptsEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtCentralFwMngmtAvailableScriptsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.20.13.1.2 +lcsStatusWlanMngmtCentralFwMngmtAvailableScriptsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtCentralFwMngmtAvailableScriptsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.20.13.1.3 +lcsStatusWlanMngmtCentralFwMngmtAvailableScriptsEntryFilesize OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtCentralFwMngmtAvailableScriptsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.20.13.1.4 +lcsStatusWlanMngmtCentralFwMngmtAvailableScriptsEntryCommentary OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtCentralFwMngmtAvailableScriptsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.20.13.1.5 +lcsStatusWlanMngmtCentralFwMngmtAvailableScriptsEntryRunTransm OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "running transmissions" + ::= { lcsStatusWlanMngmtCentralFwMngmtAvailableScriptsEntry 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.20.14 +lcsStatusWlanMngmtCentralFwMngmtFetchJobStatus OBJECT-TYPE + SYNTAX INTEGER { + eIdle (0), + eBadUrl (1), + eHttpTimeOut (2), + eNoMemory (3), + eValidUrlFound (4), + eHttpError (5), + eDownloadIsRunning (6), + eFetchJobIsBusy (7), + eReceivedFileTooBig (8), + eBroken (9), + eInvalidFilesize (10), + eConnError (11), + eTooSlow (12), + eReadFailed (13), + eConnectionError (14), + eDnsError (15), + eProtocolError (16) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtCentralFwMngmt 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.20.15 +lcsStatusWlanMngmtCentralFwMngmtLoadedFirmwares OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtCentralFwMngmt 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.20.16 +lcsStatusWlanMngmtCentralFwMngmtUsedMemory OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtCentralFwMngmt 16 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.20.17 +lcsStatusWlanMngmtCentralFwMngmtUpdFwScriptInfo OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "update firmware and script information" + ::= { lcsStatusWlanMngmtCentralFwMngmt 17 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.20.18 +lcsStatusWlanMngmtCentralFwMngmtRebootUpdatedAps OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtCentralFwMngmt 18 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.32 +lcsStatusWlanMngmtLicenseCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmt 32 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.33 +lcsStatusWlanMngmtLicenseLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmt 33 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.34 +lcsStatusWlanMngmtQueueBlockErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmt 34 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.35 +lcsStatusWlanMngmtClientCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmt 35 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.36 +lcsStatusWlanMngmtWlcBridgeInterfacesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtWlcBridgeInterfacesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmt 36 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.36.1 +lcsStatusWlanMngmtWlcBridgeInterfacesEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtWlcBridgeInterfacesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtWlcBridgeInterfacesEntryBridgeInterface + } + ::= { lcsStatusWlanMngmtWlcBridgeInterfacesTable 1 } + +LcsStatusWlanMngmtWlcBridgeInterfacesEntry ::= SEQUENCE { + lcsStatusWlanMngmtWlcBridgeInterfacesEntryBridgeInterface INTEGER, + lcsStatusWlanMngmtWlcBridgeInterfacesEntryRegisteredConnections Integer32, + lcsStatusWlanMngmtWlcBridgeInterfacesEntryRecvUnicasts Integer32, + lcsStatusWlanMngmtWlcBridgeInterfacesEntryRecvMulticasts Integer32, + lcsStatusWlanMngmtWlcBridgeInterfacesEntryRecvBroadcasts Integer32, + lcsStatusWlanMngmtWlcBridgeInterfacesEntryTransUnicastPackets Integer32, + lcsStatusWlanMngmtWlcBridgeInterfacesEntryTransMultiBroadPckts Integer32, + lcsStatusWlanMngmtWlcBridgeInterfacesEntryDroppedPackets Integer32, + lcsStatusWlanMngmtWlcBridgeInterfacesEntryUnicastConnections Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.36.1.1 +lcsStatusWlanMngmtWlcBridgeInterfacesEntryBridgeInterface OBJECT-TYPE + SYNTAX INTEGER { + eLan (0), + eWlcTunnel1 (1), + eWlcTunnel2 (2), + eWlcTunnel3 (3), + eWlcTunnel4 (4), + eWlcTunnel5 (5), + eWlcTunnel6 (6), + eWlcTunnel7 (7), + eWlcTunnel8 (8), + eWlcTunnel9 (9), + eWlcTunnel10 (10), + eWlcTunnel11 (11), + eWlcTunnel12 (12), + eWlcTunnel13 (13), + eWlcTunnel14 (14), + eWlcTunnel15 (15), + eWlcTunnel16 (16), + eWlcTunnel17 (17), + eWlcTunnel18 (18), + eWlcTunnel19 (19), + eWlcTunnel20 (20), + eWlcTunnel21 (21), + eWlcTunnel22 (22), + eWlcTunnel23 (23), + eWlcTunnel24 (24), + eWlcTunnel25 (25), + eWlcTunnel26 (26), + eWlcTunnel27 (27), + eWlcTunnel28 (28), + eWlcTunnel29 (29), + eWlcTunnel30 (30), + eWlcTunnel31 (31), + eWlcTunnel32 (32), + eWlcTunnelAutowds (33) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcBridgeInterfacesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.36.1.2 +lcsStatusWlanMngmtWlcBridgeInterfacesEntryRegisteredConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcBridgeInterfacesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.36.1.3 +lcsStatusWlanMngmtWlcBridgeInterfacesEntryRecvUnicasts OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcBridgeInterfacesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.36.1.4 +lcsStatusWlanMngmtWlcBridgeInterfacesEntryRecvMulticasts OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcBridgeInterfacesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.36.1.5 +lcsStatusWlanMngmtWlcBridgeInterfacesEntryRecvBroadcasts OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcBridgeInterfacesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.36.1.6 +lcsStatusWlanMngmtWlcBridgeInterfacesEntryTransUnicastPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcBridgeInterfacesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.36.1.7 +lcsStatusWlanMngmtWlcBridgeInterfacesEntryTransMultiBroadPckts OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcBridgeInterfacesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.36.1.8 +lcsStatusWlanMngmtWlcBridgeInterfacesEntryDroppedPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcBridgeInterfacesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.36.1.9 +lcsStatusWlanMngmtWlcBridgeInterfacesEntryUnicastConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcBridgeInterfacesEntry 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.37 +lcsStatusWlanMngmtPreference OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmt 37 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.73.40 +lcsStatusWlanMngmtWlcTunnels OBJECT IDENTIFIER ::= { lcsStatusWlanMngmt 40 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.40.2 +lcsStatusWlanMngmtWlcTunnelsWlcDataTunnelActive OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcTunnels 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.40.4 +lcsStatusWlanMngmtWlcTunnelsNumberOfWlcConn OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcTunnels 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.40.5 +lcsStatusWlanMngmtWlcTunnelsActiveConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcTunnels 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.40.6 +lcsStatusWlanMngmtWlcTunnelsWlcConnectionsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcTunnels 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.40.6.1 +lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryConnId + } + ::= { lcsStatusWlanMngmtWlcTunnelsWlcConnectionsTable 1 } + +LcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntry ::= SEQUENCE { + lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryConnId Integer32, + lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryIpAddress IpAddress, + lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryPort Integer32, + lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryResult INTEGER, + lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryName DisplayString, + lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryState INTEGER, + lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryValid INTEGER, + lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryMacAddress Integer32, + lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryFirmwareVersion DisplayString, + lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryPmtu Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.40.6.1.1 +lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryConnId OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.40.6.1.2 +lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.40.6.1.3 +lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.40.6.1.4 +lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryResult OBJECT-TYPE + SYNTAX INTEGER { + eSuccess (0), + eFailure (1), + eSuccessNat (2), + eJoinFailUnspecified (3), + eJoinFailResourceDepletion (4), + eJoinFailUnknwnSrc (5), + eJoinFailIncorrectData (6), + eJoinFailSessionIdInUse (7), + eJoinFailWtpNotSupported (8), + eJoinFailBindingNotSupp (9), + eResetFailUnableToReset (10), + eResetFailFirmwWriteErr (11), + eConfigurationErrorServProvAnyhow (12), + eConfigurationErrorServNotProv (13), + eImageDataErrorChecksum (14), + eImageDataErrorLength (15), + eImageDataErrorOther (16), + eImageDataErrorAlrPresent (17), + eMessageUnexpectedInvalid (18), + eMessageUnexpectedUnrecognized (19), + eFailMissingMandMsgElem (20), + eFailUnrecognizedMsgElem (21), + eUnsupportedLoaderVersion (300), + eUnsupportedFirmwareVersion (301), + eUnknown (302), + eJoinFailAlreadyConnected (303) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.40.6.1.5 +lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.40.6.1.6 +lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryState OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eIdle (5), + eDiscovery (10), + eDtlsSetup (15), + eJoin (20), + eConfigure (25), + eImageData (30), + eReset (35), + eDtlsTeardown (40), + eSulking (45), + eRun (100) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.40.6.1.7 +lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryValid OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.40.6.1.8 +lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryMacAddress OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.40.6.1.9 +lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryFirmwareVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.40.6.1.10 +lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryPmtu OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntry 10 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.40.7 +lcsStatusWlanMngmtWlcTunnelsWlcDiscoveryTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtWlcTunnelsWlcDiscoveryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcTunnels 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.40.7.1 +lcsStatusWlanMngmtWlcTunnelsWlcDiscoveryEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtWlcTunnelsWlcDiscoveryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtWlcTunnelsWlcDiscoveryEntryNetwork + } + ::= { lcsStatusWlanMngmtWlcTunnelsWlcDiscoveryTable 1 } + +LcsStatusWlanMngmtWlcTunnelsWlcDiscoveryEntry ::= SEQUENCE { + lcsStatusWlanMngmtWlcTunnelsWlcDiscoveryEntryNetwork DisplayString, + lcsStatusWlanMngmtWlcTunnelsWlcDiscoveryEntryActive INTEGER, + lcsStatusWlanMngmtWlcTunnelsWlcDiscoveryEntryPort Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.40.7.1.1 +lcsStatusWlanMngmtWlcTunnelsWlcDiscoveryEntryNetwork OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcTunnelsWlcDiscoveryEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.40.7.1.2 +lcsStatusWlanMngmtWlcTunnelsWlcDiscoveryEntryActive OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtWlcTunnelsWlcDiscoveryEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.40.7.1.3 +lcsStatusWlanMngmtWlcTunnelsWlcDiscoveryEntryPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtWlcTunnelsWlcDiscoveryEntry 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.40.8 +lcsStatusWlanMngmtWlcTunnelsWlcTunnelActive OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtWlcTunnels 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.41 +lcsStatusWlanMngmtNextdoorAp OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmt 41 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.50 +lcsStatusWlanMngmtWtpCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmt 50 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.51 +lcsStatusWlanMngmtClientCount24ghz OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmt 51 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.52 +lcsStatusWlanMngmtClientCount5ghz OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmt 52 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.100 +lcsStatusWlanMngmtStationTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtStationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmt 100 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.100.1 +lcsStatusWlanMngmtStationTableEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtStationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtStationTableEntryClientMac, + lcsStatusWlanMngmtStationTableEntryApWlanMac + } + ::= { lcsStatusWlanMngmtStationTableTable 1 } + +LcsStatusWlanMngmtStationTableEntry ::= SEQUENCE { + lcsStatusWlanMngmtStationTableEntryClientMac MacAddress, + lcsStatusWlanMngmtStationTableEntryApWlanMac MacAddress, + lcsStatusWlanMngmtStationTableEntryIdentification DisplayString, + lcsStatusWlanMngmtStationTableEntryTrap Integer32, + lcsStatusWlanMngmtStationTableEntryPhySignal Integer32, + lcsStatusWlanMngmtStationTableEntryTxRate INTEGER, + lcsStatusWlanMngmtStationTableEntryRxRate INTEGER, + lcsStatusWlanMngmtStationTableEntryNetworkName DisplayString, + lcsStatusWlanMngmtStationTableEntryKeyType INTEGER, + lcsStatusWlanMngmtStationTableEntryWpaVersion INTEGER, + lcsStatusWlanMngmtStationTableEntryState INTEGER, + lcsStatusWlanMngmtStationTableEntryLastError INTEGER, + lcsStatusWlanMngmtStationTableEntryIpAddress IpAddress, + lcsStatusWlanMngmtStationTableEntryInterface INTEGER, + lcsStatusWlanMngmtStationTableEntryThroughput Integer32, + lcsStatusWlanMngmtStationTableEntryCompression Integer32, + lcsStatusWlanMngmtStationTableEntryApLanMac MacAddress, + lcsStatusWlanMngmtStationTableEntryApName DisplayString, + lcsStatusWlanMngmtStationTableEntryValid INTEGER, + lcsStatusWlanMngmtStationTableEntryEffTxRate Integer32, + lcsStatusWlanMngmtStationTableEntryEffRxRate Integer32, + lcsStatusWlanMngmtStationTableEntryBssid MacAddress, + lcsStatusWlanMngmtStationTableEntryClientSteering INTEGER, + lcsStatusWlanMngmtStationTableEntryOperationMode INTEGER, + lcsStatusWlanMngmtStationTableEntryFastRoaming INTEGER, + lcsStatusWlanMngmtStationTableEntryUserName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.1 +lcsStatusWlanMngmtStationTableEntryClientMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtStationTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.2 +lcsStatusWlanMngmtStationTableEntryApWlanMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtStationTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.3 +lcsStatusWlanMngmtStationTableEntryIdentification OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..24)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtStationTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.4 +lcsStatusWlanMngmtStationTableEntryTrap OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtStationTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.5 +lcsStatusWlanMngmtStationTableEntryPhySignal OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtStationTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.6 +lcsStatusWlanMngmtStationTableEntryTxRate OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e1M (1), + e2M (2), + e5M (3), + e5M5 (4), + e8M (5), + e11M (6), + e6M (8), + e9M (9), + e12M (10), + e18M (11), + e24M (12), + e36M (13), + e48M (14), + e54M (15), + eXR0M5 (16), + eXR1M (17), + eXR2M (18), + eXR3M (19), + eT12M (20), + eT18M (21), + eT24M (22), + eT36M (23), + eT48M (24), + eT72M (25), + eT96M (26), + eT108M (27), + eHT1S6M5 (28), + eHT1S13M (29), + eHT1S19M5 (30), + eHT1S26M (31), + eHT1S39M (32), + eHT1S52M (33), + eHT1S58M5 (34), + eHT1S65M (35), + eHT2S13M (36), + eHT2S26M (37), + eHT2S39M (38), + eHT2S52M (39), + eHT2S78M (40), + eHT2S104M (41), + eHT2S117M (42), + eHT2S130M (43), + eHT3S19M5 (44), + eHT3S39M (45), + eHT3S58M5 (46), + eHT3S78M (47), + eHT3S117M (48), + eHT3S156M (49), + eHT3S175M5 (50), + eHT3S195M (51) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtStationTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.7 +lcsStatusWlanMngmtStationTableEntryRxRate OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e1M (1), + e2M (2), + e5M (3), + e5M5 (4), + e8M (5), + e11M (6), + e6M (8), + e9M (9), + e12M (10), + e18M (11), + e24M (12), + e36M (13), + e48M (14), + e54M (15), + eXR0M5 (16), + eXR1M (17), + eXR2M (18), + eXR3M (19), + eT12M (20), + eT18M (21), + eT24M (22), + eT36M (23), + eT48M (24), + eT72M (25), + eT96M (26), + eT108M (27), + eHT1S6M5 (28), + eHT1S13M (29), + eHT1S19M5 (30), + eHT1S26M (31), + eHT1S39M (32), + eHT1S52M (33), + eHT1S58M5 (34), + eHT1S65M (35), + eHT2S13M (36), + eHT2S26M (37), + eHT2S39M (38), + eHT2S52M (39), + eHT2S78M (40), + eHT2S104M (41), + eHT2S117M (42), + eHT2S130M (43), + eHT3S19M5 (44), + eHT3S39M (45), + eHT3S58M5 (46), + eHT3S78M (47), + eHT3S117M (48), + eHT3S156M (49), + eHT3S175M5 (50), + eHT3S195M (51) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtStationTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.8 +lcsStatusWlanMngmtStationTableEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtStationTableEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.9 +lcsStatusWlanMngmtStationTableEntryKeyType OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eUnknown (1), + eWep40Bits (5), + eWep104Bits (13), + eWep128Bits (16), + eTkip (64), + eAesOcb (65), + eAesCcm (66), + eBip (68) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtStationTableEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.10 +lcsStatusWlanMngmtStationTableEntryWpaVersion OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eWpa1 (1), + eWpa2 (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtStationTableEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.11 +lcsStatusWlanMngmtStationTableEntryState OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eAdhoc (1), + eAuthenticated (2), + eConnected (3), + eMacCheck (4), + eKeyHandshake (8), + eAssociated (9), + e1xNegotiation (10), + eWpsNegotiation (11) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtStationTableEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.12 +lcsStatusWlanMngmtStationTableEntryLastError OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eAuthSuccess (1), + eDeauth (2), + eAssocSuccess (3), + eReassocSuccess (4), + eDisassoc (5), + eRadiusSuccess (6), + eAuthReject (7), + eAssocReject (8), + eKeyhandshakeSuccess (9), + eKeyhandshakeTimeout (10), + eKeyhandshakeFailure (11), + eRadiusReject (12), + eSupervision (13), + e8021xSuccess (14), + e8021xFailure (15), + eIdleTimeout (16), + eAdminDeassoc (17), + eRoamed (18) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtStationTableEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.13 +lcsStatusWlanMngmtStationTableEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtStationTableEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.14 +lcsStatusWlanMngmtStationTableEntryInterface OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (0), + eWlan2 (1), + eWlan3 (2), + eWlan4 (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtStationTableEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.15 +lcsStatusWlanMngmtStationTableEntryThroughput OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtStationTableEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.16 +lcsStatusWlanMngmtStationTableEntryCompression OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtStationTableEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.17 +lcsStatusWlanMngmtStationTableEntryApLanMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtStationTableEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.18 +lcsStatusWlanMngmtStationTableEntryApName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtStationTableEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.19 +lcsStatusWlanMngmtStationTableEntryValid OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtStationTableEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.20 +lcsStatusWlanMngmtStationTableEntryEffTxRate OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtStationTableEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.21 +lcsStatusWlanMngmtStationTableEntryEffRxRate OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtStationTableEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.22 +lcsStatusWlanMngmtStationTableEntryBssid OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtStationTableEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.23 +lcsStatusWlanMngmtStationTableEntryClientSteering OBJECT-TYPE + SYNTAX INTEGER { + ePending (0), + eClientSteeringOk (1), + eUnsteerable (2), + eNoInfo (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtStationTableEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.24 +lcsStatusWlanMngmtStationTableEntryOperationMode OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e11b (1), + e11g (2), + e11a (3), + e11n (4), + e11ac (5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtStationTableEntry 24 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.25 +lcsStatusWlanMngmtStationTableEntryFastRoaming OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtStationTableEntry 25 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.100.1.26 +lcsStatusWlanMngmtStationTableEntryUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtStationTableEntry 26 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.101 +lcsStatusWlanMngmtNetworksTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmt 101 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.101.1 +lcsStatusWlanMngmtNetworksEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtNetworksEntryBssid + } + ::= { lcsStatusWlanMngmtNetworksTable 1 } + +LcsStatusWlanMngmtNetworksEntry ::= SEQUENCE { + lcsStatusWlanMngmtNetworksEntryBssid MacAddress, + lcsStatusWlanMngmtNetworksEntryApLanMac MacAddress, + lcsStatusWlanMngmtNetworksEntryApWlanMac MacAddress, + lcsStatusWlanMngmtNetworksEntryApName DisplayString, + lcsStatusWlanMngmtNetworksEntryInterface INTEGER, + lcsStatusWlanMngmtNetworksEntryNetNumber Integer32, + lcsStatusWlanMngmtNetworksEntryName DisplayString, + lcsStatusWlanMngmtNetworksEntryClientCount Integer32, + lcsStatusWlanMngmtNetworksEntryValid INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.101.1.1 +lcsStatusWlanMngmtNetworksEntryBssid OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtNetworksEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.101.1.2 +lcsStatusWlanMngmtNetworksEntryApLanMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtNetworksEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.101.1.3 +lcsStatusWlanMngmtNetworksEntryApWlanMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtNetworksEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.101.1.4 +lcsStatusWlanMngmtNetworksEntryApName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtNetworksEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.101.1.5 +lcsStatusWlanMngmtNetworksEntryInterface OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (0), + eWlan2 (1), + eWlan3 (2), + eWlan4 (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtNetworksEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.101.1.6 +lcsStatusWlanMngmtNetworksEntryNetNumber OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtNetworksEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.101.1.7 +lcsStatusWlanMngmtNetworksEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtNetworksEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.101.1.8 +lcsStatusWlanMngmtNetworksEntryClientCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtNetworksEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.101.1.9 +lcsStatusWlanMngmtNetworksEntryValid OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtNetworksEntry 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.102 +lcsStatusWlanMngmtNetCountTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtNetCountEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmt 102 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.102.1 +lcsStatusWlanMngmtNetCountEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtNetCountEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtNetCountEntryName + } + ::= { lcsStatusWlanMngmtNetCountTable 1 } + +LcsStatusWlanMngmtNetCountEntry ::= SEQUENCE { + lcsStatusWlanMngmtNetCountEntryName DisplayString, + lcsStatusWlanMngmtNetCountEntryNumRadios Integer32, + lcsStatusWlanMngmtNetCountEntryNumStations Integer32, + lcsStatusWlanMngmtNetCountEntrySsid DisplayString, + lcsStatusWlanMngmtNetCountEntryBridgeInterface INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.102.1.1 +lcsStatusWlanMngmtNetCountEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtNetCountEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.102.1.2 +lcsStatusWlanMngmtNetCountEntryNumRadios OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtNetCountEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.102.1.3 +lcsStatusWlanMngmtNetCountEntryNumStations OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtNetCountEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.102.1.4 +lcsStatusWlanMngmtNetCountEntrySsid OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtNetCountEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.102.1.5 +lcsStatusWlanMngmtNetCountEntryBridgeInterface OBJECT-TYPE + SYNTAX INTEGER { + eLan (0), + eWlcTunnel1 (1), + eWlcTunnel2 (2), + eWlcTunnel3 (3), + eWlcTunnel4 (4), + eWlcTunnel5 (5), + eWlcTunnel6 (6), + eWlcTunnel7 (7), + eWlcTunnel8 (8), + eWlcTunnel9 (9), + eWlcTunnel10 (10), + eWlcTunnel11 (11), + eWlcTunnel12 (12), + eWlcTunnel13 (13), + eWlcTunnel14 (14), + eWlcTunnel15 (15), + eWlcTunnel16 (16), + eWlcTunnel17 (17), + eWlcTunnel18 (18), + eWlcTunnel19 (19), + eWlcTunnel20 (20), + eWlcTunnel21 (21), + eWlcTunnel22 (22), + eWlcTunnel23 (23), + eWlcTunnel24 (24), + eWlcTunnel25 (25), + eWlcTunnel26 (26), + eWlcTunnel27 (27), + eWlcTunnel28 (28), + eWlcTunnel29 (29), + eWlcTunnel30 (30), + eWlcTunnel31 (31), + eWlcTunnel32 (32), + eWlcTunnelAutowds (33) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtNetCountEntry 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.120 +lcsStatusWlanMngmtScanResultsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtScanResultsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmt 120 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.120.1 +lcsStatusWlanMngmtScanResultsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtScanResultsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtScanResultsEntryBssid + } + ::= { lcsStatusWlanMngmtScanResultsTable 1 } + +LcsStatusWlanMngmtScanResultsEntry ::= SEQUENCE { + lcsStatusWlanMngmtScanResultsEntryBssid MacAddress, + lcsStatusWlanMngmtScanResultsEntryApName DisplayString, + lcsStatusWlanMngmtScanResultsEntryIpAddress IpAddress, + lcsStatusWlanMngmtScanResultsEntryApLanMac MacAddress, + lcsStatusWlanMngmtScanResultsEntryInterface INTEGER, + lcsStatusWlanMngmtScanResultsEntryNetworkName DisplayString, + lcsStatusWlanMngmtScanResultsEntryEncryption INTEGER, + lcsStatusWlanMngmtScanResultsEntryRadioBand INTEGER, + lcsStatusWlanMngmtScanResultsEntryRadioChannel Integer32, + lcsStatusWlanMngmtScanResultsEntry108mbpsMode Integer32, + lcsStatusWlanMngmtScanResultsEntryPhySignal Integer32, + lcsStatusWlanMngmtScanResultsEntryNoiseLevel Integer32, + lcsStatusWlanMngmtScanResultsEntryIdentification DisplayString, + lcsStatusWlanMngmtScanResultsEntryAge Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.120.1.1 +lcsStatusWlanMngmtScanResultsEntryBssid OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtScanResultsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.120.1.2 +lcsStatusWlanMngmtScanResultsEntryApName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtScanResultsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.120.1.3 +lcsStatusWlanMngmtScanResultsEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtScanResultsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.120.1.4 +lcsStatusWlanMngmtScanResultsEntryApLanMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtScanResultsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.120.1.5 +lcsStatusWlanMngmtScanResultsEntryInterface OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (0), + eWlan2 (1), + eWlan3 (2), + eWlan4 (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtScanResultsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.120.1.6 +lcsStatusWlanMngmtScanResultsEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtScanResultsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.120.1.7 +lcsStatusWlanMngmtScanResultsEntryEncryption OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eWep (1), + eTkip (2), + eAes (3), + eAesPlusTkip (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtScanResultsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.120.1.8 +lcsStatusWlanMngmtScanResultsEntryRadioBand OBJECT-TYPE + SYNTAX INTEGER { + e24ghz5ghz (0), + e24ghz (1), + e5ghz (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtScanResultsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.120.1.9 +lcsStatusWlanMngmtScanResultsEntryRadioChannel OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtScanResultsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.120.1.10 +lcsStatusWlanMngmtScanResultsEntry108mbpsMode OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtScanResultsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.120.1.11 +lcsStatusWlanMngmtScanResultsEntryPhySignal OBJECT-TYPE + SYNTAX Integer32 (-32768..32767) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtScanResultsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.120.1.12 +lcsStatusWlanMngmtScanResultsEntryNoiseLevel OBJECT-TYPE + SYNTAX Integer32 (-128..127) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtScanResultsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.120.1.13 +lcsStatusWlanMngmtScanResultsEntryIdentification OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..24)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtScanResultsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.120.1.14 +lcsStatusWlanMngmtScanResultsEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtScanResultsEntry 14 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.121 +lcsStatusWlanMngmtSeenClientsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtSeenClientsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmt 121 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.121.1 +lcsStatusWlanMngmtSeenClientsEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtSeenClientsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtSeenClientsEntryClientMac, + lcsStatusWlanMngmtSeenClientsEntryApLanMac + } + ::= { lcsStatusWlanMngmtSeenClientsTable 1 } + +LcsStatusWlanMngmtSeenClientsEntry ::= SEQUENCE { + lcsStatusWlanMngmtSeenClientsEntryClientMac MacAddress, + lcsStatusWlanMngmtSeenClientsEntryApName DisplayString, + lcsStatusWlanMngmtSeenClientsEntryIpAddress IpAddress, + lcsStatusWlanMngmtSeenClientsEntryApLanMac MacAddress, + lcsStatusWlanMngmtSeenClientsEntryInterface INTEGER, + lcsStatusWlanMngmtSeenClientsEntryRxPhySignal Integer32, + lcsStatusWlanMngmtSeenClientsEntryAge Integer32, + lcsStatusWlanMngmtSeenClientsEntryNetworkName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.121.1.1 +lcsStatusWlanMngmtSeenClientsEntryClientMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtSeenClientsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.121.1.2 +lcsStatusWlanMngmtSeenClientsEntryApName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtSeenClientsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.121.1.3 +lcsStatusWlanMngmtSeenClientsEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtSeenClientsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.121.1.4 +lcsStatusWlanMngmtSeenClientsEntryApLanMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtSeenClientsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.121.1.5 +lcsStatusWlanMngmtSeenClientsEntryInterface OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (0), + eWlan2 (1), + eWlan3 (2), + eWlan4 (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtSeenClientsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.121.1.6 +lcsStatusWlanMngmtSeenClientsEntryRxPhySignal OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtSeenClientsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.121.1.7 +lcsStatusWlanMngmtSeenClientsEntryAge OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtSeenClientsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.121.1.8 +lcsStatusWlanMngmtSeenClientsEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtSeenClientsEntry 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.122 +lcsStatusWlanMngmtPmkCachingTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtPmkCachingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmt 122 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.122.1 +lcsStatusWlanMngmtPmkCachingEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtPmkCachingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtPmkCachingEntrySupplicant + } + ::= { lcsStatusWlanMngmtPmkCachingTable 1 } + +LcsStatusWlanMngmtPmkCachingEntry ::= SEQUENCE { + lcsStatusWlanMngmtPmkCachingEntrySupplicant MacAddress, + lcsStatusWlanMngmtPmkCachingEntrySsid DisplayString, + lcsStatusWlanMngmtPmkCachingEntryPmkValue OCTET STRING, + lcsStatusWlanMngmtPmkCachingEntryPmkLength Integer32, + lcsStatusWlanMngmtPmkCachingEntryLifetime Integer32, + lcsStatusWlanMngmtPmkCachingEntryVlanId Integer32, + lcsStatusWlanMngmtPmkCachingEntryUserName DisplayString, + lcsStatusWlanMngmtPmkCachingEntryStoreTime Integer32, + lcsStatusWlanMngmtPmkCachingEntryHeapNode Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.122.1.1 +lcsStatusWlanMngmtPmkCachingEntrySupplicant OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtPmkCachingEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.122.1.3 +lcsStatusWlanMngmtPmkCachingEntrySsid OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtPmkCachingEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.122.1.4 +lcsStatusWlanMngmtPmkCachingEntryPmkValue OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtPmkCachingEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.122.1.5 +lcsStatusWlanMngmtPmkCachingEntryPmkLength OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtPmkCachingEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.122.1.6 +lcsStatusWlanMngmtPmkCachingEntryLifetime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtPmkCachingEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.122.1.7 +lcsStatusWlanMngmtPmkCachingEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtPmkCachingEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.122.1.8 +lcsStatusWlanMngmtPmkCachingEntryUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtPmkCachingEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.122.1.9 +lcsStatusWlanMngmtPmkCachingEntryStoreTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtPmkCachingEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.122.1.10 +lcsStatusWlanMngmtPmkCachingEntryHeapNode OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtPmkCachingEntry 10 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.73.123 +lcsStatusWlanMngmtClSte OBJECT IDENTIFIER ::= { lcsStatusWlanMngmt 123 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.123.1 +lcsStatusWlanMngmtClSteOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSte 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.123.2 +lcsStatusWlanMngmtClSteResetStatistics OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSte 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.123.3 +lcsStatusWlanMngmtClSteRateOfOptimizedConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSte 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.123.4 +lcsStatusWlanMngmtClSteClientInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtClSteClientInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSte 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.123.4.1 +lcsStatusWlanMngmtClSteClientInfoEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtClSteClientInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtClSteClientInfoEntryClientMac + } + ::= { lcsStatusWlanMngmtClSteClientInfoTable 1 } + +LcsStatusWlanMngmtClSteClientInfoEntry ::= SEQUENCE { + lcsStatusWlanMngmtClSteClientInfoEntryClientMac MacAddress, + lcsStatusWlanMngmtClSteClientInfoEntryApsGotOk Integer32, + lcsStatusWlanMngmtClSteClientInfoEntryState INTEGER, + lcsStatusWlanMngmtClSteClientInfoEntryOkCount Integer32, + lcsStatusWlanMngmtClSteClientInfoEntryNokCount Integer32, + lcsStatusWlanMngmtClSteClientInfoEntryAssociationTime Integer32, + lcsStatusWlanMngmtClSteClientInfoEntryRoamingTime Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.4.1.1 +lcsStatusWlanMngmtClSteClientInfoEntryClientMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteClientInfoEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.4.1.4 +lcsStatusWlanMngmtClSteClientInfoEntryApsGotOk OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteClientInfoEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.4.1.5 +lcsStatusWlanMngmtClSteClientInfoEntryState OBJECT-TYPE + SYNTAX INTEGER { + ePending (0), + eClientSteeringOk (1), + eUnsteerable (2), + eNoInfo (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteClientInfoEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.4.1.6 +lcsStatusWlanMngmtClSteClientInfoEntryOkCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteClientInfoEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.4.1.7 +lcsStatusWlanMngmtClSteClientInfoEntryNokCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteClientInfoEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.4.1.8 +lcsStatusWlanMngmtClSteClientInfoEntryAssociationTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteClientInfoEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.4.1.9 +lcsStatusWlanMngmtClSteClientInfoEntryRoamingTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteClientInfoEntry 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.123.5 +lcsStatusWlanMngmtClSteEvtTabTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtClSteEvtTabEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusWlanMngmtClSte 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.123.5.1 +lcsStatusWlanMngmtClSteEvtTabEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtClSteEvtTabEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtClSteEvtTabEntrySystemTime, + lcsStatusWlanMngmtClSteEvtTabEntryClientMac, + lcsStatusWlanMngmtClSteEvtTabEntryName, + lcsStatusWlanMngmtClSteEvtTabEntryApLanMac, + lcsStatusWlanMngmtClSteEvtTabEntryInterface + } + ::= { lcsStatusWlanMngmtClSteEvtTabTable 1 } + +LcsStatusWlanMngmtClSteEvtTabEntry ::= SEQUENCE { + lcsStatusWlanMngmtClSteEvtTabEntrySystemTime Integer32, + lcsStatusWlanMngmtClSteEvtTabEntryClientMac MacAddress, + lcsStatusWlanMngmtClSteEvtTabEntryApLanMac MacAddress, + lcsStatusWlanMngmtClSteEvtTabEntryInterface Integer32, + lcsStatusWlanMngmtClSteEvtTabEntrySignalStrengthRating Integer32, + lcsStatusWlanMngmtClSteEvtTabEntryAssociatedClientsRating Integer32, + lcsStatusWlanMngmtClSteEvtTabEntryFrequencyBandRating Integer32, + lcsStatusWlanMngmtClSteEvtTabEntryFinalRating Integer32, + lcsStatusWlanMngmtClSteEvtTabEntryAcceptClient INTEGER, + lcsStatusWlanMngmtClSteEvtTabEntryClientAssociated INTEGER, + lcsStatusWlanMngmtClSteEvtTabEntryClientDisassociated INTEGER, + lcsStatusWlanMngmtClSteEvtTabEntryStubbornClient INTEGER, + lcsStatusWlanMngmtClSteEvtTabEntrySignalStrength Integer32, + lcsStatusWlanMngmtClSteEvtTabEntryAssociatedClients Integer32, + lcsStatusWlanMngmtClSteEvtTabEntryFrequencyBand INTEGER, + lcsStatusWlanMngmtClSteEvtTabEntryClientSteeringProfile DisplayString, + lcsStatusWlanMngmtClSteEvtTabEntrySignalStrengthWeighting Integer32, + lcsStatusWlanMngmtClSteEvtTabEntryAssociatedClientsWeighting Integer32, + lcsStatusWlanMngmtClSteEvtTabEntryFrequencyBandWeighting Integer32, + lcsStatusWlanMngmtClSteEvtTabEntryName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.5.1.1 +lcsStatusWlanMngmtClSteEvtTabEntrySystemTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteEvtTabEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.5.1.2 +lcsStatusWlanMngmtClSteEvtTabEntryClientMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteEvtTabEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.5.1.3 +lcsStatusWlanMngmtClSteEvtTabEntryApLanMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteEvtTabEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.5.1.4 +lcsStatusWlanMngmtClSteEvtTabEntryInterface OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteEvtTabEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.5.1.5 +lcsStatusWlanMngmtClSteEvtTabEntrySignalStrengthRating OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteEvtTabEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.5.1.6 +lcsStatusWlanMngmtClSteEvtTabEntryAssociatedClientsRating OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteEvtTabEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.5.1.7 +lcsStatusWlanMngmtClSteEvtTabEntryFrequencyBandRating OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteEvtTabEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.5.1.8 +lcsStatusWlanMngmtClSteEvtTabEntryFinalRating OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteEvtTabEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.5.1.9 +lcsStatusWlanMngmtClSteEvtTabEntryAcceptClient OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteEvtTabEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.5.1.10 +lcsStatusWlanMngmtClSteEvtTabEntryClientAssociated OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteEvtTabEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.5.1.11 +lcsStatusWlanMngmtClSteEvtTabEntryClientDisassociated OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteEvtTabEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.5.1.12 +lcsStatusWlanMngmtClSteEvtTabEntryStubbornClient OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteEvtTabEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.5.1.13 +lcsStatusWlanMngmtClSteEvtTabEntrySignalStrength OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteEvtTabEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.5.1.14 +lcsStatusWlanMngmtClSteEvtTabEntryAssociatedClients OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteEvtTabEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.5.1.15 +lcsStatusWlanMngmtClSteEvtTabEntryFrequencyBand OBJECT-TYPE + SYNTAX INTEGER { + eDefaultBand (0), + e24ghz (1), + e5ghz (2), + eOff (3), + eUnmanaged (4), + eAuto (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteEvtTabEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.5.1.16 +lcsStatusWlanMngmtClSteEvtTabEntryClientSteeringProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteEvtTabEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.5.1.17 +lcsStatusWlanMngmtClSteEvtTabEntrySignalStrengthWeighting OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteEvtTabEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.5.1.18 +lcsStatusWlanMngmtClSteEvtTabEntryAssociatedClientsWeighting OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteEvtTabEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.5.1.19 +lcsStatusWlanMngmtClSteEvtTabEntryFrequencyBandWeighting OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteEvtTabEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.5.1.20 +lcsStatusWlanMngmtClSteEvtTabEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteEvtTabEntry 20 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.73.123.6 +lcsStatusWlanMngmtClSteApInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusWlanMngmtClSteApInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSte 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.73.123.6.1 +lcsStatusWlanMngmtClSteApInfoEntry OBJECT-TYPE + SYNTAX LcsStatusWlanMngmtClSteApInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusWlanMngmtClSteApInfoEntryApLanMac, + lcsStatusWlanMngmtClSteApInfoEntryInterface + } + ::= { lcsStatusWlanMngmtClSteApInfoTable 1 } + +LcsStatusWlanMngmtClSteApInfoEntry ::= SEQUENCE { + lcsStatusWlanMngmtClSteApInfoEntryApLanMac MacAddress, + lcsStatusWlanMngmtClSteApInfoEntryInterface Integer32, + lcsStatusWlanMngmtClSteApInfoEntryClientSteeringProfile DisplayString, + lcsStatusWlanMngmtClSteApInfoEntrySignalStrengthWeighting Integer32, + lcsStatusWlanMngmtClSteApInfoEntryAssociatedClientsWeighting Integer32, + lcsStatusWlanMngmtClSteApInfoEntryFrequencyBandWeighting Integer32, + lcsStatusWlanMngmtClSteApInfoEntryAssociatedClients Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.6.1.1 +lcsStatusWlanMngmtClSteApInfoEntryApLanMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteApInfoEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.6.1.2 +lcsStatusWlanMngmtClSteApInfoEntryInterface OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteApInfoEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.6.1.3 +lcsStatusWlanMngmtClSteApInfoEntryClientSteeringProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteApInfoEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.6.1.4 +lcsStatusWlanMngmtClSteApInfoEntrySignalStrengthWeighting OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteApInfoEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.6.1.5 +lcsStatusWlanMngmtClSteApInfoEntryAssociatedClientsWeighting OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteApInfoEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.6.1.6 +lcsStatusWlanMngmtClSteApInfoEntryFrequencyBandWeighting OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteApInfoEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.73.123.6.1.7 +lcsStatusWlanMngmtClSteApInfoEntryAssociatedClients OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteApInfoEntry 7 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.73.123.7 +lcsStatusWlanMngmtClSteAvgStatAll OBJECT IDENTIFIER ::= { lcsStatusWlanMngmtClSte 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.123.7.1 +lcsStatusWlanMngmtClSteAvgStatAllMedianAssociationDelay OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteAvgStatAll 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.123.7.2 +lcsStatusWlanMngmtClSteAvgStatAllMedianRoamingDelay OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteAvgStatAll 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.123.7.3 +lcsStatusWlanMngmtClSteAvgStatAllMinAssociationDelay OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteAvgStatAll 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.123.7.4 +lcsStatusWlanMngmtClSteAvgStatAllMaxAssociationDelay OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteAvgStatAll 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.123.7.5 +lcsStatusWlanMngmtClSteAvgStatAllNumberOfForcedRoamingEvents OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteAvgStatAll 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.123.7.6 +lcsStatusWlanMngmtClSteAvgStatAllNumberOfUnsteerableAssociations OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteAvgStatAll 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.123.7.7 +lcsStatusWlanMngmtClSteAvgStatAllAverageSignalStrength OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteAvgStatAll 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.123.7.10 +lcsStatusWlanMngmtClSteAvgStatAllMinRoamingDelay OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteAvgStatAll 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.123.7.11 +lcsStatusWlanMngmtClSteAvgStatAllMaxRoamingDelay OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteAvgStatAll 11 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.73.123.8 +lcsStatusWlanMngmtClSteAvgStatFiv OBJECT IDENTIFIER ::= { lcsStatusWlanMngmtClSte 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.123.8.1 +lcsStatusWlanMngmtClSteAvgStatFivMedianAssociationDelay OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteAvgStatFiv 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.123.8.2 +lcsStatusWlanMngmtClSteAvgStatFivMedianRoamingDelay OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteAvgStatFiv 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.123.8.3 +lcsStatusWlanMngmtClSteAvgStatFivMinAssociationDelay OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteAvgStatFiv 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.123.8.4 +lcsStatusWlanMngmtClSteAvgStatFivMaxAssociationDelay OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteAvgStatFiv 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.123.8.5 +lcsStatusWlanMngmtClSteAvgStatFivNumberOfForcedRoamingEvents OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteAvgStatFiv 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.123.8.6 +lcsStatusWlanMngmtClSteAvgStatFivNumberOfUnsteerableAssociations OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteAvgStatFiv 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.123.8.7 +lcsStatusWlanMngmtClSteAvgStatFivAverageSignalStrength OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteAvgStatFiv 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.123.8.10 +lcsStatusWlanMngmtClSteAvgStatFivMinRoamingDelay OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteAvgStatFiv 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.73.123.8.11 +lcsStatusWlanMngmtClSteAvgStatFivMaxRoamingDelay OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusWlanMngmtClSteAvgStatFiv 11 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.74 +lcsStatusMcp OBJECT IDENTIFIER ::= { lcsStatus 74 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.74.1 +lcsStatusMcpMcpUmtsState OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eWaitForUsbDevice (1), + eRemoveUsbDevice (2), + eWaitForComPortDevice (3), + eRemoveComPortDevice (4), + eNormalOperation (5), + eRestart (6), + eDisabled (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusMcp 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.74.2 +lcsStatusMcpUsbReinitCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusMcp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.74.3 +lcsStatusMcpUsbReinitTryCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusMcp 3 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.75 +lcsStatusVdsl OBJECT IDENTIFIER ::= { lcsStatus 75 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.1 +lcsStatusVdslLineState OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eDown (1), + eIdle (2), + eHandshake (3), + eTraining (4), + eShowtime (5), + eShutdown (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.2 +lcsStatusVdslLineType OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.3 +lcsStatusVdslStandard OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eT1dot413 (2), + eGdotLite (3), + eGdotDMT (4), + eAdsl2 (21), + eAdsl2plus (22), + eAdsl2AnnexM (31), + eAdsl2plusAnnexM (32), + eAdsl2AnnexI (33), + eAdsl2plusAnnexI (34), + eAdsl2AnnexJ (35), + eAdsl2plusAnnexJ (36), + eAdsl2AnnexL (37), + eVdsl2 (40), + eAdsl2Lite (54), + eUnknown (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.4 +lcsStatusVdslDataRateUpstreamKbps OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.5 +lcsStatusVdslDataRateDownstreamKbps OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.6 +lcsStatusVdslSnrDownstreamDb OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.7 +lcsStatusVdslSnrUpstreamDb OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.8 +lcsStatusVdslAttenuationDownstreamDb OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.9 +lcsStatusVdslAttenuationUpstreamDb OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.10 +lcsStatusVdslInterleaveUpstreamMs OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..7)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.11 +lcsStatusVdslInterleaveDownstreamMs OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..7)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.75.12 +lcsStatusVdslConnectionHistoryTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusVdslConnectionHistoryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 12 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.75.12.1 +lcsStatusVdslConnectionHistoryEntry OBJECT-TYPE + SYNTAX LcsStatusVdslConnectionHistoryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusVdslConnectionHistoryEntryIndex + } + ::= { lcsStatusVdslConnectionHistoryTable 1 } + +LcsStatusVdslConnectionHistoryEntry ::= SEQUENCE { + lcsStatusVdslConnectionHistoryEntrySyncTime Gauge32, + lcsStatusVdslConnectionHistoryEntryStandard INTEGER, + lcsStatusVdslConnectionHistoryEntryDsDatarate Integer32, + lcsStatusVdslConnectionHistoryEntryUsDatarate Integer32, + lcsStatusVdslConnectionHistoryEntryDsAttenuation DisplayString, + lcsStatusVdslConnectionHistoryEntryDsSnr DisplayString, + lcsStatusVdslConnectionHistoryEntryDisconnectTime Gauge32, + lcsStatusVdslConnectionHistoryEntryIndex Integer32, + lcsStatusVdslConnectionHistoryEntryReason INTEGER, + lcsStatusVdslConnectionHistoryEntryUsAttenuation DisplayString, + lcsStatusVdslConnectionHistoryEntryUsSnr DisplayString, + lcsStatusVdslConnectionHistoryEntryVdslProfile INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.12.1.1 +lcsStatusVdslConnectionHistoryEntrySyncTime OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslConnectionHistoryEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.12.1.2 +lcsStatusVdslConnectionHistoryEntryStandard OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eT1dot413 (2), + eGdotLite (3), + eGdotDMT (4), + eAdsl2 (21), + eAdsl2plus (22), + eAdsl2AnnexM (31), + eAdsl2plusAnnexM (32), + eAdsl2AnnexI (33), + eAdsl2plusAnnexI (34), + eAdsl2AnnexJ (35), + eAdsl2plusAnnexJ (36), + eAdsl2AnnexL (37), + eVdsl2 (40), + eAdsl2Lite (54), + eUnknown (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslConnectionHistoryEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.12.1.3 +lcsStatusVdslConnectionHistoryEntryDsDatarate OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslConnectionHistoryEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.12.1.4 +lcsStatusVdslConnectionHistoryEntryUsDatarate OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslConnectionHistoryEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.12.1.5 +lcsStatusVdslConnectionHistoryEntryDsAttenuation OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..1)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslConnectionHistoryEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.12.1.6 +lcsStatusVdslConnectionHistoryEntryDsSnr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..1)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslConnectionHistoryEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.12.1.7 +lcsStatusVdslConnectionHistoryEntryDisconnectTime OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslConnectionHistoryEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.12.1.8 +lcsStatusVdslConnectionHistoryEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslConnectionHistoryEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.12.1.9 +lcsStatusVdslConnectionHistoryEntryReason OBJECT-TYPE + SYNTAX INTEGER { + eModemReboot (1), + eRetrain (2), + eSilence (3), + eLineError (4), + eProtocol (5), + eLineType (6), + eAutomode (7), + eTimeout (8), + eVcParameters (13) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslConnectionHistoryEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.12.1.10 +lcsStatusVdslConnectionHistoryEntryUsAttenuation OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..1)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslConnectionHistoryEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.12.1.11 +lcsStatusVdslConnectionHistoryEntryUsSnr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..1)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslConnectionHistoryEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.12.1.13 +lcsStatusVdslConnectionHistoryEntryVdslProfile OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e8a (1), + e8b (2), + e8c (3), + e8d (4), + e12a (5), + e12b (6), + e17a (7), + e30a (8), + e17b (9) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslConnectionHistoryEntry 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.13 +lcsStatusVdslRetrain OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.14 +lcsStatusVdslDslamChipsetManufacturer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.23 +lcsStatusVdslModemType OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusVdsl 23 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.75.25 +lcsStatusVdslAdvanced OBJECT IDENTIFIER ::= { lcsStatusVdsl 25 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.1 +lcsStatusVdslAdvancedLineState OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eDown (1), + eIdle (2), + eHandshake (3), + eTraining (4), + eShowtime (5), + eShutdown (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.2 +lcsStatusVdslAdvancedStandard OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eT1dot413 (2), + eGdotLite (3), + eGdotDMT (4), + eAdsl2 (21), + eAdsl2plus (22), + eAdsl2AnnexM (31), + eAdsl2plusAnnexM (32), + eAdsl2AnnexI (33), + eAdsl2plusAnnexI (34), + eAdsl2AnnexJ (35), + eAdsl2plusAnnexJ (36), + eAdsl2AnnexL (37), + eVdsl2 (40), + eAdsl2Lite (54), + eUnknown (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.3 +lcsStatusVdslAdvancedDsDataRateKbps OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.4 +lcsStatusVdslAdvancedDsSnrMarginDb OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.5 +lcsStatusVdslAdvancedDsLineAttenuationDb OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.6 +lcsStatusVdslAdvancedDsInterleaveMs OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..7)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.75.25.13 +lcsStatusVdslAdvancedDsBitLoadingTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusVdslAdvancedDsBitLoadingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 13 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.75.25.13.1 +lcsStatusVdslAdvancedDsBitLoadingEntry OBJECT-TYPE + SYNTAX LcsStatusVdslAdvancedDsBitLoadingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusVdslAdvancedDsBitLoadingEntryBinNumber + } + ::= { lcsStatusVdslAdvancedDsBitLoadingTable 1 } + +LcsStatusVdslAdvancedDsBitLoadingEntry ::= SEQUENCE { + lcsStatusVdslAdvancedDsBitLoadingEntryBinNumber DisplayString, + lcsStatusVdslAdvancedDsBitLoadingEntryX0 Integer32, + lcsStatusVdslAdvancedDsBitLoadingEntryX1 Integer32, + lcsStatusVdslAdvancedDsBitLoadingEntryX2 Integer32, + lcsStatusVdslAdvancedDsBitLoadingEntryX3 Integer32, + lcsStatusVdslAdvancedDsBitLoadingEntryX4 Integer32, + lcsStatusVdslAdvancedDsBitLoadingEntryX5 Integer32, + lcsStatusVdslAdvancedDsBitLoadingEntryX6 Integer32, + lcsStatusVdslAdvancedDsBitLoadingEntryX7 Integer32, + lcsStatusVdslAdvancedDsBitLoadingEntryX8 Integer32, + lcsStatusVdslAdvancedDsBitLoadingEntryX9 Integer32, + lcsStatusVdslAdvancedDsBitLoadingEntryGraph DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.25.13.1.1 +lcsStatusVdslAdvancedDsBitLoadingEntryBinNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvancedDsBitLoadingEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.25.13.1.2 +lcsStatusVdslAdvancedDsBitLoadingEntryX0 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvancedDsBitLoadingEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.25.13.1.3 +lcsStatusVdslAdvancedDsBitLoadingEntryX1 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvancedDsBitLoadingEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.25.13.1.4 +lcsStatusVdslAdvancedDsBitLoadingEntryX2 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvancedDsBitLoadingEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.25.13.1.5 +lcsStatusVdslAdvancedDsBitLoadingEntryX3 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvancedDsBitLoadingEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.25.13.1.6 +lcsStatusVdslAdvancedDsBitLoadingEntryX4 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvancedDsBitLoadingEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.25.13.1.7 +lcsStatusVdslAdvancedDsBitLoadingEntryX5 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvancedDsBitLoadingEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.25.13.1.8 +lcsStatusVdslAdvancedDsBitLoadingEntryX6 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvancedDsBitLoadingEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.25.13.1.9 +lcsStatusVdslAdvancedDsBitLoadingEntryX7 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvancedDsBitLoadingEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.25.13.1.10 +lcsStatusVdslAdvancedDsBitLoadingEntryX8 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvancedDsBitLoadingEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.25.13.1.11 +lcsStatusVdslAdvancedDsBitLoadingEntryX9 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvancedDsBitLoadingEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.25.13.1.12 +lcsStatusVdslAdvancedDsBitLoadingEntryGraph OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvancedDsBitLoadingEntry 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.15 +lcsStatusVdslAdvancedUsDataRateKbps OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.16 +lcsStatusVdslAdvancedUsSnrMarginDb OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 16 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.17 +lcsStatusVdslAdvancedUsLineAttenuationDb OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 17 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.18 +lcsStatusVdslAdvancedUsInterleaveMs OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..7)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 18 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.75.25.25 +lcsStatusVdslAdvancedUsBitLoadingTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusVdslAdvancedUsBitLoadingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 25 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.75.25.25.1 +lcsStatusVdslAdvancedUsBitLoadingEntry OBJECT-TYPE + SYNTAX LcsStatusVdslAdvancedUsBitLoadingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusVdslAdvancedUsBitLoadingEntryBinNumber + } + ::= { lcsStatusVdslAdvancedUsBitLoadingTable 1 } + +LcsStatusVdslAdvancedUsBitLoadingEntry ::= SEQUENCE { + lcsStatusVdslAdvancedUsBitLoadingEntryBinNumber DisplayString, + lcsStatusVdslAdvancedUsBitLoadingEntryX0 Integer32, + lcsStatusVdslAdvancedUsBitLoadingEntryX1 Integer32, + lcsStatusVdslAdvancedUsBitLoadingEntryX2 Integer32, + lcsStatusVdslAdvancedUsBitLoadingEntryX3 Integer32, + lcsStatusVdslAdvancedUsBitLoadingEntryX4 Integer32, + lcsStatusVdslAdvancedUsBitLoadingEntryX5 Integer32, + lcsStatusVdslAdvancedUsBitLoadingEntryX6 Integer32, + lcsStatusVdslAdvancedUsBitLoadingEntryX7 Integer32, + lcsStatusVdslAdvancedUsBitLoadingEntryX8 Integer32, + lcsStatusVdslAdvancedUsBitLoadingEntryX9 Integer32, + lcsStatusVdslAdvancedUsBitLoadingEntryGraph DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.25.25.1.1 +lcsStatusVdslAdvancedUsBitLoadingEntryBinNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvancedUsBitLoadingEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.25.25.1.2 +lcsStatusVdslAdvancedUsBitLoadingEntryX0 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvancedUsBitLoadingEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.25.25.1.3 +lcsStatusVdslAdvancedUsBitLoadingEntryX1 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvancedUsBitLoadingEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.25.25.1.4 +lcsStatusVdslAdvancedUsBitLoadingEntryX2 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvancedUsBitLoadingEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.25.25.1.5 +lcsStatusVdslAdvancedUsBitLoadingEntryX3 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvancedUsBitLoadingEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.25.25.1.6 +lcsStatusVdslAdvancedUsBitLoadingEntryX4 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvancedUsBitLoadingEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.25.25.1.7 +lcsStatusVdslAdvancedUsBitLoadingEntryX5 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvancedUsBitLoadingEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.25.25.1.8 +lcsStatusVdslAdvancedUsBitLoadingEntryX6 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvancedUsBitLoadingEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.25.25.1.9 +lcsStatusVdslAdvancedUsBitLoadingEntryX7 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvancedUsBitLoadingEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.25.25.1.10 +lcsStatusVdslAdvancedUsBitLoadingEntryX8 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvancedUsBitLoadingEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.25.25.1.11 +lcsStatusVdslAdvancedUsBitLoadingEntryX9 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvancedUsBitLoadingEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.75.25.25.1.12 +lcsStatusVdslAdvancedUsBitLoadingEntryGraph OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvancedUsBitLoadingEntry 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.26 +lcsStatusVdslAdvancedRetrain OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 26 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.29 +lcsStatusVdslAdvancedTransmittedAtmCells OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 29 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.40 +lcsStatusVdslAdvancedVdslProfile OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e8a (1), + e8b (2), + e8c (3), + e8d (4), + e12a (5), + e12b (6), + e17a (7), + e30a (8), + e17b (9) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 40 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.41 +lcsStatusVdslAdvancedDslamManufacturer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 41 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.42 +lcsStatusVdslAdvancedDslamVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..34)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 42 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.43 +lcsStatusVdslAdvancedDslamSerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..66)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 43 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.44 +lcsStatusVdslAdvancedDslamChipsetManufacturer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 44 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.45 +lcsStatusVdslAdvancedVectoringSupport OBJECT-TYPE + SYNTAX INTEGER { + eNo (1), + eYes (2), + eFriendly (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusVdslAdvanced 45 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.46 +lcsStatusVdslAdvancedVectoring OBJECT-TYPE + SYNTAX INTEGER { + eNo (1), + eYes (2), + eFriendly (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusVdslAdvanced 46 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.100 +lcsStatusVdslAdvancedDsAttainableDataRateKbps OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 100 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.101 +lcsStatusVdslAdvancedDsInpSymbols OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 101 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.102 +lcsStatusVdslAdvancedDsCrcErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 102 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.103 +lcsStatusVdslAdvancedDsFecErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 103 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.104 +lcsStatusVdslAdvancedDsAtmHecErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 104 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.105 +lcsStatusVdslAdvancedDsDataPathCrcpErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 105 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.106 +lcsStatusVdslAdvancedDsDataPathCrcnpErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 106 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.107 +lcsStatusVdslAdvancedDsDataPathCvpErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 107 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.108 +lcsStatusVdslAdvancedDsDataPathCvnpErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 108 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.109 +lcsStatusVdslAdvancedDsAtmIdleBitErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 109 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.110 +lcsStatusVdslAdvancedDsAtmCells OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 110 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.111 +lcsStatusVdslAdvancedDsPacketCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 111 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.112 +lcsStatusVdslAdvancedDsPacketBytes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 112 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.113 +lcsStatusVdslAdvancedDsPacketErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 113 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.114 +lcsStatusVdslAdvancedDsPausePackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 114 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.115 +lcsStatusVdslAdvancedDsPacketFcsErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 115 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.116 +lcsStatusVdslAdvancedDsPacketAllignmentErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 116 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.117 +lcsStatusVdslAdvancedDsPacketsTooLong OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 117 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.118 +lcsStatusVdslAdvancedDsPacketsTooShort OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 118 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.120 +lcsStatusVdslAdvancedUsAttainableDataRateKbps OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 120 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.121 +lcsStatusVdslAdvancedUsInpSymbols OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 121 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.122 +lcsStatusVdslAdvancedUsCrcErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 122 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.123 +lcsStatusVdslAdvancedUsFecErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 123 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.124 +lcsStatusVdslAdvancedUsAtmHecErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 124 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.125 +lcsStatusVdslAdvancedUsDataPathCrcpErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 125 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.126 +lcsStatusVdslAdvancedUsDataPathCrcnpErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 126 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.127 +lcsStatusVdslAdvancedUsDataPathCvpErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 127 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.128 +lcsStatusVdslAdvancedUsDataPathCvnpErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 128 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.129 +lcsStatusVdslAdvancedUsAtmIdleBitErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 129 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.130 +lcsStatusVdslAdvancedUsAtmCells OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 130 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.131 +lcsStatusVdslAdvancedUsPacketCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 131 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.132 +lcsStatusVdslAdvancedUsPacketBytes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 132 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.133 +lcsStatusVdslAdvancedUsPacketErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 133 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.134 +lcsStatusVdslAdvancedUsPausePackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 134 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.140 +lcsStatusVdslAdvancedWanTxPacketCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 140 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.141 +lcsStatusVdslAdvancedWanTxPacketBytes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 141 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.142 +lcsStatusVdslAdvancedWanTxPacketErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 142 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.143 +lcsStatusVdslAdvancedWanTxPacketDrops OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 143 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.144 +lcsStatusVdslAdvancedWanTxOverruns OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 144 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.145 +lcsStatusVdslAdvancedWanTxDelta OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 145 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.146 +lcsStatusVdslAdvancedTxPacketCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusVdslAdvanced 146 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.150 +lcsStatusVdslAdvancedWanRxPacketCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 150 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.151 +lcsStatusVdslAdvancedWanRxPacketBytes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 151 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.152 +lcsStatusVdslAdvancedWanRxPacketErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 152 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.153 +lcsStatusVdslAdvancedWanRxPacketDrops OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 153 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.154 +lcsStatusVdslAdvancedWanRxOverruns OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 154 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.155 +lcsStatusVdslAdvancedWanRxDelta OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslAdvanced 155 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.25.156 +lcsStatusVdslAdvancedRxPacketCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusVdslAdvanced 156 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.34 +lcsStatusVdslInpDownstreamSymbols OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 34 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.35 +lcsStatusVdslInpUpstreamSymbols OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 35 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.36 +lcsStatusVdslAttainableDataRateDownstreamKbps OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 36 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.37 +lcsStatusVdslAttainableDataRateUpstreamKbps OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 37 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.40 +lcsStatusVdslVdslProfile OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + e8a (1), + e8b (2), + e8c (3), + e8d (4), + e12a (5), + e12b (6), + e17a (7), + e30a (8), + e17b (9) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 40 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.41 +lcsStatusVdslDslamManufacturer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 41 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.42 +lcsStatusVdslDslamVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..34)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 42 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.43 +lcsStatusVdslDslamSerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..66)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 43 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.45 +lcsStatusVdslVectoringSupport OBJECT-TYPE + SYNTAX INTEGER { + eNo (1), + eYes (2), + eFriendly (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusVdsl 45 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.46 +lcsStatusVdslVectoring OBJECT-TYPE + SYNTAX INTEGER { + eNo (1), + eYes (2), + eFriendly (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusVdsl 46 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.50 +lcsStatusVdslAtmVpi OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 50 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.51 +lcsStatusVdslAtmVci OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 51 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.52 +lcsStatusVdslAtmMuxmode OBJECT-TYPE + SYNTAX INTEGER { + eVcMux (0), + eLlcMux (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdsl 52 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.75.500 +lcsStatusVdslModem OBJECT IDENTIFIER ::= { lcsStatusVdsl 500 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.1 +lcsStatusVdslModemModemState OBJECT-TYPE + SYNTAX INTEGER { + eNoCommunicationsPort (0), + eError (1), + eFileSystem (2), + eBootHeader (3), + eUploadingBootstrap (4), + eUploadingMemoryTest (5), + eMemoryTest (6), + eOptions (7), + eUploadingUBoot (8), + eQuickMemoryTest (9), + eUploadingKernel (10), + eUploadingRamdisk (11), + eUploadingFirmware (12), + eWaitForHeartbeat (13), + eRunning (14), + eUploadingGphyFirmware (15), + eDisabled (16) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslModem 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.2 +lcsStatusVdslModemOptions OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslModem 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.3 +lcsStatusVdslModemMemoryTest OBJECT-TYPE + SYNTAX INTEGER { + eNotTested (0), + eTimeout (1), + eFailed (2), + eOk (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslModem 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.4 +lcsStatusVdslModemRebootModem OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslModem 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.5 +lcsStatusVdslModemLink OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslModem 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.6 +lcsStatusVdslModemLastError OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslModem 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.7 +lcsStatusVdslModemVdslFirmware OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslModem 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.8 +lcsStatusVdslModemAdslPotsFirmware OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslModem 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.9 +lcsStatusVdslModemAdslIsdnFirmware OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslModem 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.10 +lcsStatusVdslModemDslApiVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslModem 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.11 +lcsStatusVdslModemDspFirmwareVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslModem 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.12 +lcsStatusVdslModemHardwareVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslModem 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.13 +lcsStatusVdslModemChipsetType OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslModem 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.14 +lcsStatusVdslModemDriverVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslModem 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.15 +lcsStatusVdslModemBootCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsStatusVdslModem 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.16 +lcsStatusVdslModemHybrid OBJECT-TYPE + SYNTAX INTEGER { + eBJ (0), + eInvalid (1), + eB (2), + eA (3), + eUnknown (256) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusVdslModem 16 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.17 +lcsStatusVdslModemDefaultAtmVpi OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusVdslModem 17 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.18 +lcsStatusVdslModemDefaultAtmVci OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusVdslModem 18 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.19 +lcsStatusVdslModemDefaultAtmMuxmode OBJECT-TYPE + SYNTAX INTEGER { + eVcMux (0), + eLlcMux (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusVdslModem 19 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.21 +lcsStatusVdslModemLoad OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusVdslModem 21 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.22 +lcsStatusVdslModemLoadUser OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusVdslModem 22 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.23 +lcsStatusVdslModemLoadSystem OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusVdslModem 23 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.24 +lcsStatusVdslModemLoadIdle OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusVdslModem 24 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.25 +lcsStatusVdslModemPotsFirmware OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusVdslModem 25 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.75.500.26 +lcsStatusVdslModemIsdnFirmware OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusVdslModem 26 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.77 +lcsStatusIpv6 OBJECT IDENTIFIER ::= { lcsStatus 77 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.77.1 +lcsStatusIpv6AddressesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpv6AddressesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.77.1.1 +lcsStatusIpv6AddressesEntry OBJECT-TYPE + SYNTAX LcsStatusIpv6AddressesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpv6AddressesEntryInterfaceName, + lcsStatusIpv6AddressesEntryIpv6Address + } + ::= { lcsStatusIpv6AddressesTable 1 } + +LcsStatusIpv6AddressesEntry ::= SEQUENCE { + lcsStatusIpv6AddressesEntryInterfaceName DisplayString, + lcsStatusIpv6AddressesEntryIpv6Address DisplayString, + lcsStatusIpv6AddressesEntryStatus DisplayString, + lcsStatusIpv6AddressesEntryProperties DisplayString, + lcsStatusIpv6AddressesEntryAddressType DisplayString, + lcsStatusIpv6AddressesEntryInterfaceType INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.1.1.1 +lcsStatusIpv6AddressesEntryInterfaceName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6AddressesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.1.1.2 +lcsStatusIpv6AddressesEntryIpv6Address OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6AddressesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.1.1.3 +lcsStatusIpv6AddressesEntryStatus OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6AddressesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.1.1.4 +lcsStatusIpv6AddressesEntryProperties OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..57)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6AddressesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.1.1.5 +lcsStatusIpv6AddressesEntryAddressType OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..26)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6AddressesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.1.1.6 +lcsStatusIpv6AddressesEntryInterfaceType OBJECT-TYPE + SYNTAX INTEGER { + eLan (0), + eWan (1), + eLoopback (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6AddressesEntry 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.77.2 +lcsStatusIpv6PrefixTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpv6PrefixEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.77.2.1 +lcsStatusIpv6PrefixEntry OBJECT-TYPE + SYNTAX LcsStatusIpv6PrefixEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpv6PrefixEntryInterfaceName, + lcsStatusIpv6PrefixEntryPrefix + } + ::= { lcsStatusIpv6PrefixTable 1 } + +LcsStatusIpv6PrefixEntry ::= SEQUENCE { + lcsStatusIpv6PrefixEntryInterfaceName DisplayString, + lcsStatusIpv6PrefixEntryPrefix DisplayString, + lcsStatusIpv6PrefixEntryStatus DisplayString, + lcsStatusIpv6PrefixEntryType DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.2.1.1 +lcsStatusIpv6PrefixEntryInterfaceName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6PrefixEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.2.1.2 +lcsStatusIpv6PrefixEntryPrefix OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..43)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6PrefixEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.2.1.3 +lcsStatusIpv6PrefixEntryStatus OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6PrefixEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.2.1.4 +lcsStatusIpv6PrefixEntryType OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..26)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6PrefixEntry 4 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.77.3 +lcsStatusIpv6Dhcpv6 OBJECT IDENTIFIER ::= { lcsStatusIpv6 3 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.77.3.1 +lcsStatusIpv6Dhcpv6Server OBJECT IDENTIFIER ::= { lcsStatusIpv6Dhcpv6 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.77.3.1.1 +lcsStatusIpv6Dhcpv6ServerAddressBindTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpv6Dhcpv6ServerAddressBindEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpv6Dhcpv6Server 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.77.3.1.1.1 +lcsStatusIpv6Dhcpv6ServerAddressBindEntry OBJECT-TYPE + SYNTAX LcsStatusIpv6Dhcpv6ServerAddressBindEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpv6Dhcpv6ServerAddressBindEntryInterfaceNameOrRelay, + lcsStatusIpv6Dhcpv6ServerAddressBindEntryAddress + } + ::= { lcsStatusIpv6Dhcpv6ServerAddressBindTable 1 } + +LcsStatusIpv6Dhcpv6ServerAddressBindEntry ::= SEQUENCE { + lcsStatusIpv6Dhcpv6ServerAddressBindEntryInterfaceNameOrRelay DisplayString, + lcsStatusIpv6Dhcpv6ServerAddressBindEntryAddress DisplayString, + lcsStatusIpv6Dhcpv6ServerAddressBindEntryPreferredUntilNumerical Counter32, + lcsStatusIpv6Dhcpv6ServerAddressBindEntryPreferredUntil DisplayString, + lcsStatusIpv6Dhcpv6ServerAddressBindEntryValidUntilNumerical Counter32, + lcsStatusIpv6Dhcpv6ServerAddressBindEntryValidUntil DisplayString, + lcsStatusIpv6Dhcpv6ServerAddressBindEntryClientId DisplayString, + lcsStatusIpv6Dhcpv6ServerAddressBindEntryIaId Integer32, + lcsStatusIpv6Dhcpv6ServerAddressBindEntryHostName DisplayString, + lcsStatusIpv6Dhcpv6ServerAddressBindEntryUpdatedAtNumerical Counter32, + lcsStatusIpv6Dhcpv6ServerAddressBindEntryUpdatedAt DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.1.1.1 +lcsStatusIpv6Dhcpv6ServerAddressBindEntryInterfaceNameOrRelay OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerAddressBindEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.1.1.2 +lcsStatusIpv6Dhcpv6ServerAddressBindEntryAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerAddressBindEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.1.1.3 +lcsStatusIpv6Dhcpv6ServerAddressBindEntryPreferredUntilNumerical OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerAddressBindEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.1.1.4 +lcsStatusIpv6Dhcpv6ServerAddressBindEntryPreferredUntil OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerAddressBindEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.1.1.5 +lcsStatusIpv6Dhcpv6ServerAddressBindEntryValidUntilNumerical OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerAddressBindEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.1.1.6 +lcsStatusIpv6Dhcpv6ServerAddressBindEntryValidUntil OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerAddressBindEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.1.1.7 +lcsStatusIpv6Dhcpv6ServerAddressBindEntryClientId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerAddressBindEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.1.1.8 +lcsStatusIpv6Dhcpv6ServerAddressBindEntryIaId OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerAddressBindEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.1.1.9 +lcsStatusIpv6Dhcpv6ServerAddressBindEntryHostName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerAddressBindEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.1.1.10 +lcsStatusIpv6Dhcpv6ServerAddressBindEntryUpdatedAtNumerical OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerAddressBindEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.1.1.11 +lcsStatusIpv6Dhcpv6ServerAddressBindEntryUpdatedAt OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerAddressBindEntry 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.77.3.1.2 +lcsStatusIpv6Dhcpv6ServerPdBindingsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpv6Dhcpv6ServerPdBindingsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6Server 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.77.3.1.2.1 +lcsStatusIpv6Dhcpv6ServerPdBindingsEntry OBJECT-TYPE + SYNTAX LcsStatusIpv6Dhcpv6ServerPdBindingsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpv6Dhcpv6ServerPdBindingsEntryInterfaceNameOrRelay, + lcsStatusIpv6Dhcpv6ServerPdBindingsEntryPdPrefix + } + ::= { lcsStatusIpv6Dhcpv6ServerPdBindingsTable 1 } + +LcsStatusIpv6Dhcpv6ServerPdBindingsEntry ::= SEQUENCE { + lcsStatusIpv6Dhcpv6ServerPdBindingsEntryInterfaceNameOrRelay DisplayString, + lcsStatusIpv6Dhcpv6ServerPdBindingsEntryPdPrefix DisplayString, + lcsStatusIpv6Dhcpv6ServerPdBindingsEntryPreferredUntilNumerical Counter32, + lcsStatusIpv6Dhcpv6ServerPdBindingsEntryPreferredUntil DisplayString, + lcsStatusIpv6Dhcpv6ServerPdBindingsEntryValidUntilNumerical Counter32, + lcsStatusIpv6Dhcpv6ServerPdBindingsEntryValidUntil DisplayString, + lcsStatusIpv6Dhcpv6ServerPdBindingsEntryClientId DisplayString, + lcsStatusIpv6Dhcpv6ServerPdBindingsEntryIaId Integer32, + lcsStatusIpv6Dhcpv6ServerPdBindingsEntryHostName DisplayString, + lcsStatusIpv6Dhcpv6ServerPdBindingsEntryUpdatedAtNumerical Counter32, + lcsStatusIpv6Dhcpv6ServerPdBindingsEntryUpdatedAt DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.2.1.1 +lcsStatusIpv6Dhcpv6ServerPdBindingsEntryInterfaceNameOrRelay OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerPdBindingsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.2.1.2 +lcsStatusIpv6Dhcpv6ServerPdBindingsEntryPdPrefix OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerPdBindingsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.2.1.3 +lcsStatusIpv6Dhcpv6ServerPdBindingsEntryPreferredUntilNumerical OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerPdBindingsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.2.1.4 +lcsStatusIpv6Dhcpv6ServerPdBindingsEntryPreferredUntil OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerPdBindingsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.2.1.5 +lcsStatusIpv6Dhcpv6ServerPdBindingsEntryValidUntilNumerical OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerPdBindingsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.2.1.6 +lcsStatusIpv6Dhcpv6ServerPdBindingsEntryValidUntil OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerPdBindingsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.2.1.7 +lcsStatusIpv6Dhcpv6ServerPdBindingsEntryClientId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerPdBindingsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.2.1.8 +lcsStatusIpv6Dhcpv6ServerPdBindingsEntryIaId OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerPdBindingsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.2.1.9 +lcsStatusIpv6Dhcpv6ServerPdBindingsEntryHostName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerPdBindingsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.2.1.10 +lcsStatusIpv6Dhcpv6ServerPdBindingsEntryUpdatedAtNumerical OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerPdBindingsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.2.1.11 +lcsStatusIpv6Dhcpv6ServerPdBindingsEntryUpdatedAt OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerPdBindingsEntry 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.77.3.1.3 +lcsStatusIpv6Dhcpv6ServerDeclinedAddrTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpv6Dhcpv6ServerDeclinedAddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpv6Dhcpv6Server 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.77.3.1.3.1 +lcsStatusIpv6Dhcpv6ServerDeclinedAddrEntry OBJECT-TYPE + SYNTAX LcsStatusIpv6Dhcpv6ServerDeclinedAddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpv6Dhcpv6ServerDeclinedAddrEntryInterfaceNameOrRelay, + lcsStatusIpv6Dhcpv6ServerDeclinedAddrEntryAddress + } + ::= { lcsStatusIpv6Dhcpv6ServerDeclinedAddrTable 1 } + +LcsStatusIpv6Dhcpv6ServerDeclinedAddrEntry ::= SEQUENCE { + lcsStatusIpv6Dhcpv6ServerDeclinedAddrEntryInterfaceNameOrRelay DisplayString, + lcsStatusIpv6Dhcpv6ServerDeclinedAddrEntryAddress DisplayString, + lcsStatusIpv6Dhcpv6ServerDeclinedAddrEntryDeclinedAtNumerical Counter32, + lcsStatusIpv6Dhcpv6ServerDeclinedAddrEntryDeclinedAt DisplayString, + lcsStatusIpv6Dhcpv6ServerDeclinedAddrEntryClientId DisplayString, + lcsStatusIpv6Dhcpv6ServerDeclinedAddrEntryIaId Integer32, + lcsStatusIpv6Dhcpv6ServerDeclinedAddrEntryHostName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.3.1.1 +lcsStatusIpv6Dhcpv6ServerDeclinedAddrEntryInterfaceNameOrRelay OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerDeclinedAddrEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.3.1.2 +lcsStatusIpv6Dhcpv6ServerDeclinedAddrEntryAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerDeclinedAddrEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.3.1.3 +lcsStatusIpv6Dhcpv6ServerDeclinedAddrEntryDeclinedAtNumerical OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerDeclinedAddrEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.3.1.4 +lcsStatusIpv6Dhcpv6ServerDeclinedAddrEntryDeclinedAt OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerDeclinedAddrEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.3.1.5 +lcsStatusIpv6Dhcpv6ServerDeclinedAddrEntryClientId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerDeclinedAddrEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.3.1.6 +lcsStatusIpv6Dhcpv6ServerDeclinedAddrEntryIaId OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerDeclinedAddrEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.3.1.9 +lcsStatusIpv6Dhcpv6ServerDeclinedAddrEntryHostName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerDeclinedAddrEntry 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.77.3.1.4 +lcsStatusIpv6Dhcpv6ServerInterfaceStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpv6Dhcpv6ServerInterfaceStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6Server 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.77.3.1.4.1 +lcsStatusIpv6Dhcpv6ServerInterfaceStateEntry OBJECT-TYPE + SYNTAX LcsStatusIpv6Dhcpv6ServerInterfaceStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpv6Dhcpv6ServerInterfaceStateEntryInterfaceNameOrRelay + } + ::= { lcsStatusIpv6Dhcpv6ServerInterfaceStateTable 1 } + +LcsStatusIpv6Dhcpv6ServerInterfaceStateEntry ::= SEQUENCE { + lcsStatusIpv6Dhcpv6ServerInterfaceStateEntryInterfaceNameOrRelay DisplayString, + lcsStatusIpv6Dhcpv6ServerInterfaceStateEntryOperating INTEGER, + lcsStatusIpv6Dhcpv6ServerInterfaceStateEntryMode INTEGER, + lcsStatusIpv6Dhcpv6ServerInterfaceStateEntryAssignPd INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.4.1.1 +lcsStatusIpv6Dhcpv6ServerInterfaceStateEntryInterfaceNameOrRelay OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerInterfaceStateEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.4.1.2 +lcsStatusIpv6Dhcpv6ServerInterfaceStateEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerInterfaceStateEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.4.1.3 +lcsStatusIpv6Dhcpv6ServerInterfaceStateEntryMode OBJECT-TYPE + SYNTAX INTEGER { + eStateless (0), + eStateful (1), + eStatic (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerInterfaceStateEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.4.1.4 +lcsStatusIpv6Dhcpv6ServerInterfaceStateEntryAssignPd OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerInterfaceStateEntry 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.77.3.1.5 +lcsStatusIpv6Dhcpv6ServerServerId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..97)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6Server 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.77.3.1.6 +lcsStatusIpv6Dhcpv6ServerClientsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpv6Dhcpv6ServerClientsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6Server 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.77.3.1.6.1 +lcsStatusIpv6Dhcpv6ServerClientsEntry OBJECT-TYPE + SYNTAX LcsStatusIpv6Dhcpv6ServerClientsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpv6Dhcpv6ServerClientsEntryClientId + } + ::= { lcsStatusIpv6Dhcpv6ServerClientsTable 1 } + +LcsStatusIpv6Dhcpv6ServerClientsEntry ::= SEQUENCE { + lcsStatusIpv6Dhcpv6ServerClientsEntryClientId DisplayString, + lcsStatusIpv6Dhcpv6ServerClientsEntryHostName DisplayString, + lcsStatusIpv6Dhcpv6ServerClientsEntryReconfNegotiated INTEGER, + lcsStatusIpv6Dhcpv6ServerClientsEntryReconfNegotiatedAtNumerical Counter32, + lcsStatusIpv6Dhcpv6ServerClientsEntryReconfNegotiatedAt DisplayString, + lcsStatusIpv6Dhcpv6ServerClientsEntryReconfigure INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.6.1.1 +lcsStatusIpv6Dhcpv6ServerClientsEntryClientId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerClientsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.6.1.2 +lcsStatusIpv6Dhcpv6ServerClientsEntryHostName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerClientsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.6.1.3 +lcsStatusIpv6Dhcpv6ServerClientsEntryReconfNegotiated OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eNotEnoughRandom (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerClientsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.6.1.4 +lcsStatusIpv6Dhcpv6ServerClientsEntryReconfNegotiatedAtNumerical OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerClientsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.6.1.5 +lcsStatusIpv6Dhcpv6ServerClientsEntryReconfNegotiatedAt OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerClientsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.1.6.1.6 +lcsStatusIpv6Dhcpv6ServerClientsEntryReconfigure OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eRunning (1), + eSucceeded (2), + eFailed (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ServerClientsEntry 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.77.3.1.7 +lcsStatusIpv6Dhcpv6ServerReconfigure OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6Server 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.77.3.1.8 +lcsStatusIpv6Dhcpv6ServerRasInterfaces OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6Server 8 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.77.3.2 +lcsStatusIpv6Dhcpv6Client OBJECT IDENTIFIER ::= { lcsStatusIpv6Dhcpv6 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.77.3.2.1 +lcsStatusIpv6Dhcpv6ClientInterfaceListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpv6Dhcpv6ClientInterfaceListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6Client 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.77.3.2.1.1 +lcsStatusIpv6Dhcpv6ClientInterfaceListEntry OBJECT-TYPE + SYNTAX LcsStatusIpv6Dhcpv6ClientInterfaceListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpv6Dhcpv6ClientInterfaceListEntryInterfaceName + } + ::= { lcsStatusIpv6Dhcpv6ClientInterfaceListTable 1 } + +LcsStatusIpv6Dhcpv6ClientInterfaceListEntry ::= SEQUENCE { + lcsStatusIpv6Dhcpv6ClientInterfaceListEntryInterfaceName DisplayString, + lcsStatusIpv6Dhcpv6ClientInterfaceListEntryDnsDefault DisplayString, + lcsStatusIpv6Dhcpv6ClientInterfaceListEntryDnsBackup DisplayString, + lcsStatusIpv6Dhcpv6ClientInterfaceListEntryDomainList DisplayString, + lcsStatusIpv6Dhcpv6ClientInterfaceListEntryAftrNameForDsLite DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.2.1.1.1 +lcsStatusIpv6Dhcpv6ClientInterfaceListEntryInterfaceName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ClientInterfaceListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.2.1.1.2 +lcsStatusIpv6Dhcpv6ClientInterfaceListEntryDnsDefault OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ClientInterfaceListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.2.1.1.3 +lcsStatusIpv6Dhcpv6ClientInterfaceListEntryDnsBackup OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ClientInterfaceListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.2.1.1.4 +lcsStatusIpv6Dhcpv6ClientInterfaceListEntryDomainList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ClientInterfaceListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.2.1.1.5 +lcsStatusIpv6Dhcpv6ClientInterfaceListEntryAftrNameForDsLite OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ClientInterfaceListEntry 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.77.3.2.2 +lcsStatusIpv6Dhcpv6ClientAddressBindTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpv6Dhcpv6ClientAddressBindEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsStatusIpv6Dhcpv6Client 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.77.3.2.2.1 +lcsStatusIpv6Dhcpv6ClientAddressBindEntry OBJECT-TYPE + SYNTAX LcsStatusIpv6Dhcpv6ClientAddressBindEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpv6Dhcpv6ClientAddressBindEntryInterfaceName, + lcsStatusIpv6Dhcpv6ClientAddressBindEntryAddress + } + ::= { lcsStatusIpv6Dhcpv6ClientAddressBindTable 1 } + +LcsStatusIpv6Dhcpv6ClientAddressBindEntry ::= SEQUENCE { + lcsStatusIpv6Dhcpv6ClientAddressBindEntryInterfaceName DisplayString, + lcsStatusIpv6Dhcpv6ClientAddressBindEntryAddress DisplayString, + lcsStatusIpv6Dhcpv6ClientAddressBindEntryPreferredUntilNumerical Counter32, + lcsStatusIpv6Dhcpv6ClientAddressBindEntryPreferredUntil DisplayString, + lcsStatusIpv6Dhcpv6ClientAddressBindEntryValidUntilNumerical Counter32, + lcsStatusIpv6Dhcpv6ClientAddressBindEntryValidUntil DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.2.2.1.1 +lcsStatusIpv6Dhcpv6ClientAddressBindEntryInterfaceName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ClientAddressBindEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.2.2.1.2 +lcsStatusIpv6Dhcpv6ClientAddressBindEntryAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ClientAddressBindEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.2.2.1.3 +lcsStatusIpv6Dhcpv6ClientAddressBindEntryPreferredUntilNumerical OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ClientAddressBindEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.2.2.1.4 +lcsStatusIpv6Dhcpv6ClientAddressBindEntryPreferredUntil OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ClientAddressBindEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.2.2.1.5 +lcsStatusIpv6Dhcpv6ClientAddressBindEntryValidUntilNumerical OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ClientAddressBindEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.2.2.1.6 +lcsStatusIpv6Dhcpv6ClientAddressBindEntryValidUntil OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ClientAddressBindEntry 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.77.3.2.3 +lcsStatusIpv6Dhcpv6ClientPdBindingsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpv6Dhcpv6ClientPdBindingsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6Client 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.77.3.2.3.1 +lcsStatusIpv6Dhcpv6ClientPdBindingsEntry OBJECT-TYPE + SYNTAX LcsStatusIpv6Dhcpv6ClientPdBindingsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpv6Dhcpv6ClientPdBindingsEntryInterfaceName, + lcsStatusIpv6Dhcpv6ClientPdBindingsEntryPdPrefix + } + ::= { lcsStatusIpv6Dhcpv6ClientPdBindingsTable 1 } + +LcsStatusIpv6Dhcpv6ClientPdBindingsEntry ::= SEQUENCE { + lcsStatusIpv6Dhcpv6ClientPdBindingsEntryInterfaceName DisplayString, + lcsStatusIpv6Dhcpv6ClientPdBindingsEntryPdPrefix DisplayString, + lcsStatusIpv6Dhcpv6ClientPdBindingsEntryPreferredUntilNumerical Counter32, + lcsStatusIpv6Dhcpv6ClientPdBindingsEntryPreferredUntil DisplayString, + lcsStatusIpv6Dhcpv6ClientPdBindingsEntryValidUntilNumerical Counter32, + lcsStatusIpv6Dhcpv6ClientPdBindingsEntryValidUntil DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.2.3.1.1 +lcsStatusIpv6Dhcpv6ClientPdBindingsEntryInterfaceName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ClientPdBindingsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.2.3.1.2 +lcsStatusIpv6Dhcpv6ClientPdBindingsEntryPdPrefix OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ClientPdBindingsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.2.3.1.3 +lcsStatusIpv6Dhcpv6ClientPdBindingsEntryPreferredUntilNumerical OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ClientPdBindingsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.2.3.1.4 +lcsStatusIpv6Dhcpv6ClientPdBindingsEntryPreferredUntil OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ClientPdBindingsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.2.3.1.5 +lcsStatusIpv6Dhcpv6ClientPdBindingsEntryValidUntilNumerical OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ClientPdBindingsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.2.3.1.6 +lcsStatusIpv6Dhcpv6ClientPdBindingsEntryValidUntil OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ClientPdBindingsEntry 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.77.3.2.4 +lcsStatusIpv6Dhcpv6ClientInterfaceStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpv6Dhcpv6ClientInterfaceStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6Client 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.77.3.2.4.1 +lcsStatusIpv6Dhcpv6ClientInterfaceStateEntry OBJECT-TYPE + SYNTAX LcsStatusIpv6Dhcpv6ClientInterfaceStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpv6Dhcpv6ClientInterfaceStateEntryInterfaceName + } + ::= { lcsStatusIpv6Dhcpv6ClientInterfaceStateTable 1 } + +LcsStatusIpv6Dhcpv6ClientInterfaceStateEntry ::= SEQUENCE { + lcsStatusIpv6Dhcpv6ClientInterfaceStateEntryInterfaceName DisplayString, + lcsStatusIpv6Dhcpv6ClientInterfaceStateEntryMode INTEGER, + lcsStatusIpv6Dhcpv6ClientInterfaceStateEntryRequestPd INTEGER, + lcsStatusIpv6Dhcpv6ClientInterfaceStateEntryReconfNegotiated INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.2.4.1.1 +lcsStatusIpv6Dhcpv6ClientInterfaceStateEntryInterfaceName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ClientInterfaceStateEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.2.4.1.2 +lcsStatusIpv6Dhcpv6ClientInterfaceStateEntryMode OBJECT-TYPE + SYNTAX INTEGER { + eStateless (0), + eStateful (1), + eStatic (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ClientInterfaceStateEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.2.4.1.3 +lcsStatusIpv6Dhcpv6ClientInterfaceStateEntryRequestPd OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ClientInterfaceStateEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.3.2.4.1.4 +lcsStatusIpv6Dhcpv6ClientInterfaceStateEntryReconfNegotiated OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6ClientInterfaceStateEntry 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.77.3.2.5 +lcsStatusIpv6Dhcpv6ClientRelease OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6Client 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.77.3.2.6 +lcsStatusIpv6Dhcpv6ClientClientId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..97)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Dhcpv6Client 6 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.77.3.3 +lcsStatusIpv6Dhcpv6RelayAgent OBJECT IDENTIFIER ::= { lcsStatusIpv6Dhcpv6 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.77.4 +lcsStatusIpv6Interfaces OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.77.5 +lcsStatusIpv6ActIpRoutingTab OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6 5 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.77.6 +lcsStatusIpv6Network OBJECT IDENTIFIER ::= { lcsStatusIpv6 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.77.6.1 +lcsStatusIpv6NetworkAddresses OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Network 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.77.6.2 +lcsStatusIpv6NetworkParameter OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Network 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.77.7 +lcsStatusIpv6RouterAdv OBJECT IDENTIFIER ::= { lcsStatusIpv6 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.77.7.1 +lcsStatusIpv6RouterAdvInterfaceOptions OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6RouterAdv 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.77.7.2 +lcsStatusIpv6RouterAdvPrefixOptions OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6RouterAdv 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.77.8 +lcsStatusIpv6Tunnel OBJECT IDENTIFIER ::= { lcsStatusIpv6 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.77.8.1 +lcsStatusIpv6Tunnel6in4 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Tunnel 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.77.8.2 +lcsStatusIpv6Tunnel6rd OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Tunnel 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.77.8.3 +lcsStatusIpv6Tunnel6rdBorderRelay OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Tunnel 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.77.8.4 +lcsStatusIpv6Tunnel6to4 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Tunnel 4 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.77.9 +lcsStatusIpv6Firewall OBJECT IDENTIFIER ::= { lcsStatusIpv6 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.77.9.1 +lcsStatusIpv6FirewallLogTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusIpv6FirewallLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Firewall 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.77.9.1.1 +lcsStatusIpv6FirewallLogTableEntry OBJECT-TYPE + SYNTAX LcsStatusIpv6FirewallLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusIpv6FirewallLogTableEntryIdx + } + ::= { lcsStatusIpv6FirewallLogTableTable 1 } + +LcsStatusIpv6FirewallLogTableEntry ::= SEQUENCE { + lcsStatusIpv6FirewallLogTableEntryIdx Integer32, + lcsStatusIpv6FirewallLogTableEntrySystemTime DisplayString, + lcsStatusIpv6FirewallLogTableEntrySrcAddress DisplayString, + lcsStatusIpv6FirewallLogTableEntryDstAddress DisplayString, + lcsStatusIpv6FirewallLogTableEntryProt Integer32, + lcsStatusIpv6FirewallLogTableEntrySrcPort Integer32, + lcsStatusIpv6FirewallLogTableEntryDstPort Integer32, + lcsStatusIpv6FirewallLogTableEntryFilterRule DisplayString, + lcsStatusIpv6FirewallLogTableEntryLimit Integer32, + lcsStatusIpv6FirewallLogTableEntryThreshold Integer32, + lcsStatusIpv6FirewallLogTableEntryAction Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.9.1.1.1 +lcsStatusIpv6FirewallLogTableEntryIdx OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6FirewallLogTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.9.1.1.2 +lcsStatusIpv6FirewallLogTableEntrySystemTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6FirewallLogTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.9.1.1.3 +lcsStatusIpv6FirewallLogTableEntrySrcAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6FirewallLogTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.9.1.1.4 +lcsStatusIpv6FirewallLogTableEntryDstAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6FirewallLogTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.9.1.1.5 +lcsStatusIpv6FirewallLogTableEntryProt OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6FirewallLogTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.9.1.1.6 +lcsStatusIpv6FirewallLogTableEntrySrcPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6FirewallLogTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.9.1.1.7 +lcsStatusIpv6FirewallLogTableEntryDstPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6FirewallLogTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.9.1.1.8 +lcsStatusIpv6FirewallLogTableEntryFilterRule OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..69)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6FirewallLogTableEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.9.1.1.9 +lcsStatusIpv6FirewallLogTableEntryLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6FirewallLogTableEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.9.1.1.10 +lcsStatusIpv6FirewallLogTableEntryThreshold OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6FirewallLogTableEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.77.9.1.1.11 +lcsStatusIpv6FirewallLogTableEntryAction OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6FirewallLogTableEntry 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.77.9.2 +lcsStatusIpv6FirewallForwardingFilter OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Firewall 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.77.9.3 +lcsStatusIpv6FirewallInboundFilter OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Firewall 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.77.9.4 +lcsStatusIpv6FirewallForwardingSessions OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Firewall 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.77.9.5 +lcsStatusIpv6FirewallInboundSessions OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Firewall 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.77.9.6 +lcsStatusIpv6FirewallForwardingOpenPorts OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Firewall 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.77.9.7 +lcsStatusIpv6FirewallHostBlockList OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Firewall 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.77.9.8 +lcsStatusIpv6FirewallPortBlockList OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Firewall 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.77.9.9 +lcsStatusIpv6FirewallHalfOpenConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusIpv6Firewall 9 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.78 +lcsStatusPmsInterface OBJECT IDENTIFIER ::= { lcsStatus 78 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.78.1 +lcsStatusPmsInterfaceConnection OBJECT-TYPE + SYNTAX INTEGER { + eConnected (0), + eClosed (1), + eFailed (2), + eOff (3), + eTryToConnect (4), + eInitialisation (5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPmsInterface 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.78.2 +lcsStatusPmsInterfaceAccountingTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusPmsInterfaceAccountingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPmsInterface 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.78.2.1 +lcsStatusPmsInterfaceAccountingEntry OBJECT-TYPE + SYNTAX LcsStatusPmsInterfaceAccountingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusPmsInterfaceAccountingEntryReservationNumber, + lcsStatusPmsInterfaceAccountingEntryUserName + } + ::= { lcsStatusPmsInterfaceAccountingTable 1 } + +LcsStatusPmsInterfaceAccountingEntry ::= SEQUENCE { + lcsStatusPmsInterfaceAccountingEntryReservationNumber DisplayString, + lcsStatusPmsInterfaceAccountingEntryUserName DisplayString, + lcsStatusPmsInterfaceAccountingEntryRoomNumber DisplayString, + lcsStatusPmsInterfaceAccountingEntryMac DisplayString, + lcsStatusPmsInterfaceAccountingEntryComment DisplayString, + lcsStatusPmsInterfaceAccountingEntryTimeBudget Integer32, + lcsStatusPmsInterfaceAccountingEntryVolumeBudget Integer32, + lcsStatusPmsInterfaceAccountingEntryTotalVolume Integer32, + lcsStatusPmsInterfaceAccountingEntryTotalTime Integer32, + lcsStatusPmsInterfaceAccountingEntryActive Integer32, + lcsStatusPmsInterfaceAccountingEntryLastUpdated Integer32, + lcsStatusPmsInterfaceAccountingEntryInitialTotalVolume Integer32, + lcsStatusPmsInterfaceAccountingEntryInitialTotalTime Integer32, + lcsStatusPmsInterfaceAccountingEntryDelete Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.78.2.1.1 +lcsStatusPmsInterfaceAccountingEntryReservationNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..5)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPmsInterfaceAccountingEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.78.2.1.2 +lcsStatusPmsInterfaceAccountingEntryUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..5)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPmsInterfaceAccountingEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.78.2.1.3 +lcsStatusPmsInterfaceAccountingEntryRoomNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..5)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPmsInterfaceAccountingEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.78.2.1.4 +lcsStatusPmsInterfaceAccountingEntryMac OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPmsInterfaceAccountingEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.78.2.1.5 +lcsStatusPmsInterfaceAccountingEntryComment OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..5)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPmsInterfaceAccountingEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.78.2.1.6 +lcsStatusPmsInterfaceAccountingEntryTimeBudget OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPmsInterfaceAccountingEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.78.2.1.7 +lcsStatusPmsInterfaceAccountingEntryVolumeBudget OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPmsInterfaceAccountingEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.78.2.1.8 +lcsStatusPmsInterfaceAccountingEntryTotalVolume OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPmsInterfaceAccountingEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.78.2.1.9 +lcsStatusPmsInterfaceAccountingEntryTotalTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPmsInterfaceAccountingEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.78.2.1.10 +lcsStatusPmsInterfaceAccountingEntryActive OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPmsInterfaceAccountingEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.78.2.1.11 +lcsStatusPmsInterfaceAccountingEntryLastUpdated OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPmsInterfaceAccountingEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.78.2.1.12 +lcsStatusPmsInterfaceAccountingEntryInitialTotalVolume OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPmsInterfaceAccountingEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.78.2.1.13 +lcsStatusPmsInterfaceAccountingEntryInitialTotalTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPmsInterfaceAccountingEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.78.2.1.14 +lcsStatusPmsInterfaceAccountingEntryDelete OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusPmsInterfaceAccountingEntry 14 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.81 +lcsStatusDsLite OBJECT IDENTIFIER ::= { lcsStatus 81 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.81.1 +lcsStatusDsLiteRxPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusDsLite 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.81.2 +lcsStatusDsLiteTxPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusDsLite 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.81.3 +lcsStatusDsLiteQueueErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusDsLite 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.81.4 +lcsStatusDsLiteConnectionsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusDsLiteConnectionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusDsLite 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.81.4.1 +lcsStatusDsLiteConnectionsEntry OBJECT-TYPE + SYNTAX LcsStatusDsLiteConnectionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusDsLiteConnectionsEntryPeer + } + ::= { lcsStatusDsLiteConnectionsTable 1 } + +LcsStatusDsLiteConnectionsEntry ::= SEQUENCE { + lcsStatusDsLiteConnectionsEntryPeer DisplayString, + lcsStatusDsLiteConnectionsEntryState INTEGER, + lcsStatusDsLiteConnectionsEntryLastError INTEGER, + lcsStatusDsLiteConnectionsEntryIpv4Address IpAddress, + lcsStatusDsLiteConnectionsEntryPhysConn DisplayString, + lcsStatusDsLiteConnectionsEntryAftrName DisplayString, + lcsStatusDsLiteConnectionsEntryAftrIpv6Address DisplayString, + lcsStatusDsLiteConnectionsEntryConnTime Gauge32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.81.4.1.1 +lcsStatusDsLiteConnectionsEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusDsLiteConnectionsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.81.4.1.2 +lcsStatusDsLiteConnectionsEntryState OBJECT-TYPE + SYNTAX INTEGER { + eInit (0), + eSetupWan (1), + eReady (2), + eWaitForCb (3), + eDial (4), + eIncomingCall (5), + eProtocol (6), + eConnection (7), + eDisconnecting (8), + eCallBack (9), + eBundleConnect (10), + eProtocol2 (11), + eReserved (12), + eBundle (13) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusDsLiteConnectionsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.81.4.1.3 +lcsStatusDsLiteConnectionsEntryLastError OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eIcmpConnError (275), + eDnsResolutionFailed (20481), + eNoRouteToGateway (20482), + eNoGatewayByDhcp (20483), + eInvalidGatewayAddress (20484), + eMultipleGatewayUsage (20485) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusDsLiteConnectionsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.81.4.1.4 +lcsStatusDsLiteConnectionsEntryIpv4Address OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusDsLiteConnectionsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.81.4.1.5 +lcsStatusDsLiteConnectionsEntryPhysConn OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusDsLiteConnectionsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.81.4.1.6 +lcsStatusDsLiteConnectionsEntryAftrName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusDsLiteConnectionsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.81.4.1.7 +lcsStatusDsLiteConnectionsEntryAftrIpv6Address OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusDsLiteConnectionsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.81.4.1.8 +lcsStatusDsLiteConnectionsEntryConnTime OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusDsLiteConnectionsEntry 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.81.5 +lcsStatusDsLiteTunnel OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusDsLite 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.81.6 +lcsStatusDsLiteDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusDsLite 6 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.82 +lcsStatusCrypto OBJECT IDENTIFIER ::= { lcsStatus 82 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.82.1 +lcsStatusCryptoRng OBJECT IDENTIFIER ::= { lcsStatusCrypto 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.82.1.1 +lcsStatusCryptoRngState OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eNotSeeded (1), + ePreSeeded (2), + eSeeded (3), + eNeedsReseed (4), + eError (5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusCryptoRng 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.82.1.2 +lcsStatusCryptoRngCounter OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusCryptoRng 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.82.1.3 +lcsStatusCryptoRngPercent OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusCryptoRng 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.82.1.4 +lcsStatusCryptoRngWriteInterval OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusCryptoRng 4 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.83 +lcsStatusSms OBJECT IDENTIFIER ::= { lcsStatus 83 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.83.1 +lcsStatusSmsInboxTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusSmsInboxEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSms 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.83.1.1 +lcsStatusSmsInboxEntry OBJECT-TYPE + SYNTAX LcsStatusSmsInboxEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusSmsInboxEntryIdx, + lcsStatusSmsInboxEntryMsgref, + lcsStatusSmsInboxEntryPartnr + } + ::= { lcsStatusSmsInboxTable 1 } + +LcsStatusSmsInboxEntry ::= SEQUENCE { + lcsStatusSmsInboxEntryIdx Integer32, + lcsStatusSmsInboxEntryMsgref Integer32, + lcsStatusSmsInboxEntryPartnr Integer32, + lcsStatusSmsInboxEntrySender DisplayString, + lcsStatusSmsInboxEntryStatus INTEGER, + lcsStatusSmsInboxEntryTimestamp Integer32, + lcsStatusSmsInboxEntryContent DisplayString, + lcsStatusSmsInboxEntryRowstatus INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.83.1.1.1 +lcsStatusSmsInboxEntryIdx OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSmsInboxEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.83.1.1.2 +lcsStatusSmsInboxEntryMsgref OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSmsInboxEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.83.1.1.3 +lcsStatusSmsInboxEntryPartnr OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSmsInboxEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.83.1.1.4 +lcsStatusSmsInboxEntrySender OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSmsInboxEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.83.1.1.5 +lcsStatusSmsInboxEntryStatus OBJECT-TYPE + SYNTAX INTEGER { + eNew (7), + eRead (8) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSmsInboxEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.83.1.1.6 +lcsStatusSmsInboxEntryTimestamp OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSmsInboxEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.83.1.1.7 +lcsStatusSmsInboxEntryContent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSmsInboxEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.83.1.1.8 +lcsStatusSmsInboxEntryRowstatus OBJECT-TYPE + SYNTAX INTEGER { + eActive (1), + eNotinservice (2), + eNotready (3), + eCreateandgo (4), + eCreateandwait (5), + eDestroy (6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSmsInboxEntry 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.83.2 +lcsStatusSmsOutboxTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusSmsOutboxEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSms 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.83.2.1 +lcsStatusSmsOutboxEntry OBJECT-TYPE + SYNTAX LcsStatusSmsOutboxEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusSmsOutboxEntryIdx, + lcsStatusSmsOutboxEntryMsgref, + lcsStatusSmsOutboxEntryPartnr + } + ::= { lcsStatusSmsOutboxTable 1 } + +LcsStatusSmsOutboxEntry ::= SEQUENCE { + lcsStatusSmsOutboxEntryIdx Integer32, + lcsStatusSmsOutboxEntryMsgref Integer32, + lcsStatusSmsOutboxEntryPartnr Integer32, + lcsStatusSmsOutboxEntryDestination DisplayString, + lcsStatusSmsOutboxEntryStatus INTEGER, + lcsStatusSmsOutboxEntryTimestamp Integer32, + lcsStatusSmsOutboxEntryContent DisplayString, + lcsStatusSmsOutboxEntryRowstatus INTEGER, + lcsStatusSmsOutboxEntrySendAttempts Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.83.2.1.1 +lcsStatusSmsOutboxEntryIdx OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSmsOutboxEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.83.2.1.2 +lcsStatusSmsOutboxEntryMsgref OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSmsOutboxEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.83.2.1.3 +lcsStatusSmsOutboxEntryPartnr OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSmsOutboxEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.83.2.1.4 +lcsStatusSmsOutboxEntryDestination OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSmsOutboxEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.83.2.1.5 +lcsStatusSmsOutboxEntryStatus OBJECT-TYPE + SYNTAX INTEGER { + eUnsent (0), + ePending (1), + eDelivered (2), + eUnconfirmed (3), + eFailedtrying (4), + eFailedpermanent (5), + eFailedtemporary (6), + eSent (9), + eFailedpermanentlocal (10), + eFailedtemporarylocal (11) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSmsOutboxEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.83.2.1.6 +lcsStatusSmsOutboxEntryTimestamp OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSmsOutboxEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.83.2.1.7 +lcsStatusSmsOutboxEntryContent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSmsOutboxEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.83.2.1.8 +lcsStatusSmsOutboxEntryRowstatus OBJECT-TYPE + SYNTAX INTEGER { + eActive (1), + eNotinservice (2), + eNotready (3), + eCreateandgo (4), + eCreateandwait (5), + eDestroy (6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSmsOutboxEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.83.2.1.9 +lcsStatusSmsOutboxEntrySendAttempts OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSmsOutboxEntry 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.83.3 +lcsStatusSmsInboxMessages OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSms 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.83.4 +lcsStatusSmsUnreadMessages OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSms 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.83.5 +lcsStatusSmsOutboxMessages OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSms 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.83.6 +lcsStatusSmsSmscAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSms 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.83.7 +lcsStatusSmsClearInbox OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSms 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.83.8 +lcsStatusSmsClearOutbox OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSms 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.83.9 +lcsStatusSmsMarkReadInbox OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSms 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.83.10 +lcsStatusSmsLimitRemaining OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSms 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.83.11 +lcsStatusSmsLimitReset OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSms 11 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.84 +lcsStatusL2tp OBJECT IDENTIFIER ::= { lcsStatus 84 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.84.1 +lcsStatusL2tpRxPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tp 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.84.2 +lcsStatusL2tpTxPackets OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.84.3 +lcsStatusL2tpTxRetries OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.84.4 +lcsStatusL2tpCallErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tp 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.84.5 +lcsStatusL2tpEndpointsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusL2tpEndpointsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tp 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.84.5.1 +lcsStatusL2tpEndpointsEntry OBJECT-TYPE + SYNTAX LcsStatusL2tpEndpointsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusL2tpEndpointsEntryL2tpEndpoint + } + ::= { lcsStatusL2tpEndpointsTable 1 } + +LcsStatusL2tpEndpointsEntry ::= SEQUENCE { + lcsStatusL2tpEndpointsEntryL2tpEndpoint DisplayString, + lcsStatusL2tpEndpointsEntryState INTEGER, + lcsStatusL2tpEndpointsEntryLastError INTEGER, + lcsStatusL2tpEndpointsEntryMode INTEGER, + lcsStatusL2tpEndpointsEntryPhysConnection DisplayString, + lcsStatusL2tpEndpointsEntryGateway DisplayString, + lcsStatusL2tpEndpointsEntrySessions Integer32, + lcsStatusL2tpEndpointsEntryConnTime Gauge32, + lcsStatusL2tpEndpointsEntryEmbeddedErrorMessage DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.84.5.1.1 +lcsStatusL2tpEndpointsEntryL2tpEndpoint OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tpEndpointsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.84.5.1.2 +lcsStatusL2tpEndpointsEntryState OBJECT-TYPE + SYNTAX INTEGER { + eInvalid (-1), + eDestroying (0), + eIdle (1), + eWaitCtlReply (2), + eWaitCtlConn (3), + eWaitEstablish (4), + eEstablished (5), + eAuthenticating (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tpEndpointsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.84.5.1.3 +lcsStatusL2tpEndpointsEntryLastError OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eDnsResolutionFailed (1), + eNoRouteToGateway (2), + eNoResponse (4), + eMessageTimeout (5), + eTunnelAlreadyExists (19), + eAuthorizationFailed (20), + eBadProtocolVersion (21), + eShuttingDown (22), + eStateMachineError (23), + eNoTunnelExists (33), + eInvalidLength (34), + eInvalidValue (35), + eNoRessources (36), + eInvalidSessionId (37), + eVendorSpecificError (38), + eTryAnother (39), + eUnknownMandatoryAttribute (40), + eUnknown (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tpEndpointsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.84.5.1.4 +lcsStatusL2tpEndpointsEntryMode OBJECT-TYPE + SYNTAX INTEGER { + eLac (0), + eLns (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tpEndpointsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.84.5.1.5 +lcsStatusL2tpEndpointsEntryPhysConnection OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tpEndpointsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.84.5.1.6 +lcsStatusL2tpEndpointsEntryGateway OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tpEndpointsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.84.5.1.7 +lcsStatusL2tpEndpointsEntrySessions OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tpEndpointsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.84.5.1.8 +lcsStatusL2tpEndpointsEntryConnTime OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tpEndpointsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.84.5.1.9 +lcsStatusL2tpEndpointsEntryEmbeddedErrorMessage OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tpEndpointsEntry 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.84.6 +lcsStatusL2tpNumEndpoints OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tp 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.84.7 +lcsStatusL2tpConnectionsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusL2tpConnectionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tp 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.84.7.1 +lcsStatusL2tpConnectionsEntry OBJECT-TYPE + SYNTAX LcsStatusL2tpConnectionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusL2tpConnectionsEntryPeer + } + ::= { lcsStatusL2tpConnectionsTable 1 } + +LcsStatusL2tpConnectionsEntry ::= SEQUENCE { + lcsStatusL2tpConnectionsEntryPeer DisplayString, + lcsStatusL2tpConnectionsEntryState INTEGER, + lcsStatusL2tpConnectionsEntryLastError INTEGER, + lcsStatusL2tpConnectionsEntryMode INTEGER, + lcsStatusL2tpConnectionsEntryShTime Integer32, + lcsStatusL2tpConnectionsEntryL2tpEndpoint DisplayString, + lcsStatusL2tpConnectionsEntryPeerAddress IpAddress, + lcsStatusL2tpConnectionsEntryIpAddress IpAddress, + lcsStatusL2tpConnectionsEntryDnsDefault IpAddress, + lcsStatusL2tpConnectionsEntryDnsBackup IpAddress, + lcsStatusL2tpConnectionsEntryNbnsDefault IpAddress, + lcsStatusL2tpConnectionsEntryNbnsBackup IpAddress, + lcsStatusL2tpConnectionsEntryConnTime Gauge32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.84.7.1.1 +lcsStatusL2tpConnectionsEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tpConnectionsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.84.7.1.2 +lcsStatusL2tpConnectionsEntryState OBJECT-TYPE + SYNTAX INTEGER { + eInit (0), + eSetupWan (1), + eReady (2), + eWaitForCb (3), + eDial (4), + eIncomingCall (5), + eProtocol (6), + eConnection (7), + eDisconnecting (8), + eCallBack (9), + eBundleConnect (10), + eProtocol2 (11), + eReserved (12), + eBundle (13) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tpConnectionsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.84.7.1.3 +lcsStatusL2tpConnectionsEntryLastError OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eRemoteDoubled (267), + eIcmpConnError (275), + eChargeLocked (283), + eRemoteDisconnected (17153), + eManualDisconnect (17154), + eShortholdExpired (17155), + ePhysicalDisconnected (17156), + eInvalidPhysicalChannel (17157), + eDynamicVpnReconnect (17158), + eConfigurationChanged (17159), + eRemovedFromConfig (17160), + eLcpRejected (32768), + eAuthError (32769), + eAuthRejected (32770), + eLcpConnError (32771), + ePapRejected (32784), + ePapRxTimeout (32785), + ePapTxTimeout (32786), + eWrongPapReq (32787), + ePapNakReceived (32788), + eUnknPapPeer (32789), + eChapRejected (32800), + eChapRxTimeout (32801), + eChapTxTimeout (32802), + eWrongChapResp (32803), + eChapFailRecvd (32804), + eUnknChapPeer (32805), + eIpcpRejected (32832), + eCcpRejected (32848), + eNoNcpAvailable (33008) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tpConnectionsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.84.7.1.4 +lcsStatusL2tpConnectionsEntryMode OBJECT-TYPE + SYNTAX INTEGER { + ePassive (0), + eActive (128) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tpConnectionsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.84.7.1.5 +lcsStatusL2tpConnectionsEntryShTime OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tpConnectionsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.84.7.1.6 +lcsStatusL2tpConnectionsEntryL2tpEndpoint OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tpConnectionsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.84.7.1.7 +lcsStatusL2tpConnectionsEntryPeerAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tpConnectionsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.84.7.1.8 +lcsStatusL2tpConnectionsEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tpConnectionsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.84.7.1.9 +lcsStatusL2tpConnectionsEntryDnsDefault OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tpConnectionsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.84.7.1.10 +lcsStatusL2tpConnectionsEntryDnsBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tpConnectionsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.84.7.1.11 +lcsStatusL2tpConnectionsEntryNbnsDefault OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tpConnectionsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.84.7.1.12 +lcsStatusL2tpConnectionsEntryNbnsBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tpConnectionsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.84.7.1.13 +lcsStatusL2tpConnectionsEntryConnTime OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tpConnectionsEntry 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.84.8 +lcsStatusL2tpNumConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tp 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.84.9 +lcsStatusL2tpDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusL2tp 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.100 +lcsStatusDeleteValues OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsStatus 100 } + +-- {NODE} 1.3.6.1.4.1.2356.11.1.201 +lcsStatusSipAlg OBJECT IDENTIFIER ::= { lcsStatus 201 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.1.201.1 +lcsStatusSipAlgOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlg 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.201.2 +lcsStatusSipAlgRegistrationsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusSipAlgRegistrationsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlg 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.201.2.1 +lcsStatusSipAlgRegistrationsEntry OBJECT-TYPE + SYNTAX LcsStatusSipAlgRegistrationsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusSipAlgRegistrationsEntryIndex + } + ::= { lcsStatusSipAlgRegistrationsTable 1 } + +LcsStatusSipAlgRegistrationsEntry ::= SEQUENCE { + lcsStatusSipAlgRegistrationsEntryIndex Integer32, + lcsStatusSipAlgRegistrationsEntrySipId DisplayString, + lcsStatusSipAlgRegistrationsEntryRegistrarDomain DisplayString, + lcsStatusSipAlgRegistrationsEntryRegistrarAddress DisplayString, + lcsStatusSipAlgRegistrationsEntryClientAddress DisplayString, + lcsStatusSipAlgRegistrationsEntryClientPort Integer32, + lcsStatusSipAlgRegistrationsEntryWanAddress DisplayString, + lcsStatusSipAlgRegistrationsEntryWanPort Integer32, + lcsStatusSipAlgRegistrationsEntryRegisterMethod DisplayString, + lcsStatusSipAlgRegistrationsEntryExpirationTime Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.201.2.1.1 +lcsStatusSipAlgRegistrationsEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlgRegistrationsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.201.2.1.2 +lcsStatusSipAlgRegistrationsEntrySipId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlgRegistrationsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.201.2.1.3 +lcsStatusSipAlgRegistrationsEntryRegistrarDomain OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlgRegistrationsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.201.2.1.4 +lcsStatusSipAlgRegistrationsEntryRegistrarAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlgRegistrationsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.201.2.1.5 +lcsStatusSipAlgRegistrationsEntryClientAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlgRegistrationsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.201.2.1.6 +lcsStatusSipAlgRegistrationsEntryClientPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlgRegistrationsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.201.2.1.7 +lcsStatusSipAlgRegistrationsEntryWanAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlgRegistrationsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.201.2.1.8 +lcsStatusSipAlgRegistrationsEntryWanPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlgRegistrationsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.201.2.1.9 +lcsStatusSipAlgRegistrationsEntryRegisterMethod OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlgRegistrationsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.201.2.1.10 +lcsStatusSipAlgRegistrationsEntryExpirationTime OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlgRegistrationsEntry 10 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.1.201.3 +lcsStatusSipAlgCallsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsStatusSipAlgCallsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlg 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.1.201.3.1 +lcsStatusSipAlgCallsEntry OBJECT-TYPE + SYNTAX LcsStatusSipAlgCallsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsStatusSipAlgCallsEntryIndex + } + ::= { lcsStatusSipAlgCallsTable 1 } + +LcsStatusSipAlgCallsEntry ::= SEQUENCE { + lcsStatusSipAlgCallsEntryIndex Integer32, + lcsStatusSipAlgCallsEntryCallId DisplayString, + lcsStatusSipAlgCallsEntrySipDstAddress DisplayString, + lcsStatusSipAlgCallsEntrySipSrcAddress DisplayString, + lcsStatusSipAlgCallsEntrySipSrcPort Integer32, + lcsStatusSipAlgCallsEntryWanAddress DisplayString, + lcsStatusSipAlgCallsEntrySipWanPort Integer32, + lcsStatusSipAlgCallsEntryRtpDstAddress DisplayString, + lcsStatusSipAlgCallsEntryRtpDstPort Integer32, + lcsStatusSipAlgCallsEntryRtpSrcAddress DisplayString, + lcsStatusSipAlgCallsEntryRtpSrcPort Integer32, + lcsStatusSipAlgCallsEntryRtpWanPort Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.201.3.1.1 +lcsStatusSipAlgCallsEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlgCallsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.201.3.1.2 +lcsStatusSipAlgCallsEntryCallId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlgCallsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.201.3.1.3 +lcsStatusSipAlgCallsEntrySipDstAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlgCallsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.201.3.1.4 +lcsStatusSipAlgCallsEntrySipSrcAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlgCallsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.201.3.1.5 +lcsStatusSipAlgCallsEntrySipSrcPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlgCallsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.201.3.1.6 +lcsStatusSipAlgCallsEntryWanAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlgCallsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.201.3.1.7 +lcsStatusSipAlgCallsEntrySipWanPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlgCallsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.201.3.1.8 +lcsStatusSipAlgCallsEntryRtpDstAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlgCallsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.201.3.1.9 +lcsStatusSipAlgCallsEntryRtpDstPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlgCallsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.201.3.1.10 +lcsStatusSipAlgCallsEntryRtpSrcAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlgCallsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.201.3.1.11 +lcsStatusSipAlgCallsEntryRtpSrcPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlgCallsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.1.201.3.1.12 +lcsStatusSipAlgCallsEntryRtpWanPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsStatusSipAlgCallsEntry 12 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2 +lcsSetup OBJECT IDENTIFIER ::= { lcos 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.1 +lcsSetupName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetup 1 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.2 +lcsSetupWan OBJECT IDENTIFIER ::= { lcsSetup 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.2.2 +lcsSetupWanDialupPeersTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWanDialupPeersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWan 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.2.2.1 +lcsSetupWanDialupPeersEntry OBJECT-TYPE + SYNTAX LcsSetupWanDialupPeersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWanDialupPeersEntryPeer + } + ::= { lcsSetupWanDialupPeersTable 1 } + +LcsSetupWanDialupPeersEntry ::= SEQUENCE { + lcsSetupWanDialupPeersEntryPeer DisplayString, + lcsSetupWanDialupPeersEntryDialupRemote DisplayString, + lcsSetupWanDialupPeersEntryB1Dt Integer32, + lcsSetupWanDialupPeersEntryB2Dt Integer32, + lcsSetupWanDialupPeersEntryWanLayer DisplayString, + lcsSetupWanDialupPeersEntryCallback INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.2.1.1 +lcsSetupWanDialupPeersEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanDialupPeersEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.2.1.2 +lcsSetupWanDialupPeersEntryDialupRemote OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanDialupPeersEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.2.1.3 +lcsSetupWanDialupPeersEntryB1Dt OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanDialupPeersEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.2.1.4 +lcsSetupWanDialupPeersEntryB2Dt OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanDialupPeersEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.2.1.5 +lcsSetupWanDialupPeersEntryWanLayer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..9)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanDialupPeersEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.2.1.6 +lcsSetupWanDialupPeersEntryCallback OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eAuto (1), + eLooser (2), + eName (5), + eFast (9) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanDialupPeersEntry 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.2.3 +lcsSetupWanRoundrobinTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWanRoundrobinEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWan 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.2.3.1 +lcsSetupWanRoundrobinEntry OBJECT-TYPE + SYNTAX LcsSetupWanRoundrobinEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWanRoundrobinEntryPeer + } + ::= { lcsSetupWanRoundrobinTable 1 } + +LcsSetupWanRoundrobinEntry ::= SEQUENCE { + lcsSetupWanRoundrobinEntryPeer DisplayString, + lcsSetupWanRoundrobinEntryRoundRobin DisplayString, + lcsSetupWanRoundrobinEntryHead INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.3.1.1 +lcsSetupWanRoundrobinEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..18)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanRoundrobinEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.3.1.2 +lcsSetupWanRoundrobinEntryRoundRobin OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..53)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanRoundrobinEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.3.1.3 +lcsSetupWanRoundrobinEntryHead OBJECT-TYPE + SYNTAX INTEGER { + eLast (0), + eFirst (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanRoundrobinEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.2.4 +lcsSetupWanLayerTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWanLayerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWan 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.2.4.1 +lcsSetupWanLayerEntry OBJECT-TYPE + SYNTAX LcsSetupWanLayerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWanLayerEntryWanLayer + } + ::= { lcsSetupWanLayerTable 1 } + +LcsSetupWanLayerEntry ::= SEQUENCE { + lcsSetupWanLayerEntryWanLayer DisplayString, + lcsSetupWanLayerEntryEncaps INTEGER, + lcsSetupWanLayerEntryLay3 INTEGER, + lcsSetupWanLayerEntryLay2 INTEGER, + lcsSetupWanLayerEntryL2Opt INTEGER, + lcsSetupWanLayerEntryLay1 INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.4.1.1 +lcsSetupWanLayerEntryWanLayer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..9)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanLayerEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.4.1.2 +lcsSetupWanLayerEntryEncaps OBJECT-TYPE + SYNTAX INTEGER { + eEther (0), + eLlcMux (1), + eLlcEth (3), + eVcMux (4), + eTrans (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanLayerEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.4.1.3 +lcsSetupWanLayerEntryLay3 OBJECT-TYPE + SYNTAX INTEGER { + ePpp (4), + eAppp (5), + eScppp (6), + eScappp (7), + eSctrans (8), + eDhcp (9), + eTRANS (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanLayerEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.4.1.4 +lcsSetupWanLayerEntryLay2 OBJECT-TYPE + SYNTAX INTEGER { + eX75lapb (0), + eTrans (1), + ePppoe (5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanLayerEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.4.1.5 +lcsSetupWanLayerEntryL2Opt OBJECT-TYPE + SYNTAX INTEGER { + eCompr (0), + eBundle (1), + eBndPlusCmpr (2), + eNone (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanLayerEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.4.1.6 +lcsSetupWanLayerEntryLay1 OBJECT-TYPE + SYNTAX INTEGER { + eHdlc64k (0), + eHdlc56k (1), + eAdsl (2), + eV1109k6 (3), + eEth (4), + eSerial (6), + eVdsl (9), + eV11019k2 (67), + eV11038k4 (131) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanLayerEntry 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.2.5 +lcsSetupWanPppTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWanPppEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWan 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.2.5.1 +lcsSetupWanPppEntry OBJECT-TYPE + SYNTAX LcsSetupWanPppEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWanPppEntryPeer + } + ::= { lcsSetupWanPppTable 1 } + +LcsSetupWanPppEntry ::= SEQUENCE { + lcsSetupWanPppEntryPeer DisplayString, + lcsSetupWanPppEntryAuthentRequest BITS, + lcsSetupWanPppEntryKey DisplayString, + lcsSetupWanPppEntryTime Integer32, + lcsSetupWanPppEntryTry Integer32, + lcsSetupWanPppEntryUsername DisplayString, + lcsSetupWanPppEntryConf Integer32, + lcsSetupWanPppEntryFail Integer32, + lcsSetupWanPppEntryTerm Integer32, + lcsSetupWanPppEntryRights BITS, + lcsSetupWanPppEntryAuthentResponse BITS + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.5.1.1 +lcsSetupWanPppEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanPppEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.5.1.2 +lcsSetupWanPppEntryAuthentRequest OBJECT-TYPE + SYNTAX BITS { + eNone (0), + eMsChapv2 (2), + eMsChap (3), + eChap (4), + ePap (5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanPppEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.5.1.3 +lcsSetupWanPppEntryKey OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanPppEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.5.1.4 +lcsSetupWanPppEntryTime OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanPppEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.5.1.5 +lcsSetupWanPppEntryTry OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanPppEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.5.1.6 +lcsSetupWanPppEntryUsername OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanPppEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.5.1.7 +lcsSetupWanPppEntryConf OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanPppEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.5.1.8 +lcsSetupWanPppEntryFail OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanPppEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.5.1.9 +lcsSetupWanPppEntryTerm OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanPppEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.5.1.10 +lcsSetupWanPppEntryRights OBJECT-TYPE + SYNTAX BITS { + eNone (0), + eIpv6 (3), + eNbt (6), + eIp (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanPppEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.5.1.11 +lcsSetupWanPppEntryAuthentResponse OBJECT-TYPE + SYNTAX BITS { + eNone (0), + eMsChapv2 (2), + eMsChap (3), + eChap (4), + ePap (5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanPppEntry 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.2.6 +lcsSetupWanIncomingCallingNumbersTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWanIncomingCallingNumbersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWan 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.2.6.1 +lcsSetupWanIncomingCallingNumbersEntry OBJECT-TYPE + SYNTAX LcsSetupWanIncomingCallingNumbersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWanIncomingCallingNumbersEntryDialupRemote + } + ::= { lcsSetupWanIncomingCallingNumbersTable 1 } + +LcsSetupWanIncomingCallingNumbersEntry ::= SEQUENCE { + lcsSetupWanIncomingCallingNumbersEntryDialupRemote DisplayString, + lcsSetupWanIncomingCallingNumbersEntryPeer DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.6.1.1 +lcsSetupWanIncomingCallingNumbersEntryDialupRemote OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanIncomingCallingNumbersEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.6.1.2 +lcsSetupWanIncomingCallingNumbersEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanIncomingCallingNumbersEntry 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.7 +lcsSetupWanDialPrefix OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWan 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.2.8 +lcsSetupWanScriptsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWanScriptsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWan 8 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.2.8.1 +lcsSetupWanScriptsEntry OBJECT-TYPE + SYNTAX LcsSetupWanScriptsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWanScriptsEntryPeer + } + ::= { lcsSetupWanScriptsTable 1 } + +LcsSetupWanScriptsEntry ::= SEQUENCE { + lcsSetupWanScriptsEntryPeer DisplayString, + lcsSetupWanScriptsEntryScript DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.8.1.1 +lcsSetupWanScriptsEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..18)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanScriptsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.8.1.2 +lcsSetupWanScriptsEntryScript OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..58)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanScriptsEntry 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.9 +lcsSetupWanProtect OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eNumber (2), + eScreened (4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWan 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.10 +lcsSetupWanCallbackAttempts OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWan 10 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.2.11 +lcsSetupWanRouterInterfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWanRouterInterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWan 11 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.2.11.1 +lcsSetupWanRouterInterfaceEntry OBJECT-TYPE + SYNTAX LcsSetupWanRouterInterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWanRouterInterfaceEntryIfc + } + ::= { lcsSetupWanRouterInterfaceTable 1 } + +LcsSetupWanRouterInterfaceEntry ::= SEQUENCE { + lcsSetupWanRouterInterfaceEntryIfc INTEGER, + lcsSetupWanRouterInterfaceEntryMsnEaz DisplayString, + lcsSetupWanRouterInterfaceEntryClip INTEGER, + lcsSetupWanRouterInterfaceEntryYc INTEGER, + lcsSetupWanRouterInterfaceEntryAcceptCalls INTEGER, + lcsSetupWanRouterInterfaceEntryTypeOfInterface Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.11.1.1 +lcsSetupWanRouterInterfaceEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eS01 (257), + eModem (513), + eDsl1 (2049), + eDsl2 (2050), + eDsl3 (2051), + eDsl4 (2052), + eAdsl (8193), + eVdsl (16385) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanRouterInterfaceEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.11.1.2 +lcsSetupWanRouterInterfaceEntryMsnEaz OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..30)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanRouterInterfaceEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.11.1.3 +lcsSetupWanRouterInterfaceEntryClip OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanRouterInterfaceEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.11.1.8 +lcsSetupWanRouterInterfaceEntryYc OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanRouterInterfaceEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.11.1.9 +lcsSetupWanRouterInterfaceEntryAcceptCalls OBJECT-TYPE + SYNTAX INTEGER { + eAll (0), + eNone (128) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanRouterInterfaceEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.11.1.10 +lcsSetupWanRouterInterfaceEntryTypeOfInterface OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanRouterInterfaceEntry 10 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.2.13 +lcsSetupWanManualDialing OBJECT IDENTIFIER ::= { lcsSetupWan 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.13.1 +lcsSetupWanManualDialingConnect OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanManualDialing 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.13.2 +lcsSetupWanManualDialingDisconnect OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanManualDialing 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.18 +lcsSetupWanBackupDelaySeconds OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWan 18 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.2.19 +lcsSetupWanDslBroadbandPeersTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWanDslBroadbandPeersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWan 19 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.2.19.1 +lcsSetupWanDslBroadbandPeersEntry OBJECT-TYPE + SYNTAX LcsSetupWanDslBroadbandPeersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWanDslBroadbandPeersEntryPeer + } + ::= { lcsSetupWanDslBroadbandPeersTable 1 } + +LcsSetupWanDslBroadbandPeersEntry ::= SEQUENCE { + lcsSetupWanDslBroadbandPeersEntryPeer DisplayString, + lcsSetupWanDslBroadbandPeersEntryShTime Integer32, + lcsSetupWanDslBroadbandPeersEntryWanLayer DisplayString, + lcsSetupWanDslBroadbandPeersEntryAcName DisplayString, + lcsSetupWanDslBroadbandPeersEntryServicename DisplayString, + lcsSetupWanDslBroadbandPeersEntryAtmVpi Integer32, + lcsSetupWanDslBroadbandPeersEntryAtmVci Integer32, + lcsSetupWanDslBroadbandPeersEntryUserDefMac MacAddress, + lcsSetupWanDslBroadbandPeersEntryDslIfcS DisplayString, + lcsSetupWanDslBroadbandPeersEntryMacType INTEGER, + lcsSetupWanDslBroadbandPeersEntryVlanId Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.19.1.1 +lcsSetupWanDslBroadbandPeersEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanDslBroadbandPeersEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.19.1.3 +lcsSetupWanDslBroadbandPeersEntryShTime OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanDslBroadbandPeersEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.19.1.5 +lcsSetupWanDslBroadbandPeersEntryWanLayer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..9)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanDslBroadbandPeersEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.19.1.9 +lcsSetupWanDslBroadbandPeersEntryAcName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanDslBroadbandPeersEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.19.1.10 +lcsSetupWanDslBroadbandPeersEntryServicename OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanDslBroadbandPeersEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.19.1.11 +lcsSetupWanDslBroadbandPeersEntryAtmVpi OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanDslBroadbandPeersEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.19.1.12 +lcsSetupWanDslBroadbandPeersEntryAtmVci OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanDslBroadbandPeersEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.19.1.13 +lcsSetupWanDslBroadbandPeersEntryUserDefMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanDslBroadbandPeersEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.19.1.14 +lcsSetupWanDslBroadbandPeersEntryDslIfcS OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..8)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanDslBroadbandPeersEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.19.1.15 +lcsSetupWanDslBroadbandPeersEntryMacType OBJECT-TYPE + SYNTAX INTEGER { + eLocal (0), + eGlobal (1), + eUserDef (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanDslBroadbandPeersEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.19.1.16 +lcsSetupWanDslBroadbandPeersEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanDslBroadbandPeersEntry 16 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.2.20 +lcsSetupWanIpListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWanIpListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWan 20 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.2.20.1 +lcsSetupWanIpListEntry OBJECT-TYPE + SYNTAX LcsSetupWanIpListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWanIpListEntryPeer + } + ::= { lcsSetupWanIpListTable 1 } + +LcsSetupWanIpListEntry ::= SEQUENCE { + lcsSetupWanIpListEntryPeer DisplayString, + lcsSetupWanIpListEntryIpAddress IpAddress, + lcsSetupWanIpListEntryIpNetmask IpAddress, + lcsSetupWanIpListEntryGateway IpAddress, + lcsSetupWanIpListEntryDnsDefault IpAddress, + lcsSetupWanIpListEntryDnsBackup IpAddress, + lcsSetupWanIpListEntryNbnsDefault IpAddress, + lcsSetupWanIpListEntryNbnsBackup IpAddress, + lcsSetupWanIpListEntryMasqIpAddr IpAddress + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.20.1.1 +lcsSetupWanIpListEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanIpListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.20.1.2 +lcsSetupWanIpListEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanIpListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.20.1.3 +lcsSetupWanIpListEntryIpNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanIpListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.20.1.4 +lcsSetupWanIpListEntryGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanIpListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.20.1.5 +lcsSetupWanIpListEntryDnsDefault OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanIpListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.20.1.6 +lcsSetupWanIpListEntryDnsBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanIpListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.20.1.7 +lcsSetupWanIpListEntryNbnsDefault OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanIpListEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.20.1.8 +lcsSetupWanIpListEntryNbnsBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanIpListEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.20.1.9 +lcsSetupWanIpListEntryMasqIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanIpListEntry 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.2.21 +lcsSetupWanPptpPeersTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWanPptpPeersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWan 21 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.2.21.1 +lcsSetupWanPptpPeersEntry OBJECT-TYPE + SYNTAX LcsSetupWanPptpPeersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWanPptpPeersEntryPeer + } + ::= { lcsSetupWanPptpPeersTable 1 } + +LcsSetupWanPptpPeersEntry ::= SEQUENCE { + lcsSetupWanPptpPeersEntryPeer DisplayString, + lcsSetupWanPptpPeersEntryPort Integer32, + lcsSetupWanPptpPeersEntryShTime Integer32, + lcsSetupWanPptpPeersEntryRtgTag Integer32, + lcsSetupWanPptpPeersEntryIpAddress DisplayString, + lcsSetupWanPptpPeersEntryEncryption INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.21.1.1 +lcsSetupWanPptpPeersEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanPptpPeersEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.21.1.3 +lcsSetupWanPptpPeersEntryPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanPptpPeersEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.21.1.4 +lcsSetupWanPptpPeersEntryShTime OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanPptpPeersEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.21.1.5 +lcsSetupWanPptpPeersEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanPptpPeersEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.21.1.6 +lcsSetupWanPptpPeersEntryIpAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanPptpPeersEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.21.1.7 +lcsSetupWanPptpPeersEntryEncryption OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + e128Bits (64), + e56Bits (192), + e40Bits (224) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanPptpPeersEntry 7 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.2.22 +lcsSetupWanRadius OBJECT IDENTIFIER ::= { lcsSetupWan 22 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.22.1 +lcsSetupWanRadiusOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eExclusive (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanRadius 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.22.2 +lcsSetupWanRadiusServerAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanRadius 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.22.3 +lcsSetupWanRadiusAuthPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanRadius 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.22.4 +lcsSetupWanRadiusSecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanRadius 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.22.5 +lcsSetupWanRadiusPppOperation OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eExclusive (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanRadius 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.22.6 +lcsSetupWanRadiusClipOperation OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eExclusive (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanRadius 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.22.7 +lcsSetupWanRadiusClipPassword OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanRadius 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.22.8 +lcsSetupWanRadiusLoopbackAddr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanRadius 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.22.9 +lcsSetupWanRadiusProtocol OBJECT-TYPE + SYNTAX INTEGER { + eRadius (0), + eRadsec (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanRadius 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.22.10 +lcsSetupWanRadiusAuthProtocols OBJECT-TYPE + SYNTAX BITS { + eNone (0), + eMsChapv2 (2), + eMsChap (3), + eChap (4), + ePap (5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanRadius 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.22.11 +lcsSetupWanRadiusServerHostname OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanRadius 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.22.20 +lcsSetupWanRadiusL2tpOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eExclusive (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanRadius 20 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.22.21 +lcsSetupWanRadiusL2tpServerHostname OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanRadius 21 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.22.22 +lcsSetupWanRadiusL2tpAuthPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanRadius 22 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.22.23 +lcsSetupWanRadiusL2tpLoopbackAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanRadius 23 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.22.24 +lcsSetupWanRadiusL2tpProtocol OBJECT-TYPE + SYNTAX INTEGER { + eRadius (0), + eRadsec (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanRadius 24 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.22.25 +lcsSetupWanRadiusL2tpSecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanRadius 25 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.22.26 +lcsSetupWanRadiusL2tpPassword OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanRadius 26 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.2.23 +lcsSetupWanPollingTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWanPollingTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWan 23 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.2.23.1 +lcsSetupWanPollingTableEntry OBJECT-TYPE + SYNTAX LcsSetupWanPollingTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWanPollingTableEntryPeer + } + ::= { lcsSetupWanPollingTableTable 1 } + +LcsSetupWanPollingTableEntry ::= SEQUENCE { + lcsSetupWanPollingTableEntryPeer DisplayString, + lcsSetupWanPollingTableEntryIpAddress1 IpAddress, + lcsSetupWanPollingTableEntryTime Integer32, + lcsSetupWanPollingTableEntryTry Integer32, + lcsSetupWanPollingTableEntryIpAddress2 IpAddress, + lcsSetupWanPollingTableEntryIpAddress3 IpAddress, + lcsSetupWanPollingTableEntryIpAddress4 IpAddress, + lcsSetupWanPollingTableEntryLoopbackAddr DisplayString, + lcsSetupWanPollingTableEntryType INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.23.1.1 +lcsSetupWanPollingTableEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanPollingTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.23.1.2 +lcsSetupWanPollingTableEntryIpAddress1 OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanPollingTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.23.1.3 +lcsSetupWanPollingTableEntryTime OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanPollingTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.23.1.4 +lcsSetupWanPollingTableEntryTry OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanPollingTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.23.1.5 +lcsSetupWanPollingTableEntryIpAddress2 OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanPollingTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.23.1.6 +lcsSetupWanPollingTableEntryIpAddress3 OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanPollingTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.23.1.7 +lcsSetupWanPollingTableEntryIpAddress4 OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanPollingTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.23.1.8 +lcsSetupWanPollingTableEntryLoopbackAddr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanPollingTableEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.23.1.9 +lcsSetupWanPollingTableEntryType OBJECT-TYPE + SYNTAX INTEGER { + eForced (0), + eAuto (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanPollingTableEntry 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.2.24 +lcsSetupWanBackupPeersTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWanBackupPeersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWan 24 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.2.24.1 +lcsSetupWanBackupPeersEntry OBJECT-TYPE + SYNTAX LcsSetupWanBackupPeersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWanBackupPeersEntryPeer + } + ::= { lcsSetupWanBackupPeersTable 1 } + +LcsSetupWanBackupPeersEntry ::= SEQUENCE { + lcsSetupWanBackupPeersEntryPeer DisplayString, + lcsSetupWanBackupPeersEntryAlternativePeers DisplayString, + lcsSetupWanBackupPeersEntryHead INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.24.1.1 +lcsSetupWanBackupPeersEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..18)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanBackupPeersEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.24.1.2 +lcsSetupWanBackupPeersEntryAlternativePeers OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..53)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanBackupPeersEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.24.1.3 +lcsSetupWanBackupPeersEntryHead OBJECT-TYPE + SYNTAX INTEGER { + eLast (0), + eFirst (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanBackupPeersEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.2.25 +lcsSetupWanActionTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWanActionTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWan 25 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.2.25.1 +lcsSetupWanActionTableEntry OBJECT-TYPE + SYNTAX LcsSetupWanActionTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWanActionTableEntryIndex + } + ::= { lcsSetupWanActionTableTable 1 } + +LcsSetupWanActionTableEntry ::= SEQUENCE { + lcsSetupWanActionTableEntryIndex Integer32, + lcsSetupWanActionTableEntryHostName DisplayString, + lcsSetupWanActionTableEntryPeer DisplayString, + lcsSetupWanActionTableEntryLockTime Integer32, + lcsSetupWanActionTableEntryCondition INTEGER, + lcsSetupWanActionTableEntryAction DisplayString, + lcsSetupWanActionTableEntryCheckFor DisplayString, + lcsSetupWanActionTableEntryActive INTEGER, + lcsSetupWanActionTableEntryOwner DisplayString, + lcsSetupWanActionTableEntryRoutingTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.25.1.1 +lcsSetupWanActionTableEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanActionTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.25.1.2 +lcsSetupWanActionTableEntryHostName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanActionTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.25.1.3 +lcsSetupWanActionTableEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanActionTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.25.1.4 +lcsSetupWanActionTableEntryLockTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanActionTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.25.1.5 +lcsSetupWanActionTableEntryCondition OBJECT-TYPE + SYNTAX INTEGER { + eEstablish (0), + eDisconnect (1), + eEnd (2), + eFailure (3), + eEstablishFailure (4), + eBudgetExhausted (5), + eBudgetReleased (6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanActionTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.25.1.6 +lcsSetupWanActionTableEntryAction OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..250)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanActionTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.25.1.7 +lcsSetupWanActionTableEntryCheckFor OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..50)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanActionTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.25.1.8 +lcsSetupWanActionTableEntryActive OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanActionTableEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.25.1.9 +lcsSetupWanActionTableEntryOwner OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanActionTableEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.25.1.10 +lcsSetupWanActionTableEntryRoutingTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanActionTableEntry 10 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.2.26 +lcsSetupWanMtuListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWanMtuListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWan 26 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.2.26.1 +lcsSetupWanMtuListEntry OBJECT-TYPE + SYNTAX LcsSetupWanMtuListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWanMtuListEntryPeer + } + ::= { lcsSetupWanMtuListTable 1 } + +LcsSetupWanMtuListEntry ::= SEQUENCE { + lcsSetupWanMtuListEntryPeer DisplayString, + lcsSetupWanMtuListEntryMtu Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.26.1.1 +lcsSetupWanMtuListEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanMtuListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.26.1.2 +lcsSetupWanMtuListEntryMtu OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanMtuListEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.2.30 +lcsSetupWanAdditionalPptpGatewaysTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWanAdditionalPptpGatewaysEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWan 30 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.2.30.1 +lcsSetupWanAdditionalPptpGatewaysEntry OBJECT-TYPE + SYNTAX LcsSetupWanAdditionalPptpGatewaysEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWanAdditionalPptpGatewaysEntryPeer + } + ::= { lcsSetupWanAdditionalPptpGatewaysTable 1 } + +LcsSetupWanAdditionalPptpGatewaysEntry ::= SEQUENCE { + lcsSetupWanAdditionalPptpGatewaysEntryPeer DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryBeginWith INTEGER, + lcsSetupWanAdditionalPptpGatewaysEntryGateway1 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag1 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway2 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag2 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway3 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag3 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway4 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag4 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway5 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag5 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway6 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag6 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway7 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag7 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway8 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag8 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway9 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag9 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway10 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag10 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway11 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag11 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway12 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag12 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway13 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag13 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway14 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag14 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway15 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag15 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway16 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag16 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway17 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag17 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway18 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag18 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway19 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag19 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway20 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag20 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway21 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag21 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway22 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag22 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway23 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag23 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway24 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag24 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway25 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag25 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway26 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag26 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway27 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag27 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway28 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag28 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway29 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag29 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway30 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag30 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway31 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag31 Integer32, + lcsSetupWanAdditionalPptpGatewaysEntryGateway32 DisplayString, + lcsSetupWanAdditionalPptpGatewaysEntryRtgTag32 Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.1 +lcsSetupWanAdditionalPptpGatewaysEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.2 +lcsSetupWanAdditionalPptpGatewaysEntryBeginWith OBJECT-TYPE + SYNTAX INTEGER { + eLastUsed (0), + eFirst (1), + eRandom (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.3 +lcsSetupWanAdditionalPptpGatewaysEntryGateway1 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.4 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag1 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.5 +lcsSetupWanAdditionalPptpGatewaysEntryGateway2 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.6 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag2 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.7 +lcsSetupWanAdditionalPptpGatewaysEntryGateway3 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.8 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag3 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.9 +lcsSetupWanAdditionalPptpGatewaysEntryGateway4 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.10 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag4 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.11 +lcsSetupWanAdditionalPptpGatewaysEntryGateway5 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.12 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag5 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.13 +lcsSetupWanAdditionalPptpGatewaysEntryGateway6 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.14 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag6 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.15 +lcsSetupWanAdditionalPptpGatewaysEntryGateway7 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.16 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag7 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.17 +lcsSetupWanAdditionalPptpGatewaysEntryGateway8 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.18 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag8 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.19 +lcsSetupWanAdditionalPptpGatewaysEntryGateway9 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.20 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag9 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.21 +lcsSetupWanAdditionalPptpGatewaysEntryGateway10 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.22 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag10 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.23 +lcsSetupWanAdditionalPptpGatewaysEntryGateway11 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.24 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag11 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 24 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.25 +lcsSetupWanAdditionalPptpGatewaysEntryGateway12 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 25 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.26 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag12 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 26 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.27 +lcsSetupWanAdditionalPptpGatewaysEntryGateway13 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 27 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.28 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag13 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 28 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.29 +lcsSetupWanAdditionalPptpGatewaysEntryGateway14 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 29 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.30 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag14 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 30 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.31 +lcsSetupWanAdditionalPptpGatewaysEntryGateway15 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 31 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.32 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag15 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 32 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.33 +lcsSetupWanAdditionalPptpGatewaysEntryGateway16 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 33 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.34 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag16 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 34 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.35 +lcsSetupWanAdditionalPptpGatewaysEntryGateway17 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 35 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.36 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag17 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 36 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.37 +lcsSetupWanAdditionalPptpGatewaysEntryGateway18 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 37 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.38 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag18 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 38 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.39 +lcsSetupWanAdditionalPptpGatewaysEntryGateway19 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 39 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.40 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag19 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 40 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.41 +lcsSetupWanAdditionalPptpGatewaysEntryGateway20 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 41 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.42 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag20 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 42 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.43 +lcsSetupWanAdditionalPptpGatewaysEntryGateway21 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 43 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.44 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag21 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 44 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.45 +lcsSetupWanAdditionalPptpGatewaysEntryGateway22 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 45 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.46 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag22 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 46 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.47 +lcsSetupWanAdditionalPptpGatewaysEntryGateway23 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 47 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.48 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag23 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 48 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.49 +lcsSetupWanAdditionalPptpGatewaysEntryGateway24 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 49 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.50 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag24 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 50 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.51 +lcsSetupWanAdditionalPptpGatewaysEntryGateway25 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 51 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.52 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag25 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 52 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.53 +lcsSetupWanAdditionalPptpGatewaysEntryGateway26 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 53 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.54 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag26 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 54 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.55 +lcsSetupWanAdditionalPptpGatewaysEntryGateway27 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 55 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.56 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag27 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 56 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.57 +lcsSetupWanAdditionalPptpGatewaysEntryGateway28 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 57 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.58 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag28 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 58 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.59 +lcsSetupWanAdditionalPptpGatewaysEntryGateway29 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 59 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.60 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag29 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 60 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.61 +lcsSetupWanAdditionalPptpGatewaysEntryGateway30 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 61 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.62 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag30 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 62 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.63 +lcsSetupWanAdditionalPptpGatewaysEntryGateway31 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 63 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.64 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag31 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 64 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.65 +lcsSetupWanAdditionalPptpGatewaysEntryGateway32 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 65 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.30.1.66 +lcsSetupWanAdditionalPptpGatewaysEntryRtgTag32 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWanAdditionalPptpGatewaysEntry 66 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.31 +lcsSetupWanPptpSourceCheck OBJECT-TYPE + SYNTAX INTEGER { + eAddress (0), + eTagPlusAddress (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWan 31 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.2.35 +lcsSetupWanL2tpEndpointsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWanL2tpEndpointsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWan 35 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.2.35.1 +lcsSetupWanL2tpEndpointsEntry OBJECT-TYPE + SYNTAX LcsSetupWanL2tpEndpointsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWanL2tpEndpointsEntryIdentifier + } + ::= { lcsSetupWanL2tpEndpointsTable 1 } + +LcsSetupWanL2tpEndpointsEntry ::= SEQUENCE { + lcsSetupWanL2tpEndpointsEntryIdentifier DisplayString, + lcsSetupWanL2tpEndpointsEntryIpAddress DisplayString, + lcsSetupWanL2tpEndpointsEntryRtgTag Integer32, + lcsSetupWanL2tpEndpointsEntryPort Integer32, + lcsSetupWanL2tpEndpointsEntryPoll Integer32, + lcsSetupWanL2tpEndpointsEntryHostname DisplayString, + lcsSetupWanL2tpEndpointsEntryPassword DisplayString, + lcsSetupWanL2tpEndpointsEntryAuthPeer INTEGER, + lcsSetupWanL2tpEndpointsEntryHide INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.35.1.1 +lcsSetupWanL2tpEndpointsEntryIdentifier OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpEndpointsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.35.1.2 +lcsSetupWanL2tpEndpointsEntryIpAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpEndpointsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.35.1.3 +lcsSetupWanL2tpEndpointsEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpEndpointsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.35.1.4 +lcsSetupWanL2tpEndpointsEntryPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpEndpointsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.35.1.5 +lcsSetupWanL2tpEndpointsEntryPoll OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpEndpointsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.35.1.6 +lcsSetupWanL2tpEndpointsEntryHostname OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpEndpointsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.35.1.7 +lcsSetupWanL2tpEndpointsEntryPassword OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpEndpointsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.35.1.8 +lcsSetupWanL2tpEndpointsEntryAuthPeer OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpEndpointsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.35.1.9 +lcsSetupWanL2tpEndpointsEntryHide OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpEndpointsEntry 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.2.36 +lcsSetupWanL2tpAdditionalGatewaysTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWanL2tpAdditionalGatewaysEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWan 36 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.2.36.1 +lcsSetupWanL2tpAdditionalGatewaysEntry OBJECT-TYPE + SYNTAX LcsSetupWanL2tpAdditionalGatewaysEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWanL2tpAdditionalGatewaysEntryIdentifier + } + ::= { lcsSetupWanL2tpAdditionalGatewaysTable 1 } + +LcsSetupWanL2tpAdditionalGatewaysEntry ::= SEQUENCE { + lcsSetupWanL2tpAdditionalGatewaysEntryIdentifier DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryBeginWith INTEGER, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway1 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag1 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway2 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag2 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway3 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag3 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway4 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag4 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway5 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag5 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway6 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag6 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway7 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag7 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway8 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag8 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway9 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag9 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway10 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag10 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway11 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag11 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway12 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag12 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway13 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag13 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway14 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag14 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway15 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag15 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway16 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag16 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway17 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag17 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway18 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag18 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway19 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag19 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway20 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag20 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway21 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag21 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway22 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag22 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway23 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag23 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway24 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag24 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway25 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag25 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway26 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag26 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway27 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag27 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway28 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag28 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway29 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag29 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway30 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag30 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway31 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag31 Integer32, + lcsSetupWanL2tpAdditionalGatewaysEntryGateway32 DisplayString, + lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag32 Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.1 +lcsSetupWanL2tpAdditionalGatewaysEntryIdentifier OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.2 +lcsSetupWanL2tpAdditionalGatewaysEntryBeginWith OBJECT-TYPE + SYNTAX INTEGER { + eLastUsed (0), + eFirst (1), + eRandom (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.3 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway1 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.4 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag1 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.5 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway2 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.6 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag2 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.7 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway3 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.8 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag3 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.9 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway4 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.10 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag4 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.11 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway5 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.12 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag5 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.13 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway6 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.14 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag6 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.15 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway7 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.16 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag7 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.17 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway8 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.18 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag8 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.19 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway9 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.20 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag9 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.21 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway10 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.22 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag10 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.23 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway11 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.24 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag11 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 24 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.25 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway12 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 25 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.26 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag12 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 26 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.27 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway13 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 27 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.28 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag13 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 28 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.29 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway14 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 29 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.30 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag14 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 30 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.31 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway15 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 31 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.32 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag15 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 32 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.33 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway16 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 33 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.34 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag16 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 34 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.35 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway17 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 35 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.36 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag17 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 36 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.37 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway18 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 37 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.38 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag18 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 38 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.39 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway19 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 39 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.40 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag19 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 40 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.41 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway20 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 41 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.42 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag20 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 42 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.43 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway21 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 43 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.44 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag21 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 44 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.45 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway22 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 45 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.46 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag22 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 46 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.47 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway23 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 47 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.48 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag23 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 48 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.49 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway24 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 49 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.50 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag24 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 50 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.51 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway25 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 51 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.52 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag25 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 52 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.53 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway26 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 53 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.54 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag26 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 54 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.55 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway27 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 55 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.56 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag27 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 56 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.57 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway28 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 57 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.58 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag28 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 58 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.59 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway29 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 59 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.60 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag29 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 60 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.61 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway30 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 61 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.62 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag30 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 62 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.63 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway31 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 63 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.64 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag31 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 64 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.65 +lcsSetupWanL2tpAdditionalGatewaysEntryGateway32 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 65 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.36.1.66 +lcsSetupWanL2tpAdditionalGatewaysEntryRtgTag32 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpAdditionalGatewaysEntry 66 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.2.37 +lcsSetupWanL2tpPeersTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWanL2tpPeersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWan 37 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.2.37.1 +lcsSetupWanL2tpPeersEntry OBJECT-TYPE + SYNTAX LcsSetupWanL2tpPeersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWanL2tpPeersEntryPeer + } + ::= { lcsSetupWanL2tpPeersTable 1 } + +LcsSetupWanL2tpPeersEntry ::= SEQUENCE { + lcsSetupWanL2tpPeersEntryPeer DisplayString, + lcsSetupWanL2tpPeersEntryL2tpEndpoint DisplayString, + lcsSetupWanL2tpPeersEntryShTime Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.37.1.1 +lcsSetupWanL2tpPeersEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpPeersEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.37.1.2 +lcsSetupWanL2tpPeersEntryL2tpEndpoint OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpPeersEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.37.1.3 +lcsSetupWanL2tpPeersEntryShTime OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanL2tpPeersEntry 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.38 +lcsSetupWanL2tpSourceCheck OBJECT-TYPE + SYNTAX INTEGER { + eAddress (0), + eTagPlusAddress (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWan 38 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.2.40 +lcsSetupWanDsLiteTunnelTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWanDsLiteTunnelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWan 40 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.2.40.1 +lcsSetupWanDsLiteTunnelEntry OBJECT-TYPE + SYNTAX LcsSetupWanDsLiteTunnelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWanDsLiteTunnelEntryName + } + ::= { lcsSetupWanDsLiteTunnelTable 1 } + +LcsSetupWanDsLiteTunnelEntry ::= SEQUENCE { + lcsSetupWanDsLiteTunnelEntryName DisplayString, + lcsSetupWanDsLiteTunnelEntryGatewayAddress DisplayString, + lcsSetupWanDsLiteTunnelEntryRtgTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.40.1.1 +lcsSetupWanDsLiteTunnelEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanDsLiteTunnelEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.40.1.2 +lcsSetupWanDsLiteTunnelEntryGatewayAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanDsLiteTunnelEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.40.1.3 +lcsSetupWanDsLiteTunnelEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanDsLiteTunnelEntry 3 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.2.45 +lcsSetupWanX25Bridge OBJECT IDENTIFIER ::= { lcsSetupWan 45 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.2.45.2 +lcsSetupWanX25BridgeOutgoingCallsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWanX25BridgeOutgoingCallsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanX25Bridge 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.2.45.2.1 +lcsSetupWanX25BridgeOutgoingCallsEntry OBJECT-TYPE + SYNTAX LcsSetupWanX25BridgeOutgoingCallsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWanX25BridgeOutgoingCallsEntryName + } + ::= { lcsSetupWanX25BridgeOutgoingCallsTable 1 } + +LcsSetupWanX25BridgeOutgoingCallsEntry ::= SEQUENCE { + lcsSetupWanX25BridgeOutgoingCallsEntryName DisplayString, + lcsSetupWanX25BridgeOutgoingCallsEntryPrio Integer32, + lcsSetupWanX25BridgeOutgoingCallsEntryTerminalIp IpAddress, + lcsSetupWanX25BridgeOutgoingCallsEntryTerminalPort Integer32, + lcsSetupWanX25BridgeOutgoingCallsEntryLoopbackAddress DisplayString, + lcsSetupWanX25BridgeOutgoingCallsEntryLocalPort Integer32, + lcsSetupWanX25BridgeOutgoingCallsEntryIsdnRemote DisplayString, + lcsSetupWanX25BridgeOutgoingCallsEntryIsdnLocal DisplayString, + lcsSetupWanX25BridgeOutgoingCallsEntryX25Remote DisplayString, + lcsSetupWanX25BridgeOutgoingCallsEntryX25Local DisplayString, + lcsSetupWanX25BridgeOutgoingCallsEntryProtocolId Integer32, + lcsSetupWanX25BridgeOutgoingCallsEntryUserdata DisplayString, + lcsSetupWanX25BridgeOutgoingCallsEntryPayloadSize Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.45.2.1.1 +lcsSetupWanX25BridgeOutgoingCallsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanX25BridgeOutgoingCallsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.45.2.1.2 +lcsSetupWanX25BridgeOutgoingCallsEntryPrio OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanX25BridgeOutgoingCallsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.45.2.1.3 +lcsSetupWanX25BridgeOutgoingCallsEntryTerminalIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanX25BridgeOutgoingCallsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.45.2.1.4 +lcsSetupWanX25BridgeOutgoingCallsEntryTerminalPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanX25BridgeOutgoingCallsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.45.2.1.5 +lcsSetupWanX25BridgeOutgoingCallsEntryLoopbackAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanX25BridgeOutgoingCallsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.45.2.1.6 +lcsSetupWanX25BridgeOutgoingCallsEntryLocalPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanX25BridgeOutgoingCallsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.45.2.1.7 +lcsSetupWanX25BridgeOutgoingCallsEntryIsdnRemote OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..21)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanX25BridgeOutgoingCallsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.45.2.1.8 +lcsSetupWanX25BridgeOutgoingCallsEntryIsdnLocal OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..21)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanX25BridgeOutgoingCallsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.45.2.1.9 +lcsSetupWanX25BridgeOutgoingCallsEntryX25Remote OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..14)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanX25BridgeOutgoingCallsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.45.2.1.10 +lcsSetupWanX25BridgeOutgoingCallsEntryX25Local OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..14)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanX25BridgeOutgoingCallsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.45.2.1.11 +lcsSetupWanX25BridgeOutgoingCallsEntryProtocolId OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanX25BridgeOutgoingCallsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.45.2.1.12 +lcsSetupWanX25BridgeOutgoingCallsEntryUserdata OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..8)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanX25BridgeOutgoingCallsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.2.45.2.1.13 +lcsSetupWanX25BridgeOutgoingCallsEntryPayloadSize OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanX25BridgeOutgoingCallsEntry 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.45.4 +lcsSetupWanX25BridgeDisconnectDelay OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanX25Bridge 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.2.45.5 +lcsSetupWanX25BridgeDataTrace OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eOn (1), + eExtended (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWanX25Bridge 5 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.3 +lcsSetupCharges OBJECT IDENTIFIER ::= { lcsSetup 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.3.1 +lcsSetupChargesBudgetUnits OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCharges 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.3.2 +lcsSetupChargesDaysPerPeriod OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCharges 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.3.3 +lcsSetupChargesSpareUnits OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCharges 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.3.4 +lcsSetupChargesRouterUnits OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCharges 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.3.5 +lcsSetupChargesTableBudgetTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupChargesTableBudgetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCharges 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.3.5.1 +lcsSetupChargesTableBudgetEntry OBJECT-TYPE + SYNTAX LcsSetupChargesTableBudgetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupChargesTableBudgetEntryIfc + } + ::= { lcsSetupChargesTableBudgetTable 1 } + +LcsSetupChargesTableBudgetEntry ::= SEQUENCE { + lcsSetupChargesTableBudgetEntryIfc INTEGER, + lcsSetupChargesTableBudgetEntryBudgetUnits Integer32, + lcsSetupChargesTableBudgetEntrySpareBudget Integer32, + lcsSetupChargesTableBudgetEntryTotalUnits Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.3.5.1.1 +lcsSetupChargesTableBudgetEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eRouterSerial (1), + eLancapi (2), + eAb1 (3), + eAb2 (4), + eAb3 (5), + eAb4 (6), + eTimeModul (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupChargesTableBudgetEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.3.5.1.2 +lcsSetupChargesTableBudgetEntryBudgetUnits OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupChargesTableBudgetEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.3.5.1.3 +lcsSetupChargesTableBudgetEntrySpareBudget OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupChargesTableBudgetEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.3.5.1.4 +lcsSetupChargesTableBudgetEntryTotalUnits OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupChargesTableBudgetEntry 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.3.6 +lcsSetupChargesTotalUnits OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCharges 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.3.7 +lcsSetupChargesTimeTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupChargesTimeTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCharges 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.3.7.1 +lcsSetupChargesTimeTableEntry OBJECT-TYPE + SYNTAX LcsSetupChargesTimeTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupChargesTimeTableEntryIfc + } + ::= { lcsSetupChargesTimeTableTable 1 } + +LcsSetupChargesTimeTableEntry ::= SEQUENCE { + lcsSetupChargesTimeTableEntryIfc INTEGER, + lcsSetupChargesTimeTableEntryBudgetMinutes Integer32, + lcsSetupChargesTimeTableEntrySpareMinutes Integer32, + lcsSetupChargesTimeTableEntryMinutesActive Integer32, + lcsSetupChargesTimeTableEntryMinutesPassive Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.3.7.1.1 +lcsSetupChargesTimeTableEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eRouterDslBroadband (1), + eRouterSerial (2), + eLancapi (3), + eAb1 (4), + eAb2 (5), + eAb3 (6), + eAb4 (7), + eTimeModul (255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupChargesTimeTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.3.7.1.2 +lcsSetupChargesTimeTableEntryBudgetMinutes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupChargesTimeTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.3.7.1.3 +lcsSetupChargesTimeTableEntrySpareMinutes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupChargesTimeTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.3.7.1.4 +lcsSetupChargesTimeTableEntryMinutesActive OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupChargesTimeTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.3.7.1.5 +lcsSetupChargesTimeTableEntryMinutesPassive OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupChargesTimeTableEntry 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.3.8 +lcsSetupChargesDslBroadbandMinutesBudget OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCharges 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.3.9 +lcsSetupChargesSpareDslBroadbandMinutes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCharges 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.3.10 +lcsSetupChargesRouterDslBroadbandMinutesActive OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCharges 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.3.11 +lcsSetupChargesAdditionalDslBroadbandBudget OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCharges 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.3.12 +lcsSetupChargesActivateAdditionalBudget OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCharges 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.3.13 +lcsSetupChargesDialupMinutesBudget OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCharges 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.3.14 +lcsSetupChargesSpareDialupMinutes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCharges 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.3.15 +lcsSetupChargesDialupMinutesActive OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCharges 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.3.16 +lcsSetupChargesResetBudgets OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCharges 16 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.3.17 +lcsSetupChargesVolumeBudgetsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupChargesVolumeBudgetsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupCharges 17 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.3.17.1 +lcsSetupChargesVolumeBudgetsEntry OBJECT-TYPE + SYNTAX LcsSetupChargesVolumeBudgetsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupChargesVolumeBudgetsEntryPeer + } + ::= { lcsSetupChargesVolumeBudgetsTable 1 } + +LcsSetupChargesVolumeBudgetsEntry ::= SEQUENCE { + lcsSetupChargesVolumeBudgetsEntryPeer DisplayString, + lcsSetupChargesVolumeBudgetsEntryLimitMb Integer32, + lcsSetupChargesVolumeBudgetsEntryAction BITS + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.3.17.1.1 +lcsSetupChargesVolumeBudgetsEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupChargesVolumeBudgetsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.3.17.1.2 +lcsSetupChargesVolumeBudgetsEntryLimitMb OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupChargesVolumeBudgetsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.3.17.1.3 +lcsSetupChargesVolumeBudgetsEntryAction OBJECT-TYPE + SYNTAX BITS { + eDisconnect (4), + eMail (5), + eSyslog (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupChargesVolumeBudgetsEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.3.18 +lcsSetupChargesFreeNetworksTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupChargesFreeNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupCharges 18 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.3.18.1 +lcsSetupChargesFreeNetworksEntry OBJECT-TYPE + SYNTAX LcsSetupChargesFreeNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupChargesFreeNetworksEntryPeer + } + ::= { lcsSetupChargesFreeNetworksTable 1 } + +LcsSetupChargesFreeNetworksEntry ::= SEQUENCE { + lcsSetupChargesFreeNetworksEntryPeer DisplayString, + lcsSetupChargesFreeNetworksEntryFreeNetworks DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.3.18.1.1 +lcsSetupChargesFreeNetworksEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupChargesFreeNetworksEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.3.18.1.2 +lcsSetupChargesFreeNetworksEntryFreeNetworks OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..100)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupChargesFreeNetworksEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.3.19 +lcsSetupChargesBudgetControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupChargesBudgetControlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupCharges 19 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.3.19.1 +lcsSetupChargesBudgetControlEntry OBJECT-TYPE + SYNTAX LcsSetupChargesBudgetControlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupChargesBudgetControlEntryPeer + } + ::= { lcsSetupChargesBudgetControlTable 1 } + +LcsSetupChargesBudgetControlEntry ::= SEQUENCE { + lcsSetupChargesBudgetControlEntryPeer DisplayString, + lcsSetupChargesBudgetControlEntryDay Integer32, + lcsSetupChargesBudgetControlEntryHour Integer32, + lcsSetupChargesBudgetControlEntryMinute Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.3.19.1.1 +lcsSetupChargesBudgetControlEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupChargesBudgetControlEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.3.19.1.2 +lcsSetupChargesBudgetControlEntryDay OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupChargesBudgetControlEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.3.19.1.3 +lcsSetupChargesBudgetControlEntryHour OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupChargesBudgetControlEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.3.19.1.4 +lcsSetupChargesBudgetControlEntryMinute OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupChargesBudgetControlEntry 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.3.20 +lcsSetupChargesChargingEmail OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupCharges 20 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.4 +lcsSetupLan OBJECT IDENTIFIER ::= { lcsSetup 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.4.2 +lcsSetupLanMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLan 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.4.3 +lcsSetupLanSpareHeap OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLan 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.4.8 +lcsSetupLanTraceMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLan 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.4.9 +lcsSetupLanTraceLevel OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLan 9 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.4.10 +lcsSetupLanIeee8021x OBJECT IDENTIFIER ::= { lcsSetupLan 10 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.4.10.1 +lcsSetupLanIeee8021xSupplicantIfcSetupTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupLanIeee8021xSupplicantIfcSetupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanIeee8021x 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.4.10.1.1 +lcsSetupLanIeee8021xSupplicantIfcSetupEntry OBJECT-TYPE + SYNTAX LcsSetupLanIeee8021xSupplicantIfcSetupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupLanIeee8021xSupplicantIfcSetupEntryIfc + } + ::= { lcsSetupLanIeee8021xSupplicantIfcSetupTable 1 } + +LcsSetupLanIeee8021xSupplicantIfcSetupEntry ::= SEQUENCE { + lcsSetupLanIeee8021xSupplicantIfcSetupEntryIfc INTEGER, + lcsSetupLanIeee8021xSupplicantIfcSetupEntryMethod INTEGER, + lcsSetupLanIeee8021xSupplicantIfcSetupEntryCredentials DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.10.1.1.1 +lcsSetupLanIeee8021xSupplicantIfcSetupEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (1), + eLan2 (2), + eLan3 (3), + eLan4 (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanIeee8021xSupplicantIfcSetupEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.10.1.1.2 +lcsSetupLanIeee8021xSupplicantIfcSetupEntryMethod OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eMd5 (1024), + eTls (3328), + eTtlsMd5 (5380), + eTtlsPap (5383), + eTtlsChap (5384), + eTtlsMschapv2 (5402), + eTtlsMschap (5567), + ePeapGtc (6406), + ePeapMschapv2 (6426) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanIeee8021xSupplicantIfcSetupEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.10.1.1.3 +lcsSetupLanIeee8021xSupplicantIfcSetupEntryCredentials OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanIeee8021xSupplicantIfcSetupEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.4.10.2 +lcsSetupLanIeee8021xAuthenticatorIfcSetupTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupLanIeee8021xAuthenticatorIfcSetupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIeee8021x 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.4.10.2.1 +lcsSetupLanIeee8021xAuthenticatorIfcSetupEntry OBJECT-TYPE + SYNTAX LcsSetupLanIeee8021xAuthenticatorIfcSetupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupLanIeee8021xAuthenticatorIfcSetupEntryIfc + } + ::= { lcsSetupLanIeee8021xAuthenticatorIfcSetupTable 1 } + +LcsSetupLanIeee8021xAuthenticatorIfcSetupEntry ::= SEQUENCE { + lcsSetupLanIeee8021xAuthenticatorIfcSetupEntryIfc INTEGER, + lcsSetupLanIeee8021xAuthenticatorIfcSetupEntryOperating INTEGER, + lcsSetupLanIeee8021xAuthenticatorIfcSetupEntryMode INTEGER, + lcsSetupLanIeee8021xAuthenticatorIfcSetupEntryRadiusServer DisplayString, + lcsSetupLanIeee8021xAuthenticatorIfcSetupEntryMacAuthBypass INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.10.2.1.1 +lcsSetupLanIeee8021xAuthenticatorIfcSetupEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (1), + eLan2 (2), + eLan3 (3), + eLan4 (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIeee8021xAuthenticatorIfcSetupEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.10.2.1.2 +lcsSetupLanIeee8021xAuthenticatorIfcSetupEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIeee8021xAuthenticatorIfcSetupEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.10.2.1.3 +lcsSetupLanIeee8021xAuthenticatorIfcSetupEntryMode OBJECT-TYPE + SYNTAX INTEGER { + eSingleHost (0), + eMultipleHost (1), + eMultipleAuth (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIeee8021xAuthenticatorIfcSetupEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.10.2.1.4 +lcsSetupLanIeee8021xAuthenticatorIfcSetupEntryRadiusServer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIeee8021xAuthenticatorIfcSetupEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.10.2.1.5 +lcsSetupLanIeee8021xAuthenticatorIfcSetupEntryMacAuthBypass OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIeee8021xAuthenticatorIfcSetupEntry 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.4.11 +lcsSetupLanLinkupReportDelayMs OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLan 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.4.12 +lcsSetupLanHnat OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLan 12 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.4.13 +lcsSetupLanIfcBundl OBJECT IDENTIFIER ::= { lcsSetupLan 13 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.4.13.1 +lcsSetupLanIfcBundlInterfacesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupLanIfcBundlInterfacesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIfcBundl 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.4.13.1.1 +lcsSetupLanIfcBundlInterfacesEntry OBJECT-TYPE + SYNTAX LcsSetupLanIfcBundlInterfacesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupLanIfcBundlInterfacesEntryInterface + } + ::= { lcsSetupLanIfcBundlInterfacesTable 1 } + +LcsSetupLanIfcBundlInterfacesEntry ::= SEQUENCE { + lcsSetupLanIfcBundlInterfacesEntryInterface DisplayString, + lcsSetupLanIfcBundlInterfacesEntryOperating INTEGER, + lcsSetupLanIfcBundlInterfacesEntryProtocol INTEGER, + lcsSetupLanIfcBundlInterfacesEntryMacAddress MacAddress, + lcsSetupLanIfcBundlInterfacesEntryInterfaceA INTEGER, + lcsSetupLanIfcBundlInterfacesEntryInterfaceB INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.13.1.1.1 +lcsSetupLanIfcBundlInterfacesEntryInterface OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..18)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIfcBundlInterfacesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.13.1.1.2 +lcsSetupLanIfcBundlInterfacesEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIfcBundlInterfacesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.13.1.1.3 +lcsSetupLanIfcBundlInterfacesEntryProtocol OBJECT-TYPE + SYNTAX INTEGER { + ePrp (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIfcBundlInterfacesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.13.1.1.4 +lcsSetupLanIfcBundlInterfacesEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIfcBundlInterfacesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.13.1.1.5 +lcsSetupLanIfcBundlInterfacesEntryInterfaceA OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (256), + eLan2 (257), + eWlan1 (512), + eWlan2 (513), + eP2p11 (768), + eP2p12 (769), + eP2p13 (770), + eP2p14 (771), + eP2p15 (772), + eP2p16 (773), + eP2p21 (774), + eP2p22 (775), + eP2p23 (776), + eP2p24 (777), + eP2p25 (778), + eP2p26 (779), + eP2p17 (799), + eP2p18 (800), + eP2p19 (801), + eP2p110 (802), + eP2p111 (803), + eP2p112 (804), + eP2p113 (805), + eP2p114 (806), + eP2p115 (807), + eP2p116 (808), + eP2p27 (831), + eP2p28 (832), + eP2p29 (833), + eP2p210 (834), + eP2p211 (835), + eP2p212 (836), + eP2p213 (837), + eP2p214 (838), + eP2p215 (839), + eP2p216 (840), + eWlan12 (1024), + eWlan13 (1025), + eWlan14 (1026), + eWlan15 (1027), + eWlan16 (1028), + eWlan17 (1029), + eWlan18 (1030), + eWlan22 (1031), + eWlan23 (1032), + eWlan24 (1033), + eWlan25 (1034), + eWlan26 (1035), + eWlan27 (1036), + eWlan28 (1037) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIfcBundlInterfacesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.13.1.1.6 +lcsSetupLanIfcBundlInterfacesEntryInterfaceB OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (256), + eLan2 (257), + eWlan1 (512), + eWlan2 (513), + eP2p11 (768), + eP2p12 (769), + eP2p13 (770), + eP2p14 (771), + eP2p15 (772), + eP2p16 (773), + eP2p21 (774), + eP2p22 (775), + eP2p23 (776), + eP2p24 (777), + eP2p25 (778), + eP2p26 (779), + eP2p17 (799), + eP2p18 (800), + eP2p19 (801), + eP2p110 (802), + eP2p111 (803), + eP2p112 (804), + eP2p113 (805), + eP2p114 (806), + eP2p115 (807), + eP2p116 (808), + eP2p27 (831), + eP2p28 (832), + eP2p29 (833), + eP2p210 (834), + eP2p211 (835), + eP2p212 (836), + eP2p213 (837), + eP2p214 (838), + eP2p215 (839), + eP2p216 (840), + eWlan12 (1024), + eWlan13 (1025), + eWlan14 (1026), + eWlan15 (1027), + eWlan16 (1028), + eWlan17 (1029), + eWlan18 (1030), + eWlan22 (1031), + eWlan23 (1032), + eWlan24 (1033), + eWlan25 (1034), + eWlan26 (1035), + eWlan27 (1036), + eWlan28 (1037) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIfcBundlInterfacesEntry 6 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.4.13.11 +lcsSetupLanIfcBundlPrp OBJECT IDENTIFIER ::= { lcsSetupLanIfcBundl 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.4.13.11.1 +lcsSetupLanIfcBundlPrpInterfacesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupLanIfcBundlPrpInterfacesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIfcBundlPrp 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.4.13.11.1.1 +lcsSetupLanIfcBundlPrpInterfacesEntry OBJECT-TYPE + SYNTAX LcsSetupLanIfcBundlPrpInterfacesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupLanIfcBundlPrpInterfacesEntryInterface + } + ::= { lcsSetupLanIfcBundlPrpInterfacesTable 1 } + +LcsSetupLanIfcBundlPrpInterfacesEntry ::= SEQUENCE { + lcsSetupLanIfcBundlPrpInterfacesEntryInterface DisplayString, + lcsSetupLanIfcBundlPrpInterfacesEntryDuplicateAccept INTEGER, + lcsSetupLanIfcBundlPrpInterfacesEntryTransparentMode INTEGER, + lcsSetupLanIfcBundlPrpInterfacesEntryLifeCheckInterval Integer32, + lcsSetupLanIfcBundlPrpInterfacesEntryNodeForgetTime Integer32, + lcsSetupLanIfcBundlPrpInterfacesEntryEntryForgetTime Integer32, + lcsSetupLanIfcBundlPrpInterfacesEntryNodeRebootInterval Integer32, + lcsSetupLanIfcBundlPrpInterfacesEntryDupEliminationBufferSize Integer32, + lcsSetupLanIfcBundlPrpInterfacesEntrySendSupervisionFrames INTEGER, + lcsSetupLanIfcBundlPrpInterfacesEntryNodeName DisplayString, + lcsSetupLanIfcBundlPrpInterfacesEntryEvaluateSupFrames INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.13.11.1.1.1 +lcsSetupLanIfcBundlPrpInterfacesEntryInterface OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..18)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIfcBundlPrpInterfacesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.13.11.1.1.2 +lcsSetupLanIfcBundlPrpInterfacesEntryDuplicateAccept OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIfcBundlPrpInterfacesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.13.11.1.1.3 +lcsSetupLanIfcBundlPrpInterfacesEntryTransparentMode OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIfcBundlPrpInterfacesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.13.11.1.1.4 +lcsSetupLanIfcBundlPrpInterfacesEntryLifeCheckInterval OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIfcBundlPrpInterfacesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.13.11.1.1.5 +lcsSetupLanIfcBundlPrpInterfacesEntryNodeForgetTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIfcBundlPrpInterfacesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.13.11.1.1.6 +lcsSetupLanIfcBundlPrpInterfacesEntryEntryForgetTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIfcBundlPrpInterfacesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.13.11.1.1.7 +lcsSetupLanIfcBundlPrpInterfacesEntryNodeRebootInterval OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIfcBundlPrpInterfacesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.13.11.1.1.8 +lcsSetupLanIfcBundlPrpInterfacesEntryDupEliminationBufferSize OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIfcBundlPrpInterfacesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.13.11.1.1.9 +lcsSetupLanIfcBundlPrpInterfacesEntrySendSupervisionFrames OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eOwnMacOnly (1), + eAllNodes (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIfcBundlPrpInterfacesEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.13.11.1.1.10 +lcsSetupLanIfcBundlPrpInterfacesEntryNodeName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIfcBundlPrpInterfacesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.4.13.11.1.1.11 +lcsSetupLanIfcBundlPrpInterfacesEntryEvaluateSupFrames OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanIfcBundlPrpInterfacesEntry 11 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.7 +lcsSetupTcpIp OBJECT IDENTIFIER ::= { lcsSetup 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.7.1 +lcsSetupTcpIpOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIp 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.7.6 +lcsSetupTcpIpAccessListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupTcpIpAccessListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIp 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.7.6.1 +lcsSetupTcpIpAccessListEntry OBJECT-TYPE + SYNTAX LcsSetupTcpIpAccessListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupTcpIpAccessListEntryIpAddress, + lcsSetupTcpIpAccessListEntryIpNetmask, + lcsSetupTcpIpAccessListEntryRtgTag + } + ::= { lcsSetupTcpIpAccessListTable 1 } + +LcsSetupTcpIpAccessListEntry ::= SEQUENCE { + lcsSetupTcpIpAccessListEntryIpAddress IpAddress, + lcsSetupTcpIpAccessListEntryIpNetmask IpAddress, + lcsSetupTcpIpAccessListEntryRtgTag Integer32, + lcsSetupTcpIpAccessListEntryComment DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.7.6.1.1 +lcsSetupTcpIpAccessListEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpAccessListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.7.6.1.2 +lcsSetupTcpIpAccessListEntryIpNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpAccessListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.7.6.1.3 +lcsSetupTcpIpAccessListEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpAccessListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.7.6.1.4 +lcsSetupTcpIpAccessListEntryComment OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupTcpIpAccessListEntry 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.7.7 +lcsSetupTcpIpDnsDefault OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIp 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.7.8 +lcsSetupTcpIpDnsBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIp 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.7.9 +lcsSetupTcpIpNbnsDefault OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIp 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.7.10 +lcsSetupTcpIpNbnsBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIp 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.7.11 +lcsSetupTcpIpArpAgingMinutes OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIp 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.7.16 +lcsSetupTcpIpArpTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupTcpIpArpTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIp 16 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.7.16.1 +lcsSetupTcpIpArpTableEntry OBJECT-TYPE + SYNTAX LcsSetupTcpIpArpTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupTcpIpArpTableEntryIpAddress + } + ::= { lcsSetupTcpIpArpTableTable 1 } + +LcsSetupTcpIpArpTableEntry ::= SEQUENCE { + lcsSetupTcpIpArpTableEntryIpAddress IpAddress, + lcsSetupTcpIpArpTableEntryMacAddress MacAddress, + lcsSetupTcpIpArpTableEntryLastAccess Integer32, + lcsSetupTcpIpArpTableEntryEthernetPort INTEGER, + lcsSetupTcpIpArpTableEntryPeer DisplayString, + lcsSetupTcpIpArpTableEntryVlanId Integer32, + lcsSetupTcpIpArpTableEntryConnect INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.7.16.1.1 +lcsSetupTcpIpArpTableEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpArpTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.7.16.1.2 +lcsSetupTcpIpArpTableEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpArpTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.7.16.1.3 +lcsSetupTcpIpArpTableEntryLastAccess OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpArpTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.7.16.1.5 +lcsSetupTcpIpArpTableEntryEthernetPort OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eUplink (1), + eEth1 (2), + eEth2 (3), + eEth3 (4), + eEth4 (5), + eWan (16), + eSfp1 (32) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpArpTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.7.16.1.6 +lcsSetupTcpIpArpTableEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpArpTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.7.16.1.7 +lcsSetupTcpIpArpTableEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpArpTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.7.16.1.8 +lcsSetupTcpIpArpTableEntryConnect OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (256), + eLan2 (257), + eLan3 (258), + eLan4 (259), + eLan5 (260), + eWlan1 (512), + eWlan2 (513), + eP2p11 (768), + eP2p12 (769), + eP2p13 (770), + eP2p14 (771), + eP2p15 (772), + eP2p16 (773), + eP2p21 (774), + eP2p22 (775), + eP2p23 (776), + eP2p24 (777), + eP2p25 (778), + eP2p26 (779), + eP2p17 (799), + eP2p18 (800), + eP2p19 (801), + eP2p110 (802), + eP2p111 (803), + eP2p112 (804), + eP2p113 (805), + eP2p114 (806), + eP2p115 (807), + eP2p116 (808), + eP2p27 (831), + eP2p28 (832), + eP2p29 (833), + eP2p210 (834), + eP2p211 (835), + eP2p212 (836), + eP2p213 (837), + eP2p214 (838), + eP2p215 (839), + eP2p216 (840), + eWlan12 (1024), + eWlan13 (1025), + eWlan14 (1026), + eWlan15 (1027), + eWlan16 (1028), + eWlan17 (1029), + eWlan18 (1030), + eWlan22 (1031), + eWlan23 (1032), + eWlan24 (1033), + eWlan25 (1034), + eWlan26 (1035), + eWlan27 (1036), + eWlan28 (1037), + eWlcTunnel1 (1792), + eWlcTunnel2 (1793), + eWlcTunnel3 (1794), + eWlcTunnel4 (1795), + eWlcTunnel5 (1796), + eWlcTunnel6 (1797), + eWlcTunnel7 (1798), + eWlcTunnel8 (1799), + eWlcTunnel9 (1800), + eWlcTunnel10 (1801), + eWlcTunnel11 (1802), + eWlcTunnel12 (1803), + eWlcTunnel13 (1804), + eWlcTunnel14 (1805), + eWlcTunnel15 (1806), + eWlcTunnel16 (1807), + eWlcTunnel17 (1808), + eWlcTunnel18 (1809), + eWlcTunnel19 (1810), + eWlcTunnel20 (1811), + eWlcTunnel21 (1812), + eWlcTunnel22 (1813), + eWlcTunnel23 (1814), + eWlcTunnel24 (1815), + eWlcTunnel25 (1816), + eWlcTunnel26 (1817), + eWlcTunnel27 (1818), + eWlcTunnel28 (1819), + eWlcTunnel29 (1820), + eWlcTunnel30 (1821), + eWlcTunnel31 (1822), + eWlcTunnel32 (1823), + eWlcTunnelAutowds (1824), + eBundle1 (2048), + eBundle2 (2049), + eWan (32768) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpArpTableEntry 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.7.17 +lcsSetupTcpIpLoopbackListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupTcpIpLoopbackListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIp 17 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.7.17.1 +lcsSetupTcpIpLoopbackListEntry OBJECT-TYPE + SYNTAX LcsSetupTcpIpLoopbackListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupTcpIpLoopbackListEntryName + } + ::= { lcsSetupTcpIpLoopbackListTable 1 } + +LcsSetupTcpIpLoopbackListEntry ::= SEQUENCE { + lcsSetupTcpIpLoopbackListEntryLoopbackAddr IpAddress, + lcsSetupTcpIpLoopbackListEntryName DisplayString, + lcsSetupTcpIpLoopbackListEntryRtgTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.7.17.1.1 +lcsSetupTcpIpLoopbackListEntryLoopbackAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpLoopbackListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.7.17.1.2 +lcsSetupTcpIpLoopbackListEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpLoopbackListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.7.17.1.3 +lcsSetupTcpIpLoopbackListEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpLoopbackListEntry 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.7.20 +lcsSetupTcpIpNonLocArpReplies OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIp 20 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.7.21 +lcsSetupTcpIpAliveTest OBJECT IDENTIFIER ::= { lcsSetupTcpIp 21 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.7.21.1 +lcsSetupTcpIpAliveTestTargetAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpAliveTest 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.7.21.2 +lcsSetupTcpIpAliveTestTestInterval OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpAliveTest 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.7.21.3 +lcsSetupTcpIpAliveTestRetryCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpAliveTest 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.7.21.4 +lcsSetupTcpIpAliveTestRetryInterval OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpAliveTest 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.7.21.5 +lcsSetupTcpIpAliveTestFailLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpAliveTest 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.7.21.6 +lcsSetupTcpIpAliveTestBootType OBJECT-TYPE + SYNTAX INTEGER { + eWarmBoot (0), + eColdBoot (1), + eAction (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpAliveTest 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.7.21.7 +lcsSetupTcpIpAliveTestAction OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupTcpIpAliveTest 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.7.22 +lcsSetupTcpIpIcmpOnArpTimeout OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIp 22 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.7.30 +lcsSetupTcpIpNetworkListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupTcpIpNetworkListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIp 30 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.7.30.1 +lcsSetupTcpIpNetworkListEntry OBJECT-TYPE + SYNTAX LcsSetupTcpIpNetworkListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupTcpIpNetworkListEntryNetworkName + } + ::= { lcsSetupTcpIpNetworkListTable 1 } + +LcsSetupTcpIpNetworkListEntry ::= SEQUENCE { + lcsSetupTcpIpNetworkListEntryNetworkName DisplayString, + lcsSetupTcpIpNetworkListEntryIpAddress IpAddress, + lcsSetupTcpIpNetworkListEntryIpNetmask IpAddress, + lcsSetupTcpIpNetworkListEntryVlanId Integer32, + lcsSetupTcpIpNetworkListEntryInterface INTEGER, + lcsSetupTcpIpNetworkListEntrySrcCheck INTEGER, + lcsSetupTcpIpNetworkListEntryType INTEGER, + lcsSetupTcpIpNetworkListEntryRtgTag Integer32, + lcsSetupTcpIpNetworkListEntryComment DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.7.30.1.1 +lcsSetupTcpIpNetworkListEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpNetworkListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.7.30.1.2 +lcsSetupTcpIpNetworkListEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpNetworkListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.7.30.1.3 +lcsSetupTcpIpNetworkListEntryIpNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpNetworkListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.7.30.1.4 +lcsSetupTcpIpNetworkListEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpNetworkListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.7.30.1.5 +lcsSetupTcpIpNetworkListEntryInterface OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (256), + eLan2 (257), + eLan3 (258), + eLan4 (259), + eLan5 (260), + eWlan1 (512), + eWlan2 (513), + eP2p11 (768), + eP2p12 (769), + eP2p13 (770), + eP2p14 (771), + eP2p15 (772), + eP2p16 (773), + eP2p21 (774), + eP2p22 (775), + eP2p23 (776), + eP2p24 (777), + eP2p25 (778), + eP2p26 (779), + eP2p17 (799), + eP2p18 (800), + eP2p19 (801), + eP2p110 (802), + eP2p111 (803), + eP2p112 (804), + eP2p113 (805), + eP2p114 (806), + eP2p115 (807), + eP2p116 (808), + eP2p27 (831), + eP2p28 (832), + eP2p29 (833), + eP2p210 (834), + eP2p211 (835), + eP2p212 (836), + eP2p213 (837), + eP2p214 (838), + eP2p215 (839), + eP2p216 (840), + eWlan12 (1024), + eWlan13 (1025), + eWlan14 (1026), + eWlan15 (1027), + eWlan16 (1028), + eWlan17 (1029), + eWlan18 (1030), + eWlan22 (1031), + eWlan23 (1032), + eWlan24 (1033), + eWlan25 (1034), + eWlan26 (1035), + eWlan27 (1036), + eWlan28 (1037), + eBrg1 (1536), + eBrg2 (1537), + eBrg3 (1538), + eBrg4 (1539), + eBrg5 (1540), + eBrg6 (1541), + eBrg7 (1542), + eBrg8 (1543), + eWlcTunnel1 (1792), + eWlcTunnel2 (1793), + eWlcTunnel3 (1794), + eWlcTunnel4 (1795), + eWlcTunnel5 (1796), + eWlcTunnel6 (1797), + eWlcTunnel7 (1798), + eWlcTunnel8 (1799), + eWlcTunnel9 (1800), + eWlcTunnel10 (1801), + eWlcTunnel11 (1802), + eWlcTunnel12 (1803), + eWlcTunnel13 (1804), + eWlcTunnel14 (1805), + eWlcTunnel15 (1806), + eWlcTunnel16 (1807), + eWlcTunnel17 (1808), + eWlcTunnel18 (1809), + eWlcTunnel19 (1810), + eWlcTunnel20 (1811), + eWlcTunnel21 (1812), + eWlcTunnel22 (1813), + eWlcTunnel23 (1814), + eWlcTunnel24 (1815), + eWlcTunnel25 (1816), + eWlcTunnel26 (1817), + eWlcTunnel27 (1818), + eWlcTunnel28 (1819), + eWlcTunnel29 (1820), + eWlcTunnel30 (1821), + eWlcTunnel31 (1822), + eWlcTunnel32 (1823), + eWlcTunnelAutowds (1824), + eBundle1 (2048), + eBundle2 (2049), + eAny (65535) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpNetworkListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.7.30.1.6 +lcsSetupTcpIpNetworkListEntrySrcCheck OBJECT-TYPE + SYNTAX INTEGER { + eLoose (0), + eStrict (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpNetworkListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.7.30.1.7 +lcsSetupTcpIpNetworkListEntryType OBJECT-TYPE + SYNTAX INTEGER { + eDisabled (0), + eIntranet (1), + eDmz (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpNetworkListEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.7.30.1.8 +lcsSetupTcpIpNetworkListEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpNetworkListEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.7.30.1.9 +lcsSetupTcpIpNetworkListEntryComment OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTcpIpNetworkListEntry 9 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.8 +lcsSetupIpRouter OBJECT IDENTIFIER ::= { lcsSetup 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.1 +lcsSetupIpRouterOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.8.2 +lcsSetupIpRouterIpRoutingTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpRouterIpRoutingTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.8.2.1 +lcsSetupIpRouterIpRoutingTableEntry OBJECT-TYPE + SYNTAX LcsSetupIpRouterIpRoutingTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpRouterIpRoutingTableEntryIpAddress, + lcsSetupIpRouterIpRoutingTableEntryIpNetmask, + lcsSetupIpRouterIpRoutingTableEntryRtgTag + } + ::= { lcsSetupIpRouterIpRoutingTableTable 1 } + +LcsSetupIpRouterIpRoutingTableEntry ::= SEQUENCE { + lcsSetupIpRouterIpRoutingTableEntryIpAddress IpAddress, + lcsSetupIpRouterIpRoutingTableEntryIpNetmask IpAddress, + lcsSetupIpRouterIpRoutingTableEntryPeerOrIp DisplayString, + lcsSetupIpRouterIpRoutingTableEntryDistance Integer32, + lcsSetupIpRouterIpRoutingTableEntryMasquerade INTEGER, + lcsSetupIpRouterIpRoutingTableEntryActive INTEGER, + lcsSetupIpRouterIpRoutingTableEntryComment DisplayString, + lcsSetupIpRouterIpRoutingTableEntryRtgTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.2.1.1 +lcsSetupIpRouterIpRoutingTableEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterIpRoutingTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.2.1.2 +lcsSetupIpRouterIpRoutingTableEntryIpNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterIpRoutingTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.2.1.3 +lcsSetupIpRouterIpRoutingTableEntryPeerOrIp OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterIpRoutingTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.2.1.4 +lcsSetupIpRouterIpRoutingTableEntryDistance OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterIpRoutingTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.2.1.5 +lcsSetupIpRouterIpRoutingTableEntryMasquerade OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eOn (1), + eIntranet (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterIpRoutingTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.2.1.6 +lcsSetupIpRouterIpRoutingTableEntryActive OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1), + eSemi (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterIpRoutingTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.2.1.7 +lcsSetupIpRouterIpRoutingTableEntryComment OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterIpRoutingTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.2.1.8 +lcsSetupIpRouterIpRoutingTableEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterIpRoutingTableEntry 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.5 +lcsSetupIpRouterProxyArp OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.6 +lcsSetupIpRouterSendIcmpRedirect OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter 6 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.8.7 +lcsSetupIpRouterRoutingMethod OBJECT IDENTIFIER ::= { lcsSetupIpRouter 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.7.1 +lcsSetupIpRouterRoutingMethodRoutingMethod OBJECT-TYPE + SYNTAX INTEGER { + eNormal (0), + eTypeOfService (1), + eDiffserv (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRoutingMethod 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.7.2 +lcsSetupIpRouterRoutingMethodIcmpRoutingMethod OBJECT-TYPE + SYNTAX INTEGER { + eNormal (0), + eReliable (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRoutingMethod 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.7.3 +lcsSetupIpRouterRoutingMethodSynAckSpeedup OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRoutingMethod 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.7.4 +lcsSetupIpRouterRoutingMethodL2L3Tagging OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eAuto (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRoutingMethod 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.7.5 +lcsSetupIpRouterRoutingMethodL3L2Tagging OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRoutingMethod 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.7.6 +lcsSetupIpRouterRoutingMethodRouteInternalServices OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRoutingMethod 6 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.8.8 +lcsSetupIpRouterRip OBJECT IDENTIFIER ::= { lcsSetupIpRouter 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.8.2 +lcsSetupIpRouterRipR1Mask OBJECT-TYPE + SYNTAX INTEGER { + eClass (0), + eAddress (1), + eClPlusAddr (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRip 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.8.8.4 +lcsSetupIpRouterRipWanSitesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpRouterRipWanSitesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRip 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.8.8.4.1 +lcsSetupIpRouterRipWanSitesEntry OBJECT-TYPE + SYNTAX LcsSetupIpRouterRipWanSitesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpRouterRipWanSitesEntryPeer + } + ::= { lcsSetupIpRouterRipWanSitesTable 1 } + +LcsSetupIpRouterRipWanSitesEntry ::= SEQUENCE { + lcsSetupIpRouterRipWanSitesEntryPeer DisplayString, + lcsSetupIpRouterRipWanSitesEntryRipType INTEGER, + lcsSetupIpRouterRipWanSitesEntryRipAccept INTEGER, + lcsSetupIpRouterRipWanSitesEntryMasquerade INTEGER, + lcsSetupIpRouterRipWanSitesEntryDftRtgTag Integer32, + lcsSetupIpRouterRipWanSitesEntryRtgTagList DisplayString, + lcsSetupIpRouterRipWanSitesEntryPoisonedReverse INTEGER, + lcsSetupIpRouterRipWanSitesEntryRfc2091 INTEGER, + lcsSetupIpRouterRipWanSitesEntryGateway IpAddress, + lcsSetupIpRouterRipWanSitesEntryRxFilter DisplayString, + lcsSetupIpRouterRipWanSitesEntryTxFilter DisplayString, + lcsSetupIpRouterRipWanSitesEntryRipSend INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.4.1.1 +lcsSetupIpRouterRipWanSitesEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipWanSitesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.4.1.2 +lcsSetupIpRouterRipWanSitesEntryRipType OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eRip1 (1), + eR1Comp (2), + eRip2 (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipWanSitesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.4.1.3 +lcsSetupIpRouterRipWanSitesEntryRipAccept OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipWanSitesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.4.1.4 +lcsSetupIpRouterRipWanSitesEntryMasquerade OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eOn (1), + eIntranet (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipWanSitesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.4.1.5 +lcsSetupIpRouterRipWanSitesEntryDftRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipWanSitesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.4.1.6 +lcsSetupIpRouterRipWanSitesEntryRtgTagList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..33)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipWanSitesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.4.1.7 +lcsSetupIpRouterRipWanSitesEntryPoisonedReverse OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipWanSitesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.4.1.8 +lcsSetupIpRouterRipWanSitesEntryRfc2091 OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipWanSitesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.4.1.9 +lcsSetupIpRouterRipWanSitesEntryGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipWanSitesEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.4.1.10 +lcsSetupIpRouterRipWanSitesEntryRxFilter OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipWanSitesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.4.1.11 +lcsSetupIpRouterRipWanSitesEntryTxFilter OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipWanSitesEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.4.1.12 +lcsSetupIpRouterRipWanSitesEntryRipSend OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipWanSitesEntry 12 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.8.8.5 +lcsSetupIpRouterRipLanSitesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpRouterRipLanSitesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRip 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.8.8.5.1 +lcsSetupIpRouterRipLanSitesEntry OBJECT-TYPE + SYNTAX LcsSetupIpRouterRipLanSitesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpRouterRipLanSitesEntryNetworkName + } + ::= { lcsSetupIpRouterRipLanSitesTable 1 } + +LcsSetupIpRouterRipLanSitesEntry ::= SEQUENCE { + lcsSetupIpRouterRipLanSitesEntryNetworkName DisplayString, + lcsSetupIpRouterRipLanSitesEntryRipType INTEGER, + lcsSetupIpRouterRipLanSitesEntryRipAccept INTEGER, + lcsSetupIpRouterRipLanSitesEntryPropagate INTEGER, + lcsSetupIpRouterRipLanSitesEntryDftRtgTag Integer32, + lcsSetupIpRouterRipLanSitesEntryRtgTagList DisplayString, + lcsSetupIpRouterRipLanSitesEntryPoisonedReverse INTEGER, + lcsSetupIpRouterRipLanSitesEntryRxFilter DisplayString, + lcsSetupIpRouterRipLanSitesEntryTxFilter DisplayString, + lcsSetupIpRouterRipLanSitesEntryRipSend INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.5.1.1 +lcsSetupIpRouterRipLanSitesEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipLanSitesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.5.1.2 +lcsSetupIpRouterRipLanSitesEntryRipType OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eRip1 (1), + eR1Comp (2), + eRip2 (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipLanSitesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.5.1.3 +lcsSetupIpRouterRipLanSitesEntryRipAccept OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipLanSitesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.5.1.4 +lcsSetupIpRouterRipLanSitesEntryPropagate OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipLanSitesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.5.1.5 +lcsSetupIpRouterRipLanSitesEntryDftRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipLanSitesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.5.1.6 +lcsSetupIpRouterRipLanSitesEntryRtgTagList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..33)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipLanSitesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.5.1.7 +lcsSetupIpRouterRipLanSitesEntryPoisonedReverse OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipLanSitesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.5.1.10 +lcsSetupIpRouterRipLanSitesEntryRxFilter OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipLanSitesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.5.1.11 +lcsSetupIpRouterRipLanSitesEntryTxFilter OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipLanSitesEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.5.1.12 +lcsSetupIpRouterRipLanSitesEntryRipSend OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipLanSitesEntry 12 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.8.8.6 +lcsSetupIpRouterRipParameter OBJECT IDENTIFIER ::= { lcsSetupIpRouterRip 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.8.6.1 +lcsSetupIpRouterRipParameterUpdate OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipParameter 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.8.6.2 +lcsSetupIpRouterRipParameterHolddown OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipParameter 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.8.6.3 +lcsSetupIpRouterRipParameterInvalidate OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipParameter 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.8.6.4 +lcsSetupIpRouterRipParameterFlush OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipParameter 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.8.6.5 +lcsSetupIpRouterRipParameterUpdDelay OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipParameter 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.8.6.6 +lcsSetupIpRouterRipParameterMaxHopcount OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipParameter 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.8.6.7 +lcsSetupIpRouterRipParameterRoutesPerFrame OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipParameter 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.8.6.8 +lcsSetupIpRouterRipParameterInterPacketDelay OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpRouterRipParameter 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.8.8.7 +lcsSetupIpRouterRipFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpRouterRipFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRip 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.8.8.7.1 +lcsSetupIpRouterRipFilterEntry OBJECT-TYPE + SYNTAX LcsSetupIpRouterRipFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpRouterRipFilterEntryName + } + ::= { lcsSetupIpRouterRipFilterTable 1 } + +LcsSetupIpRouterRipFilterEntry ::= SEQUENCE { + lcsSetupIpRouterRipFilterEntryName DisplayString, + lcsSetupIpRouterRipFilterEntryFilter DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.7.1.1 +lcsSetupIpRouterRipFilterEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..18)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipFilterEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.7.1.2 +lcsSetupIpRouterRipFilterEntryFilter OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipFilterEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.8.8.8 +lcsSetupIpRouterRipBestRoutesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpRouterRipBestRoutesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRip 8 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.8.8.8.1 +lcsSetupIpRouterRipBestRoutesEntry OBJECT-TYPE + SYNTAX LcsSetupIpRouterRipBestRoutesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpRouterRipBestRoutesEntryIpAddress, + lcsSetupIpRouterRipBestRoutesEntryIpNetmask, + lcsSetupIpRouterRipBestRoutesEntryRtgTag, + lcsSetupIpRouterRipBestRoutesEntryGateway + } + ::= { lcsSetupIpRouterRipBestRoutesTable 1 } + +LcsSetupIpRouterRipBestRoutesEntry ::= SEQUENCE { + lcsSetupIpRouterRipBestRoutesEntryIpAddress IpAddress, + lcsSetupIpRouterRipBestRoutesEntryIpNetmask IpAddress, + lcsSetupIpRouterRipBestRoutesEntryTime Integer32, + lcsSetupIpRouterRipBestRoutesEntryDistance Integer32, + lcsSetupIpRouterRipBestRoutesEntryGateway IpAddress, + lcsSetupIpRouterRipBestRoutesEntryRtgTag Integer32, + lcsSetupIpRouterRipBestRoutesEntryPeer DisplayString, + lcsSetupIpRouterRipBestRoutesEntryVlanId Integer32, + lcsSetupIpRouterRipBestRoutesEntryNetworkName DisplayString, + lcsSetupIpRouterRipBestRoutesEntryPort INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.8.1.1 +lcsSetupIpRouterRipBestRoutesEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipBestRoutesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.8.1.2 +lcsSetupIpRouterRipBestRoutesEntryIpNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipBestRoutesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.8.1.3 +lcsSetupIpRouterRipBestRoutesEntryTime OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipBestRoutesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.8.1.4 +lcsSetupIpRouterRipBestRoutesEntryDistance OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipBestRoutesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.8.1.5 +lcsSetupIpRouterRipBestRoutesEntryGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipBestRoutesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.8.1.6 +lcsSetupIpRouterRipBestRoutesEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipBestRoutesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.8.1.8 +lcsSetupIpRouterRipBestRoutesEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipBestRoutesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.8.1.10 +lcsSetupIpRouterRipBestRoutesEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipBestRoutesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.8.1.11 +lcsSetupIpRouterRipBestRoutesEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipBestRoutesEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.8.1.12 +lcsSetupIpRouterRipBestRoutesEntryPort OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (256), + eLan2 (257), + eLan3 (258), + eLan4 (259), + eLan5 (260), + eWlan1 (512), + eWlan2 (513), + eP2p11 (768), + eP2p12 (769), + eP2p13 (770), + eP2p14 (771), + eP2p15 (772), + eP2p16 (773), + eP2p21 (774), + eP2p22 (775), + eP2p23 (776), + eP2p24 (777), + eP2p25 (778), + eP2p26 (779), + eP2p17 (799), + eP2p18 (800), + eP2p19 (801), + eP2p110 (802), + eP2p111 (803), + eP2p112 (804), + eP2p113 (805), + eP2p114 (806), + eP2p115 (807), + eP2p116 (808), + eP2p27 (831), + eP2p28 (832), + eP2p29 (833), + eP2p210 (834), + eP2p211 (835), + eP2p212 (836), + eP2p213 (837), + eP2p214 (838), + eP2p215 (839), + eP2p216 (840), + eWlan12 (1024), + eWlan13 (1025), + eWlan14 (1026), + eWlan15 (1027), + eWlan16 (1028), + eWlan17 (1029), + eWlan18 (1030), + eWlan22 (1031), + eWlan23 (1032), + eWlan24 (1033), + eWlan25 (1034), + eWlan26 (1035), + eWlan27 (1036), + eWlan28 (1037), + eBrg1 (1536), + eBrg2 (1537), + eBrg3 (1538), + eBrg4 (1539), + eBrg5 (1540), + eBrg6 (1541), + eBrg7 (1542), + eBrg8 (1543), + eWlcTunnel1 (1792), + eWlcTunnel2 (1793), + eWlcTunnel3 (1794), + eWlcTunnel4 (1795), + eWlcTunnel5 (1796), + eWlcTunnel6 (1797), + eWlcTunnel7 (1798), + eWlcTunnel8 (1799), + eWlcTunnel9 (1800), + eWlcTunnel10 (1801), + eWlcTunnel11 (1802), + eWlcTunnel12 (1803), + eWlcTunnel13 (1804), + eWlcTunnel14 (1805), + eWlcTunnel15 (1806), + eWlcTunnel16 (1807), + eWlcTunnel17 (1808), + eWlcTunnel18 (1809), + eWlcTunnel19 (1810), + eWlcTunnel20 (1811), + eWlcTunnel21 (1812), + eWlcTunnel22 (1813), + eWlcTunnel23 (1814), + eWlcTunnel24 (1815), + eWlcTunnel25 (1816), + eWlcTunnel26 (1817), + eWlcTunnel27 (1818), + eWlcTunnel28 (1819), + eWlcTunnel29 (1820), + eWlcTunnel30 (1821), + eWlcTunnel31 (1822), + eWlcTunnel32 (1823), + eWlcTunnelAutowds (1824), + eBundle1 (2048), + eBundle2 (2049), + eAny (65535) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipBestRoutesEntry 12 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.8.8.9 +lcsSetupIpRouterRipAllRoutesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpRouterRipAllRoutesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRip 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.8.8.9.1 +lcsSetupIpRouterRipAllRoutesEntry OBJECT-TYPE + SYNTAX LcsSetupIpRouterRipAllRoutesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpRouterRipAllRoutesEntryIpAddress, + lcsSetupIpRouterRipAllRoutesEntryIpNetmask, + lcsSetupIpRouterRipAllRoutesEntryRtgTag, + lcsSetupIpRouterRipAllRoutesEntryGateway + } + ::= { lcsSetupIpRouterRipAllRoutesTable 1 } + +LcsSetupIpRouterRipAllRoutesEntry ::= SEQUENCE { + lcsSetupIpRouterRipAllRoutesEntryIpAddress IpAddress, + lcsSetupIpRouterRipAllRoutesEntryIpNetmask IpAddress, + lcsSetupIpRouterRipAllRoutesEntryTime Integer32, + lcsSetupIpRouterRipAllRoutesEntryDistance Integer32, + lcsSetupIpRouterRipAllRoutesEntryGateway IpAddress, + lcsSetupIpRouterRipAllRoutesEntryRtgTag Integer32, + lcsSetupIpRouterRipAllRoutesEntryPeer DisplayString, + lcsSetupIpRouterRipAllRoutesEntryVlanId Integer32, + lcsSetupIpRouterRipAllRoutesEntryNetworkName DisplayString, + lcsSetupIpRouterRipAllRoutesEntryPort INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.9.1.1 +lcsSetupIpRouterRipAllRoutesEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipAllRoutesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.9.1.2 +lcsSetupIpRouterRipAllRoutesEntryIpNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipAllRoutesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.9.1.3 +lcsSetupIpRouterRipAllRoutesEntryTime OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipAllRoutesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.9.1.4 +lcsSetupIpRouterRipAllRoutesEntryDistance OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipAllRoutesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.9.1.5 +lcsSetupIpRouterRipAllRoutesEntryGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipAllRoutesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.9.1.6 +lcsSetupIpRouterRipAllRoutesEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipAllRoutesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.9.1.8 +lcsSetupIpRouterRipAllRoutesEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipAllRoutesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.9.1.10 +lcsSetupIpRouterRipAllRoutesEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipAllRoutesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.9.1.11 +lcsSetupIpRouterRipAllRoutesEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipAllRoutesEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.8.9.1.12 +lcsSetupIpRouterRipAllRoutesEntryPort OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (256), + eLan2 (257), + eLan3 (258), + eLan4 (259), + eLan5 (260), + eWlan1 (512), + eWlan2 (513), + eP2p11 (768), + eP2p12 (769), + eP2p13 (770), + eP2p14 (771), + eP2p15 (772), + eP2p16 (773), + eP2p21 (774), + eP2p22 (775), + eP2p23 (776), + eP2p24 (777), + eP2p25 (778), + eP2p26 (779), + eP2p17 (799), + eP2p18 (800), + eP2p19 (801), + eP2p110 (802), + eP2p111 (803), + eP2p112 (804), + eP2p113 (805), + eP2p114 (806), + eP2p115 (807), + eP2p116 (808), + eP2p27 (831), + eP2p28 (832), + eP2p29 (833), + eP2p210 (834), + eP2p211 (835), + eP2p212 (836), + eP2p213 (837), + eP2p214 (838), + eP2p215 (839), + eP2p216 (840), + eWlan12 (1024), + eWlan13 (1025), + eWlan14 (1026), + eWlan15 (1027), + eWlan16 (1028), + eWlan17 (1029), + eWlan18 (1030), + eWlan22 (1031), + eWlan23 (1032), + eWlan24 (1033), + eWlan25 (1034), + eWlan26 (1035), + eWlan27 (1036), + eWlan28 (1037), + eBrg1 (1536), + eBrg2 (1537), + eBrg3 (1538), + eBrg4 (1539), + eBrg5 (1540), + eBrg6 (1541), + eBrg7 (1542), + eBrg8 (1543), + eWlcTunnel1 (1792), + eWlcTunnel2 (1793), + eWlcTunnel3 (1794), + eWlcTunnel4 (1795), + eWlcTunnel5 (1796), + eWlcTunnel6 (1797), + eWlcTunnel7 (1798), + eWlcTunnel8 (1799), + eWlcTunnel9 (1800), + eWlcTunnel10 (1801), + eWlcTunnel11 (1802), + eWlcTunnel12 (1803), + eWlcTunnel13 (1804), + eWlcTunnel14 (1805), + eWlcTunnel15 (1806), + eWlcTunnel16 (1807), + eWlcTunnel17 (1808), + eWlcTunnel18 (1809), + eWlcTunnel19 (1810), + eWlcTunnel20 (1811), + eWlcTunnel21 (1812), + eWlcTunnel22 (1813), + eWlcTunnel23 (1814), + eWlcTunnel24 (1815), + eWlcTunnel25 (1816), + eWlcTunnel26 (1817), + eWlcTunnel27 (1818), + eWlcTunnel28 (1819), + eWlcTunnel29 (1820), + eWlcTunnel30 (1821), + eWlcTunnel31 (1822), + eWlcTunnel32 (1823), + eWlcTunnelAutowds (1824), + eBundle1 (2048), + eBundle2 (2049), + eAny (65535) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterRipAllRoutesEntry 12 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.8.9 +lcsSetupIpRouter1NNat OBJECT IDENTIFIER ::= { lcsSetupIpRouter 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.9.1 +lcsSetupIpRouter1NNatTcpAgingSeconds OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNat 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.9.2 +lcsSetupIpRouter1NNatUdpAgingSeconds OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNat 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.9.3 +lcsSetupIpRouter1NNatIcmpAgingSeconds OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNat 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.8.9.4 +lcsSetupIpRouter1NNatServiceTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpRouter1NNatServiceTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNat 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.8.9.4.1 +lcsSetupIpRouter1NNatServiceTableEntry OBJECT-TYPE + SYNTAX LcsSetupIpRouter1NNatServiceTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpRouter1NNatServiceTableEntryDPortFrom, + lcsSetupIpRouter1NNatServiceTableEntryDPortTo, + lcsSetupIpRouter1NNatServiceTableEntryProtocol, + lcsSetupIpRouter1NNatServiceTableEntryPeer, + lcsSetupIpRouter1NNatServiceTableEntryWanAddress + } + ::= { lcsSetupIpRouter1NNatServiceTableTable 1 } + +LcsSetupIpRouter1NNatServiceTableEntry ::= SEQUENCE { + lcsSetupIpRouter1NNatServiceTableEntryDPortFrom Integer32, + lcsSetupIpRouter1NNatServiceTableEntryIntranetAddress IpAddress, + lcsSetupIpRouter1NNatServiceTableEntryDPortTo Integer32, + lcsSetupIpRouter1NNatServiceTableEntryMapPort Integer32, + lcsSetupIpRouter1NNatServiceTableEntryActive INTEGER, + lcsSetupIpRouter1NNatServiceTableEntryComment DisplayString, + lcsSetupIpRouter1NNatServiceTableEntryPeer DisplayString, + lcsSetupIpRouter1NNatServiceTableEntryProtocol INTEGER, + lcsSetupIpRouter1NNatServiceTableEntryWanAddress IpAddress + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.4.1.1 +lcsSetupIpRouter1NNatServiceTableEntryDPortFrom OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatServiceTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.4.1.2 +lcsSetupIpRouter1NNatServiceTableEntryIntranetAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatServiceTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.4.1.3 +lcsSetupIpRouter1NNatServiceTableEntryDPortTo OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatServiceTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.4.1.4 +lcsSetupIpRouter1NNatServiceTableEntryMapPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatServiceTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.4.1.5 +lcsSetupIpRouter1NNatServiceTableEntryActive OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatServiceTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.4.1.6 +lcsSetupIpRouter1NNatServiceTableEntryComment OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatServiceTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.4.1.7 +lcsSetupIpRouter1NNatServiceTableEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatServiceTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.4.1.8 +lcsSetupIpRouter1NNatServiceTableEntryProtocol OBJECT-TYPE + SYNTAX INTEGER { + eTcpPlusUdp (0), + eTcp (1), + eUdp (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatServiceTableEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.4.1.9 +lcsSetupIpRouter1NNatServiceTableEntryWanAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatServiceTableEntry 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.8.9.5 +lcsSetupIpRouter1NNatTable1NNatTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpRouter1NNatTable1NNatEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNat 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.8.9.5.1 +lcsSetupIpRouter1NNatTable1NNatEntry OBJECT-TYPE + SYNTAX LcsSetupIpRouter1NNatTable1NNatEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpRouter1NNatTable1NNatEntryIntranetAddress + } + ::= { lcsSetupIpRouter1NNatTable1NNatTable 1 } + +LcsSetupIpRouter1NNatTable1NNatEntry ::= SEQUENCE { + lcsSetupIpRouter1NNatTable1NNatEntryIntranetAddress IpAddress, + lcsSetupIpRouter1NNatTable1NNatEntrySourcePort Integer32, + lcsSetupIpRouter1NNatTable1NNatEntryProtocol INTEGER, + lcsSetupIpRouter1NNatTable1NNatEntryTimeout Integer32, + lcsSetupIpRouter1NNatTable1NNatEntryHandler DisplayString, + lcsSetupIpRouter1NNatTable1NNatEntryRemoteAddress IpAddress, + lcsSetupIpRouter1NNatTable1NNatEntryWanAddress IpAddress + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.5.1.1 +lcsSetupIpRouter1NNatTable1NNatEntryIntranetAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatTable1NNatEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.5.1.2 +lcsSetupIpRouter1NNatTable1NNatEntrySourcePort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatTable1NNatEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.5.1.3 +lcsSetupIpRouter1NNatTable1NNatEntryProtocol OBJECT-TYPE + SYNTAX INTEGER { + eIcmp (1), + eTcp (6), + eUdp (17) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatTable1NNatEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.5.1.4 +lcsSetupIpRouter1NNatTable1NNatEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatTable1NNatEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.5.1.5 +lcsSetupIpRouter1NNatTable1NNatEntryHandler OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatTable1NNatEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.5.1.6 +lcsSetupIpRouter1NNatTable1NNatEntryRemoteAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatTable1NNatEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.5.1.7 +lcsSetupIpRouter1NNatTable1NNatEntryWanAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpRouter1NNatTable1NNatEntry 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.9.6 +lcsSetupIpRouter1NNatFragments OBJECT-TYPE + SYNTAX INTEGER { + eFilter (0), + eRoute (1), + eReassemble (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNat 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.9.7 +lcsSetupIpRouter1NNatFragmentAgingSeconds OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNat 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.9.8 +lcsSetupIpRouter1NNatIpsecAgingSeconds OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNat 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.8.9.9 +lcsSetupIpRouter1NNatIpsecTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpRouter1NNatIpsecTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNat 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.8.9.9.1 +lcsSetupIpRouter1NNatIpsecTableEntry OBJECT-TYPE + SYNTAX LcsSetupIpRouter1NNatIpsecTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpRouter1NNatIpsecTableEntryRemoteAddress + } + ::= { lcsSetupIpRouter1NNatIpsecTableTable 1 } + +LcsSetupIpRouter1NNatIpsecTableEntry ::= SEQUENCE { + lcsSetupIpRouter1NNatIpsecTableEntryRemoteAddress IpAddress, + lcsSetupIpRouter1NNatIpsecTableEntryLocalAddress IpAddress, + lcsSetupIpRouter1NNatIpsecTableEntryRcHi DisplayString, + lcsSetupIpRouter1NNatIpsecTableEntryRcLo DisplayString, + lcsSetupIpRouter1NNatIpsecTableEntryLcHi DisplayString, + lcsSetupIpRouter1NNatIpsecTableEntryLcLo DisplayString, + lcsSetupIpRouter1NNatIpsecTableEntryRemoteSpi DisplayString, + lcsSetupIpRouter1NNatIpsecTableEntryLocalSpi DisplayString, + lcsSetupIpRouter1NNatIpsecTableEntryTimeout Integer32, + lcsSetupIpRouter1NNatIpsecTableEntryFlags DisplayString, + lcsSetupIpRouter1NNatIpsecTableEntryCo Integer32, + lcsSetupIpRouter1NNatIpsecTableEntryNl Integer32, + lcsSetupIpRouter1NNatIpsecTableEntryNr Integer32, + lcsSetupIpRouter1NNatIpsecTableEntryDp Integer32, + lcsSetupIpRouter1NNatIpsecTableEntryWanAddress IpAddress + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.9.1.1 +lcsSetupIpRouter1NNatIpsecTableEntryRemoteAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatIpsecTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.9.1.2 +lcsSetupIpRouter1NNatIpsecTableEntryLocalAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatIpsecTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.9.1.3 +lcsSetupIpRouter1NNatIpsecTableEntryRcHi OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatIpsecTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.9.1.4 +lcsSetupIpRouter1NNatIpsecTableEntryRcLo OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatIpsecTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.9.1.5 +lcsSetupIpRouter1NNatIpsecTableEntryLcHi OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatIpsecTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.9.1.6 +lcsSetupIpRouter1NNatIpsecTableEntryLcLo OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatIpsecTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.9.1.7 +lcsSetupIpRouter1NNatIpsecTableEntryRemoteSpi OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatIpsecTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.9.1.8 +lcsSetupIpRouter1NNatIpsecTableEntryLocalSpi OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatIpsecTableEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.9.1.9 +lcsSetupIpRouter1NNatIpsecTableEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatIpsecTableEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.9.1.10 +lcsSetupIpRouter1NNatIpsecTableEntryFlags OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..4)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatIpsecTableEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.9.1.11 +lcsSetupIpRouter1NNatIpsecTableEntryCo OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatIpsecTableEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.9.1.12 +lcsSetupIpRouter1NNatIpsecTableEntryNl OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatIpsecTableEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.9.1.13 +lcsSetupIpRouter1NNatIpsecTableEntryNr OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatIpsecTableEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.9.1.14 +lcsSetupIpRouter1NNatIpsecTableEntryDp OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNatIpsecTableEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.9.9.1.15 +lcsSetupIpRouter1NNatIpsecTableEntryWanAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpRouter1NNatIpsecTableEntry 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.9.10 +lcsSetupIpRouter1NNatIdSpoofing OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter1NNat 10 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.8.10 +lcsSetupIpRouterFirewall OBJECT IDENTIFIER ::= { lcsSetupIpRouter 10 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.8.10.1 +lcsSetupIpRouterFirewallObjectsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpRouterFirewallObjectsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewall 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.8.10.1.1 +lcsSetupIpRouterFirewallObjectsEntry OBJECT-TYPE + SYNTAX LcsSetupIpRouterFirewallObjectsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpRouterFirewallObjectsEntryName + } + ::= { lcsSetupIpRouterFirewallObjectsTable 1 } + +LcsSetupIpRouterFirewallObjectsEntry ::= SEQUENCE { + lcsSetupIpRouterFirewallObjectsEntryName DisplayString, + lcsSetupIpRouterFirewallObjectsEntryDescription DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.1.1.1 +lcsSetupIpRouterFirewallObjectsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallObjectsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.1.1.2 +lcsSetupIpRouterFirewallObjectsEntryDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallObjectsEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.8.10.2 +lcsSetupIpRouterFirewallRulesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpRouterFirewallRulesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewall 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.8.10.2.1 +lcsSetupIpRouterFirewallRulesEntry OBJECT-TYPE + SYNTAX LcsSetupIpRouterFirewallRulesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpRouterFirewallRulesEntryName + } + ::= { lcsSetupIpRouterFirewallRulesTable 1 } + +LcsSetupIpRouterFirewallRulesEntry ::= SEQUENCE { + lcsSetupIpRouterFirewallRulesEntryName DisplayString, + lcsSetupIpRouterFirewallRulesEntryProt DisplayString, + lcsSetupIpRouterFirewallRulesEntrySource DisplayString, + lcsSetupIpRouterFirewallRulesEntryDestination DisplayString, + lcsSetupIpRouterFirewallRulesEntryAction DisplayString, + lcsSetupIpRouterFirewallRulesEntryLinked INTEGER, + lcsSetupIpRouterFirewallRulesEntryPrio Integer32, + lcsSetupIpRouterFirewallRulesEntryFirewallRule INTEGER, + lcsSetupIpRouterFirewallRulesEntryVpnRule INTEGER, + lcsSetupIpRouterFirewallRulesEntryStateful INTEGER, + lcsSetupIpRouterFirewallRulesEntryComment DisplayString, + lcsSetupIpRouterFirewallRulesEntryRtgTag Integer32, + lcsSetupIpRouterFirewallRulesEntrySrcTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.2.1.1 +lcsSetupIpRouterFirewallRulesEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallRulesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.2.1.2 +lcsSetupIpRouterFirewallRulesEntryProt OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallRulesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.2.1.3 +lcsSetupIpRouterFirewallRulesEntrySource OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..40)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallRulesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.2.1.4 +lcsSetupIpRouterFirewallRulesEntryDestination OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..40)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallRulesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.2.1.7 +lcsSetupIpRouterFirewallRulesEntryAction OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..40)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallRulesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.2.1.8 +lcsSetupIpRouterFirewallRulesEntryLinked OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallRulesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.2.1.9 +lcsSetupIpRouterFirewallRulesEntryPrio OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallRulesEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.2.1.10 +lcsSetupIpRouterFirewallRulesEntryFirewallRule OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallRulesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.2.1.11 +lcsSetupIpRouterFirewallRulesEntryVpnRule OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallRulesEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.2.1.12 +lcsSetupIpRouterFirewallRulesEntryStateful OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallRulesEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.2.1.13 +lcsSetupIpRouterFirewallRulesEntryComment OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallRulesEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.2.1.14 +lcsSetupIpRouterFirewallRulesEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallRulesEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.2.1.15 +lcsSetupIpRouterFirewallRulesEntrySrcTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpRouterFirewallRulesEntry 15 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.8.10.3 +lcsSetupIpRouterFirewallFilterListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpRouterFirewallFilterListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewall 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.8.10.3.1 +lcsSetupIpRouterFirewallFilterListEntry OBJECT-TYPE + SYNTAX LcsSetupIpRouterFirewallFilterListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpRouterFirewallFilterListEntryIdx + } + ::= { lcsSetupIpRouterFirewallFilterListTable 1 } + +LcsSetupIpRouterFirewallFilterListEntry ::= SEQUENCE { + lcsSetupIpRouterFirewallFilterListEntryIdx Integer32, + lcsSetupIpRouterFirewallFilterListEntryProt Integer32, + lcsSetupIpRouterFirewallFilterListEntrySrcAddress IpAddress, + lcsSetupIpRouterFirewallFilterListEntrySrcNetmask IpAddress, + lcsSetupIpRouterFirewallFilterListEntrySSt Integer32, + lcsSetupIpRouterFirewallFilterListEntrySEnd Integer32, + lcsSetupIpRouterFirewallFilterListEntryDstAddress IpAddress, + lcsSetupIpRouterFirewallFilterListEntryDstNetmask IpAddress, + lcsSetupIpRouterFirewallFilterListEntryDSt Integer32, + lcsSetupIpRouterFirewallFilterListEntryDEnd Integer32, + lcsSetupIpRouterFirewallFilterListEntryAction DisplayString, + lcsSetupIpRouterFirewallFilterListEntrySrcMac DisplayString, + lcsSetupIpRouterFirewallFilterListEntryDstMac DisplayString, + lcsSetupIpRouterFirewallFilterListEntryLinked INTEGER, + lcsSetupIpRouterFirewallFilterListEntryPrio Integer32, + lcsSetupIpRouterFirewallFilterListEntryRtgTag Integer32, + lcsSetupIpRouterFirewallFilterListEntrySrcTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.3.1.1 +lcsSetupIpRouterFirewallFilterListEntryIdx OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallFilterListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.3.1.2 +lcsSetupIpRouterFirewallFilterListEntryProt OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallFilterListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.3.1.3 +lcsSetupIpRouterFirewallFilterListEntrySrcAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallFilterListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.3.1.4 +lcsSetupIpRouterFirewallFilterListEntrySrcNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallFilterListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.3.1.5 +lcsSetupIpRouterFirewallFilterListEntrySSt OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallFilterListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.3.1.6 +lcsSetupIpRouterFirewallFilterListEntrySEnd OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallFilterListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.3.1.7 +lcsSetupIpRouterFirewallFilterListEntryDstAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallFilterListEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.3.1.8 +lcsSetupIpRouterFirewallFilterListEntryDstNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallFilterListEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.3.1.9 +lcsSetupIpRouterFirewallFilterListEntryDSt OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallFilterListEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.3.1.10 +lcsSetupIpRouterFirewallFilterListEntryDEnd OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallFilterListEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.3.1.11 +lcsSetupIpRouterFirewallFilterListEntryAction OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallFilterListEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.3.1.13 +lcsSetupIpRouterFirewallFilterListEntrySrcMac OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallFilterListEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.3.1.14 +lcsSetupIpRouterFirewallFilterListEntryDstMac OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallFilterListEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.3.1.15 +lcsSetupIpRouterFirewallFilterListEntryLinked OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallFilterListEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.3.1.16 +lcsSetupIpRouterFirewallFilterListEntryPrio OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallFilterListEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.3.1.17 +lcsSetupIpRouterFirewallFilterListEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallFilterListEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.3.1.18 +lcsSetupIpRouterFirewallFilterListEntrySrcTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpRouterFirewallFilterListEntry 18 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.8.10.4 +lcsSetupIpRouterFirewallActionsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpRouterFirewallActionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewall 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.8.10.4.1 +lcsSetupIpRouterFirewallActionsEntry OBJECT-TYPE + SYNTAX LcsSetupIpRouterFirewallActionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpRouterFirewallActionsEntryName + } + ::= { lcsSetupIpRouterFirewallActionsTable 1 } + +LcsSetupIpRouterFirewallActionsEntry ::= SEQUENCE { + lcsSetupIpRouterFirewallActionsEntryName DisplayString, + lcsSetupIpRouterFirewallActionsEntryDescription DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.4.1.1 +lcsSetupIpRouterFirewallActionsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallActionsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.4.1.2 +lcsSetupIpRouterFirewallActionsEntryDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallActionsEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.8.10.5 +lcsSetupIpRouterFirewallConnectionListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpRouterFirewallConnectionListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewall 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.8.10.5.1 +lcsSetupIpRouterFirewallConnectionListEntry OBJECT-TYPE + SYNTAX LcsSetupIpRouterFirewallConnectionListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpRouterFirewallConnectionListEntrySrcAddress, + lcsSetupIpRouterFirewallConnectionListEntryDstAddress, + lcsSetupIpRouterFirewallConnectionListEntryProt, + lcsSetupIpRouterFirewallConnectionListEntrySrcPort, + lcsSetupIpRouterFirewallConnectionListEntryDstPort + } + ::= { lcsSetupIpRouterFirewallConnectionListTable 1 } + +LcsSetupIpRouterFirewallConnectionListEntry ::= SEQUENCE { + lcsSetupIpRouterFirewallConnectionListEntrySrcAddress IpAddress, + lcsSetupIpRouterFirewallConnectionListEntryDstAddress IpAddress, + lcsSetupIpRouterFirewallConnectionListEntryProt Integer32, + lcsSetupIpRouterFirewallConnectionListEntrySrcPort Integer32, + lcsSetupIpRouterFirewallConnectionListEntryDstPort Integer32, + lcsSetupIpRouterFirewallConnectionListEntryTimeout Integer32, + lcsSetupIpRouterFirewallConnectionListEntryFlags Integer32, + lcsSetupIpRouterFirewallConnectionListEntryFilterRule DisplayString, + lcsSetupIpRouterFirewallConnectionListEntrySrcRoute DisplayString, + lcsSetupIpRouterFirewallConnectionListEntryDestRoute DisplayString, + lcsSetupIpRouterFirewallConnectionListEntryRtgTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.5.1.1 +lcsSetupIpRouterFirewallConnectionListEntrySrcAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallConnectionListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.5.1.2 +lcsSetupIpRouterFirewallConnectionListEntryDstAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallConnectionListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.5.1.3 +lcsSetupIpRouterFirewallConnectionListEntryProt OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallConnectionListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.5.1.4 +lcsSetupIpRouterFirewallConnectionListEntrySrcPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallConnectionListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.5.1.5 +lcsSetupIpRouterFirewallConnectionListEntryDstPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallConnectionListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.5.1.6 +lcsSetupIpRouterFirewallConnectionListEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallConnectionListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.5.1.7 +lcsSetupIpRouterFirewallConnectionListEntryFlags OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallConnectionListEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.5.1.8 +lcsSetupIpRouterFirewallConnectionListEntryFilterRule OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallConnectionListEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.5.1.9 +lcsSetupIpRouterFirewallConnectionListEntrySrcRoute OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallConnectionListEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.5.1.10 +lcsSetupIpRouterFirewallConnectionListEntryDestRoute OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallConnectionListEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.5.1.11 +lcsSetupIpRouterFirewallConnectionListEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallConnectionListEntry 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.8.10.6 +lcsSetupIpRouterFirewallHostBlockListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpRouterFirewallHostBlockListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewall 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.8.10.6.1 +lcsSetupIpRouterFirewallHostBlockListEntry OBJECT-TYPE + SYNTAX LcsSetupIpRouterFirewallHostBlockListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpRouterFirewallHostBlockListEntrySrcAddress + } + ::= { lcsSetupIpRouterFirewallHostBlockListTable 1 } + +LcsSetupIpRouterFirewallHostBlockListEntry ::= SEQUENCE { + lcsSetupIpRouterFirewallHostBlockListEntrySrcAddress IpAddress, + lcsSetupIpRouterFirewallHostBlockListEntryTimeout Integer32, + lcsSetupIpRouterFirewallHostBlockListEntryFilterRule DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.6.1.1 +lcsSetupIpRouterFirewallHostBlockListEntrySrcAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallHostBlockListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.6.1.2 +lcsSetupIpRouterFirewallHostBlockListEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallHostBlockListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.6.1.3 +lcsSetupIpRouterFirewallHostBlockListEntryFilterRule OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallHostBlockListEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.8.10.7 +lcsSetupIpRouterFirewallPortBlockListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpRouterFirewallPortBlockListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewall 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.8.10.7.1 +lcsSetupIpRouterFirewallPortBlockListEntry OBJECT-TYPE + SYNTAX LcsSetupIpRouterFirewallPortBlockListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpRouterFirewallPortBlockListEntryDstAddress + } + ::= { lcsSetupIpRouterFirewallPortBlockListTable 1 } + +LcsSetupIpRouterFirewallPortBlockListEntry ::= SEQUENCE { + lcsSetupIpRouterFirewallPortBlockListEntryDstAddress IpAddress, + lcsSetupIpRouterFirewallPortBlockListEntryProt Integer32, + lcsSetupIpRouterFirewallPortBlockListEntryDstPort Integer32, + lcsSetupIpRouterFirewallPortBlockListEntryTimeout Integer32, + lcsSetupIpRouterFirewallPortBlockListEntryFilterRule DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.7.1.1 +lcsSetupIpRouterFirewallPortBlockListEntryDstAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallPortBlockListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.7.1.2 +lcsSetupIpRouterFirewallPortBlockListEntryProt OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallPortBlockListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.7.1.3 +lcsSetupIpRouterFirewallPortBlockListEntryDstPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallPortBlockListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.7.1.4 +lcsSetupIpRouterFirewallPortBlockListEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallPortBlockListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.7.1.5 +lcsSetupIpRouterFirewallPortBlockListEntryFilterRule OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallPortBlockListEntry 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.10.8 +lcsSetupIpRouterFirewallMaxHalfOpenConns OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewall 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.10.9 +lcsSetupIpRouterFirewallDosAction OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..29)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewall 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.10.10 +lcsSetupIpRouterFirewallAdminEmail OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewall 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.10.11 +lcsSetupIpRouterFirewallOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewall 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.10.12 +lcsSetupIpRouterFirewallPortScanThreshold OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewall 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.10.13 +lcsSetupIpRouterFirewallIdsAction OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..29)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewall 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.10.14 +lcsSetupIpRouterFirewallPingBlock OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eAlways (1), + eWan (2), + eDefaultRoute (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewall 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.10.15 +lcsSetupIpRouterFirewallStealthMode OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eAlways (1), + eWan (2), + eDefaultRoute (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewall 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.10.16 +lcsSetupIpRouterFirewallAuthPort OBJECT-TYPE + SYNTAX INTEGER { + eClosed (0), + eStealth (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewall 16 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.10.17 +lcsSetupIpRouterFirewallDenySessionRecover OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eAlways (1), + eWan (2), + eDefaultRoute (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewall 17 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.8.10.19 +lcsSetupIpRouterFirewallOpenPortListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpRouterFirewallOpenPortListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewall 19 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.8.10.19.1 +lcsSetupIpRouterFirewallOpenPortListEntry OBJECT-TYPE + SYNTAX LcsSetupIpRouterFirewallOpenPortListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpRouterFirewallOpenPortListEntrySrcAddress, + lcsSetupIpRouterFirewallOpenPortListEntryDstAddress, + lcsSetupIpRouterFirewallOpenPortListEntryProt, + lcsSetupIpRouterFirewallOpenPortListEntryDstPort + } + ::= { lcsSetupIpRouterFirewallOpenPortListTable 1 } + +LcsSetupIpRouterFirewallOpenPortListEntry ::= SEQUENCE { + lcsSetupIpRouterFirewallOpenPortListEntrySrcAddress IpAddress, + lcsSetupIpRouterFirewallOpenPortListEntryDstAddress IpAddress, + lcsSetupIpRouterFirewallOpenPortListEntryProt Integer32, + lcsSetupIpRouterFirewallOpenPortListEntryDstPort Integer32, + lcsSetupIpRouterFirewallOpenPortListEntryTimeout Integer32, + lcsSetupIpRouterFirewallOpenPortListEntryFilterRule DisplayString, + lcsSetupIpRouterFirewallOpenPortListEntrySrcRoute DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.19.1.1 +lcsSetupIpRouterFirewallOpenPortListEntrySrcAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallOpenPortListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.19.1.2 +lcsSetupIpRouterFirewallOpenPortListEntryDstAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallOpenPortListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.19.1.3 +lcsSetupIpRouterFirewallOpenPortListEntryProt OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallOpenPortListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.19.1.5 +lcsSetupIpRouterFirewallOpenPortListEntryDstPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallOpenPortListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.19.1.6 +lcsSetupIpRouterFirewallOpenPortListEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallOpenPortListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.19.1.8 +lcsSetupIpRouterFirewallOpenPortListEntryFilterRule OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallOpenPortListEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.10.19.1.9 +lcsSetupIpRouterFirewallOpenPortListEntrySrcRoute OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallOpenPortListEntry 9 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.8.10.20 +lcsSetupIpRouterFirewallApplications OBJECT IDENTIFIER ::= { lcsSetupIpRouterFirewall 20 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.8.10.20.1 +lcsSetupIpRouterFirewallApplicationsFtp OBJECT IDENTIFIER ::= { lcsSetupIpRouterFirewallApplications 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.10.20.1.1 +lcsSetupIpRouterFirewallApplicationsFtpFtpBlock OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eAlways (1), + eWan (2), + eDefaultRoute (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallApplicationsFtp 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.10.20.1.2 +lcsSetupIpRouterFirewallApplicationsFtpActiveFtpBlock OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eAlways (1), + eWan (2), + eDefaultRoute (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallApplicationsFtp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.10.20.1.3 +lcsSetupIpRouterFirewallApplicationsFtpMinPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallApplicationsFtp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.10.20.1.4 +lcsSetupIpRouterFirewallApplicationsFtpCheckHostIp OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eAlways (1), + eWan (2), + eDefaultRoute (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallApplicationsFtp 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.10.20.1.5 +lcsSetupIpRouterFirewallApplicationsFtpFxpBlock OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eAlways (1), + eWan (2), + eDefaultRoute (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallApplicationsFtp 5 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.8.10.20.2 +lcsSetupIpRouterFirewallApplicationsIrc OBJECT IDENTIFIER ::= { lcsSetupIpRouterFirewallApplications 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.10.20.2.1 +lcsSetupIpRouterFirewallApplicationsIrcIrcBlock OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eAlways (1), + eWan (2), + eDefaultRoute (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallApplicationsIrc 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.10.20.2.2 +lcsSetupIpRouterFirewallApplicationsIrcDdcBlock OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eAlways (1), + eWan (2), + eDefaultRoute (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallApplicationsIrc 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.10.20.2.3 +lcsSetupIpRouterFirewallApplicationsIrcMinPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallApplicationsIrc 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.10.20.2.4 +lcsSetupIpRouterFirewallApplicationsIrcCheckHostIp OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eAlways (1), + eWan (2), + eDefaultRoute (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallApplicationsIrc 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.10.20.10 +lcsSetupIpRouterFirewallApplicationsApplAction OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..29)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterFirewallApplications 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.11 +lcsSetupIpRouterStartWanPool OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.12 +lcsSetupIpRouterEndWanPool OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter 12 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.8.13 +lcsSetupIpRouterDefaultTimeListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpRouterDefaultTimeListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter 13 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.8.13.1 +lcsSetupIpRouterDefaultTimeListEntry OBJECT-TYPE + SYNTAX LcsSetupIpRouterDefaultTimeListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpRouterDefaultTimeListEntryIndex + } + ::= { lcsSetupIpRouterDefaultTimeListTable 1 } + +LcsSetupIpRouterDefaultTimeListEntry ::= SEQUENCE { + lcsSetupIpRouterDefaultTimeListEntryIndex Integer32, + lcsSetupIpRouterDefaultTimeListEntryDays BITS, + lcsSetupIpRouterDefaultTimeListEntryStart DisplayString, + lcsSetupIpRouterDefaultTimeListEntryStop DisplayString, + lcsSetupIpRouterDefaultTimeListEntryPeer DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.13.1.1 +lcsSetupIpRouterDefaultTimeListEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterDefaultTimeListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.13.1.2 +lcsSetupIpRouterDefaultTimeListEntryDays OBJECT-TYPE + SYNTAX BITS { + eHoliday (0), + eSunday (1), + eSaturday (2), + eFriday (3), + eThursday (4), + eWednesday (5), + eTuesday (6), + eMonday (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterDefaultTimeListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.13.1.3 +lcsSetupIpRouterDefaultTimeListEntryStart OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..5)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterDefaultTimeListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.13.1.4 +lcsSetupIpRouterDefaultTimeListEntryStop OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..5)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterDefaultTimeListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.13.1.5 +lcsSetupIpRouterDefaultTimeListEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterDefaultTimeListEntry 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.14 +lcsSetupIpRouterUsageDefaultTimetable OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter 14 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.8.19 +lcsSetupIpRouterNNNatTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpRouterNNNatEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter 19 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.8.19.1 +lcsSetupIpRouterNNNatEntry OBJECT-TYPE + SYNTAX LcsSetupIpRouterNNNatEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpRouterNNNatEntryIdx + } + ::= { lcsSetupIpRouterNNNatTable 1 } + +LcsSetupIpRouterNNNatEntry ::= SEQUENCE { + lcsSetupIpRouterNNNatEntryIdx DisplayString, + lcsSetupIpRouterNNNatEntrySrcAddress IpAddress, + lcsSetupIpRouterNNNatEntrySrcMask IpAddress, + lcsSetupIpRouterNNNatEntryDstStation DisplayString, + lcsSetupIpRouterNNNatEntryMappedNetwork IpAddress + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.19.1.1 +lcsSetupIpRouterNNNatEntryIdx OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..4)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterNNNatEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.19.1.2 +lcsSetupIpRouterNNNatEntrySrcAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterNNNatEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.19.1.3 +lcsSetupIpRouterNNNatEntrySrcMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterNNNatEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.19.1.4 +lcsSetupIpRouterNNNatEntryDstStation OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterNNNatEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.19.1.5 +lcsSetupIpRouterNNNatEntryMappedNetwork OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterNNNatEntry 5 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.8.20 +lcsSetupIpRouterLoadBalancer OBJECT IDENTIFIER ::= { lcsSetupIpRouter 20 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.20.1 +lcsSetupIpRouterLoadBalancerOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterLoadBalancer 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.8.20.2 +lcsSetupIpRouterLoadBalancerBundlePeersTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpRouterLoadBalancerBundlePeersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterLoadBalancer 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.8.20.2.1 +lcsSetupIpRouterLoadBalancerBundlePeersEntry OBJECT-TYPE + SYNTAX LcsSetupIpRouterLoadBalancerBundlePeersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpRouterLoadBalancerBundlePeersEntryPeer + } + ::= { lcsSetupIpRouterLoadBalancerBundlePeersTable 1 } + +LcsSetupIpRouterLoadBalancerBundlePeersEntry ::= SEQUENCE { + lcsSetupIpRouterLoadBalancerBundlePeersEntryPeer DisplayString, + lcsSetupIpRouterLoadBalancerBundlePeersEntryBundlePeer1 DisplayString, + lcsSetupIpRouterLoadBalancerBundlePeersEntryBundlePeer2 DisplayString, + lcsSetupIpRouterLoadBalancerBundlePeersEntryBundlePeer3 DisplayString, + lcsSetupIpRouterLoadBalancerBundlePeersEntryBundlePeer4 DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.20.2.1.1 +lcsSetupIpRouterLoadBalancerBundlePeersEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterLoadBalancerBundlePeersEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.20.2.1.2 +lcsSetupIpRouterLoadBalancerBundlePeersEntryBundlePeer1 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterLoadBalancerBundlePeersEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.20.2.1.3 +lcsSetupIpRouterLoadBalancerBundlePeersEntryBundlePeer2 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterLoadBalancerBundlePeersEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.20.2.1.4 +lcsSetupIpRouterLoadBalancerBundlePeersEntryBundlePeer3 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterLoadBalancerBundlePeersEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.20.2.1.5 +lcsSetupIpRouterLoadBalancerBundlePeersEntryBundlePeer4 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterLoadBalancerBundlePeersEntry 5 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.8.21 +lcsSetupIpRouterVrrp OBJECT IDENTIFIER ::= { lcsSetupIpRouter 21 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.21.1 +lcsSetupIpRouterVrrpOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterVrrp 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.8.21.2 +lcsSetupIpRouterVrrpVrrpListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpRouterVrrpVrrpListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterVrrp 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.8.21.2.1 +lcsSetupIpRouterVrrpVrrpListEntry OBJECT-TYPE + SYNTAX LcsSetupIpRouterVrrpVrrpListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpRouterVrrpVrrpListEntryRouterId + } + ::= { lcsSetupIpRouterVrrpVrrpListTable 1 } + +LcsSetupIpRouterVrrpVrrpListEntry ::= SEQUENCE { + lcsSetupIpRouterVrrpVrrpListEntryRouterId Integer32, + lcsSetupIpRouterVrrpVrrpListEntryVirtAddress IpAddress, + lcsSetupIpRouterVrrpVrrpListEntryPrio Integer32, + lcsSetupIpRouterVrrpVrrpListEntryBPrio Integer32, + lcsSetupIpRouterVrrpVrrpListEntryPeer DisplayString, + lcsSetupIpRouterVrrpVrrpListEntryComment DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.21.2.1.1 +lcsSetupIpRouterVrrpVrrpListEntryRouterId OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterVrrpVrrpListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.21.2.1.2 +lcsSetupIpRouterVrrpVrrpListEntryVirtAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterVrrpVrrpListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.21.2.1.3 +lcsSetupIpRouterVrrpVrrpListEntryPrio OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterVrrpVrrpListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.21.2.1.4 +lcsSetupIpRouterVrrpVrrpListEntryBPrio OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterVrrpVrrpListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.21.2.1.5 +lcsSetupIpRouterVrrpVrrpListEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterVrrpVrrpListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.21.2.1.6 +lcsSetupIpRouterVrrpVrrpListEntryComment OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterVrrpVrrpListEntry 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.21.3 +lcsSetupIpRouterVrrpReconnectDelay OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterVrrp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.21.4 +lcsSetupIpRouterVrrpAdvertIntervall OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterVrrp 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.21.5 +lcsSetupIpRouterVrrpInternalServices OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterVrrp 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.8.22 +lcsSetupIpRouterWanTagCreation OBJECT-TYPE + SYNTAX INTEGER { + eManual (0), + eAuto (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter 22 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.8.23 +lcsSetupIpRouterTagTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpRouterTagTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouter 23 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.8.23.1 +lcsSetupIpRouterTagTableEntry OBJECT-TYPE + SYNTAX LcsSetupIpRouterTagTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpRouterTagTableEntryPeer + } + ::= { lcsSetupIpRouterTagTableTable 1 } + +LcsSetupIpRouterTagTableEntry ::= SEQUENCE { + lcsSetupIpRouterTagTableEntryPeer DisplayString, + lcsSetupIpRouterTagTableEntryRtgTag Integer32, + lcsSetupIpRouterTagTableEntryStartWanPool IpAddress, + lcsSetupIpRouterTagTableEntryEndWanPool IpAddress, + lcsSetupIpRouterTagTableEntryDnsDefault IpAddress, + lcsSetupIpRouterTagTableEntryDnsBackup IpAddress, + lcsSetupIpRouterTagTableEntryNbnsDefault IpAddress, + lcsSetupIpRouterTagTableEntryNbnsBackup IpAddress + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.23.1.1 +lcsSetupIpRouterTagTableEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterTagTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.23.1.2 +lcsSetupIpRouterTagTableEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterTagTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.23.1.3 +lcsSetupIpRouterTagTableEntryStartWanPool OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterTagTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.23.1.4 +lcsSetupIpRouterTagTableEntryEndWanPool OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpRouterTagTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.23.1.5 +lcsSetupIpRouterTagTableEntryDnsDefault OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpRouterTagTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.23.1.6 +lcsSetupIpRouterTagTableEntryDnsBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpRouterTagTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.23.1.7 +lcsSetupIpRouterTagTableEntryNbnsDefault OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpRouterTagTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.8.23.1.8 +lcsSetupIpRouterTagTableEntryNbnsBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpRouterTagTableEntry 8 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.9 +lcsSetupSnmp OBJECT IDENTIFIER ::= { lcsSetup 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.9.1 +lcsSetupSnmpSendTraps OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmp 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.9.2 +lcsSetupSnmpIpTrapsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupSnmpIpTrapsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmp 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.9.2.1 +lcsSetupSnmpIpTrapsEntry OBJECT-TYPE + SYNTAX LcsSetupSnmpIpTrapsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupSnmpIpTrapsEntryTrapIp + } + ::= { lcsSetupSnmpIpTrapsTable 1 } + +LcsSetupSnmpIpTrapsEntry ::= SEQUENCE { + lcsSetupSnmpIpTrapsEntryTrapIp IpAddress, + lcsSetupSnmpIpTrapsEntryLoopbackAddr DisplayString, + lcsSetupSnmpIpTrapsEntryVersion INTEGER, + lcsSetupSnmpIpTrapsEntryPort Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.9.2.1.1 +lcsSetupSnmpIpTrapsEntryTrapIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmpIpTrapsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.9.2.1.3 +lcsSetupSnmpIpTrapsEntryLoopbackAddr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmpIpTrapsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.9.2.1.4 +lcsSetupSnmpIpTrapsEntryVersion OBJECT-TYPE + SYNTAX INTEGER { + eSnmpv2 (0), + eSnmpv1 (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmpIpTrapsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.9.2.1.5 +lcsSetupSnmpIpTrapsEntryPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupSnmpIpTrapsEntry 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.9.3 +lcsSetupSnmpAdministrator OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.9.4 +lcsSetupSnmpLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmp 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.9.5 +lcsSetupSnmpRegisterMonitor OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmp 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.9.6 +lcsSetupSnmpDeleteMonitor OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmp 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.9.7 +lcsSetupSnmpMonitorTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupSnmpMonitorTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmp 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.9.7.1 +lcsSetupSnmpMonitorTableEntry OBJECT-TYPE + SYNTAX LcsSetupSnmpMonitorTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupSnmpMonitorTableEntryIpAddress, + lcsSetupSnmpMonitorTableEntryPort + } + ::= { lcsSetupSnmpMonitorTableTable 1 } + +LcsSetupSnmpMonitorTableEntry ::= SEQUENCE { + lcsSetupSnmpMonitorTableEntryIpAddress IpAddress, + lcsSetupSnmpMonitorTableEntryPort Integer32, + lcsSetupSnmpMonitorTableEntryTimeout Integer32, + lcsSetupSnmpMonitorTableEntryMacAddress DisplayString, + lcsSetupSnmpMonitorTableEntryPeer DisplayString, + lcsSetupSnmpMonitorTableEntryLoopbackAddr IpAddress, + lcsSetupSnmpMonitorTableEntryVlanId Integer32, + lcsSetupSnmpMonitorTableEntryLanIfc DisplayString, + lcsSetupSnmpMonitorTableEntryEthernetPort Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.9.7.1.1 +lcsSetupSnmpMonitorTableEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmpMonitorTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.9.7.1.2 +lcsSetupSnmpMonitorTableEntryPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmpMonitorTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.9.7.1.3 +lcsSetupSnmpMonitorTableEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmpMonitorTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.9.7.1.4 +lcsSetupSnmpMonitorTableEntryMacAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmpMonitorTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.9.7.1.5 +lcsSetupSnmpMonitorTableEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmpMonitorTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.9.7.1.6 +lcsSetupSnmpMonitorTableEntryLoopbackAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmpMonitorTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.9.7.1.7 +lcsSetupSnmpMonitorTableEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmpMonitorTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.9.7.1.8 +lcsSetupSnmpMonitorTableEntryLanIfc OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmpMonitorTableEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.9.7.1.9 +lcsSetupSnmpMonitorTableEntryEthernetPort OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmpMonitorTableEntry 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.9.10 +lcsSetupSnmpPasswordRequiredForSnmpReadAccess OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmp 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.9.11 +lcsSetupSnmpComment1 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmp 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.9.12 +lcsSetupSnmpComment2 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmp 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.9.13 +lcsSetupSnmpComment3 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmp 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.9.14 +lcsSetupSnmpComment4 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmp 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.9.15 +lcsSetupSnmpReadOnlyCommunity OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmp 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.9.16 +lcsSetupSnmpComment5 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmp 16 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.9.17 +lcsSetupSnmpComment6 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmp 17 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.9.18 +lcsSetupSnmpComment7 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmp 18 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.9.19 +lcsSetupSnmpComment8 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmp 19 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.9.20 +lcsSetupSnmpFullHostMib OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSnmp 20 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.9.21 +lcsSetupSnmpPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupSnmp 21 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.9.22 +lcsSetupSnmpReadOnlyCommunitiesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupSnmpReadOnlyCommunitiesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupSnmp 22 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.9.22.1 +lcsSetupSnmpReadOnlyCommunitiesEntry OBJECT-TYPE + SYNTAX LcsSetupSnmpReadOnlyCommunitiesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupSnmpReadOnlyCommunitiesEntryReadOnlyCommunity + } + ::= { lcsSetupSnmpReadOnlyCommunitiesTable 1 } + +LcsSetupSnmpReadOnlyCommunitiesEntry ::= SEQUENCE { + lcsSetupSnmpReadOnlyCommunitiesEntryReadOnlyCommunity DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.9.22.1.1 +lcsSetupSnmpReadOnlyCommunitiesEntryReadOnlyCommunity OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupSnmpReadOnlyCommunitiesEntry 1 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.10 +lcsSetupDhcp OBJECT IDENTIFIER ::= { lcsSetup 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.10.6 +lcsSetupDhcpMaxLeaseTimeMinutes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcp 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.10.7 +lcsSetupDhcpDefaultLeaseTimeMinutes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcp 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.10.8 +lcsSetupDhcpDhcpTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupDhcpDhcpTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcp 8 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.10.8.1 +lcsSetupDhcpDhcpTableEntry OBJECT-TYPE + SYNTAX LcsSetupDhcpDhcpTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupDhcpDhcpTableEntryIpAddress, + lcsSetupDhcpDhcpTableEntryNetworkName + } + ::= { lcsSetupDhcpDhcpTableTable 1 } + +LcsSetupDhcpDhcpTableEntry ::= SEQUENCE { + lcsSetupDhcpDhcpTableEntryIpAddress IpAddress, + lcsSetupDhcpDhcpTableEntryMacAddress DisplayString, + lcsSetupDhcpDhcpTableEntryTimeout Integer32, + lcsSetupDhcpDhcpTableEntryHostname DisplayString, + lcsSetupDhcpDhcpTableEntryType BITS, + lcsSetupDhcpDhcpTableEntryEthernetPort INTEGER, + lcsSetupDhcpDhcpTableEntryVlanId Integer32, + lcsSetupDhcpDhcpTableEntryNetworkName DisplayString, + lcsSetupDhcpDhcpTableEntryLanIfc INTEGER, + lcsSetupDhcpDhcpTableEntryAssignment DisplayString, + lcsSetupDhcpDhcpTableEntryAssignmentNumeric Gauge32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.8.1.1 +lcsSetupDhcpDhcpTableEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpDhcpTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.8.1.2 +lcsSetupDhcpDhcpTableEntryMacAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpDhcpTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.8.1.3 +lcsSetupDhcpDhcpTableEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpDhcpTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.8.1.4 +lcsSetupDhcpDhcpTableEntryHostname OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpDhcpTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.8.1.5 +lcsSetupDhcpDhcpTableEntryType OBJECT-TYPE + SYNTAX BITS { + eRelay (4), + eCache (8), + eBootp (10), + eDyn (11), + eStat (12), + eUnkn (13), + enewreq (14), + enew (15) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpDhcpTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.8.1.7 +lcsSetupDhcpDhcpTableEntryEthernetPort OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eUplink (1), + eEth1 (2), + eEth2 (3), + eEth3 (4), + eEth4 (5), + eWan (16), + eSfp1 (32) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpDhcpTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.8.1.8 +lcsSetupDhcpDhcpTableEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpDhcpTableEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.8.1.9 +lcsSetupDhcpDhcpTableEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpDhcpTableEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.8.1.10 +lcsSetupDhcpDhcpTableEntryLanIfc OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (256), + eLan2 (257), + eLan3 (258), + eLan4 (259), + eLan5 (260), + eWlan1 (512), + eWlan2 (513), + eP2p11 (768), + eP2p12 (769), + eP2p13 (770), + eP2p14 (771), + eP2p15 (772), + eP2p16 (773), + eP2p21 (774), + eP2p22 (775), + eP2p23 (776), + eP2p24 (777), + eP2p25 (778), + eP2p26 (779), + eP2p17 (799), + eP2p18 (800), + eP2p19 (801), + eP2p110 (802), + eP2p111 (803), + eP2p112 (804), + eP2p113 (805), + eP2p114 (806), + eP2p115 (807), + eP2p116 (808), + eP2p27 (831), + eP2p28 (832), + eP2p29 (833), + eP2p210 (834), + eP2p211 (835), + eP2p212 (836), + eP2p213 (837), + eP2p214 (838), + eP2p215 (839), + eP2p216 (840), + eWlan12 (1024), + eWlan13 (1025), + eWlan14 (1026), + eWlan15 (1027), + eWlan16 (1028), + eWlan17 (1029), + eWlan18 (1030), + eWlan22 (1031), + eWlan23 (1032), + eWlan24 (1033), + eWlan25 (1034), + eWlan26 (1035), + eWlan27 (1036), + eWlan28 (1037), + eBrg1 (1536), + eBrg2 (1537), + eBrg3 (1538), + eBrg4 (1539), + eBrg5 (1540), + eBrg6 (1541), + eBrg7 (1542), + eBrg8 (1543), + eWlcTunnel1 (1792), + eWlcTunnel2 (1793), + eWlcTunnel3 (1794), + eWlcTunnel4 (1795), + eWlcTunnel5 (1796), + eWlcTunnel6 (1797), + eWlcTunnel7 (1798), + eWlcTunnel8 (1799), + eWlcTunnel9 (1800), + eWlcTunnel10 (1801), + eWlcTunnel11 (1802), + eWlcTunnel12 (1803), + eWlcTunnel13 (1804), + eWlcTunnel14 (1805), + eWlcTunnel15 (1806), + eWlcTunnel16 (1807), + eWlcTunnel17 (1808), + eWlcTunnel18 (1809), + eWlcTunnel19 (1810), + eWlcTunnel20 (1811), + eWlcTunnel21 (1812), + eWlcTunnel22 (1813), + eWlcTunnel23 (1814), + eWlcTunnel24 (1815), + eWlcTunnel25 (1816), + eWlcTunnel26 (1817), + eWlcTunnel27 (1818), + eWlcTunnel28 (1819), + eWlcTunnel29 (1820), + eWlcTunnel30 (1821), + eWlcTunnel31 (1822), + eWlcTunnel32 (1823), + eWlcTunnelAutowds (1824), + eBundle1 (2048), + eBundle2 (2049), + eAny (65535) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpDhcpTableEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.8.1.11 +lcsSetupDhcpDhcpTableEntryAssignment OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..21)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupDhcpDhcpTableEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.8.1.12 +lcsSetupDhcpDhcpTableEntryAssignmentNumeric OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupDhcpDhcpTableEntry 12 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.10.9 +lcsSetupDhcpHostsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupDhcpHostsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcp 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.10.9.1 +lcsSetupDhcpHostsEntry OBJECT-TYPE + SYNTAX LcsSetupDhcpHostsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupDhcpHostsEntryMacAddress, + lcsSetupDhcpHostsEntryNetworkName + } + ::= { lcsSetupDhcpHostsTable 1 } + +LcsSetupDhcpHostsEntry ::= SEQUENCE { + lcsSetupDhcpHostsEntryMacAddress DisplayString, + lcsSetupDhcpHostsEntryIpAddress IpAddress, + lcsSetupDhcpHostsEntryHostname DisplayString, + lcsSetupDhcpHostsEntryImageAlias DisplayString, + lcsSetupDhcpHostsEntryNetworkName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.9.1.1 +lcsSetupDhcpHostsEntryMacAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpHostsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.9.1.2 +lcsSetupDhcpHostsEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpHostsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.9.1.3 +lcsSetupDhcpHostsEntryHostname OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..30)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpHostsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.9.1.4 +lcsSetupDhcpHostsEntryImageAlias OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpHostsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.9.1.5 +lcsSetupDhcpHostsEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpHostsEntry 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.10.10 +lcsSetupDhcpAliasListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupDhcpAliasListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcp 10 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.10.10.1 +lcsSetupDhcpAliasListEntry OBJECT-TYPE + SYNTAX LcsSetupDhcpAliasListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupDhcpAliasListEntryImageAlias + } + ::= { lcsSetupDhcpAliasListTable 1 } + +LcsSetupDhcpAliasListEntry ::= SEQUENCE { + lcsSetupDhcpAliasListEntryImageAlias DisplayString, + lcsSetupDhcpAliasListEntryImageFile DisplayString, + lcsSetupDhcpAliasListEntryImageServer IpAddress + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.10.1.1 +lcsSetupDhcpAliasListEntryImageAlias OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpAliasListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.10.1.2 +lcsSetupDhcpAliasListEntryImageFile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..60)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpAliasListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.10.1.3 +lcsSetupDhcpAliasListEntryImageServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpAliasListEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.10.18 +lcsSetupDhcpPortsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupDhcpPortsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcp 18 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.10.18.1 +lcsSetupDhcpPortsEntry OBJECT-TYPE + SYNTAX LcsSetupDhcpPortsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupDhcpPortsEntryPort + } + ::= { lcsSetupDhcpPortsTable 1 } + +LcsSetupDhcpPortsEntry ::= SEQUENCE { + lcsSetupDhcpPortsEntryPort DisplayString, + lcsSetupDhcpPortsEntryEnableDhcp INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.18.1.2 +lcsSetupDhcpPortsEntryPort OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..18)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpPortsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.18.1.3 +lcsSetupDhcpPortsEntryEnableDhcp OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpPortsEntry 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.10.19 +lcsSetupDhcpUserClassIdentifer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcp 19 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.10.20 +lcsSetupDhcpNetworkListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupDhcpNetworkListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcp 20 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.10.20.1 +lcsSetupDhcpNetworkListEntry OBJECT-TYPE + SYNTAX LcsSetupDhcpNetworkListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupDhcpNetworkListEntryNetworkName + } + ::= { lcsSetupDhcpNetworkListTable 1 } + +LcsSetupDhcpNetworkListEntry ::= SEQUENCE { + lcsSetupDhcpNetworkListEntryNetworkName DisplayString, + lcsSetupDhcpNetworkListEntryStartAddressPool IpAddress, + lcsSetupDhcpNetworkListEntryEndAddressPool IpAddress, + lcsSetupDhcpNetworkListEntryNetmask IpAddress, + lcsSetupDhcpNetworkListEntryBroadcastAddress IpAddress, + lcsSetupDhcpNetworkListEntryGatewayAddress IpAddress, + lcsSetupDhcpNetworkListEntryDnsDefault IpAddress, + lcsSetupDhcpNetworkListEntryDnsBackup IpAddress, + lcsSetupDhcpNetworkListEntryNbnsDefault IpAddress, + lcsSetupDhcpNetworkListEntryNbnsBackup IpAddress, + lcsSetupDhcpNetworkListEntryOperating INTEGER, + lcsSetupDhcpNetworkListEntryBroadcastBit INTEGER, + lcsSetupDhcpNetworkListEntryMasterServer IpAddress, + lcsSetupDhcpNetworkListEntryCache INTEGER, + lcsSetupDhcpNetworkListEntryAdaption INTEGER, + lcsSetupDhcpNetworkListEntryCluster INTEGER, + lcsSetupDhcpNetworkListEntry2ndMasterServer IpAddress, + lcsSetupDhcpNetworkListEntry3rdMasterServer IpAddress, + lcsSetupDhcpNetworkListEntry4thMasterServer IpAddress + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.20.1.1 +lcsSetupDhcpNetworkListEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpNetworkListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.20.1.2 +lcsSetupDhcpNetworkListEntryStartAddressPool OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpNetworkListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.20.1.3 +lcsSetupDhcpNetworkListEntryEndAddressPool OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpNetworkListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.20.1.4 +lcsSetupDhcpNetworkListEntryNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpNetworkListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.20.1.5 +lcsSetupDhcpNetworkListEntryBroadcastAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpNetworkListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.20.1.6 +lcsSetupDhcpNetworkListEntryGatewayAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpNetworkListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.20.1.7 +lcsSetupDhcpNetworkListEntryDnsDefault OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpNetworkListEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.20.1.8 +lcsSetupDhcpNetworkListEntryDnsBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpNetworkListEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.20.1.9 +lcsSetupDhcpNetworkListEntryNbnsDefault OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpNetworkListEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.20.1.10 +lcsSetupDhcpNetworkListEntryNbnsBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpNetworkListEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.20.1.11 +lcsSetupDhcpNetworkListEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eAuto (2), + eClient (4), + eRelay (16) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpNetworkListEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.20.1.12 +lcsSetupDhcpNetworkListEntryBroadcastBit OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpNetworkListEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.20.1.13 +lcsSetupDhcpNetworkListEntryMasterServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpNetworkListEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.20.1.14 +lcsSetupDhcpNetworkListEntryCache OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpNetworkListEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.20.1.15 +lcsSetupDhcpNetworkListEntryAdaption OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpNetworkListEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.20.1.16 +lcsSetupDhcpNetworkListEntryCluster OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpNetworkListEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.20.1.17 +lcsSetupDhcpNetworkListEntry2ndMasterServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpNetworkListEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.20.1.18 +lcsSetupDhcpNetworkListEntry3rdMasterServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpNetworkListEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.20.1.19 +lcsSetupDhcpNetworkListEntry4thMasterServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpNetworkListEntry 19 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.10.21 +lcsSetupDhcpAdditionalOptionsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupDhcpAdditionalOptionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcp 21 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.10.21.1 +lcsSetupDhcpAdditionalOptionsEntry OBJECT-TYPE + SYNTAX LcsSetupDhcpAdditionalOptionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupDhcpAdditionalOptionsEntryOptionNumber, + lcsSetupDhcpAdditionalOptionsEntryNetworkName + } + ::= { lcsSetupDhcpAdditionalOptionsTable 1 } + +LcsSetupDhcpAdditionalOptionsEntry ::= SEQUENCE { + lcsSetupDhcpAdditionalOptionsEntryOptionNumber Integer32, + lcsSetupDhcpAdditionalOptionsEntryNetworkName DisplayString, + lcsSetupDhcpAdditionalOptionsEntryOptionValue DisplayString, + lcsSetupDhcpAdditionalOptionsEntryOptionType INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.21.1.1 +lcsSetupDhcpAdditionalOptionsEntryOptionNumber OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpAdditionalOptionsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.21.1.2 +lcsSetupDhcpAdditionalOptionsEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpAdditionalOptionsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.21.1.3 +lcsSetupDhcpAdditionalOptionsEntryOptionValue OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..128)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpAdditionalOptionsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.10.21.1.4 +lcsSetupDhcpAdditionalOptionsEntryOptionType OBJECT-TYPE + SYNTAX INTEGER { + eString (0), + eInteger32 (1), + eIpAddress (2), + eInteger16 (3), + eInteger8 (4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDhcpAdditionalOptionsEntry 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.10.22 +lcsSetupDhcpVendorClassIdentifer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupDhcp 22 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.11 +lcsSetupConfig OBJECT IDENTIFIER ::= { lcsSetup 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.1 +lcsSetupConfigLan OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.2 +lcsSetupConfigWan OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.3 +lcsSetupConfigPasswordRequiredForSnmpReadAccess OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.4 +lcsSetupConfigMaximumConnections OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.5 +lcsSetupConfigConfigAgingMinutes OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.6 +lcsSetupConfigLanguage OBJECT-TYPE + SYNTAX INTEGER { + eEnglish (1), + eDeutsch (2), + eFrench (3), + eItalian (4), + eSpanish (5), + eDutch (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.7 +lcsSetupConfigLoginErrors OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.8 +lcsSetupConfigLockMinutes OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.9 +lcsSetupConfigAdminEazMsn OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.10 +lcsSetupConfigDisplayContrast OBJECT-TYPE + SYNTAX INTEGER { + eC8 (0), + eC7 (1), + eC6 (2), + eC5 (3), + eC4 (4), + eC3 (5), + eC2 (6), + eC1 (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.11 +lcsSetupConfigWlanConfig OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.12 +lcsSetupConfigWlanAuthenticationPagesOnly OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 12 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.11.13 +lcsSetupConfigTftpClient OBJECT IDENTIFIER ::= { lcsSetupConfig 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.13.1 +lcsSetupConfigTftpClientConfigAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigTftpClient 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.13.2 +lcsSetupConfigTftpClientConfigFilename OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigTftpClient 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.13.3 +lcsSetupConfigTftpClientFirmwareAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigTftpClient 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.13.4 +lcsSetupConfigTftpClientFirmwareFilename OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigTftpClient 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.13.5 +lcsSetupConfigTftpClientBytesPerHashmark OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigTftpClient 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.13.6 +lcsSetupConfigTftpClientScriptAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigTftpClient 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.13.7 +lcsSetupConfigTftpClientScriptFilename OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigTftpClient 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.11.15 +lcsSetupConfigAccessTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupConfigAccessTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 15 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.11.15.1 +lcsSetupConfigAccessTableEntry OBJECT-TYPE + SYNTAX LcsSetupConfigAccessTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupConfigAccessTableEntryIfc + } + ::= { lcsSetupConfigAccessTableTable 1 } + +LcsSetupConfigAccessTableEntry ::= SEQUENCE { + lcsSetupConfigAccessTableEntryIfc INTEGER, + lcsSetupConfigAccessTableEntryTelnet INTEGER, + lcsSetupConfigAccessTableEntryTftp INTEGER, + lcsSetupConfigAccessTableEntryHttp INTEGER, + lcsSetupConfigAccessTableEntrySnmp INTEGER, + lcsSetupConfigAccessTableEntryHttps INTEGER, + lcsSetupConfigAccessTableEntryTelnetSsl INTEGER, + lcsSetupConfigAccessTableEntrySsh INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.15.1.1 +lcsSetupConfigAccessTableEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eLan (1), + eWan (2), + eWlan (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigAccessTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.15.1.2 +lcsSetupConfigAccessTableEntryTelnet OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eRead (4), + eVpn (16) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigAccessTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.15.1.3 +lcsSetupConfigAccessTableEntryTftp OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eRead (4), + eVpn (16) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigAccessTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.15.1.4 +lcsSetupConfigAccessTableEntryHttp OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eRead (4), + eVpn (16) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigAccessTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.15.1.5 +lcsSetupConfigAccessTableEntrySnmp OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eRead (4), + eVpn (16) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigAccessTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.15.1.6 +lcsSetupConfigAccessTableEntryHttps OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eRead (4), + eVpn (16) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigAccessTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.15.1.7 +lcsSetupConfigAccessTableEntryTelnetSsl OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eRead (4), + eVpn (16) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigAccessTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.15.1.8 +lcsSetupConfigAccessTableEntrySsh OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eRead (4), + eVpn (16) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigAccessTableEntry 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.16 +lcsSetupConfigScreenHeight OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 16 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.17 +lcsSetupConfigPrompt OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 17 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.18 +lcsSetupConfigLedTest OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eRed (1), + eGreen (2), + eOrange (3), + eNoTest (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 18 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.11.20 +lcsSetupConfigCronTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupConfigCronTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 20 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.11.20.1 +lcsSetupConfigCronTableEntry OBJECT-TYPE + SYNTAX LcsSetupConfigCronTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupConfigCronTableEntryIndex + } + ::= { lcsSetupConfigCronTableTable 1 } + +LcsSetupConfigCronTableEntry ::= SEQUENCE { + lcsSetupConfigCronTableEntryIndex Integer32, + lcsSetupConfigCronTableEntryMinute DisplayString, + lcsSetupConfigCronTableEntryHour DisplayString, + lcsSetupConfigCronTableEntryDayofweek DisplayString, + lcsSetupConfigCronTableEntryDay DisplayString, + lcsSetupConfigCronTableEntryMonth DisplayString, + lcsSetupConfigCronTableEntryCommand DisplayString, + lcsSetupConfigCronTableEntryBase INTEGER, + lcsSetupConfigCronTableEntryActive INTEGER, + lcsSetupConfigCronTableEntryOwner DisplayString, + lcsSetupConfigCronTableEntryVariation Integer32, + lcsSetupConfigCronTableEntryComment DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.20.1.1 +lcsSetupConfigCronTableEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigCronTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.20.1.2 +lcsSetupConfigCronTableEntryMinute OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..50)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigCronTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.20.1.3 +lcsSetupConfigCronTableEntryHour OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..50)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigCronTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.20.1.4 +lcsSetupConfigCronTableEntryDayofweek OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..50)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigCronTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.20.1.5 +lcsSetupConfigCronTableEntryDay OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..50)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigCronTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.20.1.6 +lcsSetupConfigCronTableEntryMonth OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..50)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigCronTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.20.1.7 +lcsSetupConfigCronTableEntryCommand OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..252)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigCronTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.20.1.8 +lcsSetupConfigCronTableEntryBase OBJECT-TYPE + SYNTAX INTEGER { + eRealTime (0), + eOperationTime (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigCronTableEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.20.1.9 +lcsSetupConfigCronTableEntryActive OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigCronTableEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.20.1.10 +lcsSetupConfigCronTableEntryOwner OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigCronTableEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.20.1.11 +lcsSetupConfigCronTableEntryVariation OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigCronTableEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.20.1.12 +lcsSetupConfigCronTableEntryComment OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigCronTableEntry 12 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.11.21 +lcsSetupConfigAdminsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupConfigAdminsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 21 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.11.21.1 +lcsSetupConfigAdminsEntry OBJECT-TYPE + SYNTAX LcsSetupConfigAdminsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupConfigAdminsEntryAdministrator + } + ::= { lcsSetupConfigAdminsTable 1 } + +LcsSetupConfigAdminsEntry ::= SEQUENCE { + lcsSetupConfigAdminsEntryAdministrator DisplayString, + lcsSetupConfigAdminsEntryPassword DisplayString, + lcsSetupConfigAdminsEntryFunctionRights BITS, + lcsSetupConfigAdminsEntryActive INTEGER, + lcsSetupConfigAdminsEntryAccessRights INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.21.1.1 +lcsSetupConfigAdminsEntryAdministrator OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigAdminsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.21.1.2 +lcsSetupConfigAdminsEntryPassword OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigAdminsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.21.1.3 +lcsSetupConfigAdminsEntryFunctionRights OBJECT-TYPE + SYNTAX BITS { + ePrepareVoipProviderAccess (8), + eSmsTransmit (9), + ePublicSpotConfigurationWizard (10), + ePublicSpotUserManagementWizard (11), + ePublicSpotXmlInterface (12), + eCfProfileWizard (13), + eSshCommand (14), + eWlcProfileWizard (15), + eDynamicDnsWizard (17), + eRolloutWizard (18), + eWlanWizard (19), + ePublicSpotWizard (20), + eWtpAssignmentWizard (21), + eWlanLinktest (23), + eDeviceSearch (24), + eTimeSetting (25), + eLanlanWizard (26), + eRasWizard (27), + eProviderSelection (28), + eInternetWizard (29), + eSecurityWizard (30), + eBasicWizard (31) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigAdminsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.21.1.4 +lcsSetupConfigAdminsEntryActive OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigAdminsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.21.1.5 +lcsSetupConfigAdminsEntryAccessRights OBJECT-TYPE + SYNTAX INTEGER { + eSupervisor (-1), + eNone (0), + eAdminRoLimit (8388608), + eAdminRwLimit (8388864), + eAdminRo (16777216), + eAdminRw (16777472) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigAdminsEntry 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.23 +lcsSetupConfigTelnetPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 23 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.24 +lcsSetupConfigTelnetSslPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 24 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.25 +lcsSetupConfigSshPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 25 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.11.26 +lcsSetupConfigSshAuthenticationMethodsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupConfigSshAuthenticationMethodsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 26 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.11.26.1 +lcsSetupConfigSshAuthenticationMethodsEntry OBJECT-TYPE + SYNTAX LcsSetupConfigSshAuthenticationMethodsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupConfigSshAuthenticationMethodsEntryIfc + } + ::= { lcsSetupConfigSshAuthenticationMethodsTable 1 } + +LcsSetupConfigSshAuthenticationMethodsEntry ::= SEQUENCE { + lcsSetupConfigSshAuthenticationMethodsEntryIfc INTEGER, + lcsSetupConfigSshAuthenticationMethodsEntryMethods INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.26.1.1 +lcsSetupConfigSshAuthenticationMethodsEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eLan (1), + eWan (2), + eWlan (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigSshAuthenticationMethodsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.26.1.2 +lcsSetupConfigSshAuthenticationMethodsEntryMethods OBJECT-TYPE + SYNTAX INTEGER { + ePublicKey (1), + ePassword (2), + ePasswordPlusPublicKey (3), + eKeyboardInteractive (4), + eKeyboardInteractivePlusPublicKey (5), + ePasswordPlusKeyboardInteractive (6), + eAll (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigSshAuthenticationMethodsEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.11.27 +lcsSetupConfigPredefAdminsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupConfigPredefAdminsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 27 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.11.27.1 +lcsSetupConfigPredefAdminsEntry OBJECT-TYPE + SYNTAX LcsSetupConfigPredefAdminsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupConfigPredefAdminsEntryName + } + ::= { lcsSetupConfigPredefAdminsTable 1 } + +LcsSetupConfigPredefAdminsEntry ::= SEQUENCE { + lcsSetupConfigPredefAdminsEntryName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.27.1.1 +lcsSetupConfigPredefAdminsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigPredefAdminsEntry 1 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.11.28 +lcsSetupConfigSsh OBJECT IDENTIFIER ::= { lcsSetupConfig 28 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.28.1 +lcsSetupConfigSshCipherAlgorithms OBJECT-TYPE + SYNTAX BITS { + eAes256Ctr (19), + eAes192Ctr (20), + eAes128Ctr (21), + eAes256Cbc (22), + eAes192Cbc (23), + eAes128Cbc (24), + eBlowfishCtr (25), + eBlowfishCbc (26), + eArcfour256 (27), + eArcfour128 (28), + eArcfour (29), + e3desCtr (30), + e3desCbc (31) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigSsh 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.28.2 +lcsSetupConfigSshMacAlgorithms OBJECT-TYPE + SYNTAX BITS { + eHmacSha2512 (24), + eHmacSha251296 (25), + eHmacSha2256 (26), + eHmacSha225696 (27), + eHmacSha1 (28), + eHmacSha196 (29), + eHmacMd5 (30), + eHmacMd596 (31) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigSsh 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.28.3 +lcsSetupConfigSshKeyExchangeAlgorithms OBJECT-TYPE + SYNTAX BITS { + eCurve25519Sha256 (26), + eEcdhSha2 (27), + eDiffieHellmanGroupExchangeSha256 (28), + eDiffieHellmanGroupExchangeSha1 (29), + eDiffieHellmanGroup14Sha1 (30), + eDiffieHellmanGroup1Sha1 (31) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigSsh 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.28.4 +lcsSetupConfigSshHostkeyAlgorithms OBJECT-TYPE + SYNTAX BITS { + eSshEd25519 (28), + eEcdsaSha2 (29), + eSshDss (30), + eSshRsa (31) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigSsh 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.28.5 +lcsSetupConfigSshMinHostkeyLength OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigSsh 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.28.6 +lcsSetupConfigSshMaxHostkeyLength OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigSsh 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.28.7 +lcsSetupConfigSshDhGroups OBJECT-TYPE + SYNTAX BITS { + eGroup16 (27), + eGroup15 (28), + eGroup14 (29), + eGroup5 (30), + eGroup1 (31) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigSsh 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.28.8 +lcsSetupConfigSshCompression OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigSsh 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.28.9 +lcsSetupConfigSshEllipticCurves OBJECT-TYPE + SYNTAX BITS { + eNistp521 (29), + eNistp384 (30), + eNistp256 (31) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigSsh 9 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.11.28.10 +lcsSetupConfigSshSftpServer OBJECT IDENTIFIER ::= { lcsSetupConfigSsh 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.28.10.1 +lcsSetupConfigSshSftpServerOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigSshSftpServer 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.28.11 +lcsSetupConfigSshKeepaliveInterval OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigSsh 11 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.11.29 +lcsSetupConfigTelnetSsl OBJECT IDENTIFIER ::= { lcsSetupConfig 29 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.29.2 +lcsSetupConfigTelnetSslVersions OBJECT-TYPE + SYNTAX BITS { + eTlsv12 (28), + eTlsv11 (29), + eTlsv1 (30), + eSslv3 (31) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigTelnetSsl 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.29.3 +lcsSetupConfigTelnetSslKeyexAlgorithms OBJECT-TYPE + SYNTAX BITS { + eEcdhe (27), + eDhe (29), + eRsa (31) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigTelnetSsl 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.29.4 +lcsSetupConfigTelnetSslCryptoAlgorithms OBJECT-TYPE + SYNTAX BITS { + eAesgcm256 (20), + eAesgcm128 (21), + eAes256 (22), + eAes128 (23), + e3des (24), + eDes (25), + eDes40 (26), + eRc4128 (27), + eRc456 (28), + eRc440 (29) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigTelnetSsl 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.29.5 +lcsSetupConfigTelnetSslHashAlgorithms OBJECT-TYPE + SYNTAX BITS { + eSha2384 (26), + eSha2256 (27), + eSha1 (29), + eMd5 (30) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigTelnetSsl 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.29.10 +lcsSetupConfigTelnetSslPortNew OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "TCP port device is listening on for Telnet/SSL" + ::= { lcsSetupConfigTelnetSsl 10 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.11.30 +lcsSetupConfigUpdateClient OBJECT IDENTIFIER ::= { lcsSetupConfig 30 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.30.1 +lcsSetupConfigUpdateClientOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigUpdateClient 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.30.2 +lcsSetupConfigUpdateClientServerName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigUpdateClient 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.30.3 +lcsSetupConfigUpdateClientServerPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigUpdateClient 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.30.4 +lcsSetupConfigUpdateClientResponseTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigUpdateClient 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.30.5 +lcsSetupConfigUpdateClientRetryFailure OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigUpdateClient 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.30.6 +lcsSetupConfigUpdateClientRetryOk OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigUpdateClient 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.30.7 +lcsSetupConfigUpdateClientLastFirmwareUpdate OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..21)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigUpdateClient 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.30.8 +lcsSetupConfigUpdateClientLastConfigUpdate OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..21)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigUpdateClient 8 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.11.31 +lcsSetupConfigAntiTheftProtection OBJECT IDENTIFIER ::= { lcsSetupConfig 31 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.31.1 +lcsSetupConfigAntiTheftProtectionEnabled OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigAntiTheftProtection 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.31.2 +lcsSetupConfigAntiTheftProtectionCalledNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..14)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigAntiTheftProtection 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.31.3 +lcsSetupConfigAntiTheftProtectionOutgoingCallingNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..14)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigAntiTheftProtection 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.31.4 +lcsSetupConfigAntiTheftProtectionCheckedCallingNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..14)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigAntiTheftProtection 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.31.6 +lcsSetupConfigAntiTheftProtectionMethod OBJECT-TYPE + SYNTAX INTEGER { + eBasicCall (0), + eFacility (1), + eGps (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigAntiTheftProtection 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.31.7 +lcsSetupConfigAntiTheftProtectionIsdnIfc OBJECT-TYPE + SYNTAX INTEGER { + eS01 (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigAntiTheftProtection 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.31.8 +lcsSetupConfigAntiTheftProtectionDeviationM OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigAntiTheftProtection 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.31.9 +lcsSetupConfigAntiTheftProtectionLongitudeDeg OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigAntiTheftProtection 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.31.10 +lcsSetupConfigAntiTheftProtectionLatitudeDeg OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..11)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigAntiTheftProtection 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.31.12 +lcsSetupConfigAntiTheftProtectionGetGpsPosition OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigAntiTheftProtection 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.32 +lcsSetupConfigResetButton OBJECT-TYPE + SYNTAX INTEGER { + eIgnore (0), + eBootOnly (1), + eResetOrBoot (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 32 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.33 +lcsSetupConfigOutbandAgingMinutes OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 33 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.11.35 +lcsSetupConfigMonitortrace OBJECT IDENTIFIER ::= { lcsSetupConfig 35 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.35.1 +lcsSetupConfigMonitortraceTracemask1 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigMonitortrace 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.35.2 +lcsSetupConfigMonitortraceTracemask2 OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigMonitortrace 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.39 +lcsSetupConfigLicenseExpiryEmail OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 39 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.40 +lcsSetupConfigCrashMessage OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 40 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.41 +lcsSetupConfigAdminGender OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eMale (1), + eFemale (2), + eGeek (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 41 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.42 +lcsSetupConfigAssertAction OBJECT-TYPE + SYNTAX INTEGER { + eLogOnly (0), + eReboot (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 42 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.11.43 +lcsSetupConfigFunctionKeysTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupConfigFunctionKeysEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 43 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.11.43.1 +lcsSetupConfigFunctionKeysEntry OBJECT-TYPE + SYNTAX LcsSetupConfigFunctionKeysEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupConfigFunctionKeysEntryKey + } + ::= { lcsSetupConfigFunctionKeysTable 1 } + +LcsSetupConfigFunctionKeysEntry ::= SEQUENCE { + lcsSetupConfigFunctionKeysEntryKey INTEGER, + lcsSetupConfigFunctionKeysEntryMapping DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.43.1.1 +lcsSetupConfigFunctionKeysEntryKey OBJECT-TYPE + SYNTAX INTEGER { + eF1 (1), + eF2 (2), + eF3 (3), + eF4 (4), + eF5 (5), + eF6 (6), + eF7 (7), + eF8 (8), + eF9 (9), + eF10 (10), + eF11 (11), + eF12 (12) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigFunctionKeysEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.43.1.2 +lcsSetupConfigFunctionKeysEntryMapping OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..99)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigFunctionKeysEntry 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.44 +lcsSetupConfigConfigDate OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 44 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.45 +lcsSetupConfigConfigDateNew OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 45 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.11.50 +lcsSetupConfigLl2m OBJECT IDENTIFIER ::= { lcsSetupConfig 50 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.50.1 +lcsSetupConfigLl2mOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigLl2m 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.50.2 +lcsSetupConfigLl2mTimeLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfigLl2m 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.60 +lcsSetupConfigCpuLoadInterval OBJECT-TYPE + SYNTAX INTEGER { + eT1s (1), + eT5s (5), + eT60s (60), + eT300s (300) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupConfig 60 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.70 +lcsSetupConfigFirmwareCheck OBJECT-TYPE + SYNTAX INTEGER { + eOnlyCertified (0), + eAny (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfig 70 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.71 +lcsSetupConfigSaveBootlog OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfig 71 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.72 +lcsSetupConfigSaveEventlog OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfig 72 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.73 +lcsSetupConfigSortMenu OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfig 73 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.80 +lcsSetupConfigAuthentication OBJECT-TYPE + SYNTAX INTEGER { + eIntern (0), + eRadius (1), + eTacacsPlus (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfig 80 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.11.81 +lcsSetupConfigRadius OBJECT IDENTIFIER ::= { lcsSetupConfig 81 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.11.81.1 +lcsSetupConfigRadiusServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupConfigRadiusServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigRadius 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.11.81.1.1 +lcsSetupConfigRadiusServerEntry OBJECT-TYPE + SYNTAX LcsSetupConfigRadiusServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupConfigRadiusServerEntryName + } + ::= { lcsSetupConfigRadiusServerTable 1 } + +LcsSetupConfigRadiusServerEntry ::= SEQUENCE { + lcsSetupConfigRadiusServerEntryName DisplayString, + lcsSetupConfigRadiusServerEntryServer DisplayString, + lcsSetupConfigRadiusServerEntryPort Integer32, + lcsSetupConfigRadiusServerEntryProtocol INTEGER, + lcsSetupConfigRadiusServerEntryLoopbackAddress DisplayString, + lcsSetupConfigRadiusServerEntrySecret DisplayString, + lcsSetupConfigRadiusServerEntryBackup DisplayString, + lcsSetupConfigRadiusServerEntryCategory BITS + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.81.1.1.1 +lcsSetupConfigRadiusServerEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigRadiusServerEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.81.1.1.2 +lcsSetupConfigRadiusServerEntryServer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigRadiusServerEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.81.1.1.3 +lcsSetupConfigRadiusServerEntryPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigRadiusServerEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.81.1.1.4 +lcsSetupConfigRadiusServerEntryProtocol OBJECT-TYPE + SYNTAX INTEGER { + eRadius (0), + eRadsec (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigRadiusServerEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.81.1.1.5 +lcsSetupConfigRadiusServerEntryLoopbackAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigRadiusServerEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.81.1.1.6 +lcsSetupConfigRadiusServerEntrySecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigRadiusServerEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.81.1.1.7 +lcsSetupConfigRadiusServerEntryBackup OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigRadiusServerEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.11.81.1.1.8 +lcsSetupConfigRadiusServerEntryCategory OBJECT-TYPE + SYNTAX BITS { + eAccounting (6), + eAuthentication (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigRadiusServerEntry 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.81.2 +lcsSetupConfigRadiusAccessRightsTransfer OBJECT-TYPE + SYNTAX INTEGER { + eVendorSpecific (0), + eMapped (1), + eShellPrivilege (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigRadius 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.81.3 +lcsSetupConfigRadiusAccounting OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfigRadius 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.90 +lcsSetupConfigLedMode OBJECT-TYPE + SYNTAX INTEGER { + eOn (0), + eOff (1), + eTimedOff (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfig 90 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.11.91 +lcsSetupConfigLedOffSeconds OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupConfig 91 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.12 +lcsSetupWlan OBJECT IDENTIFIER ::= { lcsSetup 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.3 +lcsSetupWlanSpareHeap OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.12.7 +lcsSetupWlanAccessListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanAccessListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.12.7.1 +lcsSetupWlanAccessListEntry OBJECT-TYPE + SYNTAX LcsSetupWlanAccessListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanAccessListEntryMacAddress + } + ::= { lcsSetupWlanAccessListTable 1 } + +LcsSetupWlanAccessListEntry ::= SEQUENCE { + lcsSetupWlanAccessListEntryMacAddress MacAddress, + lcsSetupWlanAccessListEntryName DisplayString, + lcsSetupWlanAccessListEntryComment DisplayString, + lcsSetupWlanAccessListEntryWpaPassphrase DisplayString, + lcsSetupWlanAccessListEntryTxLimit Integer32, + lcsSetupWlanAccessListEntryRxLimit Integer32, + lcsSetupWlanAccessListEntryVlanId Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.7.1.1 +lcsSetupWlanAccessListEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanAccessListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.7.1.2 +lcsSetupWlanAccessListEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanAccessListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.7.1.3 +lcsSetupWlanAccessListEntryComment OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..30)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanAccessListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.7.1.4 +lcsSetupWlanAccessListEntryWpaPassphrase OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanAccessListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.7.1.5 +lcsSetupWlanAccessListEntryTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanAccessListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.7.1.6 +lcsSetupWlanAccessListEntryRxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanAccessListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.7.1.7 +lcsSetupWlanAccessListEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanAccessListEntry 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.8 +lcsSetupWlanAccessMode OBJECT-TYPE + SYNTAX INTEGER { + eNegative (0), + ePositive (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.12 +lcsSetupWlanIappProtocol OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.13 +lcsSetupWlanIappAnnounceInterval OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.14 +lcsSetupWlanIappHandoverTimeout OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.26 +lcsSetupWlanInterSsidTraffic OBJECT-TYPE + SYNTAX INTEGER { + eLocallyOff (0), + eYes (1), + eGloballyOff (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 26 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.27 +lcsSetupWlanSuperviseStations OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 27 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.12.29 +lcsSetupWlanRadiusAccessCheck OBJECT IDENTIFIER ::= { lcsSetupWlan 29 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.29.1 +lcsSetupWlanRadiusAccessCheckServerAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccessCheck 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.29.2 +lcsSetupWlanRadiusAccessCheckAuthPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccessCheck 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.29.3 +lcsSetupWlanRadiusAccessCheckSecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccessCheck 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.29.4 +lcsSetupWlanRadiusAccessCheckBackupServerIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccessCheck 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.29.5 +lcsSetupWlanRadiusAccessCheckBackupAuthPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccessCheck 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.29.6 +lcsSetupWlanRadiusAccessCheckBackupSecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccessCheck 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.29.7 +lcsSetupWlanRadiusAccessCheckResponseLifetime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccessCheck 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.29.8 +lcsSetupWlanRadiusAccessCheckPasswordSource OBJECT-TYPE + SYNTAX INTEGER { + eSecret (0), + eMacAddress (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccessCheck 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.29.9 +lcsSetupWlanRadiusAccessCheckRecheckCycle OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccessCheck 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.29.10 +lcsSetupWlanRadiusAccessCheckProvideServerDatabase OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccessCheck 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.29.11 +lcsSetupWlanRadiusAccessCheckLoopbackAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccessCheck 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.29.12 +lcsSetupWlanRadiusAccessCheckBackupLoopbackAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccessCheck 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.29.13 +lcsSetupWlanRadiusAccessCheckProtocol OBJECT-TYPE + SYNTAX INTEGER { + eRadius (0), + eRadsec (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccessCheck 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.29.14 +lcsSetupWlanRadiusAccessCheckBackupProtocol OBJECT-TYPE + SYNTAX INTEGER { + eRadius (0), + eRadsec (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccessCheck 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.29.15 +lcsSetupWlanRadiusAccessCheckForceRecheck OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanRadiusAccessCheck 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.29.16 +lcsSetupWlanRadiusAccessCheckServerHostname OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanRadiusAccessCheck 16 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.29.17 +lcsSetupWlanRadiusAccessCheckBackupServerHostname OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanRadiusAccessCheck 17 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.36 +lcsSetupWlanCountry OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eAlbania (8), + eAlgeria (12), + eArgentina (32), + eAustralia (36), + eAustria (40), + eBahrain (48), + eBangladesh (50), + eBelgium (56), + eBosniaHerzegovina (70), + eBrazil (76), + eBruneiDarussalam (96), + eBulgaria (100), + eBelarus (112), + eCanada (124), + eChile (152), + eChina (156), + eTaiwan (158), + eColombia (170), + eCostaRica (188), + eCroatia (191), + eCyprus (196), + eCzech (203), + eDenmark (208), + eEcuador (218), + eEstonia (233), + eFinland (246), + eFrance (250), + eGermany (276), + eGhana (288), + eGreece (300), + eGuatemala (320), + eHonduras (340), + eHongKong (344), + eHungary (348), + eIceland (352), + eIndia (356), + eIndonesia (360), + eIreland (372), + eIsrael (376), + eItaly (380), + eJapan (392), + eJordan (400), + eSouthKorea (410), + eKuwait (414), + eLebanon (422), + eLatvia (428), + eLiechtenstein (438), + eLithuania (440), + eLuxembourg (442), + eMacau (446), + eMalaysia (458), + eMalta (470), + eMexico (484), + eMoldavia (498), + eMorocco (504), + eOman (512), + eNetherlands (528), + eNewZealand (554), + eNicaragua (558), + eNorway (578), + ePakistan (586), + ePanama (591), + eParaguay (600), + ePeru (604), + ePhilippines (608), + ePoland (616), + ePortugal (620), + ePuertoRico (630), + eQatar (634), + eRomania (642), + eRussia (643), + eSaudiArabia (682), + eSingapore (702), + eSlovak (703), + eSlovenia (705), + eSouthAfrica (710), + eSpain (724), + eSweden (752), + eSwitzerland (756), + eThailand (764), + eUnitedArabEmirates (784), + eTunisia (788), + eTurkey (792), + eUganda (800), + eUkraine (804), + eMacedonia (807), + eEgypt (818), + eUnitedKingdom (826), + eTanzania (834), + eUnitedStatesFcc (840), + eUruguay (858), + eVenezuela (862), + eEurope (998), + eEgalistan (999) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 36 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.38 +lcsSetupWlanArpHandling OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 38 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.41 +lcsSetupWlanMailAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..254)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 41 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.44 +lcsSetupWlanAllowIllegalAssociationWithoutAuthentication OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 44 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.12.45 +lcsSetupWlanRadiusAccounting OBJECT IDENTIFIER ::= { lcsSetupWlan 45 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.45.1 +lcsSetupWlanRadiusAccountingServerAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccounting 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.45.2 +lcsSetupWlanRadiusAccountingAccntPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccounting 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.45.3 +lcsSetupWlanRadiusAccountingSecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccounting 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.45.4 +lcsSetupWlanRadiusAccountingBackupServerIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccounting 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.45.5 +lcsSetupWlanRadiusAccountingBackupAccntPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccounting 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.45.6 +lcsSetupWlanRadiusAccountingBackupSecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccounting 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.45.7 +lcsSetupWlanRadiusAccountingClientBrgHandling OBJECT-TYPE + SYNTAX INTEGER { + eAllTraffic (0), + eBridgeTrafficOnly (1), + eClientTrafficOnly (2), + eSeparateAccounting (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccounting 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.45.8 +lcsSetupWlanRadiusAccountingInterimUpdatePeriod OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccounting 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.45.9 +lcsSetupWlanRadiusAccountingExcludedVlan OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccounting 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.45.10 +lcsSetupWlanRadiusAccountingLoopbackAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccounting 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.45.11 +lcsSetupWlanRadiusAccountingBackupLoopbackAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccounting 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.45.12 +lcsSetupWlanRadiusAccountingProtocol OBJECT-TYPE + SYNTAX INTEGER { + eRadius (0), + eRadsec (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccounting 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.45.13 +lcsSetupWlanRadiusAccountingBackupProtocol OBJECT-TYPE + SYNTAX INTEGER { + eRadius (0), + eRadsec (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccounting 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.45.14 +lcsSetupWlanRadiusAccountingRestartAccounting OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadiusAccounting 14 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.12.45.17 +lcsSetupWlanRadiusAccountingServersTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanRadiusAccountingServersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanRadiusAccounting 17 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.12.45.17.1 +lcsSetupWlanRadiusAccountingServersEntry OBJECT-TYPE + SYNTAX LcsSetupWlanRadiusAccountingServersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanRadiusAccountingServersEntryName + } + ::= { lcsSetupWlanRadiusAccountingServersTable 1 } + +LcsSetupWlanRadiusAccountingServersEntry ::= SEQUENCE { + lcsSetupWlanRadiusAccountingServersEntryName DisplayString, + lcsSetupWlanRadiusAccountingServersEntryServerAddress IpAddress, + lcsSetupWlanRadiusAccountingServersEntryPort Integer32, + lcsSetupWlanRadiusAccountingServersEntrySecret DisplayString, + lcsSetupWlanRadiusAccountingServersEntryLoopbackAddr DisplayString, + lcsSetupWlanRadiusAccountingServersEntryProtocol INTEGER, + lcsSetupWlanRadiusAccountingServersEntryBackup DisplayString, + lcsSetupWlanRadiusAccountingServersEntryHostName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.45.17.1.1 +lcsSetupWlanRadiusAccountingServersEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanRadiusAccountingServersEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.45.17.1.2 +lcsSetupWlanRadiusAccountingServersEntryServerAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanRadiusAccountingServersEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.45.17.1.3 +lcsSetupWlanRadiusAccountingServersEntryPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanRadiusAccountingServersEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.45.17.1.4 +lcsSetupWlanRadiusAccountingServersEntrySecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanRadiusAccountingServersEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.45.17.1.5 +lcsSetupWlanRadiusAccountingServersEntryLoopbackAddr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanRadiusAccountingServersEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.45.17.1.6 +lcsSetupWlanRadiusAccountingServersEntryProtocol OBJECT-TYPE + SYNTAX INTEGER { + eRadius (0), + eRadsec (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanRadiusAccountingServersEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.45.17.1.7 +lcsSetupWlanRadiusAccountingServersEntryBackup OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanRadiusAccountingServersEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.45.17.1.8 +lcsSetupWlanRadiusAccountingServersEntryHostName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanRadiusAccountingServersEntry 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.46 +lcsSetupWlanIndoorOnlyOperation OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 46 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.47 +lcsSetupWlanIdleTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 47 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.48 +lcsSetupWlanUseFullChannelset OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 48 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.12.50 +lcsSetupWlanSigAvrg OBJECT IDENTIFIER ::= { lcsSetupWlan 50 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.50.1 +lcsSetupWlanSigAvrgMeth OBJECT-TYPE + SYNTAX INTEGER { + eStd (0), + eFilt (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanSigAvrg 1 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.12.50.2 +lcsSetupWlanSigAvrgStdParams OBJECT IDENTIFIER ::= { lcsSetupWlanSigAvrg 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.50.2.1 +lcsSetupWlanSigAvrgStdParamsFactor OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanSigAvrgStdParams 1 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.12.50.3 +lcsSetupWlanSigAvrgFiltParms OBJECT IDENTIFIER ::= { lcsSetupWlanSigAvrg 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.50.3.1 +lcsSetupWlanSigAvrgFiltParmsCt OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanSigAvrgFiltParms 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.12.50.3.2 +lcsSetupWlanSigAvrgFiltParmsCoeffTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanSigAvrgFiltParmsCoeffEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanSigAvrgFiltParms 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.12.50.3.2.1 +lcsSetupWlanSigAvrgFiltParmsCoeffEntry OBJECT-TYPE + SYNTAX LcsSetupWlanSigAvrgFiltParmsCoeffEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanSigAvrgFiltParmsCoeffEntryIdx + } + ::= { lcsSetupWlanSigAvrgFiltParmsCoeffTable 1 } + +LcsSetupWlanSigAvrgFiltParmsCoeffEntry ::= SEQUENCE { + lcsSetupWlanSigAvrgFiltParmsCoeffEntryIdx Integer32, + lcsSetupWlanSigAvrgFiltParmsCoeffEntryVal Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.50.3.2.1.1 +lcsSetupWlanSigAvrgFiltParmsCoeffEntryIdx OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanSigAvrgFiltParmsCoeffEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.50.3.2.1.2 +lcsSetupWlanSigAvrgFiltParmsCoeffEntryVal OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanSigAvrgFiltParmsCoeffEntry 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.12.51 +lcsSetupWlanRateAdaption OBJECT IDENTIFIER ::= { lcsSetupWlan 51 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.51.2 +lcsSetupWlanRateAdaptionInitialRate OBJECT-TYPE + SYNTAX INTEGER { + eMinimum (0), + eRssiDerived (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanRateAdaption 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.51.3 +lcsSetupWlanRateAdaptionMinstrelAveragingFactor OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanRateAdaption 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.51.4 +lcsSetupWlanRateAdaptionStandardAveragingFactor OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanRateAdaption 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.51.5 +lcsSetupWlanRateAdaptionMethod OBJECT-TYPE + SYNTAX INTEGER { + eStandard (0), + eMinstrel (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanRateAdaption 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.60 +lcsSetupWlanIappIpNetwork OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 60 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.12.70 +lcsSetupWlanVlanGroupkeyMappingTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanVlanGroupkeyMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlan 70 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.12.70.1 +lcsSetupWlanVlanGroupkeyMappingEntry OBJECT-TYPE + SYNTAX LcsSetupWlanVlanGroupkeyMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanVlanGroupkeyMappingEntryNetwork, + lcsSetupWlanVlanGroupkeyMappingEntryVlanId + } + ::= { lcsSetupWlanVlanGroupkeyMappingTable 1 } + +LcsSetupWlanVlanGroupkeyMappingEntry ::= SEQUENCE { + lcsSetupWlanVlanGroupkeyMappingEntryNetwork INTEGER, + lcsSetupWlanVlanGroupkeyMappingEntryVlanId Integer32, + lcsSetupWlanVlanGroupkeyMappingEntryGroupkeyIndex Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.70.1.1 +lcsSetupWlanVlanGroupkeyMappingEntryNetwork OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2), + eWlan12 (16), + eWlan13 (17), + eWlan14 (18), + eWlan15 (19), + eWlan16 (20), + eWlan17 (21), + eWlan18 (22), + eWlan22 (32), + eWlan23 (33), + eWlan24 (34), + eWlan25 (35), + eWlan26 (36), + eWlan27 (37), + eWlan28 (38) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanVlanGroupkeyMappingEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.70.1.2 +lcsSetupWlanVlanGroupkeyMappingEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanVlanGroupkeyMappingEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.70.1.3 +lcsSetupWlanVlanGroupkeyMappingEntryGroupkeyIndex OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanVlanGroupkeyMappingEntry 3 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.12.80 +lcsSetupWlanDualRoaming OBJECT IDENTIFIER ::= { lcsSetupWlan 80 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.80.1 +lcsSetupWlanDualRoamingGroup OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eWlan1PlusWlan2 (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanDualRoaming 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.80.2 +lcsSetupWlanDualRoamingBlockTimeMs OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanDualRoaming 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.12.85 +lcsSetupWlanPmkCaching OBJECT IDENTIFIER ::= { lcsSetupWlan 85 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.85.1 +lcsSetupWlanPmkCachingDefaultLifetime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanPmkCaching 1 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.12.86 +lcsSetupWlanPacketCapture OBJECT IDENTIFIER ::= { lcsSetupWlan 86 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.86.1 +lcsSetupWlanPacketCaptureWlanCaptureFormat OBJECT-TYPE + SYNTAX INTEGER { + ePlain (105), + ePrism (119), + eRadiotap (127), + eAvs (163), + ePpi (192) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanPacketCapture 1 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.12.87 +lcsSetupWlanClientSteering OBJECT IDENTIFIER ::= { lcsSetupWlan 87 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.87.1 +lcsSetupWlanClientSteeringOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanClientSteering 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.87.2 +lcsSetupWlanClientSteeringCriteria OBJECT-TYPE + SYNTAX INTEGER { + eRadioBand (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanClientSteering 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.87.3 +lcsSetupWlanClientSteeringPreferredBand OBJECT-TYPE + SYNTAX INTEGER { + e24ghz (1), + e5ghz (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanClientSteering 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.87.4 +lcsSetupWlanClientSteeringProberequestAgeoutSeconds OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanClientSteering 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.87.5 +lcsSetupWlanClientSteeringInitialBlocktimeSeconds OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanClientSteering 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.100 +lcsSetupWlanCardReinitCycle OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 100 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.101 +lcsSetupWlanNoiseCalibrationCycle OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 101 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.103 +lcsSetupWlanTraceMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 103 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.105 +lcsSetupWlanThermRecalCycle OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 105 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.12.107 +lcsSetupWlanRadarPatternThresholdsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanRadarPatternThresholdsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 107 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.12.107.1 +lcsSetupWlanRadarPatternThresholdsEntry OBJECT-TYPE + SYNTAX LcsSetupWlanRadarPatternThresholdsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanRadarPatternThresholdsEntryPatternPps + } + ::= { lcsSetupWlanRadarPatternThresholdsTable 1 } + +LcsSetupWlanRadarPatternThresholdsEntry ::= SEQUENCE { + lcsSetupWlanRadarPatternThresholdsEntryPatternPps INTEGER, + lcsSetupWlanRadarPatternThresholdsEntryThreshold Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.107.1.1 +lcsSetupWlanRadarPatternThresholdsEntryPatternPps OBJECT-TYPE + SYNTAX INTEGER { + eEn30189313200pps (200), + eEn30189313300pps (300), + eEn30189312330pps (330), + eEn30189313500pps (500), + eEn30189312700pps (700), + eEn30189313750pps (750), + eEn30189313800pps (800), + eEn301893131000pps (1000), + eEn301893131200pps (1200), + eEn301893131500pps (1500), + eEn301893131600pps (1600), + eEn301893121800pps (1800), + eEn301893132000pps (2000), + eEn301893132300pps (2300), + eEn301893133000pps (3000), + eEn301893133500pps (3500), + eEn301893134000pps (4000), + eEn302502200pps (262344), + eEn302502300pps (262444), + eEn302502500pps (262644), + eEn302502750pps (262894), + eEn302502800pps (262944), + eEn3025021000pps (263144), + eEn3025021200pps (263344), + eEn3025021500pps (263644), + eEn3025021600pps (263744), + eEn3025022000pps (264144), + eEn3025022300pps (264444), + eEn3025023000pps (265144), + eEn3025023500pps (265644), + eEn3025024000pps (266144), + eEn3025024500pps (266644) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadarPatternThresholdsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.107.1.2 +lcsSetupWlanRadarPatternThresholdsEntryThreshold OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanRadarPatternThresholdsEntry 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.108 +lcsSetupWlanRadarLoadThreshold OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 108 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.12.109 +lcsSetupWlanNoiseOffsetsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanNoiseOffsetsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 109 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.12.109.1 +lcsSetupWlanNoiseOffsetsEntry OBJECT-TYPE + SYNTAX LcsSetupWlanNoiseOffsetsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanNoiseOffsetsEntryBand, + lcsSetupWlanNoiseOffsetsEntryChannel, + lcsSetupWlanNoiseOffsetsEntryInterface + } + ::= { lcsSetupWlanNoiseOffsetsTable 1 } + +LcsSetupWlanNoiseOffsetsEntry ::= SEQUENCE { + lcsSetupWlanNoiseOffsetsEntryBand INTEGER, + lcsSetupWlanNoiseOffsetsEntryChannel Integer32, + lcsSetupWlanNoiseOffsetsEntryInterface INTEGER, + lcsSetupWlanNoiseOffsetsEntryValue Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.109.1.1 +lcsSetupWlanNoiseOffsetsEntryBand OBJECT-TYPE + SYNTAX INTEGER { + e24ghz (1), + e5ghz (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanNoiseOffsetsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.109.1.2 +lcsSetupWlanNoiseOffsetsEntryChannel OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanNoiseOffsetsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.109.1.3 +lcsSetupWlanNoiseOffsetsEntryInterface OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanNoiseOffsetsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.109.1.4 +lcsSetupWlanNoiseOffsetsEntryValue OBJECT-TYPE + SYNTAX Integer32 (-128..127) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanNoiseOffsetsEntry 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.110 +lcsSetupWlanTraceLevel OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 110 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.12.111 +lcsSetupWlanNoiseImmunity OBJECT IDENTIFIER ::= { lcsSetupWlan 111 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.111.1 +lcsSetupWlanNoiseImmunityNoiseImmunityLevel OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanNoiseImmunity 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.111.2 +lcsSetupWlanNoiseImmunityOfdmWeakSignalDetection OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanNoiseImmunity 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.111.3 +lcsSetupWlanNoiseImmunityCckWeakSignalDetectionThreshold OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanNoiseImmunity 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.111.4 +lcsSetupWlanNoiseImmunityFirStepLevel OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanNoiseImmunity 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.111.5 +lcsSetupWlanNoiseImmunitySpuriousImmunityLevel OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanNoiseImmunity 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.111.6 +lcsSetupWlanNoiseImmunityMrcCck OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanNoiseImmunity 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.114 +lcsSetupWlanAggregateRetryLimit OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 114 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.115 +lcsSetupWlanOmitGlobalCryptoSequenceCheck OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eNo (1), + eYes (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 115 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.116 +lcsSetupWlanTracePackets OBJECT-TYPE + SYNTAX BITS { + eAll (0), + eEapol (4), + eData (5), + eControl (6), + eManagement (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 116 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.117 +lcsSetupWlanWpaHandshakeDelayMs OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlan 117 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.118 +lcsSetupWlanWpaHandshakeTimeoutOverrideMs OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlan 118 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.119 +lcsSetupWlanTraceBeacons OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlan 119 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.120 +lcsSetupWlanRxAggregateFlushTimeoutMs OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlan 120 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.121 +lcsSetupWlanHtFairness OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlan 121 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.122 +lcsSetupWlanDfsTestmode OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlan 122 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.124 +lcsSetupWlanTraceMgmtPackets OBJECT-TYPE + SYNTAX BITS { + eOther (2), + eBeacon (3), + eAction (4), + eProbe (5), + eAuthentication (6), + eAssociation (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlan 124 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.125 +lcsSetupWlanTraceDataPackets OBJECT-TYPE + SYNTAX BITS { + eOther (5), + eNull (6), + eNormal (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlan 125 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.12.130 +lcsSetupWlanDfs OBJECT IDENTIFIER ::= { lcsSetupWlan 130 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.130.1 +lcsSetupWlanDfsUseFullChannelset OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanDfs 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.130.2 +lcsSetupWlanDfsRadarLoadThreshold OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanDfs 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.130.3 +lcsSetupWlanDfsDirectChannelswitching OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanDfs 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.130.4 +lcsSetupWlanDfsDfsTestmode OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanDfs 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.130.5 +lcsSetupWlanDfsIgnoreCrcErrors OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanDfs 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.130.6 +lcsSetupWlanDfsTraceIgnoredPulses OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanDfs 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.130.7 +lcsSetupWlanDfsGoForHighestBandwidth OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanDfs 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.12.130.8 +lcsSetupWlanDfsPreferFastSwitch OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanDfs 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.12.130.10 +lcsSetupWlanDfsRadarPatternThresholdsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanDfsRadarPatternThresholdsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanDfs 10 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.12.130.10.1 +lcsSetupWlanDfsRadarPatternThresholdsEntry OBJECT-TYPE + SYNTAX LcsSetupWlanDfsRadarPatternThresholdsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanDfsRadarPatternThresholdsEntryPatternPps + } + ::= { lcsSetupWlanDfsRadarPatternThresholdsTable 1 } + +LcsSetupWlanDfsRadarPatternThresholdsEntry ::= SEQUENCE { + lcsSetupWlanDfsRadarPatternThresholdsEntryPatternPps INTEGER, + lcsSetupWlanDfsRadarPatternThresholdsEntryThreshold Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.130.10.1.1 +lcsSetupWlanDfsRadarPatternThresholdsEntryPatternPps OBJECT-TYPE + SYNTAX INTEGER { + eEn30189313200pps (200), + eEn30189313300pps (300), + eEn30189312330pps (330), + eEn30189313500pps (500), + eEn30189312700pps (700), + eEn30189313750pps (750), + eEn30189313800pps (800), + eEn301893131000pps (1000), + eEn301893131200pps (1200), + eEn301893131500pps (1500), + eEn301893131600pps (1600), + eEn301893121800pps (1800), + eEn301893132000pps (2000), + eEn301893132300pps (2300), + eEn301893133000pps (3000), + eEn301893133500pps (3500), + eEn301893134000pps (4000), + eEn302502200pps (262344), + eEn302502300pps (262444), + eEn302502500pps (262644), + eEn302502750pps (262894), + eEn302502800pps (262944), + eEn3025021000pps (263144), + eEn3025021200pps (263344), + eEn3025021500pps (263644), + eEn3025021600pps (263744), + eEn3025022000pps (264144), + eEn3025022300pps (264444), + eEn3025023000pps (265144), + eEn3025023500pps (265644), + eEn3025024000pps (266144), + eEn3025024500pps (266644) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanDfsRadarPatternThresholdsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.12.130.10.1.2 +lcsSetupWlanDfsRadarPatternThresholdsEntryThreshold OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanDfsRadarPatternThresholdsEntry 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.13 +lcsSetupLancapi OBJECT IDENTIFIER ::= { lcsSetup 13 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.13.1 +lcsSetupLancapiAccessListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupLancapiAccessListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLancapi 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.13.1.1 +lcsSetupLancapiAccessListEntry OBJECT-TYPE + SYNTAX LcsSetupLancapiAccessListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupLancapiAccessListEntryIpAddress, + lcsSetupLancapiAccessListEntryIpNetmask, + lcsSetupLancapiAccessListEntryRtgTag + } + ::= { lcsSetupLancapiAccessListTable 1 } + +LcsSetupLancapiAccessListEntry ::= SEQUENCE { + lcsSetupLancapiAccessListEntryIpAddress IpAddress, + lcsSetupLancapiAccessListEntryIpNetmask IpAddress, + lcsSetupLancapiAccessListEntryRtgTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.13.1.1.1 +lcsSetupLancapiAccessListEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLancapiAccessListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.13.1.1.2 +lcsSetupLancapiAccessListEntryIpNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLancapiAccessListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.13.1.1.3 +lcsSetupLancapiAccessListEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLancapiAccessListEntry 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.13.3 +lcsSetupLancapiUdpPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLancapi 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.13.6 +lcsSetupLancapiInterfaceListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupLancapiInterfaceListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLancapi 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.13.6.1 +lcsSetupLancapiInterfaceListEntry OBJECT-TYPE + SYNTAX LcsSetupLancapiInterfaceListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupLancapiInterfaceListEntryIfc + } + ::= { lcsSetupLancapiInterfaceListTable 1 } + +LcsSetupLancapiInterfaceListEntry ::= SEQUENCE { + lcsSetupLancapiInterfaceListEntryIfc INTEGER, + lcsSetupLancapiInterfaceListEntryOperating INTEGER, + lcsSetupLancapiInterfaceListEntryEazMsnS DisplayString, + lcsSetupLancapiInterfaceListEntryForceOutMsn INTEGER, + lcsSetupLancapiInterfaceListEntryMaxConnections Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.13.6.1.1 +lcsSetupLancapiInterfaceListEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eS01 (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLancapiInterfaceListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.13.6.1.2 +lcsSetupLancapiInterfaceListEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eDialOnly (2), + eDialInOnly (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLancapiInterfaceListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.13.6.1.3 +lcsSetupLancapiInterfaceListEntryEazMsnS OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..30)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLancapiInterfaceListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.13.6.1.5 +lcsSetupLancapiInterfaceListEntryForceOutMsn OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLancapiInterfaceListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.13.6.1.6 +lcsSetupLancapiInterfaceListEntryMaxConnections OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLancapiInterfaceListEntry 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.13.7 +lcsSetupLancapiPriorityListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupLancapiPriorityListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLancapi 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.13.7.1 +lcsSetupLancapiPriorityListEntry OBJECT-TYPE + SYNTAX LcsSetupLancapiPriorityListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupLancapiPriorityListEntryIfc + } + ::= { lcsSetupLancapiPriorityListTable 1 } + +LcsSetupLancapiPriorityListEntry ::= SEQUENCE { + lcsSetupLancapiPriorityListEntryIfc INTEGER, + lcsSetupLancapiPriorityListEntryPrioOut INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.13.7.1.1 +lcsSetupLancapiPriorityListEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eS01 (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLancapiPriorityListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.13.7.1.2 +lcsSetupLancapiPriorityListEntryPrioOut OBJECT-TYPE + SYNTAX INTEGER { + eP1 (0), + eP2 (1), + eP3 (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLancapiPriorityListEntry 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.14 +lcsSetupTime OBJECT IDENTIFIER ::= { lcsSetup 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.14.1 +lcsSetupTimeFetchMethod OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eIsdn (1), + eNtp (2), + eGps (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTime 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.14.2 +lcsSetupTimeCurrentTime OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTime 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.14.3 +lcsSetupTimeTimeCallNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTime 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.14.5 +lcsSetupTimeCallAttempts OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTime 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.14.7 +lcsSetupTimeUtcInSeconds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTime 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.14.10 +lcsSetupTimeTimezone OBJECT-TYPE + SYNTAX INTEGER { + e0 (0), + eplus1 (1), + eplus2 (2), + eplus3 (3), + eplus4 (4), + eplus5 (5), + eplus6 (6), + eplus7 (7), + eplus8 (8), + eplus9 (9), + eplus10 (10), + eplus11 (11), + eplus12 (12), + eplus13 (13), + eplus14 (14), + eminus12 (244), + eminus11 (245), + eminus10 (246), + eminus9 (247), + eminus8 (248), + eminus7 (249), + eminus6 (250), + eminus5 (251), + eminus4 (252), + eminus3 (253), + eminus2 (254), + eminus1 (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTime 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.14.11 +lcsSetupTimeDaylightSavingTime OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eEuropeEu (2), + eRussia (3), + eUsa (4), + eUserDefined (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTime 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.14.12 +lcsSetupTimeDstClockChangesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupTimeDstClockChangesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTime 12 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.14.12.1 +lcsSetupTimeDstClockChangesEntry OBJECT-TYPE + SYNTAX LcsSetupTimeDstClockChangesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupTimeDstClockChangesEntryEvent + } + ::= { lcsSetupTimeDstClockChangesTable 1 } + +LcsSetupTimeDstClockChangesEntry ::= SEQUENCE { + lcsSetupTimeDstClockChangesEntryEvent INTEGER, + lcsSetupTimeDstClockChangesEntryIndex INTEGER, + lcsSetupTimeDstClockChangesEntryDay INTEGER, + lcsSetupTimeDstClockChangesEntryMonth INTEGER, + lcsSetupTimeDstClockChangesEntryHour Integer32, + lcsSetupTimeDstClockChangesEntryMinute Integer32, + lcsSetupTimeDstClockChangesEntryTimeType INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.14.12.1.1 +lcsSetupTimeDstClockChangesEntryEvent OBJECT-TYPE + SYNTAX INTEGER { + eStart (1), + eEnd (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTimeDstClockChangesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.14.12.1.2 +lcsSetupTimeDstClockChangesEntryIndex OBJECT-TYPE + SYNTAX INTEGER { + eFirst (1), + eSecond (2), + eThird (3), + eFourth (4), + e4Last (252), + e3Last (253), + e2Last (254), + eLast (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTimeDstClockChangesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.14.12.1.3 +lcsSetupTimeDstClockChangesEntryDay OBJECT-TYPE + SYNTAX INTEGER { + eSunday (0), + eMonday (1), + eTuesday (2), + eWednesday (3), + eThursday (4), + eFriday (5), + eSaturday (6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTimeDstClockChangesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.14.12.1.4 +lcsSetupTimeDstClockChangesEntryMonth OBJECT-TYPE + SYNTAX INTEGER { + eJanuary (1), + eFebruary (2), + eMarch (3), + eApril (4), + eMay (5), + eJune (6), + eJuly (7), + eAugust (8), + eSeptember (9), + eOctober (10), + eNovember (11), + eDecember (12) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTimeDstClockChangesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.14.12.1.5 +lcsSetupTimeDstClockChangesEntryHour OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTimeDstClockChangesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.14.12.1.6 +lcsSetupTimeDstClockChangesEntryMinute OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTimeDstClockChangesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.14.12.1.7 +lcsSetupTimeDstClockChangesEntryTimeType OBJECT-TYPE + SYNTAX INTEGER { + eLst (0), + eUtc (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTimeDstClockChangesEntry 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.14.13 +lcsSetupTimeGetTime OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTime 13 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.14.15 +lcsSetupTimeHolidaysTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupTimeHolidaysEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTime 15 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.14.15.1 +lcsSetupTimeHolidaysEntry OBJECT-TYPE + SYNTAX LcsSetupTimeHolidaysEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupTimeHolidaysEntryIndex + } + ::= { lcsSetupTimeHolidaysTable 1 } + +LcsSetupTimeHolidaysEntry ::= SEQUENCE { + lcsSetupTimeHolidaysEntryIndex Integer32, + lcsSetupTimeHolidaysEntryDate DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.14.15.1.1 +lcsSetupTimeHolidaysEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTimeHolidaysEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.14.15.1.2 +lcsSetupTimeHolidaysEntryDate OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..13)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTimeHolidaysEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.14.16 +lcsSetupTimeTimeframeTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupTimeTimeframeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTime 16 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.14.16.1 +lcsSetupTimeTimeframeEntry OBJECT-TYPE + SYNTAX LcsSetupTimeTimeframeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupTimeTimeframeEntryName, + lcsSetupTimeTimeframeEntryStart, + lcsSetupTimeTimeframeEntryStop, + lcsSetupTimeTimeframeEntryWeekdays + } + ::= { lcsSetupTimeTimeframeTable 1 } + +LcsSetupTimeTimeframeEntry ::= SEQUENCE { + lcsSetupTimeTimeframeEntryName DisplayString, + lcsSetupTimeTimeframeEntryStart DisplayString, + lcsSetupTimeTimeframeEntryStop DisplayString, + lcsSetupTimeTimeframeEntryWeekdays BITS + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.14.16.1.1 +lcsSetupTimeTimeframeEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTimeTimeframeEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.14.16.1.2 +lcsSetupTimeTimeframeEntryStart OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..5)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTimeTimeframeEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.14.16.1.3 +lcsSetupTimeTimeframeEntryStop OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..5)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTimeTimeframeEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.14.16.1.4 +lcsSetupTimeTimeframeEntryWeekdays OBJECT-TYPE + SYNTAX BITS { + eHoliday (0), + eSaturday (1), + eFriday (2), + eThursday (3), + eWednesday (4), + eTuesday (5), + eMonday (6), + eSunday (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTimeTimeframeEntry 4 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.15 +lcsSetupLcr OBJECT IDENTIFIER ::= { lcsSetup 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.15.1 +lcsSetupLcrRouterUsage OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLcr 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.15.2 +lcsSetupLcrLancapiUsage OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLcr 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.15.4 +lcsSetupLcrTimeListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupLcrTimeListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLcr 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.15.4.1 +lcsSetupLcrTimeListEntry OBJECT-TYPE + SYNTAX LcsSetupLcrTimeListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupLcrTimeListEntryIndex + } + ::= { lcsSetupLcrTimeListTable 1 } + +LcsSetupLcrTimeListEntry ::= SEQUENCE { + lcsSetupLcrTimeListEntryIndex Integer32, + lcsSetupLcrTimeListEntryPrefix DisplayString, + lcsSetupLcrTimeListEntryDays BITS, + lcsSetupLcrTimeListEntryStart DisplayString, + lcsSetupLcrTimeListEntryStop DisplayString, + lcsSetupLcrTimeListEntryNumberList DisplayString, + lcsSetupLcrTimeListEntryFallback INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.15.4.1.1 +lcsSetupLcrTimeListEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLcrTimeListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.15.4.1.2 +lcsSetupLcrTimeListEntryPrefix OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLcrTimeListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.15.4.1.3 +lcsSetupLcrTimeListEntryDays OBJECT-TYPE + SYNTAX BITS { + eHoliday (0), + eSunday (1), + eSaturday (2), + eFriday (3), + eThursday (4), + eWednesday (5), + eTuesday (6), + eMonday (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLcrTimeListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.15.4.1.4 +lcsSetupLcrTimeListEntryStart OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..5)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLcrTimeListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.15.4.1.5 +lcsSetupLcrTimeListEntryStop OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..5)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLcrTimeListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.15.4.1.6 +lcsSetupLcrTimeListEntryNumberList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..29)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLcrTimeListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.15.4.1.7 +lcsSetupLcrTimeListEntryFallback OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLcrTimeListEntry 7 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.16 +lcsSetupNetbios OBJECT IDENTIFIER ::= { lcsSetup 16 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.16.1 +lcsSetupNetbiosOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbios 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.16.2 +lcsSetupNetbiosScopeId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbios 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.16.4 +lcsSetupNetbiosPeersTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupNetbiosPeersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbios 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.16.4.1 +lcsSetupNetbiosPeersEntry OBJECT-TYPE + SYNTAX LcsSetupNetbiosPeersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupNetbiosPeersEntryName + } + ::= { lcsSetupNetbiosPeersTable 1 } + +LcsSetupNetbiosPeersEntry ::= SEQUENCE { + lcsSetupNetbiosPeersEntryName DisplayString, + lcsSetupNetbiosPeersEntryType INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.4.1.1 +lcsSetupNetbiosPeersEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosPeersEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.4.1.3 +lcsSetupNetbiosPeersEntryType OBJECT-TYPE + SYNTAX INTEGER { + eRouter (0), + eWorkstation (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosPeersEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.16.5 +lcsSetupNetbiosGroupListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupNetbiosGroupListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbios 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.16.5.1 +lcsSetupNetbiosGroupListEntry OBJECT-TYPE + SYNTAX LcsSetupNetbiosGroupListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupNetbiosGroupListEntryGroupDomain, + lcsSetupNetbiosGroupListEntryType, + lcsSetupNetbiosGroupListEntryIpAddress, + lcsSetupNetbiosGroupListEntryRtgTag + } + ::= { lcsSetupNetbiosGroupListTable 1 } + +LcsSetupNetbiosGroupListEntry ::= SEQUENCE { + lcsSetupNetbiosGroupListEntryGroupDomain DisplayString, + lcsSetupNetbiosGroupListEntryType DisplayString, + lcsSetupNetbiosGroupListEntryIpAddress IpAddress, + lcsSetupNetbiosGroupListEntryPeer DisplayString, + lcsSetupNetbiosGroupListEntryTimeout Integer32, + lcsSetupNetbiosGroupListEntryFlags DisplayString, + lcsSetupNetbiosGroupListEntryNetworkName DisplayString, + lcsSetupNetbiosGroupListEntryRtgTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.5.1.1 +lcsSetupNetbiosGroupListEntryGroupDomain OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosGroupListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.5.1.2 +lcsSetupNetbiosGroupListEntryType OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..1)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosGroupListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.5.1.3 +lcsSetupNetbiosGroupListEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosGroupListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.5.1.4 +lcsSetupNetbiosGroupListEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosGroupListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.5.1.5 +lcsSetupNetbiosGroupListEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosGroupListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.5.1.6 +lcsSetupNetbiosGroupListEntryFlags OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosGroupListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.5.1.7 +lcsSetupNetbiosGroupListEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosGroupListEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.5.1.8 +lcsSetupNetbiosGroupListEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosGroupListEntry 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.16.6 +lcsSetupNetbiosHostListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupNetbiosHostListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbios 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.16.6.1 +lcsSetupNetbiosHostListEntry OBJECT-TYPE + SYNTAX LcsSetupNetbiosHostListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupNetbiosHostListEntryName, + lcsSetupNetbiosHostListEntryType, + lcsSetupNetbiosHostListEntryIpAddress, + lcsSetupNetbiosHostListEntryRtgTag + } + ::= { lcsSetupNetbiosHostListTable 1 } + +LcsSetupNetbiosHostListEntry ::= SEQUENCE { + lcsSetupNetbiosHostListEntryName DisplayString, + lcsSetupNetbiosHostListEntryType DisplayString, + lcsSetupNetbiosHostListEntryIpAddress IpAddress, + lcsSetupNetbiosHostListEntryPeer DisplayString, + lcsSetupNetbiosHostListEntryTimeout Integer32, + lcsSetupNetbiosHostListEntryFlags DisplayString, + lcsSetupNetbiosHostListEntryNetworkName DisplayString, + lcsSetupNetbiosHostListEntryRtgTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.6.1.1 +lcsSetupNetbiosHostListEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosHostListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.6.1.2 +lcsSetupNetbiosHostListEntryType OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..1)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosHostListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.6.1.3 +lcsSetupNetbiosHostListEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosHostListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.6.1.4 +lcsSetupNetbiosHostListEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosHostListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.6.1.5 +lcsSetupNetbiosHostListEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosHostListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.6.1.6 +lcsSetupNetbiosHostListEntryFlags OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosHostListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.6.1.7 +lcsSetupNetbiosHostListEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosHostListEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.6.1.8 +lcsSetupNetbiosHostListEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosHostListEntry 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.16.7 +lcsSetupNetbiosServerListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupNetbiosServerListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbios 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.16.7.1 +lcsSetupNetbiosServerListEntry OBJECT-TYPE + SYNTAX LcsSetupNetbiosServerListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupNetbiosServerListEntryHost, + lcsSetupNetbiosServerListEntryGroupDomain, + lcsSetupNetbiosServerListEntryIpAddress, + lcsSetupNetbiosServerListEntryRtgTag + } + ::= { lcsSetupNetbiosServerListTable 1 } + +LcsSetupNetbiosServerListEntry ::= SEQUENCE { + lcsSetupNetbiosServerListEntryHost DisplayString, + lcsSetupNetbiosServerListEntryGroupDomain DisplayString, + lcsSetupNetbiosServerListEntryIpAddress DisplayString, + lcsSetupNetbiosServerListEntryOsVer DisplayString, + lcsSetupNetbiosServerListEntrySmbVer DisplayString, + lcsSetupNetbiosServerListEntryServerTyp DisplayString, + lcsSetupNetbiosServerListEntryPeer DisplayString, + lcsSetupNetbiosServerListEntryTimeout Integer32, + lcsSetupNetbiosServerListEntryFlags DisplayString, + lcsSetupNetbiosServerListEntryNetworkName DisplayString, + lcsSetupNetbiosServerListEntryRtgTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.7.1.1 +lcsSetupNetbiosServerListEntryHost OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosServerListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.7.1.2 +lcsSetupNetbiosServerListEntryGroupDomain OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosServerListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.7.1.4 +lcsSetupNetbiosServerListEntryIpAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosServerListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.7.1.5 +lcsSetupNetbiosServerListEntryOsVer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosServerListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.7.1.6 +lcsSetupNetbiosServerListEntrySmbVer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosServerListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.7.1.7 +lcsSetupNetbiosServerListEntryServerTyp OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..4)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosServerListEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.7.1.8 +lcsSetupNetbiosServerListEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosServerListEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.7.1.9 +lcsSetupNetbiosServerListEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosServerListEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.7.1.10 +lcsSetupNetbiosServerListEntryFlags OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosServerListEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.7.1.11 +lcsSetupNetbiosServerListEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosServerListEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.7.1.12 +lcsSetupNetbiosServerListEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosServerListEntry 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.16.8 +lcsSetupNetbiosWatchdogs OBJECT-TYPE + SYNTAX INTEGER { + eRoute (0), + eSpoof (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbios 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.16.9 +lcsSetupNetbiosUpdate OBJECT-TYPE + SYNTAX INTEGER { + ePback (0), + eTrig (1), + eTime (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbios 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.16.10 +lcsSetupNetbiosWanUpdateMinutes OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbios 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.16.11 +lcsSetupNetbiosLeasetime OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbios 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.16.12 +lcsSetupNetbiosNetworksTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupNetbiosNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbios 12 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.16.12.1 +lcsSetupNetbiosNetworksEntry OBJECT-TYPE + SYNTAX LcsSetupNetbiosNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupNetbiosNetworksEntryNetworkName + } + ::= { lcsSetupNetbiosNetworksTable 1 } + +LcsSetupNetbiosNetworksEntry ::= SEQUENCE { + lcsSetupNetbiosNetworksEntryNetworkName DisplayString, + lcsSetupNetbiosNetworksEntryOperating INTEGER, + lcsSetupNetbiosNetworksEntryNtDomain DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.12.1.1 +lcsSetupNetbiosNetworksEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosNetworksEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.12.1.2 +lcsSetupNetbiosNetworksEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosNetworksEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.12.1.3 +lcsSetupNetbiosNetworksEntryNtDomain OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosNetworksEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.16.13 +lcsSetupNetbiosBrowserListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupNetbiosBrowserListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbios 13 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.16.13.1 +lcsSetupNetbiosBrowserListEntry OBJECT-TYPE + SYNTAX LcsSetupNetbiosBrowserListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupNetbiosBrowserListEntryBrowser, + lcsSetupNetbiosBrowserListEntryGroupDomain, + lcsSetupNetbiosBrowserListEntryIpAddress, + lcsSetupNetbiosBrowserListEntryRtgTag + } + ::= { lcsSetupNetbiosBrowserListTable 1 } + +LcsSetupNetbiosBrowserListEntry ::= SEQUENCE { + lcsSetupNetbiosBrowserListEntryBrowser DisplayString, + lcsSetupNetbiosBrowserListEntryGroupDomain DisplayString, + lcsSetupNetbiosBrowserListEntryIpAddress DisplayString, + lcsSetupNetbiosBrowserListEntryOsVer DisplayString, + lcsSetupNetbiosBrowserListEntryServerTyp DisplayString, + lcsSetupNetbiosBrowserListEntryPeer DisplayString, + lcsSetupNetbiosBrowserListEntryTimeout Integer32, + lcsSetupNetbiosBrowserListEntryFlags DisplayString, + lcsSetupNetbiosBrowserListEntryNetworkName DisplayString, + lcsSetupNetbiosBrowserListEntryRtgTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.13.1.1 +lcsSetupNetbiosBrowserListEntryBrowser OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosBrowserListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.13.1.2 +lcsSetupNetbiosBrowserListEntryGroupDomain OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosBrowserListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.13.1.4 +lcsSetupNetbiosBrowserListEntryIpAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosBrowserListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.13.1.5 +lcsSetupNetbiosBrowserListEntryOsVer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosBrowserListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.13.1.7 +lcsSetupNetbiosBrowserListEntryServerTyp OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..4)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosBrowserListEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.13.1.8 +lcsSetupNetbiosBrowserListEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosBrowserListEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.13.1.9 +lcsSetupNetbiosBrowserListEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosBrowserListEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.13.1.10 +lcsSetupNetbiosBrowserListEntryFlags OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosBrowserListEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.13.1.11 +lcsSetupNetbiosBrowserListEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosBrowserListEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.16.13.1.12 +lcsSetupNetbiosBrowserListEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbiosBrowserListEntry 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.16.14 +lcsSetupNetbiosSupportBrowsing OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNetbios 14 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.17 +lcsSetupDns OBJECT IDENTIFIER ::= { lcsSetup 17 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.17.1 +lcsSetupDnsOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDns 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.17.2 +lcsSetupDnsDomain OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDns 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.17.3 +lcsSetupDnsDhcpUsage OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDns 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.17.4 +lcsSetupDnsNetbiosUsage OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDns 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.17.5 +lcsSetupDnsDnsListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupDnsDnsListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDns 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.17.5.1 +lcsSetupDnsDnsListEntry OBJECT-TYPE + SYNTAX LcsSetupDnsDnsListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupDnsDnsListEntryHostName, + lcsSetupDnsDnsListEntryRtgTag + } + ::= { lcsSetupDnsDnsListTable 1 } + +LcsSetupDnsDnsListEntry ::= SEQUENCE { + lcsSetupDnsDnsListEntryHostName DisplayString, + lcsSetupDnsDnsListEntryIpAddress IpAddress, + lcsSetupDnsDnsListEntryIpv6Address DisplayString, + lcsSetupDnsDnsListEntryRtgTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.5.1.1 +lcsSetupDnsDnsListEntryHostName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDnsDnsListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.5.1.2 +lcsSetupDnsDnsListEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDnsDnsListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.5.1.3 +lcsSetupDnsDnsListEntryIpv6Address OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupDnsDnsListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.5.1.4 +lcsSetupDnsDnsListEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupDnsDnsListEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.17.6 +lcsSetupDnsFilterListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupDnsFilterListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDns 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.17.6.1 +lcsSetupDnsFilterListEntry OBJECT-TYPE + SYNTAX LcsSetupDnsFilterListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupDnsFilterListEntryIdx + } + ::= { lcsSetupDnsFilterListTable 1 } + +LcsSetupDnsFilterListEntry ::= SEQUENCE { + lcsSetupDnsFilterListEntryIdx DisplayString, + lcsSetupDnsFilterListEntryDomain DisplayString, + lcsSetupDnsFilterListEntryIpAddress IpAddress, + lcsSetupDnsFilterListEntryNetmask IpAddress, + lcsSetupDnsFilterListEntryIpv6Prefix DisplayString, + lcsSetupDnsFilterListEntryRtgTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.6.1.1 +lcsSetupDnsFilterListEntryIdx OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..4)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDnsFilterListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.6.1.2 +lcsSetupDnsFilterListEntryDomain OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDnsFilterListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.6.1.3 +lcsSetupDnsFilterListEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDnsFilterListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.6.1.4 +lcsSetupDnsFilterListEntryNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDnsFilterListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.6.1.5 +lcsSetupDnsFilterListEntryIpv6Prefix OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..43)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupDnsFilterListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.6.1.6 +lcsSetupDnsFilterListEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupDnsFilterListEntry 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.17.7 +lcsSetupDnsLeasetime OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDns 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.17.8 +lcsSetupDnsDynDnsListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupDnsDynDnsListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDns 8 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.17.8.1 +lcsSetupDnsDynDnsListEntry OBJECT-TYPE + SYNTAX LcsSetupDnsDynDnsListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupDnsDynDnsListEntryHostName, + lcsSetupDnsDynDnsListEntryNetworkName + } + ::= { lcsSetupDnsDynDnsListTable 1 } + +LcsSetupDnsDynDnsListEntry ::= SEQUENCE { + lcsSetupDnsDynDnsListEntryHostName DisplayString, + lcsSetupDnsDynDnsListEntryIpAddress IpAddress, + lcsSetupDnsDynDnsListEntryTimeout Integer32, + lcsSetupDnsDynDnsListEntryIpv6Address DisplayString, + lcsSetupDnsDynDnsListEntryNetworkName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.8.1.1 +lcsSetupDnsDynDnsListEntryHostName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDnsDynDnsListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.8.1.2 +lcsSetupDnsDynDnsListEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDnsDynDnsListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.8.1.3 +lcsSetupDnsDynDnsListEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDnsDynDnsListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.8.1.4 +lcsSetupDnsDynDnsListEntryIpv6Address OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupDnsDynDnsListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.8.1.5 +lcsSetupDnsDynDnsListEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupDnsDynDnsListEntry 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.17.9 +lcsSetupDnsDnsDestinationsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupDnsDnsDestinationsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDns 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.17.9.1 +lcsSetupDnsDnsDestinationsEntry OBJECT-TYPE + SYNTAX LcsSetupDnsDnsDestinationsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupDnsDnsDestinationsEntryDomainName, + lcsSetupDnsDnsDestinationsEntryRtgTag + } + ::= { lcsSetupDnsDnsDestinationsTable 1 } + +LcsSetupDnsDnsDestinationsEntry ::= SEQUENCE { + lcsSetupDnsDnsDestinationsEntryDomainName DisplayString, + lcsSetupDnsDnsDestinationsEntryDestination DisplayString, + lcsSetupDnsDnsDestinationsEntryRtgTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.9.1.1 +lcsSetupDnsDnsDestinationsEntryDomainName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDnsDnsDestinationsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.9.1.2 +lcsSetupDnsDnsDestinationsEntryDestination OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..80)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDnsDnsDestinationsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.9.1.3 +lcsSetupDnsDnsDestinationsEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupDnsDnsDestinationsEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.17.10 +lcsSetupDnsServiceLocationListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupDnsServiceLocationListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDns 10 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.17.10.1 +lcsSetupDnsServiceLocationListEntry OBJECT-TYPE + SYNTAX LcsSetupDnsServiceLocationListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupDnsServiceLocationListEntryServiceName, + lcsSetupDnsServiceLocationListEntryRtgTag + } + ::= { lcsSetupDnsServiceLocationListTable 1 } + +LcsSetupDnsServiceLocationListEntry ::= SEQUENCE { + lcsSetupDnsServiceLocationListEntryServiceName DisplayString, + lcsSetupDnsServiceLocationListEntryHostName DisplayString, + lcsSetupDnsServiceLocationListEntryPort Integer32, + lcsSetupDnsServiceLocationListEntryRtgTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.10.1.1 +lcsSetupDnsServiceLocationListEntryServiceName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDnsServiceLocationListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.10.1.2 +lcsSetupDnsServiceLocationListEntryHostName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDnsServiceLocationListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.10.1.3 +lcsSetupDnsServiceLocationListEntryPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDnsServiceLocationListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.10.1.4 +lcsSetupDnsServiceLocationListEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupDnsServiceLocationListEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.17.11 +lcsSetupDnsDynamicSrvListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupDnsDynamicSrvListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDns 11 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.17.11.1 +lcsSetupDnsDynamicSrvListEntry OBJECT-TYPE + SYNTAX LcsSetupDnsDynamicSrvListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupDnsDynamicSrvListEntryServiceName + } + ::= { lcsSetupDnsDynamicSrvListTable 1 } + +LcsSetupDnsDynamicSrvListEntry ::= SEQUENCE { + lcsSetupDnsDynamicSrvListEntryServiceName DisplayString, + lcsSetupDnsDynamicSrvListEntryHostName DisplayString, + lcsSetupDnsDynamicSrvListEntryPort Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.11.1.1 +lcsSetupDnsDynamicSrvListEntryServiceName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDnsDynamicSrvListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.11.1.2 +lcsSetupDnsDynamicSrvListEntryHostName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDnsDynamicSrvListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.11.1.3 +lcsSetupDnsDynamicSrvListEntryPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDnsDynamicSrvListEntry 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.17.12 +lcsSetupDnsResolveDomain OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDns 12 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.17.13 +lcsSetupDnsSubDomainsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupDnsSubDomainsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDns 13 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.17.13.1 +lcsSetupDnsSubDomainsEntry OBJECT-TYPE + SYNTAX LcsSetupDnsSubDomainsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupDnsSubDomainsEntryNetworkName + } + ::= { lcsSetupDnsSubDomainsTable 1 } + +LcsSetupDnsSubDomainsEntry ::= SEQUENCE { + lcsSetupDnsSubDomainsEntryNetworkName DisplayString, + lcsSetupDnsSubDomainsEntrySubDomain DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.13.1.1 +lcsSetupDnsSubDomainsEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDnsSubDomainsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.13.1.2 +lcsSetupDnsSubDomainsEntrySubDomain OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupDnsSubDomainsEntry 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.17.14 +lcsSetupDnsForwarder OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupDns 14 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.17.15 +lcsSetupDnsTagConfigurationTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupDnsTagConfigurationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupDns 15 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.17.15.1 +lcsSetupDnsTagConfigurationEntry OBJECT-TYPE + SYNTAX LcsSetupDnsTagConfigurationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupDnsTagConfigurationEntryRtgTag + } + ::= { lcsSetupDnsTagConfigurationTable 1 } + +LcsSetupDnsTagConfigurationEntry ::= SEQUENCE { + lcsSetupDnsTagConfigurationEntryRtgTag Integer32, + lcsSetupDnsTagConfigurationEntryOperating INTEGER, + lcsSetupDnsTagConfigurationEntryForwarder INTEGER, + lcsSetupDnsTagConfigurationEntryDhcpUsage INTEGER, + lcsSetupDnsTagConfigurationEntryNetbiosUsage INTEGER, + lcsSetupDnsTagConfigurationEntryResolveDomain INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.15.1.1 +lcsSetupDnsTagConfigurationEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupDnsTagConfigurationEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.15.1.2 +lcsSetupDnsTagConfigurationEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupDnsTagConfigurationEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.15.1.3 +lcsSetupDnsTagConfigurationEntryForwarder OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupDnsTagConfigurationEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.15.1.4 +lcsSetupDnsTagConfigurationEntryDhcpUsage OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupDnsTagConfigurationEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.15.1.5 +lcsSetupDnsTagConfigurationEntryNetbiosUsage OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupDnsTagConfigurationEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.17.15.1.6 +lcsSetupDnsTagConfigurationEntryResolveDomain OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupDnsTagConfigurationEntry 6 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.18 +lcsSetupAccounting OBJECT IDENTIFIER ::= { lcsSetup 18 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.18.1 +lcsSetupAccountingOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccounting 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.18.2 +lcsSetupAccountingSaveToFlashrom OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccounting 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.18.3 +lcsSetupAccountingSortBy OBJECT-TYPE + SYNTAX INTEGER { + eTime (0), + eData (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccounting 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.18.4 +lcsSetupAccountingCurrentUserTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupAccountingCurrentUserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccounting 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.18.4.1 +lcsSetupAccountingCurrentUserEntry OBJECT-TYPE + SYNTAX LcsSetupAccountingCurrentUserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupAccountingCurrentUserEntryUsername, + lcsSetupAccountingCurrentUserEntryMacAddress, + lcsSetupAccountingCurrentUserEntryPeer, + lcsSetupAccountingCurrentUserEntryConnType + } + ::= { lcsSetupAccountingCurrentUserTable 1 } + +LcsSetupAccountingCurrentUserEntry ::= SEQUENCE { + lcsSetupAccountingCurrentUserEntryUsername DisplayString, + lcsSetupAccountingCurrentUserEntryMacAddress DisplayString, + lcsSetupAccountingCurrentUserEntryPeer DisplayString, + lcsSetupAccountingCurrentUserEntryConnType INTEGER, + lcsSetupAccountingCurrentUserEntryRxKbytes Integer32, + lcsSetupAccountingCurrentUserEntryTxKbytes Integer32, + lcsSetupAccountingCurrentUserEntryTotalTime Gauge32, + lcsSetupAccountingCurrentUserEntryConnections Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.4.1.1 +lcsSetupAccountingCurrentUserEntryUsername OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..28)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingCurrentUserEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.4.1.2 +lcsSetupAccountingCurrentUserEntryMacAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingCurrentUserEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.4.1.3 +lcsSetupAccountingCurrentUserEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingCurrentUserEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.4.1.4 +lcsSetupAccountingCurrentUserEntryConnType OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eDialUp (1), + eLeasedLine (2), + eDslLine (4), + eVpnConn (7), + ePptpConn (8), + eL2tpConn (9), + eDsLiteConn (10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingCurrentUserEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.4.1.5 +lcsSetupAccountingCurrentUserEntryRxKbytes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingCurrentUserEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.4.1.6 +lcsSetupAccountingCurrentUserEntryTxKbytes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingCurrentUserEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.4.1.8 +lcsSetupAccountingCurrentUserEntryTotalTime OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingCurrentUserEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.4.1.9 +lcsSetupAccountingCurrentUserEntryConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingCurrentUserEntry 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.18.5 +lcsSetupAccountingAccountingListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupAccountingAccountingListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccounting 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.18.5.1 +lcsSetupAccountingAccountingListEntry OBJECT-TYPE + SYNTAX LcsSetupAccountingAccountingListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupAccountingAccountingListEntryUsername, + lcsSetupAccountingAccountingListEntryMacAddress, + lcsSetupAccountingAccountingListEntryPeer, + lcsSetupAccountingAccountingListEntryConnType + } + ::= { lcsSetupAccountingAccountingListTable 1 } + +LcsSetupAccountingAccountingListEntry ::= SEQUENCE { + lcsSetupAccountingAccountingListEntryUsername DisplayString, + lcsSetupAccountingAccountingListEntryMacAddress DisplayString, + lcsSetupAccountingAccountingListEntryPeer DisplayString, + lcsSetupAccountingAccountingListEntryConnType INTEGER, + lcsSetupAccountingAccountingListEntryRxKbytes Integer32, + lcsSetupAccountingAccountingListEntryTxKbytes Integer32, + lcsSetupAccountingAccountingListEntryTotalTime Gauge32, + lcsSetupAccountingAccountingListEntryConnections Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.5.1.1 +lcsSetupAccountingAccountingListEntryUsername OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..28)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingAccountingListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.5.1.2 +lcsSetupAccountingAccountingListEntryMacAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingAccountingListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.5.1.3 +lcsSetupAccountingAccountingListEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingAccountingListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.5.1.4 +lcsSetupAccountingAccountingListEntryConnType OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eDialUp (1), + eLeasedLine (2), + eDslLine (4), + eVpnConn (7), + ePptpConn (8), + eL2tpConn (9), + eDsLiteConn (10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingAccountingListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.5.1.5 +lcsSetupAccountingAccountingListEntryRxKbytes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingAccountingListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.5.1.6 +lcsSetupAccountingAccountingListEntryTxKbytes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingAccountingListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.5.1.8 +lcsSetupAccountingAccountingListEntryTotalTime OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingAccountingListEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.5.1.9 +lcsSetupAccountingAccountingListEntryConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingAccountingListEntry 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.18.6 +lcsSetupAccountingDeleteAccountingList OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccounting 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.18.7 +lcsSetupAccountingCreateSnapshot OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupAccounting 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.18.8 +lcsSetupAccountingTimeSnapshotTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupAccountingTimeSnapshotEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccounting 8 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.18.8.1 +lcsSetupAccountingTimeSnapshotEntry OBJECT-TYPE + SYNTAX LcsSetupAccountingTimeSnapshotEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupAccountingTimeSnapshotEntryIndex + } + ::= { lcsSetupAccountingTimeSnapshotTable 1 } + +LcsSetupAccountingTimeSnapshotEntry ::= SEQUENCE { + lcsSetupAccountingTimeSnapshotEntryIndex Integer32, + lcsSetupAccountingTimeSnapshotEntryActive INTEGER, + lcsSetupAccountingTimeSnapshotEntryType INTEGER, + lcsSetupAccountingTimeSnapshotEntryDay Integer32, + lcsSetupAccountingTimeSnapshotEntryDayofweek INTEGER, + lcsSetupAccountingTimeSnapshotEntryHour Integer32, + lcsSetupAccountingTimeSnapshotEntryMinute Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.8.1.1 +lcsSetupAccountingTimeSnapshotEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingTimeSnapshotEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.8.1.2 +lcsSetupAccountingTimeSnapshotEntryActive OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingTimeSnapshotEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.8.1.3 +lcsSetupAccountingTimeSnapshotEntryType OBJECT-TYPE + SYNTAX INTEGER { + eMonthly (0), + eWeekly (1), + eDaily (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingTimeSnapshotEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.8.1.4 +lcsSetupAccountingTimeSnapshotEntryDay OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingTimeSnapshotEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.8.1.5 +lcsSetupAccountingTimeSnapshotEntryDayofweek OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eSunday (1), + eMonday (2), + eTuesday (3), + eWednesday (4), + eThursday (5), + eFriday (6), + eSaturday (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingTimeSnapshotEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.8.1.6 +lcsSetupAccountingTimeSnapshotEntryHour OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingTimeSnapshotEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.8.1.7 +lcsSetupAccountingTimeSnapshotEntryMinute OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingTimeSnapshotEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.18.9 +lcsSetupAccountingLastSnapshotTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupAccountingLastSnapshotEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccounting 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.18.9.1 +lcsSetupAccountingLastSnapshotEntry OBJECT-TYPE + SYNTAX LcsSetupAccountingLastSnapshotEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupAccountingLastSnapshotEntryUsername, + lcsSetupAccountingLastSnapshotEntryMacAddress, + lcsSetupAccountingLastSnapshotEntryPeer, + lcsSetupAccountingLastSnapshotEntryConnType + } + ::= { lcsSetupAccountingLastSnapshotTable 1 } + +LcsSetupAccountingLastSnapshotEntry ::= SEQUENCE { + lcsSetupAccountingLastSnapshotEntryUsername DisplayString, + lcsSetupAccountingLastSnapshotEntryMacAddress DisplayString, + lcsSetupAccountingLastSnapshotEntryPeer DisplayString, + lcsSetupAccountingLastSnapshotEntryConnType INTEGER, + lcsSetupAccountingLastSnapshotEntryRxKbytes Integer32, + lcsSetupAccountingLastSnapshotEntryTxKbytes Integer32, + lcsSetupAccountingLastSnapshotEntryTotalTime Gauge32, + lcsSetupAccountingLastSnapshotEntryConnections Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.9.1.1 +lcsSetupAccountingLastSnapshotEntryUsername OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..28)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingLastSnapshotEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.9.1.2 +lcsSetupAccountingLastSnapshotEntryMacAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingLastSnapshotEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.9.1.3 +lcsSetupAccountingLastSnapshotEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingLastSnapshotEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.9.1.4 +lcsSetupAccountingLastSnapshotEntryConnType OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eDialUp (1), + eLeasedLine (2), + eDslLine (4), + eVpnConn (7), + ePptpConn (8), + eL2tpConn (9), + eDsLiteConn (10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingLastSnapshotEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.9.1.5 +lcsSetupAccountingLastSnapshotEntryRxKbytes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingLastSnapshotEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.9.1.6 +lcsSetupAccountingLastSnapshotEntryTxKbytes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingLastSnapshotEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.9.1.8 +lcsSetupAccountingLastSnapshotEntryTotalTime OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingLastSnapshotEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.18.9.1.9 +lcsSetupAccountingLastSnapshotEntryConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccountingLastSnapshotEntry 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.18.10 +lcsSetupAccountingDiscriminator OBJECT-TYPE + SYNTAX INTEGER { + eMacAddress (0), + eIpAddress (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAccounting 10 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.19 +lcsSetupVpn OBJECT IDENTIFIER ::= { lcsSetup 19 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.19.3 +lcsSetupVpnIsakmp OBJECT IDENTIFIER ::= { lcsSetupVpn 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.19.3.4 +lcsSetupVpnIsakmpTimerTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupVpnIsakmpTimerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnIsakmp 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.19.3.4.1 +lcsSetupVpnIsakmpTimerEntry OBJECT-TYPE + SYNTAX LcsSetupVpnIsakmpTimerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupVpnIsakmpTimerEntryIdx + } + ::= { lcsSetupVpnIsakmpTimerTable 1 } + +LcsSetupVpnIsakmpTimerEntry ::= SEQUENCE { + lcsSetupVpnIsakmpTimerEntryRetrLim Integer32, + lcsSetupVpnIsakmpTimerEntryRetrTim Integer32, + lcsSetupVpnIsakmpTimerEntryRetrTimUsec Integer32, + lcsSetupVpnIsakmpTimerEntryRetrTimMax Integer32, + lcsSetupVpnIsakmpTimerEntryExpTim Integer32, + lcsSetupVpnIsakmpTimerEntryIdx Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.3.4.1.1 +lcsSetupVpnIsakmpTimerEntryRetrLim OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnIsakmpTimerEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.3.4.1.2 +lcsSetupVpnIsakmpTimerEntryRetrTim OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnIsakmpTimerEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.3.4.1.3 +lcsSetupVpnIsakmpTimerEntryRetrTimUsec OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnIsakmpTimerEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.3.4.1.4 +lcsSetupVpnIsakmpTimerEntryRetrTimMax OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnIsakmpTimerEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.3.4.1.5 +lcsSetupVpnIsakmpTimerEntryExpTim OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnIsakmpTimerEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.3.4.1.6 +lcsSetupVpnIsakmpTimerEntryIdx OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnIsakmpTimerEntry 6 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.19.3.29 +lcsSetupVpnIsakmpDhGroups OBJECT IDENTIFIER ::= { lcsSetupVpnIsakmp 29 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.3.29.1 +lcsSetupVpnIsakmpDhGroupsPrecalculation OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupVpnIsakmpDhGroups 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.19.3.29.2 +lcsSetupVpnIsakmpDhGroupsGroupConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupVpnIsakmpDhGroupsGroupConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupVpnIsakmpDhGroups 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.19.3.29.2.1 +lcsSetupVpnIsakmpDhGroupsGroupConfigEntry OBJECT-TYPE + SYNTAX LcsSetupVpnIsakmpDhGroupsGroupConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupVpnIsakmpDhGroupsGroupConfigEntryDhGroup + } + ::= { lcsSetupVpnIsakmpDhGroupsGroupConfigTable 1 } + +LcsSetupVpnIsakmpDhGroupsGroupConfigEntry ::= SEQUENCE { + lcsSetupVpnIsakmpDhGroupsGroupConfigEntryDhGroup Integer32, + lcsSetupVpnIsakmpDhGroupsGroupConfigEntryPrecalcTarget Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.3.29.2.1.1 +lcsSetupVpnIsakmpDhGroupsGroupConfigEntryDhGroup OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupVpnIsakmpDhGroupsGroupConfigEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.3.29.2.1.2 +lcsSetupVpnIsakmpDhGroupsGroupConfigEntryPrecalcTarget OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupVpnIsakmpDhGroupsGroupConfigEntry 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.19.4 +lcsSetupVpnProposals OBJECT IDENTIFIER ::= { lcsSetupVpn 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.19.4.9 +lcsSetupVpnProposalsIkeProposalListsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupVpnProposalsIkeProposalListsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposals 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.19.4.9.1 +lcsSetupVpnProposalsIkeProposalListsEntry OBJECT-TYPE + SYNTAX LcsSetupVpnProposalsIkeProposalListsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupVpnProposalsIkeProposalListsEntryIkeProposalLists + } + ::= { lcsSetupVpnProposalsIkeProposalListsTable 1 } + +LcsSetupVpnProposalsIkeProposalListsEntry ::= SEQUENCE { + lcsSetupVpnProposalsIkeProposalListsEntryIkeProposalLists DisplayString, + lcsSetupVpnProposalsIkeProposalListsEntryIkeProposal1 DisplayString, + lcsSetupVpnProposalsIkeProposalListsEntryIkeProposal2 DisplayString, + lcsSetupVpnProposalsIkeProposalListsEntryIkeProposal3 DisplayString, + lcsSetupVpnProposalsIkeProposalListsEntryIkeProposal4 DisplayString, + lcsSetupVpnProposalsIkeProposalListsEntryIkeProposal5 DisplayString, + lcsSetupVpnProposalsIkeProposalListsEntryIkeProposal6 DisplayString, + lcsSetupVpnProposalsIkeProposalListsEntryIkeProposal7 DisplayString, + lcsSetupVpnProposalsIkeProposalListsEntryIkeProposal8 DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.9.1.1 +lcsSetupVpnProposalsIkeProposalListsEntryIkeProposalLists OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIkeProposalListsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.9.1.2 +lcsSetupVpnProposalsIkeProposalListsEntryIkeProposal1 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIkeProposalListsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.9.1.3 +lcsSetupVpnProposalsIkeProposalListsEntryIkeProposal2 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIkeProposalListsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.9.1.4 +lcsSetupVpnProposalsIkeProposalListsEntryIkeProposal3 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIkeProposalListsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.9.1.5 +lcsSetupVpnProposalsIkeProposalListsEntryIkeProposal4 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIkeProposalListsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.9.1.6 +lcsSetupVpnProposalsIkeProposalListsEntryIkeProposal5 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIkeProposalListsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.9.1.7 +lcsSetupVpnProposalsIkeProposalListsEntryIkeProposal6 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIkeProposalListsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.9.1.8 +lcsSetupVpnProposalsIkeProposalListsEntryIkeProposal7 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIkeProposalListsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.9.1.9 +lcsSetupVpnProposalsIkeProposalListsEntryIkeProposal8 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIkeProposalListsEntry 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.19.4.10 +lcsSetupVpnProposalsIpsecProposalListsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupVpnProposalsIpsecProposalListsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposals 10 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.19.4.10.1 +lcsSetupVpnProposalsIpsecProposalListsEntry OBJECT-TYPE + SYNTAX LcsSetupVpnProposalsIpsecProposalListsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupVpnProposalsIpsecProposalListsEntryIpsecProposalLists + } + ::= { lcsSetupVpnProposalsIpsecProposalListsTable 1 } + +LcsSetupVpnProposalsIpsecProposalListsEntry ::= SEQUENCE { + lcsSetupVpnProposalsIpsecProposalListsEntryIpsecProposalLists DisplayString, + lcsSetupVpnProposalsIpsecProposalListsEntryIpsecProposal1 DisplayString, + lcsSetupVpnProposalsIpsecProposalListsEntryIpsecProposal2 DisplayString, + lcsSetupVpnProposalsIpsecProposalListsEntryIpsecProposal3 DisplayString, + lcsSetupVpnProposalsIpsecProposalListsEntryIpsecProposal4 DisplayString, + lcsSetupVpnProposalsIpsecProposalListsEntryIpsecProposal5 DisplayString, + lcsSetupVpnProposalsIpsecProposalListsEntryIpsecProposal6 DisplayString, + lcsSetupVpnProposalsIpsecProposalListsEntryIpsecProposal7 DisplayString, + lcsSetupVpnProposalsIpsecProposalListsEntryIpsecProposal8 DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.10.1.1 +lcsSetupVpnProposalsIpsecProposalListsEntryIpsecProposalLists OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIpsecProposalListsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.10.1.2 +lcsSetupVpnProposalsIpsecProposalListsEntryIpsecProposal1 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIpsecProposalListsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.10.1.3 +lcsSetupVpnProposalsIpsecProposalListsEntryIpsecProposal2 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIpsecProposalListsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.10.1.4 +lcsSetupVpnProposalsIpsecProposalListsEntryIpsecProposal3 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIpsecProposalListsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.10.1.5 +lcsSetupVpnProposalsIpsecProposalListsEntryIpsecProposal4 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIpsecProposalListsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.10.1.6 +lcsSetupVpnProposalsIpsecProposalListsEntryIpsecProposal5 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIpsecProposalListsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.10.1.7 +lcsSetupVpnProposalsIpsecProposalListsEntryIpsecProposal6 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIpsecProposalListsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.10.1.8 +lcsSetupVpnProposalsIpsecProposalListsEntryIpsecProposal7 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIpsecProposalListsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.10.1.9 +lcsSetupVpnProposalsIpsecProposalListsEntryIpsecProposal8 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIpsecProposalListsEntry 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.19.4.11 +lcsSetupVpnProposalsIkeTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupVpnProposalsIkeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposals 11 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.19.4.11.1 +lcsSetupVpnProposalsIkeEntry OBJECT-TYPE + SYNTAX LcsSetupVpnProposalsIkeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupVpnProposalsIkeEntryName + } + ::= { lcsSetupVpnProposalsIkeTable 1 } + +LcsSetupVpnProposalsIkeEntry ::= SEQUENCE { + lcsSetupVpnProposalsIkeEntryName DisplayString, + lcsSetupVpnProposalsIkeEntryIkeCryptAlg INTEGER, + lcsSetupVpnProposalsIkeEntryIkeCryptKeylen Integer32, + lcsSetupVpnProposalsIkeEntryIkeAuthAlg INTEGER, + lcsSetupVpnProposalsIkeEntryIkeAuthMode INTEGER, + lcsSetupVpnProposalsIkeEntryLifetimeSec Integer32, + lcsSetupVpnProposalsIkeEntryLifetimeKb Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.11.1.1 +lcsSetupVpnProposalsIkeEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIkeEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.11.1.2 +lcsSetupVpnProposalsIkeEntryIkeCryptAlg OBJECT-TYPE + SYNTAX INTEGER { + eDesCbc (1), + eBlowfishCbc (3), + e3desCbc (5), + eCast128Cbc (6), + eAesCbc (7), + eNull (42) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIkeEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.11.1.3 +lcsSetupVpnProposalsIkeEntryIkeCryptKeylen OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIkeEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.11.1.4 +lcsSetupVpnProposalsIkeEntryIkeAuthAlg OBJECT-TYPE + SYNTAX INTEGER { + eMd5 (1), + eSha1 (2), + eSha2256 (4), + eSha2384 (5), + eSha2512 (6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIkeEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.11.1.5 +lcsSetupVpnProposalsIkeEntryIkeAuthMode OBJECT-TYPE + SYNTAX INTEGER { + ePresharedKey (1), + eRsaSignature (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIkeEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.11.1.6 +lcsSetupVpnProposalsIkeEntryLifetimeSec OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIkeEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.11.1.7 +lcsSetupVpnProposalsIkeEntryLifetimeKb OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIkeEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.19.4.12 +lcsSetupVpnProposalsIpsecTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupVpnProposalsIpsecEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposals 12 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.19.4.12.1 +lcsSetupVpnProposalsIpsecEntry OBJECT-TYPE + SYNTAX LcsSetupVpnProposalsIpsecEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupVpnProposalsIpsecEntryName + } + ::= { lcsSetupVpnProposalsIpsecTable 1 } + +LcsSetupVpnProposalsIpsecEntry ::= SEQUENCE { + lcsSetupVpnProposalsIpsecEntryName DisplayString, + lcsSetupVpnProposalsIpsecEntryEncapsMode INTEGER, + lcsSetupVpnProposalsIpsecEntryEspCryptAlg INTEGER, + lcsSetupVpnProposalsIpsecEntryEspCryptKeylen Integer32, + lcsSetupVpnProposalsIpsecEntryEspAuthAlg INTEGER, + lcsSetupVpnProposalsIpsecEntryAhAuthAlg INTEGER, + lcsSetupVpnProposalsIpsecEntryIpcompAlg INTEGER, + lcsSetupVpnProposalsIpsecEntryLifetimeSec Integer32, + lcsSetupVpnProposalsIpsecEntryLifetimeKb Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.12.1.1 +lcsSetupVpnProposalsIpsecEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIpsecEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.12.1.2 +lcsSetupVpnProposalsIpsecEntryEncapsMode OBJECT-TYPE + SYNTAX INTEGER { + eTunnel (1), + eTransport (2), + eMixedLcos4 (65001) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIpsecEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.12.1.3 +lcsSetupVpnProposalsIpsecEntryEspCryptAlg OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eDesCbc (2), + e3desCbc (3), + eCast128Cbc (6), + eBlowfishCbc (7), + eNull (11), + eAesCbc (12) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIpsecEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.12.1.4 +lcsSetupVpnProposalsIpsecEntryEspCryptKeylen OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIpsecEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.12.1.5 +lcsSetupVpnProposalsIpsecEntryEspAuthAlg OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eHmacMd5 (1), + eHmacSha1 (2), + eHmacSha2256 (5), + eHmacSha2384 (6), + eHmacSha2512 (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIpsecEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.12.1.6 +lcsSetupVpnProposalsIpsecEntryAhAuthAlg OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eHmacMd5 (1), + eHmacSha1 (2), + eHmacSha2256 (5), + eHmacSha2384 (6), + eHmacSha2512 (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIpsecEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.12.1.7 +lcsSetupVpnProposalsIpsecEntryIpcompAlg OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eDeflate (2), + eLzs (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIpsecEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.12.1.8 +lcsSetupVpnProposalsIpsecEntryLifetimeSec OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIpsecEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.4.12.1.9 +lcsSetupVpnProposalsIpsecEntryLifetimeKb OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnProposalsIpsecEntry 9 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.19.5 +lcsSetupVpnCertificatesAndKeys OBJECT IDENTIFIER ::= { lcsSetupVpn 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.19.5.3 +lcsSetupVpnCertificatesAndKeysIkeKeysTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupVpnCertificatesAndKeysIkeKeysEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnCertificatesAndKeys 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.19.5.3.1 +lcsSetupVpnCertificatesAndKeysIkeKeysEntry OBJECT-TYPE + SYNTAX LcsSetupVpnCertificatesAndKeysIkeKeysEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupVpnCertificatesAndKeysIkeKeysEntryName + } + ::= { lcsSetupVpnCertificatesAndKeysIkeKeysTable 1 } + +LcsSetupVpnCertificatesAndKeysIkeKeysEntry ::= SEQUENCE { + lcsSetupVpnCertificatesAndKeysIkeKeysEntryName DisplayString, + lcsSetupVpnCertificatesAndKeysIkeKeysEntryRemoteIdentity DisplayString, + lcsSetupVpnCertificatesAndKeysIkeKeysEntrySharedSec DisplayString, + lcsSetupVpnCertificatesAndKeysIkeKeysEntrySharedSecFile DisplayString, + lcsSetupVpnCertificatesAndKeysIkeKeysEntryRemoteIdType INTEGER, + lcsSetupVpnCertificatesAndKeysIkeKeysEntryLocalIdType INTEGER, + lcsSetupVpnCertificatesAndKeysIkeKeysEntryLocalIdentity DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.5.3.1.1 +lcsSetupVpnCertificatesAndKeysIkeKeysEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnCertificatesAndKeysIkeKeysEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.5.3.1.2 +lcsSetupVpnCertificatesAndKeysIkeKeysEntryRemoteIdentity OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..254)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnCertificatesAndKeysIkeKeysEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.5.3.1.3 +lcsSetupVpnCertificatesAndKeysIkeKeysEntrySharedSec OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnCertificatesAndKeysIkeKeysEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.5.3.1.4 +lcsSetupVpnCertificatesAndKeysIkeKeysEntrySharedSecFile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnCertificatesAndKeysIkeKeysEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.5.3.1.5 +lcsSetupVpnCertificatesAndKeysIkeKeysEntryRemoteIdType OBJECT-TYPE + SYNTAX INTEGER { + eNoIdentity (0), + eIpAddress (1), + eDomainName (2), + eEmailAddress (3), + eIpv6Address (5), + eDistinguishedName (9), + eKeyId (11) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnCertificatesAndKeysIkeKeysEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.5.3.1.6 +lcsSetupVpnCertificatesAndKeysIkeKeysEntryLocalIdType OBJECT-TYPE + SYNTAX INTEGER { + eNoIdentity (0), + eIpAddress (1), + eDomainName (2), + eEmailAddress (3), + eIpv6Address (5), + eDistinguishedName (9), + eKeyId (11) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnCertificatesAndKeysIkeKeysEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.5.3.1.7 +lcsSetupVpnCertificatesAndKeysIkeKeysEntryLocalIdentity OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..254)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnCertificatesAndKeysIkeKeysEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.19.7 +lcsSetupVpnLayerTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupVpnLayerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpn 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.19.7.1 +lcsSetupVpnLayerEntry OBJECT-TYPE + SYNTAX LcsSetupVpnLayerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupVpnLayerEntryName + } + ::= { lcsSetupVpnLayerTable 1 } + +LcsSetupVpnLayerEntry ::= SEQUENCE { + lcsSetupVpnLayerEntryName DisplayString, + lcsSetupVpnLayerEntryPfsGrp INTEGER, + lcsSetupVpnLayerEntryIkeGrp INTEGER, + lcsSetupVpnLayerEntryIkePropList DisplayString, + lcsSetupVpnLayerEntryIpsecPropList DisplayString, + lcsSetupVpnLayerEntryIkeKey DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.7.1.1 +lcsSetupVpnLayerEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnLayerEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.7.1.3 +lcsSetupVpnLayerEntryPfsGrp OBJECT-TYPE + SYNTAX INTEGER { + e0 (0), + e1 (1), + e2 (2), + e5 (5), + e14 (14), + e15 (15), + e16 (16) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnLayerEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.7.1.4 +lcsSetupVpnLayerEntryIkeGrp OBJECT-TYPE + SYNTAX INTEGER { + e1 (1), + e2 (2), + e5 (5), + e14 (14), + e15 (15), + e16 (16) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnLayerEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.7.1.5 +lcsSetupVpnLayerEntryIkePropList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnLayerEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.7.1.6 +lcsSetupVpnLayerEntryIpsecPropList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnLayerEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.7.1.7 +lcsSetupVpnLayerEntryIkeKey OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnLayerEntry 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.8 +lcsSetupVpnOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eExclusive (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpn 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.19.9 +lcsSetupVpnVpnPeersTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupVpnVpnPeersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpn 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.19.9.1 +lcsSetupVpnVpnPeersEntry OBJECT-TYPE + SYNTAX LcsSetupVpnVpnPeersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupVpnVpnPeersEntryPeer + } + ::= { lcsSetupVpnVpnPeersTable 1 } + +LcsSetupVpnVpnPeersEntry ::= SEQUENCE { + lcsSetupVpnVpnPeersEntryPeer DisplayString, + lcsSetupVpnVpnPeersEntryExtranetAddress IpAddress, + lcsSetupVpnVpnPeersEntryLayer DisplayString, + lcsSetupVpnVpnPeersEntryDynamic INTEGER, + lcsSetupVpnVpnPeersEntryShTime Integer32, + lcsSetupVpnVpnPeersEntryIkeExchange INTEGER, + lcsSetupVpnVpnPeersEntryRemoteGw DisplayString, + lcsSetupVpnVpnPeersEntryRuleCreation INTEGER, + lcsSetupVpnVpnPeersEntryDpdInactTimeout Integer32, + lcsSetupVpnVpnPeersEntryIkeCfg INTEGER, + lcsSetupVpnVpnPeersEntryXauth INTEGER, + lcsSetupVpnVpnPeersEntrySslEncaps INTEGER, + lcsSetupVpnVpnPeersEntryRtgTag Integer32, + lcsSetupVpnVpnPeersEntryOcspCheck INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.9.1.1 +lcsSetupVpnVpnPeersEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnVpnPeersEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.9.1.2 +lcsSetupVpnVpnPeersEntryExtranetAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnVpnPeersEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.9.1.4 +lcsSetupVpnVpnPeersEntryLayer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnVpnPeersEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.9.1.5 +lcsSetupVpnVpnPeersEntryDynamic OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eBChannel (1), + eDChannel (2), + eIcmp (4), + eUdp (8) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnVpnPeersEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.9.1.6 +lcsSetupVpnVpnPeersEntryShTime OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnVpnPeersEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.9.1.7 +lcsSetupVpnVpnPeersEntryIkeExchange OBJECT-TYPE + SYNTAX INTEGER { + eMainMode (0), + eAggressiveMode (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnVpnPeersEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.9.1.8 +lcsSetupVpnVpnPeersEntryRemoteGw OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnVpnPeersEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.9.1.9 +lcsSetupVpnVpnPeersEntryRuleCreation OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eManually (1), + eOff (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnVpnPeersEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.9.1.10 +lcsSetupVpnVpnPeersEntryDpdInactTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnVpnPeersEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.9.1.11 +lcsSetupVpnVpnPeersEntryIkeCfg OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eClient (1), + eServer (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnVpnPeersEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.9.1.12 +lcsSetupVpnVpnPeersEntryXauth OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eClient (1), + eServer (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnVpnPeersEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.9.1.13 +lcsSetupVpnVpnPeersEntrySslEncaps OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnVpnPeersEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.9.1.15 +lcsSetupVpnVpnPeersEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnVpnPeersEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.9.1.16 +lcsSetupVpnVpnPeersEntryOcspCheck OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnVpnPeersEntry 16 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.10 +lcsSetupVpnAggrmodeProposalListDefault OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpn 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.11 +lcsSetupVpnAggrmodeIkeGroupDefault OBJECT-TYPE + SYNTAX INTEGER { + e1 (1), + e2 (2), + e5 (5), + e14 (14), + e15 (15), + e16 (16) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpn 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.19.12 +lcsSetupVpnAdditionalGatewaysTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupVpnAdditionalGatewaysEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpn 12 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.19.12.1 +lcsSetupVpnAdditionalGatewaysEntry OBJECT-TYPE + SYNTAX LcsSetupVpnAdditionalGatewaysEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupVpnAdditionalGatewaysEntryPeer + } + ::= { lcsSetupVpnAdditionalGatewaysTable 1 } + +LcsSetupVpnAdditionalGatewaysEntry ::= SEQUENCE { + lcsSetupVpnAdditionalGatewaysEntryPeer DisplayString, + lcsSetupVpnAdditionalGatewaysEntryGateway1 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryGateway2 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryGateway3 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryGateway4 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryGateway5 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryGateway6 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryGateway7 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryGateway8 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryBeginWith INTEGER, + lcsSetupVpnAdditionalGatewaysEntryRtgTag1 Integer32, + lcsSetupVpnAdditionalGatewaysEntryRtgTag2 Integer32, + lcsSetupVpnAdditionalGatewaysEntryRtgTag3 Integer32, + lcsSetupVpnAdditionalGatewaysEntryRtgTag4 Integer32, + lcsSetupVpnAdditionalGatewaysEntryRtgTag5 Integer32, + lcsSetupVpnAdditionalGatewaysEntryRtgTag6 Integer32, + lcsSetupVpnAdditionalGatewaysEntryRtgTag7 Integer32, + lcsSetupVpnAdditionalGatewaysEntryRtgTag8 Integer32, + lcsSetupVpnAdditionalGatewaysEntryGateway9 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryGateway10 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryGateway11 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryGateway12 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryGateway13 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryGateway14 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryGateway15 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryGateway16 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryRtgTag9 Integer32, + lcsSetupVpnAdditionalGatewaysEntryRtgTag10 Integer32, + lcsSetupVpnAdditionalGatewaysEntryRtgTag11 Integer32, + lcsSetupVpnAdditionalGatewaysEntryRtgTag12 Integer32, + lcsSetupVpnAdditionalGatewaysEntryRtgTag13 Integer32, + lcsSetupVpnAdditionalGatewaysEntryRtgTag14 Integer32, + lcsSetupVpnAdditionalGatewaysEntryRtgTag15 Integer32, + lcsSetupVpnAdditionalGatewaysEntryRtgTag16 Integer32, + lcsSetupVpnAdditionalGatewaysEntryGateway17 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryRtgTag17 Integer32, + lcsSetupVpnAdditionalGatewaysEntryGateway18 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryRtgTag18 Integer32, + lcsSetupVpnAdditionalGatewaysEntryGateway19 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryRtgTag19 Integer32, + lcsSetupVpnAdditionalGatewaysEntryGateway20 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryRtgTag20 Integer32, + lcsSetupVpnAdditionalGatewaysEntryGateway21 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryRtgTag21 Integer32, + lcsSetupVpnAdditionalGatewaysEntryGateway22 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryRtgTag22 Integer32, + lcsSetupVpnAdditionalGatewaysEntryGateway23 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryRtgTag23 Integer32, + lcsSetupVpnAdditionalGatewaysEntryGateway24 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryRtgTag24 Integer32, + lcsSetupVpnAdditionalGatewaysEntryGateway25 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryRtgTag25 Integer32, + lcsSetupVpnAdditionalGatewaysEntryGateway26 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryRtgTag26 Integer32, + lcsSetupVpnAdditionalGatewaysEntryGateway27 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryRtgTag27 Integer32, + lcsSetupVpnAdditionalGatewaysEntryGateway28 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryRtgTag28 Integer32, + lcsSetupVpnAdditionalGatewaysEntryGateway29 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryRtgTag29 Integer32, + lcsSetupVpnAdditionalGatewaysEntryGateway30 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryRtgTag30 Integer32, + lcsSetupVpnAdditionalGatewaysEntryGateway31 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryRtgTag31 Integer32, + lcsSetupVpnAdditionalGatewaysEntryGateway32 DisplayString, + lcsSetupVpnAdditionalGatewaysEntryRtgTag32 Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.1 +lcsSetupVpnAdditionalGatewaysEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.2 +lcsSetupVpnAdditionalGatewaysEntryGateway1 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.3 +lcsSetupVpnAdditionalGatewaysEntryGateway2 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.4 +lcsSetupVpnAdditionalGatewaysEntryGateway3 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.5 +lcsSetupVpnAdditionalGatewaysEntryGateway4 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.6 +lcsSetupVpnAdditionalGatewaysEntryGateway5 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.7 +lcsSetupVpnAdditionalGatewaysEntryGateway6 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.8 +lcsSetupVpnAdditionalGatewaysEntryGateway7 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.9 +lcsSetupVpnAdditionalGatewaysEntryGateway8 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.10 +lcsSetupVpnAdditionalGatewaysEntryBeginWith OBJECT-TYPE + SYNTAX INTEGER { + eLastUsed (0), + eFirst (1), + eRandom (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.11 +lcsSetupVpnAdditionalGatewaysEntryRtgTag1 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.12 +lcsSetupVpnAdditionalGatewaysEntryRtgTag2 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.13 +lcsSetupVpnAdditionalGatewaysEntryRtgTag3 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.14 +lcsSetupVpnAdditionalGatewaysEntryRtgTag4 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.15 +lcsSetupVpnAdditionalGatewaysEntryRtgTag5 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.16 +lcsSetupVpnAdditionalGatewaysEntryRtgTag6 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.17 +lcsSetupVpnAdditionalGatewaysEntryRtgTag7 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.18 +lcsSetupVpnAdditionalGatewaysEntryRtgTag8 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.19 +lcsSetupVpnAdditionalGatewaysEntryGateway9 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.20 +lcsSetupVpnAdditionalGatewaysEntryGateway10 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.21 +lcsSetupVpnAdditionalGatewaysEntryGateway11 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.22 +lcsSetupVpnAdditionalGatewaysEntryGateway12 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.23 +lcsSetupVpnAdditionalGatewaysEntryGateway13 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.24 +lcsSetupVpnAdditionalGatewaysEntryGateway14 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 24 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.25 +lcsSetupVpnAdditionalGatewaysEntryGateway15 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 25 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.26 +lcsSetupVpnAdditionalGatewaysEntryGateway16 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 26 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.27 +lcsSetupVpnAdditionalGatewaysEntryRtgTag9 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 27 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.28 +lcsSetupVpnAdditionalGatewaysEntryRtgTag10 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 28 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.29 +lcsSetupVpnAdditionalGatewaysEntryRtgTag11 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 29 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.30 +lcsSetupVpnAdditionalGatewaysEntryRtgTag12 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 30 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.31 +lcsSetupVpnAdditionalGatewaysEntryRtgTag13 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 31 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.32 +lcsSetupVpnAdditionalGatewaysEntryRtgTag14 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 32 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.33 +lcsSetupVpnAdditionalGatewaysEntryRtgTag15 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 33 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.34 +lcsSetupVpnAdditionalGatewaysEntryRtgTag16 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 34 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.35 +lcsSetupVpnAdditionalGatewaysEntryGateway17 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 35 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.36 +lcsSetupVpnAdditionalGatewaysEntryRtgTag17 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 36 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.37 +lcsSetupVpnAdditionalGatewaysEntryGateway18 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 37 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.38 +lcsSetupVpnAdditionalGatewaysEntryRtgTag18 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 38 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.39 +lcsSetupVpnAdditionalGatewaysEntryGateway19 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 39 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.40 +lcsSetupVpnAdditionalGatewaysEntryRtgTag19 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 40 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.41 +lcsSetupVpnAdditionalGatewaysEntryGateway20 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 41 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.42 +lcsSetupVpnAdditionalGatewaysEntryRtgTag20 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 42 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.43 +lcsSetupVpnAdditionalGatewaysEntryGateway21 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 43 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.44 +lcsSetupVpnAdditionalGatewaysEntryRtgTag21 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 44 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.45 +lcsSetupVpnAdditionalGatewaysEntryGateway22 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 45 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.46 +lcsSetupVpnAdditionalGatewaysEntryRtgTag22 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 46 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.47 +lcsSetupVpnAdditionalGatewaysEntryGateway23 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 47 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.48 +lcsSetupVpnAdditionalGatewaysEntryRtgTag23 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 48 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.49 +lcsSetupVpnAdditionalGatewaysEntryGateway24 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 49 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.50 +lcsSetupVpnAdditionalGatewaysEntryRtgTag24 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 50 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.51 +lcsSetupVpnAdditionalGatewaysEntryGateway25 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 51 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.52 +lcsSetupVpnAdditionalGatewaysEntryRtgTag25 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 52 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.53 +lcsSetupVpnAdditionalGatewaysEntryGateway26 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 53 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.54 +lcsSetupVpnAdditionalGatewaysEntryRtgTag26 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 54 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.55 +lcsSetupVpnAdditionalGatewaysEntryGateway27 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 55 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.56 +lcsSetupVpnAdditionalGatewaysEntryRtgTag27 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 56 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.57 +lcsSetupVpnAdditionalGatewaysEntryGateway28 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 57 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.58 +lcsSetupVpnAdditionalGatewaysEntryRtgTag28 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 58 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.59 +lcsSetupVpnAdditionalGatewaysEntryGateway29 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 59 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.60 +lcsSetupVpnAdditionalGatewaysEntryRtgTag29 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 60 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.61 +lcsSetupVpnAdditionalGatewaysEntryGateway30 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 61 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.62 +lcsSetupVpnAdditionalGatewaysEntryRtgTag30 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 62 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.63 +lcsSetupVpnAdditionalGatewaysEntryGateway31 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 63 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.64 +lcsSetupVpnAdditionalGatewaysEntryRtgTag31 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 64 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.65 +lcsSetupVpnAdditionalGatewaysEntryGateway32 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 65 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.12.1.66 +lcsSetupVpnAdditionalGatewaysEntryRtgTag32 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnAdditionalGatewaysEntry 66 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.13 +lcsSetupVpnMainmodeProposalListDefault OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpn 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.14 +lcsSetupVpnMainmodeIkeGroupDefault OBJECT-TYPE + SYNTAX INTEGER { + e1 (1), + e2 (2), + e5 (5), + e14 (14), + e15 (15), + e16 (16) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpn 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.15 +lcsSetupVpnLegacyDynVpnLcos50xSupport OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpn 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.16 +lcsSetupVpnNatTOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpn 16 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.17 +lcsSetupVpnSimpleCertRasOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpn 17 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.19 +lcsSetupVpnQuickmodeProposalListDefault OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpn 19 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.20 +lcsSetupVpnQuickmodePfsGroupDefault OBJECT-TYPE + SYNTAX INTEGER { + e0 (0), + e1 (1), + e2 (2), + e5 (5), + e14 (14), + e15 (15), + e16 (16) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpn 20 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.21 +lcsSetupVpnQuickmodeShortholdTimeDefault OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpn 21 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.22 +lcsSetupVpnAllowRemoteNetworkSelection OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpn 22 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.23 +lcsSetupVpnEstablishSasCollectively OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eOnlyWithKeepalive (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpn 23 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.24 +lcsSetupVpnMaxConcurrentConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpn 24 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.25 +lcsSetupVpnFlexibleIdComparison OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpn 25 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.26 +lcsSetupVpnNatTPortForRekeying OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpn 26 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.27 +lcsSetupVpnSslEncapsAllowed OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpn 27 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.19.28 +lcsSetupVpnMyvpn OBJECT IDENTIFIER ::= { lcsSetupVpn 28 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.28.1 +lcsSetupVpnMyvpnOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupVpnMyvpn 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.28.2 +lcsSetupVpnMyvpnPinLength OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupVpnMyvpn 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.28.3 +lcsSetupVpnMyvpnDeviceHostname OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupVpnMyvpn 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.19.28.4 +lcsSetupVpnMyvpnMappingTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupVpnMyvpnMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupVpnMyvpn 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.19.28.4.1 +lcsSetupVpnMyvpnMappingEntry OBJECT-TYPE + SYNTAX LcsSetupVpnMyvpnMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupVpnMyvpnMappingEntryPin + } + ::= { lcsSetupVpnMyvpnMappingTable 1 } + +LcsSetupVpnMyvpnMappingEntry ::= SEQUENCE { + lcsSetupVpnMyvpnMappingEntryPin DisplayString, + lcsSetupVpnMyvpnMappingEntryVpnProfile DisplayString, + lcsSetupVpnMyvpnMappingEntryActive INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.28.4.1.1 +lcsSetupVpnMyvpnMappingEntryPin OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupVpnMyvpnMappingEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.28.4.1.2 +lcsSetupVpnMyvpnMappingEntryVpnProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupVpnMyvpnMappingEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.19.28.4.1.3 +lcsSetupVpnMyvpnMappingEntryActive OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupVpnMyvpnMappingEntry 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.28.5 +lcsSetupVpnMyvpnReEnableLogin OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupVpnMyvpn 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.28.6 +lcsSetupVpnMyvpnEMailNotification OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupVpnMyvpn 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.28.7 +lcsSetupVpnMyvpnEMailAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupVpnMyvpn 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.28.8 +lcsSetupVpnMyvpnSyslog OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupVpnMyvpn 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.28.9 +lcsSetupVpnMyvpnRemoteGateway OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupVpnMyvpn 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.28.10 +lcsSetupVpnMyvpnErrorCountForLoginBlock OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupVpnMyvpn 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.28.11 +lcsSetupVpnMyvpnAllowAccessFromWan OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupVpnMyvpn 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.30 +lcsSetupVpnAntiReplayWindowSize OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupVpn 30 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.31 +lcsSetupVpnMainmodeIkeGroupDefaultNew OBJECT-TYPE + SYNTAX INTEGER { + e1 (1), + e2 (2), + e5 (5), + e14 (14) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpn 31 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.32 +lcsSetupVpnAggrmodeIkeGroupDefaultNew OBJECT-TYPE + SYNTAX INTEGER { + e1 (1), + e2 (2), + e5 (5), + e14 (14) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpn 32 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.33 +lcsSetupVpnQuickmodePfsGroupDefaultNew OBJECT-TYPE + SYNTAX INTEGER { + e0 (0), + e1 (1), + e2 (2), + e5 (5), + e14 (14) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpn 33 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.19.64 +lcsSetupVpnOcspClient OBJECT IDENTIFIER ::= { lcsSetupVpn 64 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.19.64.1 +lcsSetupVpnOcspClientActive OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVpnOcspClient 1 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.20 +lcsSetupLanBridge OBJECT IDENTIFIER ::= { lcsSetup 20 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.20.1 +lcsSetupLanBridgeProtocolVersion OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridge 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.20.2 +lcsSetupLanBridgeBridgePriority OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridge 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.20.4 +lcsSetupLanBridgeEncapsulationTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupLanBridgeEncapsulationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridge 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.20.4.1 +lcsSetupLanBridgeEncapsulationTableEntry OBJECT-TYPE + SYNTAX LcsSetupLanBridgeEncapsulationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupLanBridgeEncapsulationTableEntryProtocol + } + ::= { lcsSetupLanBridgeEncapsulationTableTable 1 } + +LcsSetupLanBridgeEncapsulationTableEntry ::= SEQUENCE { + lcsSetupLanBridgeEncapsulationTableEntryProtocol Integer32, + lcsSetupLanBridgeEncapsulationTableEntryEncapsulation INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.4.1.1 +lcsSetupLanBridgeEncapsulationTableEntryProtocol OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeEncapsulationTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.4.1.2 +lcsSetupLanBridgeEncapsulationTableEntryEncapsulation OBJECT-TYPE + SYNTAX INTEGER { + eEthIi (0), + eSnap (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeEncapsulationTableEntry 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.20.5 +lcsSetupLanBridgeMaxAge OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridge 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.20.6 +lcsSetupLanBridgeHelloTime OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridge 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.20.7 +lcsSetupLanBridgeForwardDelay OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridge 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.20.8 +lcsSetupLanBridgeIsolatedMode OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridge 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.20.10 +lcsSetupLanBridgeProtocolTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupLanBridgeProtocolTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridge 10 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.20.10.1 +lcsSetupLanBridgeProtocolTableEntry OBJECT-TYPE + SYNTAX LcsSetupLanBridgeProtocolTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupLanBridgeProtocolTableEntryName + } + ::= { lcsSetupLanBridgeProtocolTableTable 1 } + +LcsSetupLanBridgeProtocolTableEntry ::= SEQUENCE { + lcsSetupLanBridgeProtocolTableEntryName DisplayString, + lcsSetupLanBridgeProtocolTableEntryProtocol DisplayString, + lcsSetupLanBridgeProtocolTableEntrySubProtocol Integer32, + lcsSetupLanBridgeProtocolTableEntryPort Integer32, + lcsSetupLanBridgeProtocolTableEntryPortEnd Integer32, + lcsSetupLanBridgeProtocolTableEntryIfcList DisplayString, + lcsSetupLanBridgeProtocolTableEntryAction INTEGER, + lcsSetupLanBridgeProtocolTableEntryRedirectIpAddress IpAddress, + lcsSetupLanBridgeProtocolTableEntryDestMacAddr MacAddress, + lcsSetupLanBridgeProtocolTableEntryIpNetwork IpAddress, + lcsSetupLanBridgeProtocolTableEntryIpNetmask IpAddress, + lcsSetupLanBridgeProtocolTableEntryDhcpSrcMac INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.10.1.1 +lcsSetupLanBridgeProtocolTableEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeProtocolTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.10.1.2 +lcsSetupLanBridgeProtocolTableEntryProtocol OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..4)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeProtocolTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.10.1.3 +lcsSetupLanBridgeProtocolTableEntrySubProtocol OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeProtocolTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.10.1.4 +lcsSetupLanBridgeProtocolTableEntryPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeProtocolTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.10.1.5 +lcsSetupLanBridgeProtocolTableEntryPortEnd OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeProtocolTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.10.1.6 +lcsSetupLanBridgeProtocolTableEntryIfcList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeProtocolTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.10.1.7 +lcsSetupLanBridgeProtocolTableEntryAction OBJECT-TYPE + SYNTAX INTEGER { + eDrop (0), + ePass (1), + eRedirect (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeProtocolTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.10.1.8 +lcsSetupLanBridgeProtocolTableEntryRedirectIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeProtocolTableEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.10.1.9 +lcsSetupLanBridgeProtocolTableEntryDestMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeProtocolTableEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.10.1.10 +lcsSetupLanBridgeProtocolTableEntryIpNetwork OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeProtocolTableEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.10.1.11 +lcsSetupLanBridgeProtocolTableEntryIpNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeProtocolTableEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.10.1.12 +lcsSetupLanBridgeProtocolTableEntryDhcpSrcMac OBJECT-TYPE + SYNTAX INTEGER { + eIrrelevant (0), + eNo (1), + eYes (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeProtocolTableEntry 12 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.20.11 +lcsSetupLanBridgePortDataTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupLanBridgePortDataEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridge 11 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.20.11.1 +lcsSetupLanBridgePortDataEntry OBJECT-TYPE + SYNTAX LcsSetupLanBridgePortDataEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupLanBridgePortDataEntryPort + } + ::= { lcsSetupLanBridgePortDataTable 1 } + +LcsSetupLanBridgePortDataEntry ::= SEQUENCE { + lcsSetupLanBridgePortDataEntryPort DisplayString, + lcsSetupLanBridgePortDataEntryActive INTEGER, + lcsSetupLanBridgePortDataEntryBridgeGroup INTEGER, + lcsSetupLanBridgePortDataEntryDhcpLimit Integer32, + lcsSetupLanBridgePortDataEntryPointToPointPort INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.11.1.2 +lcsSetupLanBridgePortDataEntryPort OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..18)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgePortDataEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.11.1.3 +lcsSetupLanBridgePortDataEntryActive OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgePortDataEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.11.1.5 +lcsSetupLanBridgePortDataEntryBridgeGroup OBJECT-TYPE + SYNTAX INTEGER { + eBrg1 (0), + eBrg2 (1), + eBrg3 (2), + eBrg4 (3), + eBrg5 (4), + eBrg6 (5), + eBrg7 (6), + eBrg8 (7), + eNone (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgePortDataEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.11.1.6 +lcsSetupLanBridgePortDataEntryDhcpLimit OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgePortDataEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.11.1.7 +lcsSetupLanBridgePortDataEntryPointToPointPort OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eForceTrue (1), + eForceFalse (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgePortDataEntry 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.20.12 +lcsSetupLanBridgeAgingTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridge 12 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.20.13 +lcsSetupLanBridgePriorityMappingTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupLanBridgePriorityMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridge 13 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.20.13.1 +lcsSetupLanBridgePriorityMappingEntry OBJECT-TYPE + SYNTAX LcsSetupLanBridgePriorityMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupLanBridgePriorityMappingEntryName + } + ::= { lcsSetupLanBridgePriorityMappingTable 1 } + +LcsSetupLanBridgePriorityMappingEntry ::= SEQUENCE { + lcsSetupLanBridgePriorityMappingEntryName DisplayString, + lcsSetupLanBridgePriorityMappingEntryDscpValue Integer32, + lcsSetupLanBridgePriorityMappingEntryPriority INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.13.1.1 +lcsSetupLanBridgePriorityMappingEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgePriorityMappingEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.13.1.2 +lcsSetupLanBridgePriorityMappingEntryDscpValue OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgePriorityMappingEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.13.1.3 +lcsSetupLanBridgePriorityMappingEntryPriority OBJECT-TYPE + SYNTAX INTEGER { + eBestEffort (0), + eBackground (1), + eTwo (2), + eExcellentEffort (3), + eControlledLatency (4), + eVideo (5), + eVoice (6), + eNetworkControl (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgePriorityMappingEntry 3 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.20.20 +lcsSetupLanBridgeSpanningTree OBJECT IDENTIFIER ::= { lcsSetupLanBridge 20 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.20.20.1 +lcsSetupLanBridgeSpanningTreeOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeSpanningTree 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.20.20.2 +lcsSetupLanBridgeSpanningTreeBridgePriority OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeSpanningTree 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.20.20.5 +lcsSetupLanBridgeSpanningTreeMaxAge OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeSpanningTree 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.20.20.6 +lcsSetupLanBridgeSpanningTreeHelloTime OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeSpanningTree 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.20.20.7 +lcsSetupLanBridgeSpanningTreeForwardDelay OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeSpanningTree 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.20.20.11 +lcsSetupLanBridgeSpanningTreePortDataTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupLanBridgeSpanningTreePortDataEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeSpanningTree 11 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.20.20.11.1 +lcsSetupLanBridgeSpanningTreePortDataEntry OBJECT-TYPE + SYNTAX LcsSetupLanBridgeSpanningTreePortDataEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupLanBridgeSpanningTreePortDataEntryPort + } + ::= { lcsSetupLanBridgeSpanningTreePortDataTable 1 } + +LcsSetupLanBridgeSpanningTreePortDataEntry ::= SEQUENCE { + lcsSetupLanBridgeSpanningTreePortDataEntryPort DisplayString, + lcsSetupLanBridgeSpanningTreePortDataEntryPriority Integer32, + lcsSetupLanBridgeSpanningTreePortDataEntryEdgePort INTEGER, + lcsSetupLanBridgeSpanningTreePortDataEntryPathCostOverride Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.20.11.1.2 +lcsSetupLanBridgeSpanningTreePortDataEntryPort OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..18)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeSpanningTreePortDataEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.20.11.1.4 +lcsSetupLanBridgeSpanningTreePortDataEntryPriority OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeSpanningTreePortDataEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.20.11.1.6 +lcsSetupLanBridgeSpanningTreePortDataEntryEdgePort OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeSpanningTreePortDataEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.20.11.1.7 +lcsSetupLanBridgeSpanningTreePortDataEntryPathCostOverride OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeSpanningTreePortDataEntry 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.20.20.12 +lcsSetupLanBridgeSpanningTreeProtocolVersion OBJECT-TYPE + SYNTAX INTEGER { + eClassic (0), + eRapid (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeSpanningTree 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.20.20.13 +lcsSetupLanBridgeSpanningTreeTransmitHoldCount OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeSpanningTree 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.20.20.14 +lcsSetupLanBridgeSpanningTreePathCostComputation OBJECT-TYPE + SYNTAX INTEGER { + eClassic (0), + eRapid (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeSpanningTree 14 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.20.30 +lcsSetupLanBridgeIgmpSnooping OBJECT IDENTIFIER ::= { lcsSetupLanBridge 30 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.20.30.1 +lcsSetupLanBridgeIgmpSnoopingOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eAuto (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeIgmpSnooping 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.20.30.2 +lcsSetupLanBridgeIgmpSnoopingPortSettingsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupLanBridgeIgmpSnoopingPortSettingsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeIgmpSnooping 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.20.30.2.1 +lcsSetupLanBridgeIgmpSnoopingPortSettingsEntry OBJECT-TYPE + SYNTAX LcsSetupLanBridgeIgmpSnoopingPortSettingsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupLanBridgeIgmpSnoopingPortSettingsEntryPort + } + ::= { lcsSetupLanBridgeIgmpSnoopingPortSettingsTable 1 } + +LcsSetupLanBridgeIgmpSnoopingPortSettingsEntry ::= SEQUENCE { + lcsSetupLanBridgeIgmpSnoopingPortSettingsEntryPort DisplayString, + lcsSetupLanBridgeIgmpSnoopingPortSettingsEntryRouterPort INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.30.2.1.1 +lcsSetupLanBridgeIgmpSnoopingPortSettingsEntryPort OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..18)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeIgmpSnoopingPortSettingsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.30.2.1.2 +lcsSetupLanBridgeIgmpSnoopingPortSettingsEntryRouterPort OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eAuto (1), + eYes (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeIgmpSnoopingPortSettingsEntry 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.20.30.3 +lcsSetupLanBridgeIgmpSnoopingUnregisteredDataPacketHandling OBJECT-TYPE + SYNTAX INTEGER { + eRouterPortsOnly (0), + eFlood (1), + eDiscard (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeIgmpSnooping 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.20.30.4 +lcsSetupLanBridgeIgmpSnoopingSimulatedQueriersTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupLanBridgeIgmpSnoopingSimulatedQueriersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeIgmpSnooping 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.20.30.4.1 +lcsSetupLanBridgeIgmpSnoopingSimulatedQueriersEntry OBJECT-TYPE + SYNTAX LcsSetupLanBridgeIgmpSnoopingSimulatedQueriersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupLanBridgeIgmpSnoopingSimulatedQueriersEntryName + } + ::= { lcsSetupLanBridgeIgmpSnoopingSimulatedQueriersTable 1 } + +LcsSetupLanBridgeIgmpSnoopingSimulatedQueriersEntry ::= SEQUENCE { + lcsSetupLanBridgeIgmpSnoopingSimulatedQueriersEntryName DisplayString, + lcsSetupLanBridgeIgmpSnoopingSimulatedQueriersEntryOperating INTEGER, + lcsSetupLanBridgeIgmpSnoopingSimulatedQueriersEntryBridgeGroup INTEGER, + lcsSetupLanBridgeIgmpSnoopingSimulatedQueriersEntryVlanId Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.30.4.1.1 +lcsSetupLanBridgeIgmpSnoopingSimulatedQueriersEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..8)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeIgmpSnoopingSimulatedQueriersEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.30.4.1.2 +lcsSetupLanBridgeIgmpSnoopingSimulatedQueriersEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeIgmpSnoopingSimulatedQueriersEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.30.4.1.3 +lcsSetupLanBridgeIgmpSnoopingSimulatedQueriersEntryBridgeGroup OBJECT-TYPE + SYNTAX INTEGER { + eBrg1 (0), + eBrg2 (1), + eBrg3 (2), + eBrg4 (3), + eBrg5 (4), + eBrg6 (5), + eBrg7 (6), + eBrg8 (7), + eNone (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeIgmpSnoopingSimulatedQueriersEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.30.4.1.4 +lcsSetupLanBridgeIgmpSnoopingSimulatedQueriersEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeIgmpSnoopingSimulatedQueriersEntry 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.20.30.5 +lcsSetupLanBridgeIgmpSnoopingQueryInterval OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeIgmpSnooping 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.20.30.6 +lcsSetupLanBridgeIgmpSnoopingQueryResponseInterval OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeIgmpSnooping 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.20.30.7 +lcsSetupLanBridgeIgmpSnoopingRobustness OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeIgmpSnooping 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.20.30.8 +lcsSetupLanBridgeIgmpSnoopingStaticMembersTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupLanBridgeIgmpSnoopingStaticMembersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeIgmpSnooping 8 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.20.30.8.1 +lcsSetupLanBridgeIgmpSnoopingStaticMembersEntry OBJECT-TYPE + SYNTAX LcsSetupLanBridgeIgmpSnoopingStaticMembersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupLanBridgeIgmpSnoopingStaticMembersEntryAddress, + lcsSetupLanBridgeIgmpSnoopingStaticMembersEntryVlanId + } + ::= { lcsSetupLanBridgeIgmpSnoopingStaticMembersTable 1 } + +LcsSetupLanBridgeIgmpSnoopingStaticMembersEntry ::= SEQUENCE { + lcsSetupLanBridgeIgmpSnoopingStaticMembersEntryAddress IpAddress, + lcsSetupLanBridgeIgmpSnoopingStaticMembersEntryStaticMembers DisplayString, + lcsSetupLanBridgeIgmpSnoopingStaticMembersEntryVlanId Integer32, + lcsSetupLanBridgeIgmpSnoopingStaticMembersEntryAllowLearning INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.30.8.1.1 +lcsSetupLanBridgeIgmpSnoopingStaticMembersEntryAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeIgmpSnoopingStaticMembersEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.30.8.1.2 +lcsSetupLanBridgeIgmpSnoopingStaticMembersEntryStaticMembers OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeIgmpSnoopingStaticMembersEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.30.8.1.3 +lcsSetupLanBridgeIgmpSnoopingStaticMembersEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeIgmpSnoopingStaticMembersEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.30.8.1.4 +lcsSetupLanBridgeIgmpSnoopingStaticMembersEntryAllowLearning OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeIgmpSnoopingStaticMembersEntry 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.20.30.9 +lcsSetupLanBridgeIgmpSnoopingAdvertiseInterval OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupLanBridgeIgmpSnooping 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.20.40 +lcsSetupLanBridgeDhcpSnoopingTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupLanBridgeDhcpSnoopingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanBridge 40 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.20.40.1 +lcsSetupLanBridgeDhcpSnoopingEntry OBJECT-TYPE + SYNTAX LcsSetupLanBridgeDhcpSnoopingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupLanBridgeDhcpSnoopingEntryPort + } + ::= { lcsSetupLanBridgeDhcpSnoopingTable 1 } + +LcsSetupLanBridgeDhcpSnoopingEntry ::= SEQUENCE { + lcsSetupLanBridgeDhcpSnoopingEntryPort DisplayString, + lcsSetupLanBridgeDhcpSnoopingEntryAddAgentInfo INTEGER, + lcsSetupLanBridgeDhcpSnoopingEntryTreatExistingAgentInfo INTEGER, + lcsSetupLanBridgeDhcpSnoopingEntryRemoteId DisplayString, + lcsSetupLanBridgeDhcpSnoopingEntryCircuitId DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.40.1.1 +lcsSetupLanBridgeDhcpSnoopingEntryPort OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..18)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanBridgeDhcpSnoopingEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.40.1.2 +lcsSetupLanBridgeDhcpSnoopingEntryAddAgentInfo OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanBridgeDhcpSnoopingEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.40.1.3 +lcsSetupLanBridgeDhcpSnoopingEntryTreatExistingAgentInfo OBJECT-TYPE + SYNTAX INTEGER { + eKeep (0), + eReplace (1), + eDiscard (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanBridgeDhcpSnoopingEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.40.1.4 +lcsSetupLanBridgeDhcpSnoopingEntryRemoteId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..30)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanBridgeDhcpSnoopingEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.40.1.5 +lcsSetupLanBridgeDhcpSnoopingEntryCircuitId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..30)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanBridgeDhcpSnoopingEntry 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.20.41 +lcsSetupLanBridgeDhcpv6SnoopingTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupLanBridgeDhcpv6SnoopingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanBridge 41 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.20.41.1 +lcsSetupLanBridgeDhcpv6SnoopingEntry OBJECT-TYPE + SYNTAX LcsSetupLanBridgeDhcpv6SnoopingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupLanBridgeDhcpv6SnoopingEntryPort + } + ::= { lcsSetupLanBridgeDhcpv6SnoopingTable 1 } + +LcsSetupLanBridgeDhcpv6SnoopingEntry ::= SEQUENCE { + lcsSetupLanBridgeDhcpv6SnoopingEntryPort DisplayString, + lcsSetupLanBridgeDhcpv6SnoopingEntryOrientation INTEGER, + lcsSetupLanBridgeDhcpv6SnoopingEntryType INTEGER, + lcsSetupLanBridgeDhcpv6SnoopingEntryRemoteId DisplayString, + lcsSetupLanBridgeDhcpv6SnoopingEntryInterfaceId DisplayString, + lcsSetupLanBridgeDhcpv6SnoopingEntryServerAddress DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.41.1.1 +lcsSetupLanBridgeDhcpv6SnoopingEntryPort OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..18)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanBridgeDhcpv6SnoopingEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.41.1.2 +lcsSetupLanBridgeDhcpv6SnoopingEntryOrientation OBJECT-TYPE + SYNTAX INTEGER { + eNetworkFacing (0), + eClientFacing (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanBridgeDhcpv6SnoopingEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.41.1.3 +lcsSetupLanBridgeDhcpv6SnoopingEntryType OBJECT-TYPE + SYNTAX INTEGER { + eTrusted (0), + eUntrusted (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanBridgeDhcpv6SnoopingEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.41.1.4 +lcsSetupLanBridgeDhcpv6SnoopingEntryRemoteId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..30)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanBridgeDhcpv6SnoopingEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.41.1.5 +lcsSetupLanBridgeDhcpv6SnoopingEntryInterfaceId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..30)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanBridgeDhcpv6SnoopingEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.41.1.6 +lcsSetupLanBridgeDhcpv6SnoopingEntryServerAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanBridgeDhcpv6SnoopingEntry 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.20.42 +lcsSetupLanBridgeRaSnoopingTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupLanBridgeRaSnoopingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanBridge 42 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.20.42.1 +lcsSetupLanBridgeRaSnoopingEntry OBJECT-TYPE + SYNTAX LcsSetupLanBridgeRaSnoopingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupLanBridgeRaSnoopingEntryPort + } + ::= { lcsSetupLanBridgeRaSnoopingTable 1 } + +LcsSetupLanBridgeRaSnoopingEntry ::= SEQUENCE { + lcsSetupLanBridgeRaSnoopingEntryPort DisplayString, + lcsSetupLanBridgeRaSnoopingEntryType INTEGER, + lcsSetupLanBridgeRaSnoopingEntryRouterAddress DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.42.1.1 +lcsSetupLanBridgeRaSnoopingEntryPort OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..18)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanBridgeRaSnoopingEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.42.1.3 +lcsSetupLanBridgeRaSnoopingEntryType OBJECT-TYPE + SYNTAX INTEGER { + eRouter (0), + eClient (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanBridgeRaSnoopingEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.20.42.1.4 +lcsSetupLanBridgeRaSnoopingEntryRouterAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLanBridgeRaSnoopingEntry 4 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.21 +lcsSetupHttp OBJECT IDENTIFIER ::= { lcsSetup 21 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.1 +lcsSetupHttpDocumentRoot OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..99)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttp 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.2 +lcsSetupHttpUseCss OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.3 +lcsSetupHttpFontFamily OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.5 +lcsSetupHttpPageHeaders OBJECT-TYPE + SYNTAX INTEGER { + eImages (0), + eTexts (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttp 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.6 +lcsSetupHttpErrorPageStyle OBJECT-TYPE + SYNTAX INTEGER { + eStandard (0), + eNifty (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttp 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.7 +lcsSetupHttpPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttp 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.8 +lcsSetupHttpSslPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttp 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.9 +lcsSetupHttpMaxTunnelConnections OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttp 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.10 +lcsSetupHttpTunnelIdleTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttp 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.11 +lcsSetupHttpSessionTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttp 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.13 +lcsSetupHttpStandardDesign OBJECT-TYPE + SYNTAX INTEGER { + eNormalDesign (0), + eDesignForSmallResolutions (1), + eDesignWithHighContrast (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttp 13 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.21.14 +lcsSetupHttpShowDeviceInformationTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupHttpShowDeviceInformationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttp 14 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.21.14.1 +lcsSetupHttpShowDeviceInformationEntry OBJECT-TYPE + SYNTAX LcsSetupHttpShowDeviceInformationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupHttpShowDeviceInformationEntryDeviceInformation + } + ::= { lcsSetupHttpShowDeviceInformationTable 1 } + +LcsSetupHttpShowDeviceInformationEntry ::= SEQUENCE { + lcsSetupHttpShowDeviceInformationEntryDeviceInformation INTEGER, + lcsSetupHttpShowDeviceInformationEntryPosition Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.21.14.1.1 +lcsSetupHttpShowDeviceInformationEntryDeviceInformation OBJECT-TYPE + SYNTAX INTEGER { + eCpu (1), + eMemory (2), + eWlan (3), + eP2pConnections (4), + eEthernetPorts (5), + eTroughputEthernet (6), + eUmtsModemInterface (7), + eRouter (8), + eFirewall (9), + eDhcp (10), + eDns (11), + eVpn (12), + eAdsl (13), + eIsdn (14), + eDSLDSLoL (15), + eScepCa (16), + eWlanController (17), + eTime (18), + eIpv4Addresses (19), + eOperatingTime (20), + eVdsl (21), + eConnections (22), + eIpv6Addresses (23), + eIpv6Prefixes (24), + eDhcpv6Client (25), + eDhcpv6Server (26) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttpShowDeviceInformationEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.21.14.1.2 +lcsSetupHttpShowDeviceInformationEntryPosition OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttpShowDeviceInformationEntry 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.15 +lcsSetupHttpHttpCompression OBJECT-TYPE + SYNTAX INTEGER { + eActivated (0), + eOnlyForWan (1), + eDeactivated (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttp 15 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.21.16 +lcsSetupHttpKeepServerPortsOpenTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupHttpKeepServerPortsOpenEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttp 16 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.21.16.1 +lcsSetupHttpKeepServerPortsOpenEntry OBJECT-TYPE + SYNTAX LcsSetupHttpKeepServerPortsOpenEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupHttpKeepServerPortsOpenEntryIfc + } + ::= { lcsSetupHttpKeepServerPortsOpenTable 1 } + +LcsSetupHttpKeepServerPortsOpenEntry ::= SEQUENCE { + lcsSetupHttpKeepServerPortsOpenEntryIfc INTEGER, + lcsSetupHttpKeepServerPortsOpenEntryKeepServerPortsOpen INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.21.16.1.1 +lcsSetupHttpKeepServerPortsOpenEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eLan (1), + eWan (2), + eWlan (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttpKeepServerPortsOpenEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.21.16.1.2 +lcsSetupHttpKeepServerPortsOpenEntryKeepServerPortsOpen OBJECT-TYPE + SYNTAX INTEGER { + eAutomatic (0), + eEnabled (1), + eDisabled (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttpKeepServerPortsOpenEntry 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.17 +lcsSetupHttpUseUserProvidedCertificate OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttp 17 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.18 +lcsSetupHttpSslVersions OBJECT-TYPE + SYNTAX BITS { + eTlsv12 (4), + eTlsv11 (5), + eTlsv1 (6), + eSslv3 (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupHttp 18 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.21.20 +lcsSetupHttpRolloutWizard OBJECT IDENTIFIER ::= { lcsSetupHttp 20 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.20.1 +lcsSetupHttpRolloutWizardOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttpRolloutWizard 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.20.2 +lcsSetupHttpRolloutWizardTitle OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..50)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttpRolloutWizard 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.21.20.3 +lcsSetupHttpRolloutWizardVariablesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupHttpRolloutWizardVariablesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttpRolloutWizard 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.21.20.3.1 +lcsSetupHttpRolloutWizardVariablesEntry OBJECT-TYPE + SYNTAX LcsSetupHttpRolloutWizardVariablesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupHttpRolloutWizardVariablesEntryIndex + } + ::= { lcsSetupHttpRolloutWizardVariablesTable 1 } + +LcsSetupHttpRolloutWizardVariablesEntry ::= SEQUENCE { + lcsSetupHttpRolloutWizardVariablesEntryIndex Integer32, + lcsSetupHttpRolloutWizardVariablesEntryIdent DisplayString, + lcsSetupHttpRolloutWizardVariablesEntryTitle DisplayString, + lcsSetupHttpRolloutWizardVariablesEntryType INTEGER, + lcsSetupHttpRolloutWizardVariablesEntryMinValue Integer32, + lcsSetupHttpRolloutWizardVariablesEntryMaxValue Integer32, + lcsSetupHttpRolloutWizardVariablesEntryDefaultValue DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.21.20.3.1.1 +lcsSetupHttpRolloutWizardVariablesEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttpRolloutWizardVariablesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.21.20.3.1.2 +lcsSetupHttpRolloutWizardVariablesEntryIdent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttpRolloutWizardVariablesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.21.20.3.1.3 +lcsSetupHttpRolloutWizardVariablesEntryTitle OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..40)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttpRolloutWizardVariablesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.21.20.3.1.4 +lcsSetupHttpRolloutWizardVariablesEntryType OBJECT-TYPE + SYNTAX INTEGER { + eLabel (0), + eInteger (1), + eString (2), + ePassword (3), + eCheckmark (4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttpRolloutWizardVariablesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.21.20.3.1.5 +lcsSetupHttpRolloutWizardVariablesEntryMinValue OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttpRolloutWizardVariablesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.21.20.3.1.6 +lcsSetupHttpRolloutWizardVariablesEntryMaxValue OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttpRolloutWizardVariablesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.21.20.3.1.7 +lcsSetupHttpRolloutWizardVariablesEntryDefaultValue OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..30)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttpRolloutWizardVariablesEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.21.20.4 +lcsSetupHttpRolloutWizardActionsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupHttpRolloutWizardActionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttpRolloutWizard 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.21.20.4.1 +lcsSetupHttpRolloutWizardActionsEntry OBJECT-TYPE + SYNTAX LcsSetupHttpRolloutWizardActionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupHttpRolloutWizardActionsEntryIndex + } + ::= { lcsSetupHttpRolloutWizardActionsTable 1 } + +LcsSetupHttpRolloutWizardActionsEntry ::= SEQUENCE { + lcsSetupHttpRolloutWizardActionsEntryIndex Integer32, + lcsSetupHttpRolloutWizardActionsEntryAction DisplayString, + lcsSetupHttpRolloutWizardActionsEntryDescription DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.21.20.4.1.1 +lcsSetupHttpRolloutWizardActionsEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttpRolloutWizardActionsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.21.20.4.1.2 +lcsSetupHttpRolloutWizardActionsEntryAction OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttpRolloutWizardActionsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.21.20.4.1.3 +lcsSetupHttpRolloutWizardActionsEntryDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttpRolloutWizardActionsEntry 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.20.5 +lcsSetupHttpRolloutWizardRenumberVariables OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttpRolloutWizard 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.20.6 +lcsSetupHttpRolloutWizardRenumberActions OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttpRolloutWizard 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.20.7 +lcsSetupHttpRolloutWizardDisplayConnectionStatusFor OBJECT-TYPE + SYNTAX BITS { + eNothing (0), + eDsl (28), + eVpn (29), + eIsdn (30) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttpRolloutWizard 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.20.8 +lcsSetupHttpRolloutWizardUseExtraChecks OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttpRolloutWizard 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.21.20.9 +lcsSetupHttpRolloutWizardPresetsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupHttpRolloutWizardPresetsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupHttpRolloutWizard 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.21.20.9.1 +lcsSetupHttpRolloutWizardPresetsEntry OBJECT-TYPE + SYNTAX LcsSetupHttpRolloutWizardPresetsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupHttpRolloutWizardPresetsEntryName + } + ::= { lcsSetupHttpRolloutWizardPresetsTable 1 } + +LcsSetupHttpRolloutWizardPresetsEntry ::= SEQUENCE { + lcsSetupHttpRolloutWizardPresetsEntryName INTEGER, + lcsSetupHttpRolloutWizardPresetsEntryPreset DisplayString, + lcsSetupHttpRolloutWizardPresetsEntryUsePreset INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.21.20.9.1.1 +lcsSetupHttpRolloutWizardPresetsEntryName OBJECT-TYPE + SYNTAX INTEGER { + eRolloutHost (1), + eProtocol (2), + eUsername (3), + ePassword (4), + eProject (5), + eDeviceId (6), + eTan (8), + eSourceLoopbackAddress (10), + ePort (11) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupHttpRolloutWizardPresetsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.21.20.9.1.2 +lcsSetupHttpRolloutWizardPresetsEntryPreset OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..127)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupHttpRolloutWizardPresetsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.21.20.9.1.3 +lcsSetupHttpRolloutWizardPresetsEntryUsePreset OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupHttpRolloutWizardPresetsEntry 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.20.10 +lcsSetupHttpRolloutWizardDeleteWizard OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupHttpRolloutWizard 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.21 +lcsSetupHttpMaxHttpJobCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupHttp 21 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.21.30 +lcsSetupHttpFileServer OBJECT IDENTIFIER ::= { lcsSetupHttp 30 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.30.1 +lcsSetupHttpFileServerPublicSubdir OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttpFileServer 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.30.2 +lcsSetupHttpFileServerOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupHttpFileServer 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.21.40 +lcsSetupHttpSslNew OBJECT IDENTIFIER ::= { lcsSetupHttp 40 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.40.3 +lcsSetupHttpSslNewVersions OBJECT-TYPE + SYNTAX BITS { + eTlsv12 (28), + eTlsv11 (29), + eTlsv1 (30), + eSslv3 (31) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupHttpSslNew 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.40.4 +lcsSetupHttpSslNewKeyexAlgorithms OBJECT-TYPE + SYNTAX BITS { + eEcdhe (27), + eDhe (29), + eRsa (31) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupHttpSslNew 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.40.5 +lcsSetupHttpSslNewCryptoAlgorithms OBJECT-TYPE + SYNTAX BITS { + eAesgcm256 (20), + eAesgcm128 (21), + eAes256 (22), + eAes128 (23), + e3des (24), + eDes (25), + eDes40 (26), + eRc4128 (27), + eRc456 (28), + eRc440 (29) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupHttpSslNew 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.40.6 +lcsSetupHttpSslNewHashAlgorithms OBJECT-TYPE + SYNTAX BITS { + eSha2384 (26), + eSha2256 (27), + eSha1 (29), + eMd5 (30) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupHttpSslNew 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.40.10 +lcsSetupHttpSslNewPortNew OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "TCP port device is listening on for HTTPS" + ::= { lcsSetupHttpSslNew 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.21.40.11 +lcsSetupHttpSslNewUseUserDefCert OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "use uploaded SSL certificate for HTTPS server" + ::= { lcsSetupHttpSslNew 11 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.22 +lcsSetupSyslog OBJECT IDENTIFIER ::= { lcsSetup 22 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.22.1 +lcsSetupSyslogOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSyslog 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.22.2 +lcsSetupSyslogServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupSyslogServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSyslog 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.22.2.1 +lcsSetupSyslogServerEntry OBJECT-TYPE + SYNTAX LcsSetupSyslogServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupSyslogServerEntryIdx + } + ::= { lcsSetupSyslogServerTable 1 } + +LcsSetupSyslogServerEntry ::= SEQUENCE { + lcsSetupSyslogServerEntryIdx DisplayString, + lcsSetupSyslogServerEntryIpAddress IpAddress, + lcsSetupSyslogServerEntrySource Integer32, + lcsSetupSyslogServerEntryLevel Integer32, + lcsSetupSyslogServerEntryLoopbackAddr DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.22.2.1.1 +lcsSetupSyslogServerEntryIdx OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..4)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSyslogServerEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.22.2.1.2 +lcsSetupSyslogServerEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSyslogServerEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.22.2.1.3 +lcsSetupSyslogServerEntrySource OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSyslogServerEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.22.2.1.4 +lcsSetupSyslogServerEntryLevel OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSyslogServerEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.22.2.1.6 +lcsSetupSyslogServerEntryLoopbackAddr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSyslogServerEntry 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.22.3 +lcsSetupSyslogFacilityMapperTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupSyslogFacilityMapperEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSyslog 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.22.3.1 +lcsSetupSyslogFacilityMapperEntry OBJECT-TYPE + SYNTAX LcsSetupSyslogFacilityMapperEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupSyslogFacilityMapperEntrySource + } + ::= { lcsSetupSyslogFacilityMapperTable 1 } + +LcsSetupSyslogFacilityMapperEntry ::= SEQUENCE { + lcsSetupSyslogFacilityMapperEntrySource INTEGER, + lcsSetupSyslogFacilityMapperEntryFacility INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.22.3.1.1 +lcsSetupSyslogFacilityMapperEntrySource OBJECT-TYPE + SYNTAX INTEGER { + eSystem (1), + eLogin (2), + eSystemtime (4), + eConsoleLogin (8), + eConnections (16), + eAccounting (32), + eAdministration (64), + eRouter (128) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSyslogFacilityMapperEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.22.3.1.2 +lcsSetupSyslogFacilityMapperEntryFacility OBJECT-TYPE + SYNTAX INTEGER { + eKern (0), + eUser (1), + eMail (2), + eDaemon (3), + eAuth (4), + eSyslog (5), + eLpr (6), + eNews (7), + eUucp (8), + eCron (9), + eAuthpriv (10), + eLocal0 (16), + eLocal1 (17), + eLocal2 (18), + eLocal3 (19), + eLocal4 (20), + eLocal5 (21), + eLocal6 (22), + eLocal7 (23) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSyslogFacilityMapperEntry 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.22.4 +lcsSetupSyslogPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSyslog 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.22.5 +lcsSetupSyslogMessagesTableOrder OBJECT-TYPE + SYNTAX INTEGER { + eOldestOnTop (0), + eNewestOnTop (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupSyslog 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.22.6 +lcsSetupSyslogBackupIntervall OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupSyslog 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.22.7 +lcsSetupSyslogBackupActive OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupSyslog 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.22.8 +lcsSetupSyslogLogCliChanges OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupSyslog 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.22.9 +lcsSetupSyslogMaxMessageAgeHours OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupSyslog 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.22.10 +lcsSetupSyslogRemoveOldMessages OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupSyslog 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.22.11 +lcsSetupSyslogMaxAgeUnit OBJECT-TYPE + SYNTAX INTEGER { + eHour (0), + eDay (1), + eMonth (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupSyslog 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.22.12 +lcsSetupSyslogCriticalPrio OBJECT-TYPE + SYNTAX INTEGER { + eEmergency (0), + eAlarm (1), + eCritical (2), + eError (3), + eWarning (4), + eNotice (5), + eInfo (6), + eDebug (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupSyslog 12 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.23 +lcsSetupInterfaces OBJECT IDENTIFIER ::= { lcsSetup 23 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.1 +lcsSetupInterfacesS0Table OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesS0Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfaces 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.1.1 +lcsSetupInterfacesS0Entry OBJECT-TYPE + SYNTAX LcsSetupInterfacesS0Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesS0EntryIfc + } + ::= { lcsSetupInterfacesS0Table 1 } + +LcsSetupInterfacesS0Entry ::= SEQUENCE { + lcsSetupInterfacesS0EntryIfc INTEGER, + lcsSetupInterfacesS0EntryProtocol INTEGER, + lcsSetupInterfacesS0EntryLlBChan INTEGER, + lcsSetupInterfacesS0EntryDialPrefix DisplayString, + lcsSetupInterfacesS0EntryMaxInCalls INTEGER, + lcsSetupInterfacesS0EntryMaxOutCalls INTEGER, + lcsSetupInterfacesS0EntryTypeOfInterface Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.1.1.1 +lcsSetupInterfacesS0EntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eS01 (257), + eModem (513), + eDsl1 (2049), + eDsl2 (2050), + eDsl3 (2051), + eDsl4 (2052), + eAdsl (8193), + eVdsl (16385) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesS0Entry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.1.1.2 +lcsSetupInterfacesS0EntryProtocol OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eDss1 (1), + e1tr6 (2), + eP2pDss1 (4), + eGrp0 (16), + eAuto (255), + eNtP2pDss1 (16384), + eNtDss1 (32768), + eRevNtP2pDss1 (65536), + eRevNtDss1 (131072) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesS0Entry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.1.1.7 +lcsSetupInterfacesS0EntryLlBChan OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eB1 (1), + eB2 (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesS0Entry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.1.1.9 +lcsSetupInterfacesS0EntryDialPrefix OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..8)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesS0Entry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.1.1.13 +lcsSetupInterfacesS0EntryMaxInCalls OBJECT-TYPE + SYNTAX INTEGER { + eTwo (0), + eOne (1), + eZero (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesS0Entry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.1.1.14 +lcsSetupInterfacesS0EntryMaxOutCalls OBJECT-TYPE + SYNTAX INTEGER { + eTwo (0), + eOne (1), + eZero (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesS0Entry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.1.1.15 +lcsSetupInterfacesS0EntryTypeOfInterface OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesS0Entry 15 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.4 +lcsSetupInterfacesDslTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesDslEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfaces 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.4.1 +lcsSetupInterfacesDslEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesDslEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesDslEntryIfc + } + ::= { lcsSetupInterfacesDslTable 1 } + +LcsSetupInterfacesDslEntry ::= SEQUENCE { + lcsSetupInterfacesDslEntryIfc INTEGER, + lcsSetupInterfacesDslEntryOperating INTEGER, + lcsSetupInterfacesDslEntryConnector INTEGER, + lcsSetupInterfacesDslEntryTypeOfInterface Integer32, + lcsSetupInterfacesDslEntryUpstreamRate Integer32, + lcsSetupInterfacesDslEntryExtOverhead Integer32, + lcsSetupInterfacesDslEntryDownstreamRate Integer32, + lcsSetupInterfacesDslEntryLanIfc INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.4.1.1 +lcsSetupInterfacesDslEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eS01 (257), + eModem (513), + eDsl1 (2049), + eDsl2 (2050), + eDsl3 (2051), + eDsl4 (2052), + eAdsl (8193), + eVdsl (16385) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesDslEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.4.1.2 +lcsSetupInterfacesDslEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (16) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesDslEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.4.1.6 +lcsSetupInterfacesDslEntryConnector OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eExclusive (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesDslEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.4.1.15 +lcsSetupInterfacesDslEntryTypeOfInterface OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesDslEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.4.1.16 +lcsSetupInterfacesDslEntryUpstreamRate OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesDslEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.4.1.17 +lcsSetupInterfacesDslEntryExtOverhead OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesDslEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.4.1.18 +lcsSetupInterfacesDslEntryDownstreamRate OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesDslEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.4.1.23 +lcsSetupInterfacesDslEntryLanIfc OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (256), + eLan2 (257), + eLan3 (258), + eLan4 (259), + eWlan1 (512), + eWlan2 (513), + eP2p11 (768), + eP2p12 (769), + eP2p13 (770), + eP2p14 (771), + eP2p15 (772), + eP2p16 (773), + eP2p21 (774), + eP2p22 (775), + eP2p23 (776), + eP2p24 (777), + eP2p25 (778), + eP2p26 (779), + eP2p17 (799), + eP2p18 (800), + eP2p19 (801), + eP2p110 (802), + eP2p111 (803), + eP2p112 (804), + eP2p113 (805), + eP2p114 (806), + eP2p115 (807), + eP2p116 (808), + eP2p27 (831), + eP2p28 (832), + eP2p29 (833), + eP2p210 (834), + eP2p211 (835), + eP2p212 (836), + eP2p213 (837), + eP2p214 (838), + eP2p215 (839), + eP2p216 (840), + eWlan12 (1024), + eWlan13 (1025), + eWlan14 (1026), + eWlan15 (1027), + eWlan16 (1028), + eWlan17 (1029), + eWlan18 (1030), + eWlan22 (1031), + eWlan23 (1032), + eWlan24 (1033), + eWlan25 (1034), + eWlan26 (1035), + eWlan27 (1036), + eWlan28 (1037), + eBrg1 (1536), + eBrg2 (1537), + eBrg3 (1538), + eBrg4 (1539), + eBrg5 (1540), + eBrg6 (1541), + eBrg7 (1542), + eBrg8 (1543), + eWlcTunnel1 (1792), + eWlcTunnel2 (1793), + eWlcTunnel3 (1794), + eWlcTunnel4 (1795), + eWlcTunnel5 (1796), + eWlcTunnel6 (1797), + eWlcTunnel7 (1798), + eWlcTunnel8 (1799), + eWlcTunnel9 (1800), + eWlcTunnel10 (1801), + eWlcTunnel11 (1802), + eWlcTunnel12 (1803), + eWlcTunnel13 (1804), + eWlcTunnel14 (1805), + eWlcTunnel15 (1806), + eWlcTunnel16 (1807), + eWlcTunnel17 (1808), + eWlcTunnel18 (1809), + eWlcTunnel19 (1810), + eWlcTunnel20 (1811), + eWlcTunnel21 (1812), + eWlcTunnel22 (1813), + eWlcTunnel23 (1814), + eWlcTunnel24 (1815), + eWlcTunnel25 (1816), + eWlcTunnel26 (1817), + eWlcTunnel27 (1818), + eWlcTunnel28 (1819), + eWlcTunnel29 (1820), + eWlcTunnel30 (1821), + eWlcTunnel31 (1822), + eWlcTunnel32 (1823), + eBundle1 (2048), + eBundle2 (2049), + eAny (65535) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesDslEntry 23 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.6 +lcsSetupInterfacesAdslTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesAdslEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfaces 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.6.1 +lcsSetupInterfacesAdslEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesAdslEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesAdslEntryIfc + } + ::= { lcsSetupInterfacesAdslTable 1 } + +LcsSetupInterfacesAdslEntry ::= SEQUENCE { + lcsSetupInterfacesAdslEntryIfc INTEGER, + lcsSetupInterfacesAdslEntryProtocol INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.6.1.1 +lcsSetupInterfacesAdslEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eS01 (257), + eModem (513), + eDsl1 (2049), + eDsl2 (2050), + eDsl3 (2051), + eDsl4 (2052), + eAdsl (8193) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesAdslEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.6.1.2 +lcsSetupInterfacesAdslEntryProtocol OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eAuto (8), + eAdsl1 (20), + eAdsl2 (21), + eAdsl2plus (22), + eAutoPOTS (520), + eAdsl1A (532), + eAdsl2A (533), + eAdsl2plusA (534), + eAdsl2M (543), + eAdsl2plusM (544), + eAdsl2I (545), + eAdsl2plusI (546), + eAdsl2L (549), + eAutoISDN (776), + eAdsl1B (788), + eAdsl2B (789), + eAdsl2plusB (790), + eAdsl2J (803), + eAdsl2plusJ (804) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesAdslEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.7 +lcsSetupInterfacesModemMobileTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesModemMobileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfaces 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.7.1 +lcsSetupInterfacesModemMobileEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesModemMobileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesModemMobileEntryIfc + } + ::= { lcsSetupInterfacesModemMobileTable 1 } + +LcsSetupInterfacesModemMobileEntry ::= SEQUENCE { + lcsSetupInterfacesModemMobileEntryIfc INTEGER, + lcsSetupInterfacesModemMobileEntryOperating INTEGER, + lcsSetupInterfacesModemMobileEntryTypeOfInterface Integer32, + lcsSetupInterfacesModemMobileEntryDataRate INTEGER, + lcsSetupInterfacesModemMobileEntryProfile DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.7.1.1 +lcsSetupInterfacesModemMobileEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eS01 (257), + eModem (513), + eDsl1 (2049), + eDsl2 (2050), + eDsl3 (2051), + eDsl4 (2052), + eAdsl (8193), + eVdsl (16385) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesModemMobileEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.7.1.2 +lcsSetupInterfacesModemMobileEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eModem (1), + eWwan (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesModemMobileEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.7.1.15 +lcsSetupInterfacesModemMobileEntryTypeOfInterface OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesModemMobileEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.7.1.21 +lcsSetupInterfacesModemMobileEntryDataRate OBJECT-TYPE + SYNTAX INTEGER { + e19200 (19200), + e38400 (38400), + e57600 (57600), + e115200 (115200) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesModemMobileEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.7.1.22 +lcsSetupInterfacesModemMobileEntryProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesModemMobileEntry 22 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.8 +lcsSetupInterfacesVdslTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesVdslEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfaces 8 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.8.1 +lcsSetupInterfacesVdslEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesVdslEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesVdslEntryIfc + } + ::= { lcsSetupInterfacesVdslTable 1 } + +LcsSetupInterfacesVdslEntry ::= SEQUENCE { + lcsSetupInterfacesVdslEntryIfc INTEGER, + lcsSetupInterfacesVdslEntryProtocol INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.8.1.1 +lcsSetupInterfacesVdslEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eS01 (257), + eModem (513), + eDsl1 (2049), + eDsl2 (2050), + eDsl3 (2051), + eDsl4 (2052), + eVdsl (16385) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesVdslEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.8.1.2 +lcsSetupInterfacesVdslEntryProtocol OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eAuto (8), + eAdsl1 (20), + eAdsl2 (21), + eAdsl2plus (22), + eAdsl2M (31), + eAdsl2plusM (32), + eAdsl2J (35), + eAdsl2plusJ (36), + eAdsl2L (37), + eVdsl (40), + eAdsl (41) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesVdslEntry 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.18 +lcsSetupInterfacesPermanentL1Activation OBJECT-TYPE + SYNTAX INTEGER { + eDisabled (0), + eSyncSourceOnly (1), + eAllTeInterfaces (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfaces 18 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.19 +lcsSetupInterfacesPcmSyncSource OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eS01 (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfaces 19 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.23.20 +lcsSetupInterfacesWlan OBJECT IDENTIFIER ::= { lcsSetupInterfaces 20 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.20.1 +lcsSetupInterfacesWlanNetworkTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesWlanNetworkEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlan 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.20.1.1 +lcsSetupInterfacesWlanNetworkEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesWlanNetworkEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesWlanNetworkEntryIfc + } + ::= { lcsSetupInterfacesWlanNetworkTable 1 } + +LcsSetupInterfacesWlanNetworkEntry ::= SEQUENCE { + lcsSetupInterfacesWlanNetworkEntryIfc INTEGER, + lcsSetupInterfacesWlanNetworkEntryNetworkName DisplayString, + lcsSetupInterfacesWlanNetworkEntryClosedNetwork INTEGER, + lcsSetupInterfacesWlanNetworkEntryOperating INTEGER, + lcsSetupInterfacesWlanNetworkEntryMacFilter INTEGER, + lcsSetupInterfacesWlanNetworkEntryMaxStations Integer32, + lcsSetupInterfacesWlanNetworkEntryClBrgSupport INTEGER, + lcsSetupInterfacesWlanNetworkEntryRadiusAccounting INTEGER, + lcsSetupInterfacesWlanNetworkEntryInterStationTraffic INTEGER, + lcsSetupInterfacesWlanNetworkEntryApsd INTEGER, + lcsSetupInterfacesWlanNetworkEntryAironetExtensions INTEGER, + lcsSetupInterfacesWlanNetworkEntryMinClientStrength Integer32, + lcsSetupInterfacesWlanNetworkEntryIncludeUuid INTEGER, + lcsSetupInterfacesWlanNetworkEntryTransmitOnlyUnicasts INTEGER, + lcsSetupInterfacesWlanNetworkEntryTxLimit Integer32, + lcsSetupInterfacesWlanNetworkEntryRxLimit Integer32, + lcsSetupInterfacesWlanNetworkEntryAccountingServer DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.1.1.1 +lcsSetupInterfacesWlanNetworkEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2), + eWlan12 (16), + eWlan13 (17), + eWlan14 (18), + eWlan15 (19), + eWlan16 (20), + eWlan17 (21), + eWlan18 (22), + eWlan22 (32), + eWlan23 (33), + eWlan24 (34), + eWlan25 (35), + eWlan26 (36), + eWlan27 (37), + eWlan28 (38) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanNetworkEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.1.1.2 +lcsSetupInterfacesWlanNetworkEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanNetworkEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.1.1.4 +lcsSetupInterfacesWlanNetworkEntryClosedNetwork OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eTightened (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanNetworkEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.1.1.8 +lcsSetupInterfacesWlanNetworkEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanNetworkEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.1.1.9 +lcsSetupInterfacesWlanNetworkEntryMacFilter OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1), + eLocalOnly (2), + eRadiusOnly (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanNetworkEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.1.1.10 +lcsSetupInterfacesWlanNetworkEntryMaxStations OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanNetworkEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.1.1.11 +lcsSetupInterfacesWlanNetworkEntryClBrgSupport OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eExclusive (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanNetworkEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.1.1.12 +lcsSetupInterfacesWlanNetworkEntryRadiusAccounting OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanNetworkEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.1.1.13 +lcsSetupInterfacesWlanNetworkEntryInterStationTraffic OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanNetworkEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.1.1.14 +lcsSetupInterfacesWlanNetworkEntryApsd OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanNetworkEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.1.1.15 +lcsSetupInterfacesWlanNetworkEntryAironetExtensions OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanNetworkEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.1.1.16 +lcsSetupInterfacesWlanNetworkEntryMinClientStrength OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanNetworkEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.1.1.17 +lcsSetupInterfacesWlanNetworkEntryIncludeUuid OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanNetworkEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.1.1.19 +lcsSetupInterfacesWlanNetworkEntryTransmitOnlyUnicasts OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanNetworkEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.1.1.20 +lcsSetupInterfacesWlanNetworkEntryTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanNetworkEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.1.1.21 +lcsSetupInterfacesWlanNetworkEntryRxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanNetworkEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.1.1.22 +lcsSetupInterfacesWlanNetworkEntryAccountingServer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanNetworkEntry 22 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.20.2 +lcsSetupInterfacesWlanTransmissionTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesWlanTransmissionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlan 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.20.2.1 +lcsSetupInterfacesWlanTransmissionEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesWlanTransmissionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesWlanTransmissionEntryIfc + } + ::= { lcsSetupInterfacesWlanTransmissionTable 1 } + +LcsSetupInterfacesWlanTransmissionEntry ::= SEQUENCE { + lcsSetupInterfacesWlanTransmissionEntryIfc INTEGER, + lcsSetupInterfacesWlanTransmissionEntryPacketSize Integer32, + lcsSetupInterfacesWlanTransmissionEntryMinTxRate INTEGER, + lcsSetupInterfacesWlanTransmissionEntryBasicRate INTEGER, + lcsSetupInterfacesWlanTransmissionEntryRtsThreshold Integer32, + lcsSetupInterfacesWlanTransmissionEntry11bPreamble INTEGER, + lcsSetupInterfacesWlanTransmissionEntryMaxTxRate INTEGER, + lcsSetupInterfacesWlanTransmissionEntryMinFragLen Integer32, + lcsSetupInterfacesWlanTransmissionEntrySoftRetries Integer32, + lcsSetupInterfacesWlanTransmissionEntryHardRetries Integer32, + lcsSetupInterfacesWlanTransmissionEntryShortGuardInterval INTEGER, + lcsSetupInterfacesWlanTransmissionEntryMaxSpatialStreams INTEGER, + lcsSetupInterfacesWlanTransmissionEntrySendAggregates INTEGER, + lcsSetupInterfacesWlanTransmissionEntryMinHtMcs INTEGER, + lcsSetupInterfacesWlanTransmissionEntryMaxHtMcs INTEGER, + lcsSetupInterfacesWlanTransmissionEntryMinSpatialStreams INTEGER, + lcsSetupInterfacesWlanTransmissionEntryEapolRate INTEGER, + lcsSetupInterfacesWlanTransmissionEntryMaxAggrPacketCount Integer32, + lcsSetupInterfacesWlanTransmissionEntryProberspRetries Integer32, + lcsSetupInterfacesWlanTransmissionEntryReceiveAggregates INTEGER, + lcsSetupInterfacesWlanTransmissionEntryUseStbc INTEGER, + lcsSetupInterfacesWlanTransmissionEntryUseLdpc INTEGER, + lcsSetupInterfacesWlanTransmissionEntryConvertToUnicast BITS + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.2.1.1 +lcsSetupInterfacesWlanTransmissionEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2), + eWlan12 (16), + eWlan13 (17), + eWlan14 (18), + eWlan15 (19), + eWlan16 (20), + eWlan17 (21), + eWlan18 (22), + eWlan22 (32), + eWlan23 (33), + eWlan24 (34), + eWlan25 (35), + eWlan26 (36), + eWlan27 (37), + eWlan28 (38) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanTransmissionEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.2.1.2 +lcsSetupInterfacesWlanTransmissionEntryPacketSize OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanTransmissionEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.2.1.3 +lcsSetupInterfacesWlanTransmissionEntryMinTxRate OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + e1M (1), + e2M (2), + e5M5 (4), + e11M (6), + e6M (8), + e9M (9), + e12M (10), + e18M (11), + e24M (12), + e36M (13), + e48M (14), + e54M (15) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanTransmissionEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.2.1.4 +lcsSetupInterfacesWlanTransmissionEntryBasicRate OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + e1M (1), + e2M (2), + e5M5 (4), + e11M (6), + e6M (8), + e9M (9), + e12M (10), + e18M (11), + e24M (12), + e36M (13), + e48M (14), + e54M (15) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanTransmissionEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.2.1.6 +lcsSetupInterfacesWlanTransmissionEntryRtsThreshold OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanTransmissionEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.2.1.7 +lcsSetupInterfacesWlanTransmissionEntry11bPreamble OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eLong (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanTransmissionEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.2.1.9 +lcsSetupInterfacesWlanTransmissionEntryMaxTxRate OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + e1M (1), + e2M (2), + e5M5 (4), + e11M (6), + e6M (8), + e9M (9), + e12M (10), + e18M (11), + e24M (12), + e36M (13), + e48M (14), + e54M (15) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanTransmissionEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.2.1.10 +lcsSetupInterfacesWlanTransmissionEntryMinFragLen OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanTransmissionEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.2.1.11 +lcsSetupInterfacesWlanTransmissionEntrySoftRetries OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanTransmissionEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.2.1.12 +lcsSetupInterfacesWlanTransmissionEntryHardRetries OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanTransmissionEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.2.1.13 +lcsSetupInterfacesWlanTransmissionEntryShortGuardInterval OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanTransmissionEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.2.1.14 +lcsSetupInterfacesWlanTransmissionEntryMaxSpatialStreams OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eOne (1), + eTwo (2), + eThree (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanTransmissionEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.2.1.15 +lcsSetupInterfacesWlanTransmissionEntrySendAggregates OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanTransmissionEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.2.1.16 +lcsSetupInterfacesWlanTransmissionEntryMinHtMcs OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eMcs08 (1), + eMcs19 (2), + eMcs210 (3), + eMcs311 (4), + eMcs412 (5), + eMcs513 (6), + eMcs614 (7), + eMcs715 (8) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanTransmissionEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.2.1.17 +lcsSetupInterfacesWlanTransmissionEntryMaxHtMcs OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eMcs08 (1), + eMcs19 (2), + eMcs210 (3), + eMcs311 (4), + eMcs412 (5), + eMcs513 (6), + eMcs614 (7), + eMcs715 (8) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanTransmissionEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.2.1.18 +lcsSetupInterfacesWlanTransmissionEntryMinSpatialStreams OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eOne (1), + eTwo (2), + eThree (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanTransmissionEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.2.1.19 +lcsSetupInterfacesWlanTransmissionEntryEapolRate OBJECT-TYPE + SYNTAX INTEGER { + eLikeData (0), + e1M (1), + e2M (2), + e5M5 (4), + e11M (6), + e6M (8), + e9M (9), + e12M (10), + e18M (11), + e24M (12), + e36M (13), + e48M (14), + e54M (15), + eHT1S6M5 (28), + eHT1S13M (29), + eHT1S19M5 (30), + eHT1S26M (31), + eHT1S39M (32), + eHT1S52M (33), + eHT1S58M5 (34), + eHT1S65M (35), + eHT2S13M (36), + eHT2S26M (37), + eHT2S39M (38), + eHT2S52M (39), + eHT2S78M (40), + eHT2S104M (41), + eHT2S117M (42), + eHT2S130M (43) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanTransmissionEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.2.1.20 +lcsSetupInterfacesWlanTransmissionEntryMaxAggrPacketCount OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanTransmissionEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.2.1.21 +lcsSetupInterfacesWlanTransmissionEntryProberspRetries OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanTransmissionEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.2.1.22 +lcsSetupInterfacesWlanTransmissionEntryReceiveAggregates OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanTransmissionEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.2.1.23 +lcsSetupInterfacesWlanTransmissionEntryUseStbc OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanTransmissionEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.2.1.24 +lcsSetupInterfacesWlanTransmissionEntryUseLdpc OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanTransmissionEntry 24 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.2.1.25 +lcsSetupInterfacesWlanTransmissionEntryConvertToUnicast OBJECT-TYPE + SYNTAX BITS { + eDhcp (31) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanTransmissionEntry 25 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.20.3 +lcsSetupInterfacesWlanEncryptionTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesWlanEncryptionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlan 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.20.3.1 +lcsSetupInterfacesWlanEncryptionEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesWlanEncryptionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesWlanEncryptionEntryIfc + } + ::= { lcsSetupInterfacesWlanEncryptionTable 1 } + +LcsSetupInterfacesWlanEncryptionEntry ::= SEQUENCE { + lcsSetupInterfacesWlanEncryptionEntryIfc INTEGER, + lcsSetupInterfacesWlanEncryptionEntryEncryption INTEGER, + lcsSetupInterfacesWlanEncryptionEntryDefaultKey Integer32, + lcsSetupInterfacesWlanEncryptionEntryMethod INTEGER, + lcsSetupInterfacesWlanEncryptionEntryAuthentication INTEGER, + lcsSetupInterfacesWlanEncryptionEntryKey DisplayString, + lcsSetupInterfacesWlanEncryptionEntryWpaVersion INTEGER, + lcsSetupInterfacesWlanEncryptionEntryClientEapMethod INTEGER, + lcsSetupInterfacesWlanEncryptionEntryWpaRekeyingCycle Integer32, + lcsSetupInterfacesWlanEncryptionEntryWpa1SessionKeytypes INTEGER, + lcsSetupInterfacesWlanEncryptionEntryWpa2SessionKeytypes INTEGER, + lcsSetupInterfacesWlanEncryptionEntryProtMgmtFrames INTEGER, + lcsSetupInterfacesWlanEncryptionEntryPmkCaching INTEGER, + lcsSetupInterfacesWlanEncryptionEntryPreAuthentication INTEGER, + lcsSetupInterfacesWlanEncryptionEntryWpa2KeyManagement BITS + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.3.1.1 +lcsSetupInterfacesWlanEncryptionEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2), + eWlan12 (16), + eWlan13 (17), + eWlan14 (18), + eWlan15 (19), + eWlan16 (20), + eWlan17 (21), + eWlan18 (22), + eWlan22 (32), + eWlan23 (33), + eWlan24 (34), + eWlan25 (35), + eWlan26 (36), + eWlan27 (37), + eWlan28 (38) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanEncryptionEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.3.1.2 +lcsSetupInterfacesWlanEncryptionEntryEncryption OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanEncryptionEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.3.1.3 +lcsSetupInterfacesWlanEncryptionEntryDefaultKey OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanEncryptionEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.3.1.4 +lcsSetupInterfacesWlanEncryptionEntryMethod OBJECT-TYPE + SYNTAX INTEGER { + eWep40Bits (5), + eWep104Bits (13), + eWep128Bits (16), + e80211iWpaPsk (32), + e80211iWpa8021x (33), + eWep40Bits8021x (34), + eWep104Bits8021x (35), + eWep128Bits8021x (36) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanEncryptionEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.3.1.5 +lcsSetupInterfacesWlanEncryptionEntryAuthentication OBJECT-TYPE + SYNTAX INTEGER { + eOpenSystem (0), + eSharedKey (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanEncryptionEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.3.1.6 +lcsSetupInterfacesWlanEncryptionEntryKey OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanEncryptionEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.3.1.9 +lcsSetupInterfacesWlanEncryptionEntryWpaVersion OBJECT-TYPE + SYNTAX INTEGER { + eWpa1 (2), + eWpa2 (4), + eWpa12 (6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanEncryptionEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.3.1.10 +lcsSetupInterfacesWlanEncryptionEntryClientEapMethod OBJECT-TYPE + SYNTAX INTEGER { + eTls (3328), + eTtlsMd5 (5380), + eTtlsPap (5383), + eTtlsChap (5384), + eTtlsMschapv2 (5402), + eTtlsMschap (5567), + ePeapGtc (6406), + ePeapMschapv2 (6426) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanEncryptionEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.3.1.11 +lcsSetupInterfacesWlanEncryptionEntryWpaRekeyingCycle OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanEncryptionEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.3.1.12 +lcsSetupInterfacesWlanEncryptionEntryWpa1SessionKeytypes OBJECT-TYPE + SYNTAX INTEGER { + eTkip (1), + eAes (2), + eTkipAes (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanEncryptionEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.3.1.13 +lcsSetupInterfacesWlanEncryptionEntryWpa2SessionKeytypes OBJECT-TYPE + SYNTAX INTEGER { + eTkip (1), + eAes (2), + eTkipAes (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanEncryptionEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.3.1.14 +lcsSetupInterfacesWlanEncryptionEntryProtMgmtFrames OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eOptional (1), + eMandatory (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanEncryptionEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.3.1.15 +lcsSetupInterfacesWlanEncryptionEntryPmkCaching OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanEncryptionEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.3.1.16 +lcsSetupInterfacesWlanEncryptionEntryPreAuthentication OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanEncryptionEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.3.1.19 +lcsSetupInterfacesWlanEncryptionEntryWpa2KeyManagement OBJECT-TYPE + SYNTAX BITS { + eSha256 (5), + eFastRoaming (6), + eStandard (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanEncryptionEntry 19 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.20.4 +lcsSetupInterfacesWlanGroupEncryptionKeysTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesWlanGroupEncryptionKeysEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlan 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.20.4.1 +lcsSetupInterfacesWlanGroupEncryptionKeysEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesWlanGroupEncryptionKeysEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesWlanGroupEncryptionKeysEntryIfc + } + ::= { lcsSetupInterfacesWlanGroupEncryptionKeysTable 1 } + +LcsSetupInterfacesWlanGroupEncryptionKeysEntry ::= SEQUENCE { + lcsSetupInterfacesWlanGroupEncryptionKeysEntryIfc INTEGER, + lcsSetupInterfacesWlanGroupEncryptionKeysEntryKey2 DisplayString, + lcsSetupInterfacesWlanGroupEncryptionKeysEntryKey3 DisplayString, + lcsSetupInterfacesWlanGroupEncryptionKeysEntryKey4 DisplayString, + lcsSetupInterfacesWlanGroupEncryptionKeysEntryKeytype2 INTEGER, + lcsSetupInterfacesWlanGroupEncryptionKeysEntryKeytype3 INTEGER, + lcsSetupInterfacesWlanGroupEncryptionKeysEntryKeytype4 INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.4.1.1 +lcsSetupInterfacesWlanGroupEncryptionKeysEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanGroupEncryptionKeysEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.4.1.3 +lcsSetupInterfacesWlanGroupEncryptionKeysEntryKey2 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanGroupEncryptionKeysEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.4.1.4 +lcsSetupInterfacesWlanGroupEncryptionKeysEntryKey3 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanGroupEncryptionKeysEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.4.1.5 +lcsSetupInterfacesWlanGroupEncryptionKeysEntryKey4 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanGroupEncryptionKeysEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.4.1.7 +lcsSetupInterfacesWlanGroupEncryptionKeysEntryKeytype2 OBJECT-TYPE + SYNTAX INTEGER { + eWep40Bits (5), + eWep104Bits (13), + eWep128Bits (16) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanGroupEncryptionKeysEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.4.1.8 +lcsSetupInterfacesWlanGroupEncryptionKeysEntryKeytype3 OBJECT-TYPE + SYNTAX INTEGER { + eWep40Bits (5), + eWep104Bits (13), + eWep128Bits (16) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanGroupEncryptionKeysEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.4.1.9 +lcsSetupInterfacesWlanGroupEncryptionKeysEntryKeytype4 OBJECT-TYPE + SYNTAX INTEGER { + eWep40Bits (5), + eWep104Bits (13), + eWep128Bits (16) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanGroupEncryptionKeysEntry 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.20.5 +lcsSetupInterfacesWlanIntpntSetTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesWlanIntpntSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlan 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.20.5.1 +lcsSetupInterfacesWlanIntpntSetEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesWlanIntpntSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesWlanIntpntSetEntryIfc + } + ::= { lcsSetupInterfacesWlanIntpntSetTable 1 } + +LcsSetupInterfacesWlanIntpntSetEntry ::= SEQUENCE { + lcsSetupInterfacesWlanIntpntSetEntryIfc INTEGER, + lcsSetupInterfacesWlanIntpntSetEntryEnable INTEGER, + lcsSetupInterfacesWlanIntpntSetEntryIsolatedMode INTEGER, + lcsSetupInterfacesWlanIntpntSetEntryChanSelScheme INTEGER, + lcsSetupInterfacesWlanIntpntSetEntryLinkLossTimeout Integer32, + lcsSetupInterfacesWlanIntpntSetEntryKeyHandshakeRole INTEGER, + lcsSetupInterfacesWlanIntpntSetEntryLocalName DisplayString, + lcsSetupInterfacesWlanIntpntSetEntryRemoteStatusReporting INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.5.1.1 +lcsSetupInterfacesWlanIntpntSetEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanIntpntSetEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.5.1.2 +lcsSetupInterfacesWlanIntpntSetEntryEnable OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eExclusive (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanIntpntSetEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.5.1.9 +lcsSetupInterfacesWlanIntpntSetEntryIsolatedMode OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanIntpntSetEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.5.1.10 +lcsSetupInterfacesWlanIntpntSetEntryChanSelScheme OBJECT-TYPE + SYNTAX INTEGER { + eMaster (0), + eSlave (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanIntpntSetEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.5.1.11 +lcsSetupInterfacesWlanIntpntSetEntryLinkLossTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanIntpntSetEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.5.1.12 +lcsSetupInterfacesWlanIntpntSetEntryKeyHandshakeRole OBJECT-TYPE + SYNTAX INTEGER { + eDefault (0), + eAuto (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanIntpntSetEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.5.1.13 +lcsSetupInterfacesWlanIntpntSetEntryLocalName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..24)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanIntpntSetEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.5.1.14 +lcsSetupInterfacesWlanIntpntSetEntryRemoteStatusReporting OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntpntSetEntry 14 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.20.6 +lcsSetupInterfacesWlanClientModesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesWlanClientModesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlan 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.20.6.1 +lcsSetupInterfacesWlanClientModesEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesWlanClientModesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesWlanClientModesEntryIfc + } + ::= { lcsSetupInterfacesWlanClientModesTable 1 } + +LcsSetupInterfacesWlanClientModesEntry ::= SEQUENCE { + lcsSetupInterfacesWlanClientModesEntryIfc INTEGER, + lcsSetupInterfacesWlanClientModesEntryCreateIbss INTEGER, + lcsSetupInterfacesWlanClientModesEntryConnectionKeepalive INTEGER, + lcsSetupInterfacesWlanClientModesEntryNetworkTypes INTEGER, + lcsSetupInterfacesWlanClientModesEntryScanBands INTEGER, + lcsSetupInterfacesWlanClientModesEntryPreferredBss MacAddress, + lcsSetupInterfacesWlanClientModesEntryAddressAdaption INTEGER, + lcsSetupInterfacesWlanClientModesEntryClBrgSupport INTEGER, + lcsSetupInterfacesWlanClientModesEntryTxLimit Integer32, + lcsSetupInterfacesWlanClientModesEntryRxLimit Integer32, + lcsSetupInterfacesWlanClientModesEntrySelectionPreference INTEGER, + lcsSetupInterfacesWlanClientModesEntrySendDeauthUpon BITS + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.6.1.1 +lcsSetupInterfacesWlanClientModesEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanClientModesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.6.1.2 +lcsSetupInterfacesWlanClientModesEntryCreateIbss OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanClientModesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.6.1.3 +lcsSetupInterfacesWlanClientModesEntryConnectionKeepalive OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanClientModesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.6.1.4 +lcsSetupInterfacesWlanClientModesEntryNetworkTypes OBJECT-TYPE + SYNTAX INTEGER { + eAdhoc (2), + eInfrastructure (4), + eBoth (6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanClientModesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.6.1.5 +lcsSetupInterfacesWlanClientModesEntryScanBands OBJECT-TYPE + SYNTAX INTEGER { + e24ghz (1), + e5ghz (2), + e24ghz5ghz (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanClientModesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.6.1.6 +lcsSetupInterfacesWlanClientModesEntryPreferredBss OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanClientModesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.6.1.7 +lcsSetupInterfacesWlanClientModesEntryAddressAdaption OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanClientModesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.6.1.8 +lcsSetupInterfacesWlanClientModesEntryClBrgSupport OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanClientModesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.6.1.9 +lcsSetupInterfacesWlanClientModesEntryTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanClientModesEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.6.1.10 +lcsSetupInterfacesWlanClientModesEntryRxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanClientModesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.6.1.12 +lcsSetupInterfacesWlanClientModesEntrySelectionPreference OBJECT-TYPE + SYNTAX INTEGER { + eSignalStrength (0), + eProfile (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanClientModesEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.6.1.13 +lcsSetupInterfacesWlanClientModesEntrySendDeauthUpon OBJECT-TYPE + SYNTAX BITS { + eNever (0), + eDeactivation (31) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanClientModesEntry 13 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.20.7 +lcsSetupInterfacesWlanOperationalTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesWlanOperationalEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlan 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.20.7.1 +lcsSetupInterfacesWlanOperationalEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesWlanOperationalEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesWlanOperationalEntryIfc + } + ::= { lcsSetupInterfacesWlanOperationalTable 1 } + +LcsSetupInterfacesWlanOperationalEntry ::= SEQUENCE { + lcsSetupInterfacesWlanOperationalEntryIfc INTEGER, + lcsSetupInterfacesWlanOperationalEntryOperating INTEGER, + lcsSetupInterfacesWlanOperationalEntryOperationMode INTEGER, + lcsSetupInterfacesWlanOperationalEntryLinkLedFunction INTEGER, + lcsSetupInterfacesWlanOperationalEntryBrokenLinkDetection INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.7.1.1 +lcsSetupInterfacesWlanOperationalEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanOperationalEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.7.1.2 +lcsSetupInterfacesWlanOperationalEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanOperationalEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.7.1.3 +lcsSetupInterfacesWlanOperationalEntryOperationMode OBJECT-TYPE + SYNTAX INTEGER { + eStation (0), + eAccessPoint (1), + eManagedAp (4), + eProbe (5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "lancom's description of operation mode" + ::= { lcsSetupInterfacesWlanOperationalEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.7.1.4 +lcsSetupInterfacesWlanOperationalEntryLinkLedFunction OBJECT-TYPE + SYNTAX INTEGER { + eNormal (0), + eClientModeStrength (1), + eP2p1Strength (8), + eP2p2Strength (9), + eP2p3Strength (10), + eP2p4Strength (11), + eP2p5Strength (12), + eP2p6Strength (13), + eP2p7Strength (14), + eP2p8Strength (15), + eP2p9Strength (16), + eP2p10Strength (17), + eP2p11Strength (18), + eP2p12Strength (19), + eP2p13Strength (20), + eP2p14Strength (21), + eP2p15Strength (22), + eP2p16Strength (23) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanOperationalEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.7.1.5 +lcsSetupInterfacesWlanOperationalEntryBrokenLinkDetection OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eLan1 (1), + eLan2 (2), + eLan3 (3), + eLan4 (4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanOperationalEntry 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.20.8 +lcsSetupInterfacesWlanRadioSettingsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesWlanRadioSettingsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlan 8 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.20.8.1 +lcsSetupInterfacesWlanRadioSettingsEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesWlanRadioSettingsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesWlanRadioSettingsEntryIfc + } + ::= { lcsSetupInterfacesWlanRadioSettingsTable 1 } + +LcsSetupInterfacesWlanRadioSettingsEntry ::= SEQUENCE { + lcsSetupInterfacesWlanRadioSettingsEntryIfc INTEGER, + lcsSetupInterfacesWlanRadioSettingsEntryTxPowerReduction Integer32, + lcsSetupInterfacesWlanRadioSettingsEntry5ghzMode INTEGER, + lcsSetupInterfacesWlanRadioSettingsEntryMaximumDistance Integer32, + lcsSetupInterfacesWlanRadioSettingsEntryRadioBand INTEGER, + lcsSetupInterfacesWlanRadioSettingsEntrySubbands INTEGER, + lcsSetupInterfacesWlanRadioSettingsEntryRadioChannel Integer32, + lcsSetupInterfacesWlanRadioSettingsEntry24ghzMode INTEGER, + lcsSetupInterfacesWlanRadioSettingsEntryApDensity INTEGER, + lcsSetupInterfacesWlanRadioSettingsEntryAntennaGain Integer32, + lcsSetupInterfacesWlanRadioSettingsEntryChannelList DisplayString, + lcsSetupInterfacesWlanRadioSettingsEntryBackgroundScan Integer32, + lcsSetupInterfacesWlanRadioSettingsEntryDfsRescanHours DisplayString, + lcsSetupInterfacesWlanRadioSettingsEntryAllow40mhz INTEGER, + lcsSetupInterfacesWlanRadioSettingsEntryAntennaMask INTEGER, + lcsSetupInterfacesWlanRadioSettingsEntryBackgroundScanUnit INTEGER, + lcsSetupInterfacesWlanRadioSettingsEntryChannelPairing INTEGER, + lcsSetupInterfacesWlanRadioSettingsEntryPreferredDfsScheme INTEGER, + lcsSetupInterfacesWlanRadioSettingsEntryCacDuration Integer32, + lcsSetupInterfacesWlanRadioSettingsEntryForce40mhz INTEGER, + lcsSetupInterfacesWlanRadioSettingsEntryAdaptiveNoiseImmunity INTEGER, + lcsSetupInterfacesWlanRadioSettingsEntryMaxChannelBandwidth INTEGER, + lcsSetupInterfacesWlanRadioSettingsEntryAllowPhyRestarts INTEGER, + lcsSetupInterfacesWlanRadioSettingsEntryDfsRscFlClChan INTEGER, + lcsSetupInterfacesWlanRadioSettingsEntryDfsRescanNumChannels Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.1 +lcsSetupInterfacesWlanRadioSettingsEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.2 +lcsSetupInterfacesWlanRadioSettingsEntryTxPowerReduction OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.3 +lcsSetupInterfacesWlanRadioSettingsEntry5ghzMode OBJECT-TYPE + SYNTAX INTEGER { + eNormal (0), + e11anMixed (3), + eGreenfield (4), + eAuto (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.4 +lcsSetupInterfacesWlanRadioSettingsEntryMaximumDistance OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.6 +lcsSetupInterfacesWlanRadioSettingsEntryRadioBand OBJECT-TYPE + SYNTAX INTEGER { + e24ghz (1), + e5ghz (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.7 +lcsSetupInterfacesWlanRadioSettingsEntrySubbands OBJECT-TYPE + SYNTAX INTEGER { + eBand1 (1), + eBand2 (2), + eBand1Plus2 (3), + eBand3 (4), + eBand1Plus3 (5), + eBand2Plus3 (6), + eBand1Plus2Plus3 (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.8 +lcsSetupInterfacesWlanRadioSettingsEntryRadioChannel OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.9 +lcsSetupInterfacesWlanRadioSettingsEntry24ghzMode OBJECT-TYPE + SYNTAX INTEGER { + e11bgMixed (0), + e11gOnly (1), + e11bOnly (2), + e2mMixed (3), + e11bgnMixed (5), + e2m11bgnMixed (6), + e11gnMixed (7), + eGreenfield (8), + eAuto (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.10 +lcsSetupInterfacesWlanRadioSettingsEntryApDensity OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eLow (1), + eMedium (2), + eHigh (3), + eMinicell (4), + eMicrocell (5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.12 +lcsSetupInterfacesWlanRadioSettingsEntryAntennaGain OBJECT-TYPE + SYNTAX Integer32 (-128..127) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.13 +lcsSetupInterfacesWlanRadioSettingsEntryChannelList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..48)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.14 +lcsSetupInterfacesWlanRadioSettingsEntryBackgroundScan OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.15 +lcsSetupInterfacesWlanRadioSettingsEntryDfsRescanHours OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.16 +lcsSetupInterfacesWlanRadioSettingsEntryAllow40mhz OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.17 +lcsSetupInterfacesWlanRadioSettingsEntryAntennaMask OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eAntenna1 (1), + eAntenna1Plus2 (3), + eAntenna1Plus3 (5), + eAntenna1Plus2Plus3 (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.18 +lcsSetupInterfacesWlanRadioSettingsEntryBackgroundScanUnit OBJECT-TYPE + SYNTAX INTEGER { + eSeconds (0), + eMilliseconds (1), + eMicroseconds (2), + eMinutes (3), + eHours (4), + eDays (5), + eWeeks (6), + eFortnights (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.19 +lcsSetupInterfacesWlanRadioSettingsEntryChannelPairing OBJECT-TYPE + SYNTAX INTEGER { + e11nCompliant (0), + eLegacyTurboFriendly (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.20 +lcsSetupInterfacesWlanRadioSettingsEntryPreferredDfsScheme OBJECT-TYPE + SYNTAX INTEGER { + eEn301893V13 (2), + eEn301893V15 (32), + eEn301893V16 (64) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.21 +lcsSetupInterfacesWlanRadioSettingsEntryCacDuration OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.22 +lcsSetupInterfacesWlanRadioSettingsEntryForce40mhz OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.23 +lcsSetupInterfacesWlanRadioSettingsEntryAdaptiveNoiseImmunity OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.24 +lcsSetupInterfacesWlanRadioSettingsEntryMaxChannelBandwidth OBJECT-TYPE + SYNTAX INTEGER { + e20mhz (0), + e40mhz (1), + eAuto (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 24 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.25 +lcsSetupInterfacesWlanRadioSettingsEntryAllowPhyRestarts OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 25 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.26 +lcsSetupInterfacesWlanRadioSettingsEntryDfsRscFlClChan OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 26 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.8.1.27 +lcsSetupInterfacesWlanRadioSettingsEntryDfsRescanNumChannels OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanRadioSettingsEntry 27 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.20.9 +lcsSetupInterfacesWlanPerformanceTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesWlanPerformanceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlan 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.20.9.1 +lcsSetupInterfacesWlanPerformanceEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesWlanPerformanceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesWlanPerformanceEntryIfc + } + ::= { lcsSetupInterfacesWlanPerformanceTable 1 } + +LcsSetupInterfacesWlanPerformanceEntry ::= SEQUENCE { + lcsSetupInterfacesWlanPerformanceEntryIfc INTEGER, + lcsSetupInterfacesWlanPerformanceEntryTxBursting Integer32, + lcsSetupInterfacesWlanPerformanceEntryQos INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.9.1.1 +lcsSetupInterfacesWlanPerformanceEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanPerformanceEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.9.1.2 +lcsSetupInterfacesWlanPerformanceEntryTxBursting OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanPerformanceEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.9.1.5 +lcsSetupInterfacesWlanPerformanceEntryQos OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanPerformanceEntry 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.20.10 +lcsSetupInterfacesWlanBeaconingTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesWlanBeaconingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlan 10 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.20.10.1 +lcsSetupInterfacesWlanBeaconingEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesWlanBeaconingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesWlanBeaconingEntryIfc + } + ::= { lcsSetupInterfacesWlanBeaconingTable 1 } + +LcsSetupInterfacesWlanBeaconingEntry ::= SEQUENCE { + lcsSetupInterfacesWlanBeaconingEntryIfc INTEGER, + lcsSetupInterfacesWlanBeaconingEntryBeaconPeriod Integer32, + lcsSetupInterfacesWlanBeaconingEntryDtimPeriod Integer32, + lcsSetupInterfacesWlanBeaconingEntryBeaconOrder INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.10.1.1 +lcsSetupInterfacesWlanBeaconingEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanBeaconingEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.10.1.2 +lcsSetupInterfacesWlanBeaconingEntryBeaconPeriod OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanBeaconingEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.10.1.3 +lcsSetupInterfacesWlanBeaconingEntryDtimPeriod OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanBeaconingEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.10.1.4 +lcsSetupInterfacesWlanBeaconingEntryBeaconOrder OBJECT-TYPE + SYNTAX INTEGER { + eCyclic (0), + eStaggered (1), + eSimpleBurst (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanBeaconingEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.20.11 +lcsSetupInterfacesWlanRoamingTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesWlanRoamingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlan 11 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.20.11.1 +lcsSetupInterfacesWlanRoamingEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesWlanRoamingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesWlanRoamingEntryIfc + } + ::= { lcsSetupInterfacesWlanRoamingTable 1 } + +LcsSetupInterfacesWlanRoamingEntry ::= SEQUENCE { + lcsSetupInterfacesWlanRoamingEntryIfc INTEGER, + lcsSetupInterfacesWlanRoamingEntryBeaconMissThreshold Integer32, + lcsSetupInterfacesWlanRoamingEntryRoamingThreshold Integer32, + lcsSetupInterfacesWlanRoamingEntryNoRoamingThreshold Integer32, + lcsSetupInterfacesWlanRoamingEntryForceRoamingThreshold Integer32, + lcsSetupInterfacesWlanRoamingEntrySoftRoaming INTEGER, + lcsSetupInterfacesWlanRoamingEntryConnectThreshold Integer32, + lcsSetupInterfacesWlanRoamingEntryConnectHoldThreshold Integer32, + lcsSetupInterfacesWlanRoamingEntryMinConnectSignalLevel Integer32, + lcsSetupInterfacesWlanRoamingEntryMinConnectHoldSignalLevel Integer32, + lcsSetupInterfacesWlanRoamingEntryBlockTime Gauge32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.11.1.1 +lcsSetupInterfacesWlanRoamingEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRoamingEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.11.1.2 +lcsSetupInterfacesWlanRoamingEntryBeaconMissThreshold OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRoamingEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.11.1.3 +lcsSetupInterfacesWlanRoamingEntryRoamingThreshold OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRoamingEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.11.1.4 +lcsSetupInterfacesWlanRoamingEntryNoRoamingThreshold OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRoamingEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.11.1.5 +lcsSetupInterfacesWlanRoamingEntryForceRoamingThreshold OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRoamingEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.11.1.6 +lcsSetupInterfacesWlanRoamingEntrySoftRoaming OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRoamingEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.11.1.7 +lcsSetupInterfacesWlanRoamingEntryConnectThreshold OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRoamingEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.11.1.8 +lcsSetupInterfacesWlanRoamingEntryConnectHoldThreshold OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRoamingEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.11.1.9 +lcsSetupInterfacesWlanRoamingEntryMinConnectSignalLevel OBJECT-TYPE + SYNTAX Integer32 (-128..127) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRoamingEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.11.1.10 +lcsSetupInterfacesWlanRoamingEntryMinConnectHoldSignalLevel OBJECT-TYPE + SYNTAX Integer32 (-128..127) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRoamingEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.11.1.11 +lcsSetupInterfacesWlanRoamingEntryBlockTime OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanRoamingEntry 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.20.12 +lcsSetupInterfacesWlanIntpntPeersTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesWlanIntpntPeersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlan 12 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.20.12.1 +lcsSetupInterfacesWlanIntpntPeersEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesWlanIntpntPeersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesWlanIntpntPeersEntryIfc + } + ::= { lcsSetupInterfacesWlanIntpntPeersTable 1 } + +LcsSetupInterfacesWlanIntpntPeersEntry ::= SEQUENCE { + lcsSetupInterfacesWlanIntpntPeersEntryIfc INTEGER, + lcsSetupInterfacesWlanIntpntPeersEntryRecognizeBy INTEGER, + lcsSetupInterfacesWlanIntpntPeersEntryMacAddress MacAddress, + lcsSetupInterfacesWlanIntpntPeersEntryPeerName DisplayString, + lcsSetupInterfacesWlanIntpntPeersEntryOperating INTEGER, + lcsSetupInterfacesWlanIntpntPeersEntryTxLimit Integer32, + lcsSetupInterfacesWlanIntpntPeersEntryRxLimit Integer32, + lcsSetupInterfacesWlanIntpntPeersEntryKey DisplayString, + lcsSetupInterfacesWlanIntpntPeersEntryConnectThreshold Integer32, + lcsSetupInterfacesWlanIntpntPeersEntryConnectHoldThreshold Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.12.1.1 +lcsSetupInterfacesWlanIntpntPeersEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eP2p11 (1), + eP2p12 (2), + eP2p13 (3), + eP2p14 (4), + eP2p15 (5), + eP2p16 (6), + eP2p21 (7), + eP2p22 (8), + eP2p23 (9), + eP2p24 (10), + eP2p25 (11), + eP2p26 (12), + eP2p17 (32), + eP2p18 (33), + eP2p19 (34), + eP2p110 (35), + eP2p111 (36), + eP2p112 (37), + eP2p113 (38), + eP2p114 (39), + eP2p115 (40), + eP2p116 (41), + eP2p27 (64), + eP2p28 (65), + eP2p29 (66), + eP2p210 (67), + eP2p211 (68), + eP2p212 (69), + eP2p213 (70), + eP2p214 (71), + eP2p215 (72), + eP2p216 (73) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanIntpntPeersEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.12.1.2 +lcsSetupInterfacesWlanIntpntPeersEntryRecognizeBy OBJECT-TYPE + SYNTAX INTEGER { + eMacAddress (0), + eName (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanIntpntPeersEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.12.1.3 +lcsSetupInterfacesWlanIntpntPeersEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanIntpntPeersEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.12.1.4 +lcsSetupInterfacesWlanIntpntPeersEntryPeerName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..24)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanIntpntPeersEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.12.1.5 +lcsSetupInterfacesWlanIntpntPeersEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanIntpntPeersEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.12.1.6 +lcsSetupInterfacesWlanIntpntPeersEntryTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanIntpntPeersEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.12.1.7 +lcsSetupInterfacesWlanIntpntPeersEntryRxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanIntpntPeersEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.12.1.8 +lcsSetupInterfacesWlanIntpntPeersEntryKey OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntpntPeersEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.12.1.9 +lcsSetupInterfacesWlanIntpntPeersEntryConnectThreshold OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntpntPeersEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.12.1.10 +lcsSetupInterfacesWlanIntpntPeersEntryConnectHoldThreshold OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntpntPeersEntry 10 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.20.13 +lcsSetupInterfacesWlanNetworkAlarmLimitsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesWlanNetworkAlarmLimitsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlan 13 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.20.13.1 +lcsSetupInterfacesWlanNetworkAlarmLimitsEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesWlanNetworkAlarmLimitsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesWlanNetworkAlarmLimitsEntryIfc + } + ::= { lcsSetupInterfacesWlanNetworkAlarmLimitsTable 1 } + +LcsSetupInterfacesWlanNetworkAlarmLimitsEntry ::= SEQUENCE { + lcsSetupInterfacesWlanNetworkAlarmLimitsEntryIfc INTEGER, + lcsSetupInterfacesWlanNetworkAlarmLimitsEntryPhySignal Integer32, + lcsSetupInterfacesWlanNetworkAlarmLimitsEntryTotalRetries Integer32, + lcsSetupInterfacesWlanNetworkAlarmLimitsEntryTxErrors Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.13.1.1 +lcsSetupInterfacesWlanNetworkAlarmLimitsEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2), + eWlan12 (16), + eWlan13 (17), + eWlan14 (18), + eWlan15 (19), + eWlan16 (20), + eWlan17 (21), + eWlan18 (22), + eWlan22 (32), + eWlan23 (33), + eWlan24 (34), + eWlan25 (35), + eWlan26 (36), + eWlan27 (37), + eWlan28 (38) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanNetworkAlarmLimitsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.13.1.2 +lcsSetupInterfacesWlanNetworkAlarmLimitsEntryPhySignal OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanNetworkAlarmLimitsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.13.1.3 +lcsSetupInterfacesWlanNetworkAlarmLimitsEntryTotalRetries OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanNetworkAlarmLimitsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.13.1.4 +lcsSetupInterfacesWlanNetworkAlarmLimitsEntryTxErrors OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanNetworkAlarmLimitsEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.20.14 +lcsSetupInterfacesWlanInterpointAlarmLimitsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesWlanInterpointAlarmLimitsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlan 14 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.20.14.1 +lcsSetupInterfacesWlanInterpointAlarmLimitsEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesWlanInterpointAlarmLimitsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesWlanInterpointAlarmLimitsEntryIfc + } + ::= { lcsSetupInterfacesWlanInterpointAlarmLimitsTable 1 } + +LcsSetupInterfacesWlanInterpointAlarmLimitsEntry ::= SEQUENCE { + lcsSetupInterfacesWlanInterpointAlarmLimitsEntryIfc INTEGER, + lcsSetupInterfacesWlanInterpointAlarmLimitsEntryPhySignal Integer32, + lcsSetupInterfacesWlanInterpointAlarmLimitsEntryTotalRetries Integer32, + lcsSetupInterfacesWlanInterpointAlarmLimitsEntryTxErrors Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.14.1.1 +lcsSetupInterfacesWlanInterpointAlarmLimitsEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eP2p11 (1), + eP2p12 (2), + eP2p13 (3), + eP2p14 (4), + eP2p15 (5), + eP2p16 (6), + eP2p21 (7), + eP2p22 (8), + eP2p23 (9), + eP2p24 (10), + eP2p25 (11), + eP2p26 (12), + eP2p17 (32), + eP2p18 (33), + eP2p19 (34), + eP2p110 (35), + eP2p111 (36), + eP2p112 (37), + eP2p113 (38), + eP2p114 (39), + eP2p115 (40), + eP2p116 (41), + eP2p27 (64), + eP2p28 (65), + eP2p29 (66), + eP2p210 (67), + eP2p211 (68), + eP2p212 (69), + eP2p213 (70), + eP2p214 (71), + eP2p215 (72), + eP2p216 (73) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanInterpointAlarmLimitsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.14.1.2 +lcsSetupInterfacesWlanInterpointAlarmLimitsEntryPhySignal OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanInterpointAlarmLimitsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.14.1.3 +lcsSetupInterfacesWlanInterpointAlarmLimitsEntryTotalRetries OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanInterpointAlarmLimitsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.14.1.4 +lcsSetupInterfacesWlanInterpointAlarmLimitsEntryTxErrors OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlanInterpointAlarmLimitsEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.20.15 +lcsSetupInterfacesWlanProbeSettingsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesWlanProbeSettingsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlan 15 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.20.15.1 +lcsSetupInterfacesWlanProbeSettingsEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesWlanProbeSettingsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesWlanProbeSettingsEntryIfc + } + ::= { lcsSetupInterfacesWlanProbeSettingsTable 1 } + +LcsSetupInterfacesWlanProbeSettingsEntry ::= SEQUENCE { + lcsSetupInterfacesWlanProbeSettingsEntryIfc INTEGER, + lcsSetupInterfacesWlanProbeSettingsEntryRadioBands INTEGER, + lcsSetupInterfacesWlanProbeSettingsEntrySubbands24ghz INTEGER, + lcsSetupInterfacesWlanProbeSettingsEntryChannelList24ghz DisplayString, + lcsSetupInterfacesWlanProbeSettingsEntrySubbands5ghz INTEGER, + lcsSetupInterfacesWlanProbeSettingsEntryChannelList5ghz DisplayString, + lcsSetupInterfacesWlanProbeSettingsEntryChannelDwellTime Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.15.1.1 +lcsSetupInterfacesWlanProbeSettingsEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanProbeSettingsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.15.1.2 +lcsSetupInterfacesWlanProbeSettingsEntryRadioBands OBJECT-TYPE + SYNTAX INTEGER { + e24ghz (1), + e5ghz (2), + e24ghz5ghz (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanProbeSettingsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.15.1.3 +lcsSetupInterfacesWlanProbeSettingsEntrySubbands24ghz OBJECT-TYPE + SYNTAX INTEGER { + eBand1 (1), + eBand2 (2), + eBand1Plus2 (3), + eBand3 (4), + eBand1Plus3 (5), + eBand2Plus3 (6), + eBand1Plus2Plus3 (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanProbeSettingsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.15.1.4 +lcsSetupInterfacesWlanProbeSettingsEntryChannelList24ghz OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..48)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanProbeSettingsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.15.1.5 +lcsSetupInterfacesWlanProbeSettingsEntrySubbands5ghz OBJECT-TYPE + SYNTAX INTEGER { + eBand1 (1), + eBand2 (2), + eBand1Plus2 (3), + eBand3 (4), + eBand1Plus3 (5), + eBand2Plus3 (6), + eBand1Plus2Plus3 (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanProbeSettingsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.15.1.6 +lcsSetupInterfacesWlanProbeSettingsEntryChannelList5ghz OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..48)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanProbeSettingsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.15.1.7 +lcsSetupInterfacesWlanProbeSettingsEntryChannelDwellTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanProbeSettingsEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.20.16 +lcsSetupInterfacesWlanIeee80211uTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesWlanIeee80211uEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlan 16 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.20.16.1 +lcsSetupInterfacesWlanIeee80211uEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesWlanIeee80211uEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesWlanIeee80211uEntryIfc + } + ::= { lcsSetupInterfacesWlanIeee80211uTable 1 } + +LcsSetupInterfacesWlanIeee80211uEntry ::= SEQUENCE { + lcsSetupInterfacesWlanIeee80211uEntryIfc INTEGER, + lcsSetupInterfacesWlanIeee80211uEntryOperating INTEGER, + lcsSetupInterfacesWlanIeee80211uEntryHotspot20 INTEGER, + lcsSetupInterfacesWlanIeee80211uEntryInternet INTEGER, + lcsSetupInterfacesWlanIeee80211uEntryNetworkType INTEGER, + lcsSetupInterfacesWlanIeee80211uEntryAsra INTEGER, + lcsSetupInterfacesWlanIeee80211uEntryHessid INTEGER, + lcsSetupInterfacesWlanIeee80211uEntryHessidMac MacAddress, + lcsSetupInterfacesWlanIeee80211uEntryAnqpProfile DisplayString, + lcsSetupInterfacesWlanIeee80211uEntryHs20Profile DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.16.1.1 +lcsSetupInterfacesWlanIeee80211uEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2), + eWlan12 (16), + eWlan13 (17), + eWlan14 (18), + eWlan15 (19), + eWlan16 (20), + eWlan17 (21), + eWlan18 (22), + eWlan22 (32), + eWlan23 (33), + eWlan24 (34), + eWlan25 (35), + eWlan26 (36), + eWlan27 (37), + eWlan28 (38) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIeee80211uEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.16.1.2 +lcsSetupInterfacesWlanIeee80211uEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIeee80211uEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.16.1.3 +lcsSetupInterfacesWlanIeee80211uEntryHotspot20 OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIeee80211uEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.16.1.4 +lcsSetupInterfacesWlanIeee80211uEntryInternet OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIeee80211uEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.16.1.5 +lcsSetupInterfacesWlanIeee80211uEntryNetworkType OBJECT-TYPE + SYNTAX INTEGER { + ePrivate (0), + ePrivateGuestacc (1), + ePublicCharge (2), + ePublicFree (3), + ePersonalDev (4), + eEmergency (5), + eExperimental (14), + eWildcard (15) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIeee80211uEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.16.1.6 +lcsSetupInterfacesWlanIeee80211uEntryAsra OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIeee80211uEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.16.1.7 +lcsSetupInterfacesWlanIeee80211uEntryHessid OBJECT-TYPE + SYNTAX INTEGER { + eBssid (0), + eUser (1), + eNone (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIeee80211uEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.16.1.8 +lcsSetupInterfacesWlanIeee80211uEntryHessidMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIeee80211uEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.16.1.10 +lcsSetupInterfacesWlanIeee80211uEntryAnqpProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIeee80211uEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.16.1.13 +lcsSetupInterfacesWlanIeee80211uEntryHs20Profile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIeee80211uEntry 13 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.20.18 +lcsSetupInterfacesWlanRadiusAccountingTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesWlanRadiusAccountingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlan 18 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.20.18.1 +lcsSetupInterfacesWlanRadiusAccountingEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesWlanRadiusAccountingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesWlanRadiusAccountingEntryIfc + } + ::= { lcsSetupInterfacesWlanRadiusAccountingTable 1 } + +LcsSetupInterfacesWlanRadiusAccountingEntry ::= SEQUENCE { + lcsSetupInterfacesWlanRadiusAccountingEntryIfc INTEGER, + lcsSetupInterfacesWlanRadiusAccountingEntryServerAddress IpAddress, + lcsSetupInterfacesWlanRadiusAccountingEntryAuthPort Integer32, + lcsSetupInterfacesWlanRadiusAccountingEntrySecret DisplayString, + lcsSetupInterfacesWlanRadiusAccountingEntryLoopbackAddress DisplayString, + lcsSetupInterfacesWlanRadiusAccountingEntryProtocol INTEGER, + lcsSetupInterfacesWlanRadiusAccountingEntryBackupServerIpAddress IpAddress, + lcsSetupInterfacesWlanRadiusAccountingEntryBackupAuthPort Integer32, + lcsSetupInterfacesWlanRadiusAccountingEntryBackupSecret DisplayString, + lcsSetupInterfacesWlanRadiusAccountingEntryBackupLoopbackAddress DisplayString, + lcsSetupInterfacesWlanRadiusAccountingEntryBackupProtocol INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.18.1.1 +lcsSetupInterfacesWlanRadiusAccountingEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2), + eWlan12 (16), + eWlan13 (17), + eWlan14 (18), + eWlan15 (19), + eWlan16 (20), + eWlan17 (21), + eWlan18 (22), + eWlan22 (32), + eWlan23 (33), + eWlan24 (34), + eWlan25 (35), + eWlan26 (36), + eWlan27 (37), + eWlan28 (38) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanRadiusAccountingEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.18.1.2 +lcsSetupInterfacesWlanRadiusAccountingEntryServerAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanRadiusAccountingEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.18.1.3 +lcsSetupInterfacesWlanRadiusAccountingEntryAuthPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanRadiusAccountingEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.18.1.4 +lcsSetupInterfacesWlanRadiusAccountingEntrySecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanRadiusAccountingEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.18.1.5 +lcsSetupInterfacesWlanRadiusAccountingEntryLoopbackAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanRadiusAccountingEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.18.1.6 +lcsSetupInterfacesWlanRadiusAccountingEntryProtocol OBJECT-TYPE + SYNTAX INTEGER { + eRadius (0), + eRadsec (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanRadiusAccountingEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.18.1.7 +lcsSetupInterfacesWlanRadiusAccountingEntryBackupServerIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanRadiusAccountingEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.18.1.8 +lcsSetupInterfacesWlanRadiusAccountingEntryBackupAuthPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanRadiusAccountingEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.18.1.9 +lcsSetupInterfacesWlanRadiusAccountingEntryBackupSecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanRadiusAccountingEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.18.1.10 +lcsSetupInterfacesWlanRadiusAccountingEntryBackupLoopbackAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanRadiusAccountingEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.18.1.11 +lcsSetupInterfacesWlanRadiusAccountingEntryBackupProtocol OBJECT-TYPE + SYNTAX INTEGER { + eRadius (0), + eRadsec (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanRadiusAccountingEntry 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.20.19 +lcsSetupInterfacesWlanIntptTrnsmisTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesWlanIntptTrnsmisEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlan 19 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.20.19.1 +lcsSetupInterfacesWlanIntptTrnsmisEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesWlanIntptTrnsmisEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesWlanIntptTrnsmisEntryIfc + } + ::= { lcsSetupInterfacesWlanIntptTrnsmisTable 1 } + +LcsSetupInterfacesWlanIntptTrnsmisEntry ::= SEQUENCE { + lcsSetupInterfacesWlanIntptTrnsmisEntryIfc INTEGER, + lcsSetupInterfacesWlanIntptTrnsmisEntryPacketSize Integer32, + lcsSetupInterfacesWlanIntptTrnsmisEntryMinTxRate INTEGER, + lcsSetupInterfacesWlanIntptTrnsmisEntryRtsThreshold Integer32, + lcsSetupInterfacesWlanIntptTrnsmisEntry11bPreamble INTEGER, + lcsSetupInterfacesWlanIntptTrnsmisEntryMaxTxRate INTEGER, + lcsSetupInterfacesWlanIntptTrnsmisEntryMinFragLen Integer32, + lcsSetupInterfacesWlanIntptTrnsmisEntrySoftRetries Integer32, + lcsSetupInterfacesWlanIntptTrnsmisEntryHardRetries Integer32, + lcsSetupInterfacesWlanIntptTrnsmisEntryShortGuardInterval INTEGER, + lcsSetupInterfacesWlanIntptTrnsmisEntryMaxSpatialStreams INTEGER, + lcsSetupInterfacesWlanIntptTrnsmisEntrySendAggregates INTEGER, + lcsSetupInterfacesWlanIntptTrnsmisEntryMinHtMcs INTEGER, + lcsSetupInterfacesWlanIntptTrnsmisEntryMaxHtMcs INTEGER, + lcsSetupInterfacesWlanIntptTrnsmisEntryMinSpatialStreams INTEGER, + lcsSetupInterfacesWlanIntptTrnsmisEntryEapolRate INTEGER, + lcsSetupInterfacesWlanIntptTrnsmisEntryMaxAggrPacketCount Integer32, + lcsSetupInterfacesWlanIntptTrnsmisEntryReceiveAggregates INTEGER, + lcsSetupInterfacesWlanIntptTrnsmisEntryUseStbc INTEGER, + lcsSetupInterfacesWlanIntptTrnsmisEntryUseLdpc INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.19.1.1 +lcsSetupInterfacesWlanIntptTrnsmisEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eP2p11 (1), + eP2p12 (2), + eP2p13 (3), + eP2p14 (4), + eP2p15 (5), + eP2p16 (6), + eP2p21 (7), + eP2p22 (8), + eP2p23 (9), + eP2p24 (10), + eP2p25 (11), + eP2p26 (12), + eP2p17 (32), + eP2p18 (33), + eP2p19 (34), + eP2p110 (35), + eP2p111 (36), + eP2p112 (37), + eP2p113 (38), + eP2p114 (39), + eP2p115 (40), + eP2p116 (41), + eP2p27 (64), + eP2p28 (65), + eP2p29 (66), + eP2p210 (67), + eP2p211 (68), + eP2p212 (69), + eP2p213 (70), + eP2p214 (71), + eP2p215 (72), + eP2p216 (73) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptTrnsmisEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.19.1.2 +lcsSetupInterfacesWlanIntptTrnsmisEntryPacketSize OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptTrnsmisEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.19.1.3 +lcsSetupInterfacesWlanIntptTrnsmisEntryMinTxRate OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + e1M (1), + e2M (2), + e5M5 (4), + e11M (6), + e6M (8), + e9M (9), + e12M (10), + e18M (11), + e24M (12), + e36M (13), + e48M (14), + e54M (15) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptTrnsmisEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.19.1.6 +lcsSetupInterfacesWlanIntptTrnsmisEntryRtsThreshold OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptTrnsmisEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.19.1.7 +lcsSetupInterfacesWlanIntptTrnsmisEntry11bPreamble OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eLong (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptTrnsmisEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.19.1.9 +lcsSetupInterfacesWlanIntptTrnsmisEntryMaxTxRate OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + e1M (1), + e2M (2), + e5M5 (4), + e11M (6), + e6M (8), + e9M (9), + e12M (10), + e18M (11), + e24M (12), + e36M (13), + e48M (14), + e54M (15) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptTrnsmisEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.19.1.10 +lcsSetupInterfacesWlanIntptTrnsmisEntryMinFragLen OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptTrnsmisEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.19.1.11 +lcsSetupInterfacesWlanIntptTrnsmisEntrySoftRetries OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptTrnsmisEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.19.1.12 +lcsSetupInterfacesWlanIntptTrnsmisEntryHardRetries OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptTrnsmisEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.19.1.13 +lcsSetupInterfacesWlanIntptTrnsmisEntryShortGuardInterval OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptTrnsmisEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.19.1.14 +lcsSetupInterfacesWlanIntptTrnsmisEntryMaxSpatialStreams OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eOne (1), + eTwo (2), + eThree (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptTrnsmisEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.19.1.15 +lcsSetupInterfacesWlanIntptTrnsmisEntrySendAggregates OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptTrnsmisEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.19.1.16 +lcsSetupInterfacesWlanIntptTrnsmisEntryMinHtMcs OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eMcs08 (1), + eMcs19 (2), + eMcs210 (3), + eMcs311 (4), + eMcs412 (5), + eMcs513 (6), + eMcs614 (7), + eMcs715 (8) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptTrnsmisEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.19.1.17 +lcsSetupInterfacesWlanIntptTrnsmisEntryMaxHtMcs OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eMcs08 (1), + eMcs19 (2), + eMcs210 (3), + eMcs311 (4), + eMcs412 (5), + eMcs513 (6), + eMcs614 (7), + eMcs715 (8) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptTrnsmisEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.19.1.18 +lcsSetupInterfacesWlanIntptTrnsmisEntryMinSpatialStreams OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eOne (1), + eTwo (2), + eThree (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptTrnsmisEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.19.1.19 +lcsSetupInterfacesWlanIntptTrnsmisEntryEapolRate OBJECT-TYPE + SYNTAX INTEGER { + eLikeData (0), + e1M (1), + e2M (2), + e5M5 (4), + e11M (6), + e6M (8), + e9M (9), + e12M (10), + e18M (11), + e24M (12), + e36M (13), + e48M (14), + e54M (15), + eHT1S6M5 (28), + eHT1S13M (29), + eHT1S19M5 (30), + eHT1S26M (31), + eHT1S39M (32), + eHT1S52M (33), + eHT1S58M5 (34), + eHT1S65M (35), + eHT2S13M (36), + eHT2S26M (37), + eHT2S39M (38), + eHT2S52M (39), + eHT2S78M (40), + eHT2S104M (41), + eHT2S117M (42), + eHT2S130M (43) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptTrnsmisEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.19.1.20 +lcsSetupInterfacesWlanIntptTrnsmisEntryMaxAggrPacketCount OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptTrnsmisEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.19.1.22 +lcsSetupInterfacesWlanIntptTrnsmisEntryReceiveAggregates OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptTrnsmisEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.19.1.23 +lcsSetupInterfacesWlanIntptTrnsmisEntryUseStbc OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptTrnsmisEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.19.1.24 +lcsSetupInterfacesWlanIntptTrnsmisEntryUseLdpc OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptTrnsmisEntry 24 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.20.20 +lcsSetupInterfacesWlanIntptEncTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesWlanIntptEncEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesWlan 20 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.20.20.1 +lcsSetupInterfacesWlanIntptEncEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesWlanIntptEncEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesWlanIntptEncEntryIfc + } + ::= { lcsSetupInterfacesWlanIntptEncTable 1 } + +LcsSetupInterfacesWlanIntptEncEntry ::= SEQUENCE { + lcsSetupInterfacesWlanIntptEncEntryIfc INTEGER, + lcsSetupInterfacesWlanIntptEncEntryEncryption INTEGER, + lcsSetupInterfacesWlanIntptEncEntryDefaultKey Integer32, + lcsSetupInterfacesWlanIntptEncEntryMethod INTEGER, + lcsSetupInterfacesWlanIntptEncEntryWpaVersion INTEGER, + lcsSetupInterfacesWlanIntptEncEntryWpaRekeyingCycle Integer32, + lcsSetupInterfacesWlanIntptEncEntryWpa1SessionKeytypes INTEGER, + lcsSetupInterfacesWlanIntptEncEntryWpa2SessionKeytypes INTEGER, + lcsSetupInterfacesWlanIntptEncEntryProtMgmtFrames INTEGER, + lcsSetupInterfacesWlanIntptEncEntryWpa2KeyManagement BITS + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.20.1.1 +lcsSetupInterfacesWlanIntptEncEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptEncEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.20.1.2 +lcsSetupInterfacesWlanIntptEncEntryEncryption OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptEncEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.20.1.3 +lcsSetupInterfacesWlanIntptEncEntryDefaultKey OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptEncEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.20.1.4 +lcsSetupInterfacesWlanIntptEncEntryMethod OBJECT-TYPE + SYNTAX INTEGER { + eWep40Bits (5), + eWep104Bits (13), + eWep128Bits (16), + e80211iWpaPsk (32) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptEncEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.20.1.9 +lcsSetupInterfacesWlanIntptEncEntryWpaVersion OBJECT-TYPE + SYNTAX INTEGER { + eWpa1 (2), + eWpa2 (4), + eWpa12 (6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptEncEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.20.1.11 +lcsSetupInterfacesWlanIntptEncEntryWpaRekeyingCycle OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptEncEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.20.1.12 +lcsSetupInterfacesWlanIntptEncEntryWpa1SessionKeytypes OBJECT-TYPE + SYNTAX INTEGER { + eTkip (1), + eAes (2), + eTkipAes (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptEncEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.20.1.13 +lcsSetupInterfacesWlanIntptEncEntryWpa2SessionKeytypes OBJECT-TYPE + SYNTAX INTEGER { + eTkip (1), + eAes (2), + eTkipAes (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptEncEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.20.1.14 +lcsSetupInterfacesWlanIntptEncEntryProtMgmtFrames OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eOptional (1), + eMandatory (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptEncEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.20.20.1.19 +lcsSetupInterfacesWlanIntptEncEntryWpa2KeyManagement OBJECT-TYPE + SYNTAX BITS { + eSha256 (5), + eStandard (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesWlanIntptEncEntry 19 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.21 +lcsSetupInterfacesLanInterfacesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesLanInterfacesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfaces 21 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.21.1 +lcsSetupInterfacesLanInterfacesEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesLanInterfacesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesLanInterfacesEntryIfc + } + ::= { lcsSetupInterfacesLanInterfacesTable 1 } + +LcsSetupInterfacesLanInterfacesEntry ::= SEQUENCE { + lcsSetupInterfacesLanInterfacesEntryIfc INTEGER, + lcsSetupInterfacesLanInterfacesEntryConnector INTEGER, + lcsSetupInterfacesLanInterfacesEntryMdiMode INTEGER, + lcsSetupInterfacesLanInterfacesEntryClockRole INTEGER, + lcsSetupInterfacesLanInterfacesEntryMtu Integer32, + lcsSetupInterfacesLanInterfacesEntryOperating INTEGER, + lcsSetupInterfacesLanInterfacesEntryTxLimit Integer32, + lcsSetupInterfacesLanInterfacesEntryRxLimit Integer32, + lcsSetupInterfacesLanInterfacesEntryPowerSaving INTEGER, + lcsSetupInterfacesLanInterfacesEntryFlowControl INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.21.1.1 +lcsSetupInterfacesLanInterfacesEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (1), + eLan2 (2), + eLan3 (3), + eLan4 (4), + eLan5 (5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesLanInterfacesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.21.1.2 +lcsSetupInterfacesLanInterfacesEntryConnector OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + e10bT (1), + eFd10bTx (2), + e100bTx (3), + eFd100bTx (4), + eAuto10 (5), + eFd1000bTx (6), + eAuto100 (7), + ePowerDown (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesLanInterfacesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.21.1.3 +lcsSetupInterfacesLanInterfacesEntryMdiMode OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eMdi (1), + eMdix (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesLanInterfacesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.21.1.5 +lcsSetupInterfacesLanInterfacesEntryClockRole OBJECT-TYPE + SYNTAX INTEGER { + eSlavePreferred (0), + eMaster (1), + eSlave (2), + eMasterPreferred (4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesLanInterfacesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.21.1.6 +lcsSetupInterfacesLanInterfacesEntryMtu OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesLanInterfacesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.21.1.7 +lcsSetupInterfacesLanInterfacesEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesLanInterfacesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.21.1.8 +lcsSetupInterfacesLanInterfacesEntryTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesLanInterfacesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.21.1.9 +lcsSetupInterfacesLanInterfacesEntryRxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesLanInterfacesEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.21.1.10 +lcsSetupInterfacesLanInterfacesEntryPowerSaving OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesLanInterfacesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.21.1.11 +lcsSetupInterfacesLanInterfacesEntryFlowControl OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eOn (1), + eOff (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesLanInterfacesEntry 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.30 +lcsSetupInterfacesEthernetPortsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesEthernetPortsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfaces 30 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.30.1 +lcsSetupInterfacesEthernetPortsEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesEthernetPortsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesEthernetPortsEntryPort + } + ::= { lcsSetupInterfacesEthernetPortsTable 1 } + +LcsSetupInterfacesEthernetPortsEntry ::= SEQUENCE { + lcsSetupInterfacesEthernetPortsEntryPort INTEGER, + lcsSetupInterfacesEthernetPortsEntryConnector INTEGER, + lcsSetupInterfacesEthernetPortsEntryPrivateMode INTEGER, + lcsSetupInterfacesEthernetPortsEntryAssignment INTEGER, + lcsSetupInterfacesEthernetPortsEntryMdiMode INTEGER, + lcsSetupInterfacesEthernetPortsEntryClockRole INTEGER, + lcsSetupInterfacesEthernetPortsEntryDownshift INTEGER, + lcsSetupInterfacesEthernetPortsEntryPowerSaving INTEGER, + lcsSetupInterfacesEthernetPortsEntryFlowControl INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.30.1.1 +lcsSetupInterfacesEthernetPortsEntryPort OBJECT-TYPE + SYNTAX INTEGER { + eUnknown (0), + eUplink (1), + eEth1 (2), + eEth2 (3), + eEth3 (4), + eEth4 (5), + eWan (16), + eSfp1 (32) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesEthernetPortsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.30.1.2 +lcsSetupInterfacesEthernetPortsEntryConnector OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + e10bT (1), + eFd10bTx (2), + e100bTx (3), + eFd100bTx (4), + eAuto10 (5), + eFd1000bTx (6), + eAuto100 (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesEthernetPortsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.30.1.3 +lcsSetupInterfacesEthernetPortsEntryPrivateMode OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesEthernetPortsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.30.1.4 +lcsSetupInterfacesEthernetPortsEntryAssignment OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (0), + eLan2 (1), + eLan3 (2), + eLan4 (3), + eLan5 (4), + eDsl1 (512), + eDsl2 (513), + eDsl3 (514), + eDsl4 (515), + eIdle (65533), + eMonitor (65534), + ePowerDown (65535) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesEthernetPortsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.30.1.5 +lcsSetupInterfacesEthernetPortsEntryMdiMode OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eMdi (1), + eMdix (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesEthernetPortsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.30.1.6 +lcsSetupInterfacesEthernetPortsEntryClockRole OBJECT-TYPE + SYNTAX INTEGER { + eSlavePreferred (0), + eMaster (1), + eSlave (2), + eMasterPreferred (4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesEthernetPortsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.30.1.7 +lcsSetupInterfacesEthernetPortsEntryDownshift OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesEthernetPortsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.30.1.8 +lcsSetupInterfacesEthernetPortsEntryPowerSaving OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesEthernetPortsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.30.1.9 +lcsSetupInterfacesEthernetPortsEntryFlowControl OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eOn (1), + eOff (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesEthernetPortsEntry 9 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.23.40 +lcsSetupInterfacesModem OBJECT IDENTIFIER ::= { lcsSetupInterfaces 40 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.40.1 +lcsSetupInterfacesModemRingCount OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesModem 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.40.2 +lcsSetupInterfacesModemEchoOffCommand OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..9)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesModem 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.40.3 +lcsSetupInterfacesModemResetCommand OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..9)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesModem 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.40.4 +lcsSetupInterfacesModemInitCommand OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesModem 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.40.5 +lcsSetupInterfacesModemDialCommand OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesModem 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.40.6 +lcsSetupInterfacesModemRequestId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..9)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesModem 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.40.7 +lcsSetupInterfacesModemAnswerCommand OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..9)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesModem 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.40.8 +lcsSetupInterfacesModemDisconnectCommand OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..9)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesModem 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.40.9 +lcsSetupInterfacesModemEscapeSequence OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..9)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesModem 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.40.10 +lcsSetupInterfacesModemEscapePromtDelayMs OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesModem 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.40.11 +lcsSetupInterfacesModemInitDial OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesModem 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.40.12 +lcsSetupInterfacesModemInitAnswer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesModem 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.40.13 +lcsSetupInterfacesModemCycletimeAtPollS OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesModem 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.40.14 +lcsSetupInterfacesModemAtPollCount OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesModem 14 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.23.41 +lcsSetupInterfacesMobile OBJECT IDENTIFIER ::= { lcsSetupInterfaces 41 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.23.41.1 +lcsSetupInterfacesMobileProfilesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupInterfacesMobileProfilesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesMobile 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.23.41.1.1 +lcsSetupInterfacesMobileProfilesEntry OBJECT-TYPE + SYNTAX LcsSetupInterfacesMobileProfilesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupInterfacesMobileProfilesEntryProfile + } + ::= { lcsSetupInterfacesMobileProfilesTable 1 } + +LcsSetupInterfacesMobileProfilesEntry ::= SEQUENCE { + lcsSetupInterfacesMobileProfilesEntryProfile DisplayString, + lcsSetupInterfacesMobileProfilesEntryPin DisplayString, + lcsSetupInterfacesMobileProfilesEntryApn DisplayString, + lcsSetupInterfacesMobileProfilesEntryNetwork DisplayString, + lcsSetupInterfacesMobileProfilesEntrySelect INTEGER, + lcsSetupInterfacesMobileProfilesEntryMode INTEGER, + lcsSetupInterfacesMobileProfilesEntryQosDownstreamDataRate Integer32, + lcsSetupInterfacesMobileProfilesEntryQosUpstreamDataRate Integer32, + lcsSetupInterfacesMobileProfilesEntryPdpType INTEGER, + lcsSetupInterfacesMobileProfilesEntryLteBands BITS, + lcsSetupInterfacesMobileProfilesEntryLteAttach INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.41.1.1.1 +lcsSetupInterfacesMobileProfilesEntryProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesMobileProfilesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.41.1.1.2 +lcsSetupInterfacesMobileProfilesEntryPin OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..6)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesMobileProfilesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.41.1.1.3 +lcsSetupInterfacesMobileProfilesEntryApn OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..47)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesMobileProfilesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.41.1.1.4 +lcsSetupInterfacesMobileProfilesEntryNetwork OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesMobileProfilesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.41.1.1.5 +lcsSetupInterfacesMobileProfilesEntrySelect OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eManual (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesMobileProfilesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.41.1.1.6 +lcsSetupInterfacesMobileProfilesEntryMode OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eUmts (1), + eGprs (2), + eLte (8), + eUmtsGprs (11) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesMobileProfilesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.41.1.1.7 +lcsSetupInterfacesMobileProfilesEntryQosDownstreamDataRate OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesMobileProfilesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.41.1.1.8 +lcsSetupInterfacesMobileProfilesEntryQosUpstreamDataRate OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesMobileProfilesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.41.1.1.9 +lcsSetupInterfacesMobileProfilesEntryPdpType OBJECT-TYPE + SYNTAX INTEGER { + eIpv4 (0), + eIpv6 (2), + eIpv4v6 (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesMobileProfilesEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.41.1.1.10 +lcsSetupInterfacesMobileProfilesEntryLteBands OBJECT-TYPE + SYNTAX BITS { + eB20800 (26), + eB8900 (27), + eB72600 (28), + eB31800 (29), + eB12100 (30), + eAll (31) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesMobileProfilesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.23.41.1.1.11 +lcsSetupInterfacesMobileProfilesEntryLteAttach OBJECT-TYPE + SYNTAX INTEGER { + eImmediate (0), + eDelayed (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesMobileProfilesEntry 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.41.2 +lcsSetupInterfacesMobileScanNetworks OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesMobile 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.41.3 +lcsSetupInterfacesMobileInputPuk OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesMobile 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.41.4 +lcsSetupInterfacesMobileConnectMonitoring OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + ePpp (1), + ePppIp (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesMobile 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.41.5 +lcsSetupInterfacesMobileTries OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesMobile 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.41.6 +lcsSetupInterfacesMobileHistoryIntervalSec OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesMobile 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.41.7 +lcsSetupInterfacesMobileSyslogEnabled OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesMobile 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.41.8 +lcsSetupInterfacesMobileEnableHsupa OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesMobile 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.41.9 +lcsSetupInterfacesMobileSignalCheckIntervallMin OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesMobile 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.41.10 +lcsSetupInterfacesMobileTreshold3gTo2gDb OBJECT-TYPE + SYNTAX Integer32 (-2147483648..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesMobile 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.41.11 +lcsSetupInterfacesMobileCheckWhileConnected OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupInterfacesMobile 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.23.41.12 +lcsSetupInterfacesMobilePinChange OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupInterfacesMobile 12 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.24 +lcsSetupPublicSpotModule OBJECT IDENTIFIER ::= { lcsSetup 24 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.1 +lcsSetupPublicSpotModuleAuthenticationMode OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eUserPlusPassword (1), + eMacPlusUserPlusPassword (2), + eEMail (3), + eEMail2sms (4), + eLoginViaAgreement (5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModule 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.24.2 +lcsSetupPublicSpotModuleUserTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPublicSpotModuleUserTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModule 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.24.2.1 +lcsSetupPublicSpotModuleUserTableEntry OBJECT-TYPE + SYNTAX LcsSetupPublicSpotModuleUserTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPublicSpotModuleUserTableEntryName + } + ::= { lcsSetupPublicSpotModuleUserTableTable 1 } + +LcsSetupPublicSpotModuleUserTableEntry ::= SEQUENCE { + lcsSetupPublicSpotModuleUserTableEntryName DisplayString, + lcsSetupPublicSpotModuleUserTableEntryPassword DisplayString, + lcsSetupPublicSpotModuleUserTableEntryMacAddress MacAddress, + lcsSetupPublicSpotModuleUserTableEntryComment DisplayString, + lcsSetupPublicSpotModuleUserTableEntryProvider DisplayString, + lcsSetupPublicSpotModuleUserTableEntryExpiry DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.2.1.1 +lcsSetupPublicSpotModuleUserTableEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleUserTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.2.1.2 +lcsSetupPublicSpotModuleUserTableEntryPassword OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleUserTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.2.1.3 +lcsSetupPublicSpotModuleUserTableEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleUserTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.2.1.4 +lcsSetupPublicSpotModuleUserTableEntryComment OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..80)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleUserTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.2.1.5 +lcsSetupPublicSpotModuleUserTableEntryProvider OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleUserTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.2.1.6 +lcsSetupPublicSpotModuleUserTableEntryExpiry OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..21)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleUserTableEntry 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.24.3 +lcsSetupPublicSpotModuleProviderTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPublicSpotModuleProviderTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModule 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.24.3.1 +lcsSetupPublicSpotModuleProviderTableEntry OBJECT-TYPE + SYNTAX LcsSetupPublicSpotModuleProviderTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPublicSpotModuleProviderTableEntryProvider + } + ::= { lcsSetupPublicSpotModuleProviderTableTable 1 } + +LcsSetupPublicSpotModuleProviderTableEntry ::= SEQUENCE { + lcsSetupPublicSpotModuleProviderTableEntryProvider DisplayString, + lcsSetupPublicSpotModuleProviderTableEntryAuthServerAddress IpAddress, + lcsSetupPublicSpotModuleProviderTableEntryAuthServerPort Integer32, + lcsSetupPublicSpotModuleProviderTableEntryAuthServerSecret DisplayString, + lcsSetupPublicSpotModuleProviderTableEntryAccServerAddress IpAddress, + lcsSetupPublicSpotModuleProviderTableEntryAccServerPort Integer32, + lcsSetupPublicSpotModuleProviderTableEntryAccServerSecret DisplayString, + lcsSetupPublicSpotModuleProviderTableEntryBackup DisplayString, + lcsSetupPublicSpotModuleProviderTableEntryAuthServerLoopbackAddr DisplayString, + lcsSetupPublicSpotModuleProviderTableEntryAccServerLoopbackAddr DisplayString, + lcsSetupPublicSpotModuleProviderTableEntryAuthServerProtocol INTEGER, + lcsSetupPublicSpotModuleProviderTableEntryAccServerProtocol INTEGER, + lcsSetupPublicSpotModuleProviderTableEntryAuthServerHostname DisplayString, + lcsSetupPublicSpotModuleProviderTableEntryAccServerHostname DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.3.1.1 +lcsSetupPublicSpotModuleProviderTableEntryProvider OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleProviderTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.3.1.2 +lcsSetupPublicSpotModuleProviderTableEntryAuthServerAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleProviderTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.3.1.3 +lcsSetupPublicSpotModuleProviderTableEntryAuthServerPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleProviderTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.3.1.4 +lcsSetupPublicSpotModuleProviderTableEntryAuthServerSecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleProviderTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.3.1.5 +lcsSetupPublicSpotModuleProviderTableEntryAccServerAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleProviderTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.3.1.6 +lcsSetupPublicSpotModuleProviderTableEntryAccServerPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleProviderTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.3.1.7 +lcsSetupPublicSpotModuleProviderTableEntryAccServerSecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleProviderTableEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.3.1.8 +lcsSetupPublicSpotModuleProviderTableEntryBackup OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleProviderTableEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.3.1.9 +lcsSetupPublicSpotModuleProviderTableEntryAuthServerLoopbackAddr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleProviderTableEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.3.1.10 +lcsSetupPublicSpotModuleProviderTableEntryAccServerLoopbackAddr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleProviderTableEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.3.1.11 +lcsSetupPublicSpotModuleProviderTableEntryAuthServerProtocol OBJECT-TYPE + SYNTAX INTEGER { + eRadius (0), + eRadsec (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleProviderTableEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.3.1.12 +lcsSetupPublicSpotModuleProviderTableEntryAccServerProtocol OBJECT-TYPE + SYNTAX INTEGER { + eRadius (0), + eRadsec (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleProviderTableEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.3.1.13 +lcsSetupPublicSpotModuleProviderTableEntryAuthServerHostname OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleProviderTableEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.3.1.14 +lcsSetupPublicSpotModuleProviderTableEntryAccServerHostname OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleProviderTableEntry 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.5 +lcsSetupPublicSpotModuleTrafficLimitBytes OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModule 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.6 +lcsSetupPublicSpotModuleServerSubdir OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..127)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModule 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.7 +lcsSetupPublicSpotModuleAccountingCycle OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModule 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.24.8 +lcsSetupPublicSpotModulePageTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPublicSpotModulePageTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModule 8 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.24.8.1 +lcsSetupPublicSpotModulePageTableEntry OBJECT-TYPE + SYNTAX LcsSetupPublicSpotModulePageTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPublicSpotModulePageTableEntryPage + } + ::= { lcsSetupPublicSpotModulePageTableTable 1 } + +LcsSetupPublicSpotModulePageTableEntry ::= SEQUENCE { + lcsSetupPublicSpotModulePageTableEntryPage INTEGER, + lcsSetupPublicSpotModulePageTableEntryUrl DisplayString, + lcsSetupPublicSpotModulePageTableEntryFallback INTEGER, + lcsSetupPublicSpotModulePageTableEntryType INTEGER, + lcsSetupPublicSpotModulePageTableEntryLoopbackAddr DisplayString, + lcsSetupPublicSpotModulePageTableEntryTemplateCache INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.8.1.1 +lcsSetupPublicSpotModulePageTableEntryPage OBJECT-TYPE + SYNTAX INTEGER { + eWelcome (1), + eLogin (2), + eError (3), + eStart (4), + eStatus (5), + eLogoff (6), + eHelp (7), + eNoProxy (8), + eVoucher (9), + eGtc (10), + eFallbackError (11), + eRegistrationEMail (12), + eSignEMail (13), + eRegistrationEMailToSms (14), + eSignEMailToSms (15) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModulePageTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.8.1.2 +lcsSetupPublicSpotModulePageTableEntryUrl OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModulePageTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.8.1.3 +lcsSetupPublicSpotModulePageTableEntryFallback OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModulePageTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.8.1.4 +lcsSetupPublicSpotModulePageTableEntryType OBJECT-TYPE + SYNTAX INTEGER { + eTemplate (0), + eRedirect (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModulePageTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.8.1.5 +lcsSetupPublicSpotModulePageTableEntryLoopbackAddr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModulePageTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.8.1.6 +lcsSetupPublicSpotModulePageTableEntryTemplateCache OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModulePageTableEntry 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.9 +lcsSetupPublicSpotModuleRoamingSecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModule 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.12 +lcsSetupPublicSpotModuleCommunicationPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModule 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.14 +lcsSetupPublicSpotModuleIdleTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModule 14 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.24.15 +lcsSetupPublicSpotModulePortTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPublicSpotModulePortTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModule 15 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.24.15.1 +lcsSetupPublicSpotModulePortTableEntry OBJECT-TYPE + SYNTAX LcsSetupPublicSpotModulePortTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPublicSpotModulePortTableEntryPort + } + ::= { lcsSetupPublicSpotModulePortTableTable 1 } + +LcsSetupPublicSpotModulePortTableEntry ::= SEQUENCE { + lcsSetupPublicSpotModulePortTableEntryPort DisplayString, + lcsSetupPublicSpotModulePortTableEntryAuthenticationNecessary INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.15.1.2 +lcsSetupPublicSpotModulePortTableEntryPort OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..18)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModulePortTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.15.1.3 +lcsSetupPublicSpotModulePortTableEntryAuthenticationNecessary OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModulePortTableEntry 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.16 +lcsSetupPublicSpotModuleAutoCleanupUserTable OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModule 16 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.17 +lcsSetupPublicSpotModuleProvideServerDatabase OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModule 17 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.18 +lcsSetupPublicSpotModuleDisallowMultipleLogin OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModule 18 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.24.19 +lcsSetupPublicSpotModuleAddUserWizard OBJECT IDENTIFIER ::= { lcsSetupPublicSpotModule 19 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.19.2 +lcsSetupPublicSpotModuleAddUserWizardUsernamePattern OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleAddUserWizard 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.19.3 +lcsSetupPublicSpotModuleAddUserWizardPasswordLength OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleAddUserWizard 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.19.4 +lcsSetupPublicSpotModuleAddUserWizardSsid OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleAddUserWizard 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.24.19.5 +lcsSetupPublicSpotModuleAddUserWizardDefaultRuntimeTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPublicSpotModuleAddUserWizardDefaultRuntimeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleAddUserWizard 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.24.19.5.1 +lcsSetupPublicSpotModuleAddUserWizardDefaultRuntimeEntry OBJECT-TYPE + SYNTAX LcsSetupPublicSpotModuleAddUserWizardDefaultRuntimeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPublicSpotModuleAddUserWizardDefaultRuntimeEntryRuntime, + lcsSetupPublicSpotModuleAddUserWizardDefaultRuntimeEntryUnit + } + ::= { lcsSetupPublicSpotModuleAddUserWizardDefaultRuntimeTable 1 } + +LcsSetupPublicSpotModuleAddUserWizardDefaultRuntimeEntry ::= SEQUENCE { + lcsSetupPublicSpotModuleAddUserWizardDefaultRuntimeEntryRuntime Integer32, + lcsSetupPublicSpotModuleAddUserWizardDefaultRuntimeEntryUnit INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.19.5.1.1 +lcsSetupPublicSpotModuleAddUserWizardDefaultRuntimeEntryRuntime OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleAddUserWizardDefaultRuntimeEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.19.5.1.2 +lcsSetupPublicSpotModuleAddUserWizardDefaultRuntimeEntryUnit OBJECT-TYPE + SYNTAX INTEGER { + eHourS (0), + eDayS (1), + eMinuteS (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleAddUserWizardDefaultRuntimeEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.24.19.6 +lcsSetupPublicSpotModuleAddUserWizardCommentFieldsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPublicSpotModuleAddUserWizardCommentFieldsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleAddUserWizard 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.24.19.6.1 +lcsSetupPublicSpotModuleAddUserWizardCommentFieldsEntry OBJECT-TYPE + SYNTAX LcsSetupPublicSpotModuleAddUserWizardCommentFieldsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPublicSpotModuleAddUserWizardCommentFieldsEntryFieldName + } + ::= { lcsSetupPublicSpotModuleAddUserWizardCommentFieldsTable 1 } + +LcsSetupPublicSpotModuleAddUserWizardCommentFieldsEntry ::= SEQUENCE { + lcsSetupPublicSpotModuleAddUserWizardCommentFieldsEntryFieldName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.19.6.1.1 +lcsSetupPublicSpotModuleAddUserWizardCommentFieldsEntryFieldName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleAddUserWizardCommentFieldsEntry 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.19.7 +lcsSetupPublicSpotModuleAddUserWizardDefaultStartingTime OBJECT-TYPE + SYNTAX INTEGER { + eImmediately (1), + eFirstLogin (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleAddUserWizard 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.19.8 +lcsSetupPublicSpotModuleAddUserWizardPrintCommentsOnVoucher OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleAddUserWizard 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.19.9 +lcsSetupPublicSpotModuleAddUserWizardMaxVoucherValPeriod OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximal voucher validate period" + ::= { lcsSetupPublicSpotModuleAddUserWizard 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.19.10 +lcsSetupPublicSpotModuleAddUserWizardAvailableExpiryMethods OBJECT-TYPE + SYNTAX INTEGER { + eAllMethods (0), + eCurrentTimeMethod (1), + eLoginTimeMethod (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleAddUserWizard 10 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.24.19.11 +lcsSetupPublicSpotModuleAddUserWizardSsidTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPublicSpotModuleAddUserWizardSsidTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAddUserWizard 11 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.24.19.11.1 +lcsSetupPublicSpotModuleAddUserWizardSsidTableEntry OBJECT-TYPE + SYNTAX LcsSetupPublicSpotModuleAddUserWizardSsidTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPublicSpotModuleAddUserWizardSsidTableEntryNetworkName + } + ::= { lcsSetupPublicSpotModuleAddUserWizardSsidTableTable 1 } + +LcsSetupPublicSpotModuleAddUserWizardSsidTableEntry ::= SEQUENCE { + lcsSetupPublicSpotModuleAddUserWizardSsidTableEntryNetworkName DisplayString, + lcsSetupPublicSpotModuleAddUserWizardSsidTableEntryDefault INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.19.11.1.1 +lcsSetupPublicSpotModuleAddUserWizardSsidTableEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAddUserWizardSsidTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.19.11.1.2 +lcsSetupPublicSpotModuleAddUserWizardSsidTableEntryDefault OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAddUserWizardSsidTableEntry 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.19.12 +lcsSetupPublicSpotModuleAddUserWizardUserNameCaseSensitive OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAddUserWizard 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.19.13 +lcsSetupPublicSpotModuleAddUserWizardHideCaseSensitiveCheckbox OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAddUserWizard 13 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.24.19.14 +lcsSetupPublicSpotModuleAddUserWizardMaxConcLoginsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPublicSpotModuleAddUserWizardMaxConcLoginsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleAddUserWizard 14 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.24.19.14.1 +lcsSetupPublicSpotModuleAddUserWizardMaxConcLoginsEntry OBJECT-TYPE + SYNTAX LcsSetupPublicSpotModuleAddUserWizardMaxConcLoginsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPublicSpotModuleAddUserWizardMaxConcLoginsEntryValue + } + ::= { lcsSetupPublicSpotModuleAddUserWizardMaxConcLoginsTable 1 } + +LcsSetupPublicSpotModuleAddUserWizardMaxConcLoginsEntry ::= SEQUENCE { + lcsSetupPublicSpotModuleAddUserWizardMaxConcLoginsEntryValue DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.19.14.1.1 +lcsSetupPublicSpotModuleAddUserWizardMaxConcLoginsEntryValue OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..5)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAddUserWizardMaxConcLoginsEntry 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.19.15 +lcsSetupPublicSpotModuleAddUserWizardMultiLogin OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAddUserWizard 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.19.16 +lcsSetupPublicSpotModuleAddUserWizardHideMultiLoginCheckbox OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAddUserWizard 16 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.24.19.17 +lcsSetupPublicSpotModuleAddUserWizardBWidthProTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPublicSpotModuleAddUserWizardBWidthProEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleAddUserWizard 17 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.24.19.17.1 +lcsSetupPublicSpotModuleAddUserWizardBWidthProEntry OBJECT-TYPE + SYNTAX LcsSetupPublicSpotModuleAddUserWizardBWidthProEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPublicSpotModuleAddUserWizardBWidthProEntryProfileName + } + ::= { lcsSetupPublicSpotModuleAddUserWizardBWidthProTable 1 } + +LcsSetupPublicSpotModuleAddUserWizardBWidthProEntry ::= SEQUENCE { + lcsSetupPublicSpotModuleAddUserWizardBWidthProEntryProfileName DisplayString, + lcsSetupPublicSpotModuleAddUserWizardBWidthProEntryTxBandwidth Integer32, + lcsSetupPublicSpotModuleAddUserWizardBWidthProEntryRxBandwidth Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.19.17.1.1 +lcsSetupPublicSpotModuleAddUserWizardBWidthProEntryProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAddUserWizardBWidthProEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.19.17.1.2 +lcsSetupPublicSpotModuleAddUserWizardBWidthProEntryTxBandwidth OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAddUserWizardBWidthProEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.19.17.1.3 +lcsSetupPublicSpotModuleAddUserWizardBWidthProEntryRxBandwidth OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAddUserWizardBWidthProEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.24.20 +lcsSetupPublicSpotModuleVlanTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPublicSpotModuleVlanTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModule 20 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.24.20.1 +lcsSetupPublicSpotModuleVlanTableEntry OBJECT-TYPE + SYNTAX LcsSetupPublicSpotModuleVlanTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPublicSpotModuleVlanTableEntryVlanId + } + ::= { lcsSetupPublicSpotModuleVlanTableTable 1 } + +LcsSetupPublicSpotModuleVlanTableEntry ::= SEQUENCE { + lcsSetupPublicSpotModuleVlanTableEntryVlanId Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.20.1.1 +lcsSetupPublicSpotModuleVlanTableEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleVlanTableEntry 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.21 +lcsSetupPublicSpotModuleLoginPageType OBJECT-TYPE + SYNTAX INTEGER { + eHttps (0), + eHttp (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModule 21 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.22 +lcsSetupPublicSpotModuleDeviceHostname OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModule 22 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.24.23 +lcsSetupPublicSpotModuleMacAddressTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPublicSpotModuleMacAddressTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModule 23 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.24.23.1 +lcsSetupPublicSpotModuleMacAddressTableEntry OBJECT-TYPE + SYNTAX LcsSetupPublicSpotModuleMacAddressTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPublicSpotModuleMacAddressTableEntryMacAddress + } + ::= { lcsSetupPublicSpotModuleMacAddressTableTable 1 } + +LcsSetupPublicSpotModuleMacAddressTableEntry ::= SEQUENCE { + lcsSetupPublicSpotModuleMacAddressTableEntryMacAddress MacAddress, + lcsSetupPublicSpotModuleMacAddressTableEntryUserName DisplayString, + lcsSetupPublicSpotModuleMacAddressTableEntryProvider DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.23.1.1 +lcsSetupPublicSpotModuleMacAddressTableEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleMacAddressTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.23.1.2 +lcsSetupPublicSpotModuleMacAddressTableEntryUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleMacAddressTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.23.1.3 +lcsSetupPublicSpotModuleMacAddressTableEntryProvider OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleMacAddressTableEntry 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.24 +lcsSetupPublicSpotModuleMacAddressCheckProvider OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModule 24 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.25 +lcsSetupPublicSpotModuleMacAddressCheckCacheTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModule 25 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.26 +lcsSetupPublicSpotModuleStationTableLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModule 26 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.30 +lcsSetupPublicSpotModuleFreeServer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModule 30 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.24.31 +lcsSetupPublicSpotModuleFreeNetworksTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPublicSpotModuleFreeNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModule 31 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.24.31.1 +lcsSetupPublicSpotModuleFreeNetworksEntry OBJECT-TYPE + SYNTAX LcsSetupPublicSpotModuleFreeNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPublicSpotModuleFreeNetworksEntryHostName + } + ::= { lcsSetupPublicSpotModuleFreeNetworksTable 1 } + +LcsSetupPublicSpotModuleFreeNetworksEntry ::= SEQUENCE { + lcsSetupPublicSpotModuleFreeNetworksEntryHostName DisplayString, + lcsSetupPublicSpotModuleFreeNetworksEntryMask IpAddress + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.31.1.1 +lcsSetupPublicSpotModuleFreeNetworksEntryHostName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleFreeNetworksEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.31.1.2 +lcsSetupPublicSpotModuleFreeNetworksEntryMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleFreeNetworksEntry 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.32 +lcsSetupPublicSpotModuleFreeHostsMinimumTtl OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModule 32 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.33 +lcsSetupPublicSpotModuleLoginText OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..254)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModule 33 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.34 +lcsSetupPublicSpotModuleWanConnection OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModule 34 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.35 +lcsSetupPublicSpotModulePrintLogoAndHeaderboard OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModule 35 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.36 +lcsSetupPublicSpotModuleUserMustAcceptGtc OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModule 36 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.37 +lcsSetupPublicSpotModulePrintLogoutLink OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModule 37 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.24.40 +lcsSetupPublicSpotModuleXmlInterface OBJECT IDENTIFIER ::= { lcsSetupPublicSpotModule 40 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.40.1 +lcsSetupPublicSpotModuleXmlInterfaceOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleXmlInterface 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.40.2 +lcsSetupPublicSpotModuleXmlInterfaceRadiusAuthentication OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleXmlInterface 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.24.41 +lcsSetupPublicSpotModuleAuthMod OBJECT IDENTIFIER ::= { lcsSetupPublicSpotModule 41 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.24.41.1 +lcsSetupPublicSpotModuleAuthModEmlAuth OBJECT IDENTIFIER ::= { lcsSetupPublicSpotModuleAuthMod 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.1.1 +lcsSetupPublicSpotModuleAuthModEmlAuthLimitEMailsPerHour OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlAuth 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.1.2 +lcsSetupPublicSpotModuleAuthModEmlAuthUserMustAcceptGtc OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlAuth 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.1.3 +lcsSetupPublicSpotModuleAuthModEmlAuthSubject OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlAuth 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.1.4 +lcsSetupPublicSpotModuleAuthModEmlAuthBody OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlAuth 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.1.5 +lcsSetupPublicSpotModuleAuthModEmlAuthMaxRequestAttempts OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlAuth 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.1.6 +lcsSetupPublicSpotModuleAuthModEmlAuthLocalEMailAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..150)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlAuth 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.1.7 +lcsSetupPublicSpotModuleAuthModEmlAuthRealName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..150)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlAuth 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.1.8 +lcsSetupPublicSpotModuleAuthModEmlAuthBlackWhiteDomainList OBJECT-TYPE + SYNTAX INTEGER { + eBlacklist (0), + eWhitelist (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlAuth 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.24.41.1.9 +lcsSetupPublicSpotModuleAuthModEmlAuthDomainListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPublicSpotModuleAuthModEmlAuthDomainListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlAuth 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.24.41.1.9.1 +lcsSetupPublicSpotModuleAuthModEmlAuthDomainListEntry OBJECT-TYPE + SYNTAX LcsSetupPublicSpotModuleAuthModEmlAuthDomainListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPublicSpotModuleAuthModEmlAuthDomainListEntryDomain + } + ::= { lcsSetupPublicSpotModuleAuthModEmlAuthDomainListTable 1 } + +LcsSetupPublicSpotModuleAuthModEmlAuthDomainListEntry ::= SEQUENCE { + lcsSetupPublicSpotModuleAuthModEmlAuthDomainListEntryDomain DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.41.1.9.1.1 +lcsSetupPublicSpotModuleAuthModEmlAuthDomainListEntryDomain OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..150)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlAuthDomainListEntry 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.24.41.1.20 +lcsSetupPublicSpotModuleAuthModEmlAuthRealNameTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPublicSpotModuleAuthModEmlAuthRealNameEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlAuth 20 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.24.41.1.20.1 +lcsSetupPublicSpotModuleAuthModEmlAuthRealNameEntry OBJECT-TYPE + SYNTAX LcsSetupPublicSpotModuleAuthModEmlAuthRealNameEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPublicSpotModuleAuthModEmlAuthRealNameEntryLanguage + } + ::= { lcsSetupPublicSpotModuleAuthModEmlAuthRealNameTable 1 } + +LcsSetupPublicSpotModuleAuthModEmlAuthRealNameEntry ::= SEQUENCE { + lcsSetupPublicSpotModuleAuthModEmlAuthRealNameEntryLanguage INTEGER, + lcsSetupPublicSpotModuleAuthModEmlAuthRealNameEntryContent DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.41.1.20.1.1 +lcsSetupPublicSpotModuleAuthModEmlAuthRealNameEntryLanguage OBJECT-TYPE + SYNTAX INTEGER { + eGerman (1), + eEnglish (2), + eFrench (3), + eItalian (4), + eSpanish (5), + eDutch (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlAuthRealNameEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.41.1.20.1.2 +lcsSetupPublicSpotModuleAuthModEmlAuthRealNameEntryContent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlAuthRealNameEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.24.41.1.21 +lcsSetupPublicSpotModuleAuthModEmlAuthBodyTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPublicSpotModuleAuthModEmlAuthBodyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlAuth 21 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.24.41.1.21.1 +lcsSetupPublicSpotModuleAuthModEmlAuthBodyEntry OBJECT-TYPE + SYNTAX LcsSetupPublicSpotModuleAuthModEmlAuthBodyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPublicSpotModuleAuthModEmlAuthBodyEntryLanguage + } + ::= { lcsSetupPublicSpotModuleAuthModEmlAuthBodyTable 1 } + +LcsSetupPublicSpotModuleAuthModEmlAuthBodyEntry ::= SEQUENCE { + lcsSetupPublicSpotModuleAuthModEmlAuthBodyEntryLanguage INTEGER, + lcsSetupPublicSpotModuleAuthModEmlAuthBodyEntryContent DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.41.1.21.1.1 +lcsSetupPublicSpotModuleAuthModEmlAuthBodyEntryLanguage OBJECT-TYPE + SYNTAX INTEGER { + eGerman (1), + eEnglish (2), + eFrench (3), + eItalian (4), + eSpanish (5), + eDutch (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlAuthBodyEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.41.1.21.1.2 +lcsSetupPublicSpotModuleAuthModEmlAuthBodyEntryContent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlAuthBodyEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.24.41.1.22 +lcsSetupPublicSpotModuleAuthModEmlAuthSubjectTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPublicSpotModuleAuthModEmlAuthSubjectEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlAuth 22 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.24.41.1.22.1 +lcsSetupPublicSpotModuleAuthModEmlAuthSubjectEntry OBJECT-TYPE + SYNTAX LcsSetupPublicSpotModuleAuthModEmlAuthSubjectEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPublicSpotModuleAuthModEmlAuthSubjectEntryLanguage + } + ::= { lcsSetupPublicSpotModuleAuthModEmlAuthSubjectTable 1 } + +LcsSetupPublicSpotModuleAuthModEmlAuthSubjectEntry ::= SEQUENCE { + lcsSetupPublicSpotModuleAuthModEmlAuthSubjectEntryLanguage INTEGER, + lcsSetupPublicSpotModuleAuthModEmlAuthSubjectEntryContent DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.41.1.22.1.1 +lcsSetupPublicSpotModuleAuthModEmlAuthSubjectEntryLanguage OBJECT-TYPE + SYNTAX INTEGER { + eGerman (1), + eEnglish (2), + eFrench (3), + eItalian (4), + eSpanish (5), + eDutch (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlAuthSubjectEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.41.1.22.1.2 +lcsSetupPublicSpotModuleAuthModEmlAuthSubjectEntryContent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlAuthSubjectEntry 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.24.41.2 +lcsSetupPublicSpotModuleAuthModEmlSmsAuth OBJECT IDENTIFIER ::= { lcsSetupPublicSpotModuleAuthMod 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.2.1 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthLimitEMailsPerHour OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuth 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.2.2 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthUserMustAcceptGtc OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuth 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.2.3 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthSubject OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuth 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.2.4 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthMaxRequestAttempts OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuth 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.2.5 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthLocalEMailAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..150)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuth 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.2.6 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthRealName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..150)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuth 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.2.12 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthBody OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuth 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.2.13 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthGatewayEMailAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..150)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuth 13 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.24.41.2.14 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthAlldCtryCodsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPublicSpotModuleAuthModEmlSmsAuthAlldCtryCodsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuth 14 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.24.41.2.14.1 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthAlldCtryCodsEntry OBJECT-TYPE + SYNTAX LcsSetupPublicSpotModuleAuthModEmlSmsAuthAlldCtryCodsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPublicSpotModuleAuthModEmlSmsAuthAlldCtryCodsEntryName + } + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuthAlldCtryCodsTable 1 } + +LcsSetupPublicSpotModuleAuthModEmlSmsAuthAlldCtryCodsEntry ::= SEQUENCE { + lcsSetupPublicSpotModuleAuthModEmlSmsAuthAlldCtryCodsEntryName DisplayString, + lcsSetupPublicSpotModuleAuthModEmlSmsAuthAlldCtryCodsEntryCode Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.41.2.14.1.1 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthAlldCtryCodsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..100)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuthAlldCtryCodsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.41.2.14.1.2 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthAlldCtryCodsEntryCode OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuthAlldCtryCodsEntry 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.2.15 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthSendSms OBJECT-TYPE + SYNTAX INTEGER { + eSmsGateway (0), + eHttp2sms (1), + eSendDirect (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuth 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.2.16 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthHttpUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuth 16 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.2.17 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthHttpPassword OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuth 17 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.2.18 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthHttpGatewayAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuth 18 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.24.41.2.23 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthRealNameTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPublicSpotModuleAuthModEmlSmsAuthRealNameEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuth 23 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.24.41.2.23.1 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthRealNameEntry OBJECT-TYPE + SYNTAX LcsSetupPublicSpotModuleAuthModEmlSmsAuthRealNameEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPublicSpotModuleAuthModEmlSmsAuthRealNameEntryLanguage + } + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuthRealNameTable 1 } + +LcsSetupPublicSpotModuleAuthModEmlSmsAuthRealNameEntry ::= SEQUENCE { + lcsSetupPublicSpotModuleAuthModEmlSmsAuthRealNameEntryLanguage INTEGER, + lcsSetupPublicSpotModuleAuthModEmlSmsAuthRealNameEntryContent DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.41.2.23.1.1 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthRealNameEntryLanguage OBJECT-TYPE + SYNTAX INTEGER { + eGerman (1), + eEnglish (2), + eFrench (3), + eItalian (4), + eSpanish (5), + eDutch (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuthRealNameEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.41.2.23.1.2 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthRealNameEntryContent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuthRealNameEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.24.41.2.24 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthBodyTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPublicSpotModuleAuthModEmlSmsAuthBodyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuth 24 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.24.41.2.24.1 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthBodyEntry OBJECT-TYPE + SYNTAX LcsSetupPublicSpotModuleAuthModEmlSmsAuthBodyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPublicSpotModuleAuthModEmlSmsAuthBodyEntryLanguage + } + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuthBodyTable 1 } + +LcsSetupPublicSpotModuleAuthModEmlSmsAuthBodyEntry ::= SEQUENCE { + lcsSetupPublicSpotModuleAuthModEmlSmsAuthBodyEntryLanguage INTEGER, + lcsSetupPublicSpotModuleAuthModEmlSmsAuthBodyEntryContent DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.41.2.24.1.1 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthBodyEntryLanguage OBJECT-TYPE + SYNTAX INTEGER { + eGerman (1), + eEnglish (2), + eFrench (3), + eItalian (4), + eSpanish (5), + eDutch (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuthBodyEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.41.2.24.1.2 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthBodyEntryContent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuthBodyEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.24.41.2.25 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthSubjectTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPublicSpotModuleAuthModEmlSmsAuthSubjectEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuth 25 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.24.41.2.25.1 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthSubjectEntry OBJECT-TYPE + SYNTAX LcsSetupPublicSpotModuleAuthModEmlSmsAuthSubjectEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPublicSpotModuleAuthModEmlSmsAuthSubjectEntryLanguage + } + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuthSubjectTable 1 } + +LcsSetupPublicSpotModuleAuthModEmlSmsAuthSubjectEntry ::= SEQUENCE { + lcsSetupPublicSpotModuleAuthModEmlSmsAuthSubjectEntryLanguage INTEGER, + lcsSetupPublicSpotModuleAuthModEmlSmsAuthSubjectEntryContent DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.41.2.25.1.1 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthSubjectEntryLanguage OBJECT-TYPE + SYNTAX INTEGER { + eGerman (1), + eEnglish (2), + eFrench (3), + eItalian (4), + eSpanish (5), + eDutch (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuthSubjectEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.41.2.25.1.2 +lcsSetupPublicSpotModuleAuthModEmlSmsAuthSubjectEntryContent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModEmlSmsAuthSubjectEntry 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.24.41.3 +lcsSetupPublicSpotModuleAuthModUserTemplate OBJECT IDENTIFIER ::= { lcsSetupPublicSpotModuleAuthMod 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.3.2 +lcsSetupPublicSpotModuleAuthModUserTemplateComment OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModUserTemplate 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.3.3 +lcsSetupPublicSpotModuleAuthModUserTemplateVolumeBudget OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModUserTemplate 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.3.4 +lcsSetupPublicSpotModuleAuthModUserTemplateTimeBudget OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModUserTemplate 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.3.5 +lcsSetupPublicSpotModuleAuthModUserTemplateRelExpiry OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModUserTemplate 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.3.6 +lcsSetupPublicSpotModuleAuthModUserTemplateAbsExpiry OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModUserTemplate 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.3.7 +lcsSetupPublicSpotModuleAuthModUserTemplateExpiryType OBJECT-TYPE + SYNTAX BITS { + eNone (0), + eRelative (6), + eAbsolute (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModUserTemplate 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.3.8 +lcsSetupPublicSpotModuleAuthModUserTemplateMaxConcurrentLogins OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModUserTemplate 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.3.9 +lcsSetupPublicSpotModuleAuthModUserTemplateMultipleLogin OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModUserTemplate 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.3.10 +lcsSetupPublicSpotModuleAuthModUserTemplateTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModUserTemplate 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.3.11 +lcsSetupPublicSpotModuleAuthModUserTemplateRxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModUserTemplate 11 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.24.41.4 +lcsSetupPublicSpotModuleAuthModNoAuth OBJECT IDENTIFIER ::= { lcsSetupPublicSpotModuleAuthMod 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.4.1 +lcsSetupPublicSpotModuleAuthModNoAuthMaxRequestPerHour OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModNoAuth 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.4.2 +lcsSetupPublicSpotModuleAuthModNoAuthUserAccountsPerDay OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModNoAuth 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.41.4.3 +lcsSetupPublicSpotModuleAuthModNoAuthUsernamePrefix OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAuthModNoAuth 3 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.24.42 +lcsSetupPublicSpotModuleWispr OBJECT IDENTIFIER ::= { lcsSetupPublicSpotModule 42 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.42.1 +lcsSetupPublicSpotModuleWisprOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleWispr 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.42.2 +lcsSetupPublicSpotModuleWisprLocationId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleWispr 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.42.3 +lcsSetupPublicSpotModuleWisprOperatorName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleWispr 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.42.4 +lcsSetupPublicSpotModuleWisprLocationName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleWispr 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.42.5 +lcsSetupPublicSpotModuleWisprLoginUrl OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleWispr 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.42.6 +lcsSetupPublicSpotModuleWisprLogoffUrl OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleWispr 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.42.7 +lcsSetupPublicSpotModuleWisprAbortLoginUrl OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleWispr 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.42.8 +lcsSetupPublicSpotModuleWisprMaxAuthenFailure OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleWispr 8 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.24.43 +lcsSetupPublicSpotModuleAdvertisement OBJECT IDENTIFIER ::= { lcsSetupPublicSpotModule 43 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.43.1 +lcsSetupPublicSpotModuleAdvertisementOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAdvertisement 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.43.2 +lcsSetupPublicSpotModuleAdvertisementInterval OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAdvertisement 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.24.43.3 +lcsSetupPublicSpotModuleAdvertisementUrlTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPublicSpotModuleAdvertisementUrlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAdvertisement 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.24.43.3.1 +lcsSetupPublicSpotModuleAdvertisementUrlEntry OBJECT-TYPE + SYNTAX LcsSetupPublicSpotModuleAdvertisementUrlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPublicSpotModuleAdvertisementUrlEntryContent + } + ::= { lcsSetupPublicSpotModuleAdvertisementUrlTable 1 } + +LcsSetupPublicSpotModuleAdvertisementUrlEntry ::= SEQUENCE { + lcsSetupPublicSpotModuleAdvertisementUrlEntryContent DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.43.3.1.1 +lcsSetupPublicSpotModuleAdvertisementUrlEntryContent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..150)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAdvertisementUrlEntry 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.24.43.4 +lcsSetupPublicSpotModuleAdvertisementUsrAgtWhtLstTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPublicSpotModuleAdvertisementUsrAgtWhtLstEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPublicSpotModuleAdvertisement 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.24.43.4.1 +lcsSetupPublicSpotModuleAdvertisementUsrAgtWhtLstEntry OBJECT-TYPE + SYNTAX LcsSetupPublicSpotModuleAdvertisementUsrAgtWhtLstEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPublicSpotModuleAdvertisementUsrAgtWhtLstEntryUserAgent + } + ::= { lcsSetupPublicSpotModuleAdvertisementUsrAgtWhtLstTable 1 } + +LcsSetupPublicSpotModuleAdvertisementUsrAgtWhtLstEntry ::= SEQUENCE { + lcsSetupPublicSpotModuleAdvertisementUsrAgtWhtLstEntryUserAgent DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.43.4.1.1 +lcsSetupPublicSpotModuleAdvertisementUsrAgtWhtLstEntryUserAgent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..150)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAdvertisementUsrAgtWhtLstEntry 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.43.5 +lcsSetupPublicSpotModuleAdvertisementProcessWisprRedirectUrl OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAdvertisement 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.24.43.6 +lcsSetupPublicSpotModuleAdvertisementFreeNetworksTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPublicSpotModuleAdvertisementFreeNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAdvertisement 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.24.43.6.1 +lcsSetupPublicSpotModuleAdvertisementFreeNetworksEntry OBJECT-TYPE + SYNTAX LcsSetupPublicSpotModuleAdvertisementFreeNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPublicSpotModuleAdvertisementFreeNetworksEntryHostName + } + ::= { lcsSetupPublicSpotModuleAdvertisementFreeNetworksTable 1 } + +LcsSetupPublicSpotModuleAdvertisementFreeNetworksEntry ::= SEQUENCE { + lcsSetupPublicSpotModuleAdvertisementFreeNetworksEntryHostName DisplayString, + lcsSetupPublicSpotModuleAdvertisementFreeNetworksEntryMask IpAddress + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.43.6.1.1 +lcsSetupPublicSpotModuleAdvertisementFreeNetworksEntryHostName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAdvertisementFreeNetworksEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.43.6.1.2 +lcsSetupPublicSpotModuleAdvertisementFreeNetworksEntryMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAdvertisementFreeNetworksEntry 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.24.50 +lcsSetupPublicSpotModuleAutoReLogin OBJECT IDENTIFIER ::= { lcsSetupPublicSpotModule 50 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.50.1 +lcsSetupPublicSpotModuleAutoReLoginOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAutoReLogin 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.50.2 +lcsSetupPublicSpotModuleAutoReLoginStationTableLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAutoReLogin 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.24.50.3 +lcsSetupPublicSpotModuleAutoReLoginExistTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleAutoReLogin 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.24.60 +lcsSetupPublicSpotModuleLoginTextTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPublicSpotModuleLoginTextEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModule 60 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.24.60.1 +lcsSetupPublicSpotModuleLoginTextEntry OBJECT-TYPE + SYNTAX LcsSetupPublicSpotModuleLoginTextEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPublicSpotModuleLoginTextEntryLanguage + } + ::= { lcsSetupPublicSpotModuleLoginTextTable 1 } + +LcsSetupPublicSpotModuleLoginTextEntry ::= SEQUENCE { + lcsSetupPublicSpotModuleLoginTextEntryLanguage INTEGER, + lcsSetupPublicSpotModuleLoginTextEntryContent DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.60.1.1 +lcsSetupPublicSpotModuleLoginTextEntryLanguage OBJECT-TYPE + SYNTAX INTEGER { + eGerman (1), + eEnglish (2), + eFrench (3), + eItalian (4), + eSpanish (5), + eDutch (6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleLoginTextEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.24.60.1.2 +lcsSetupPublicSpotModuleLoginTextEntryContent OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPublicSpotModuleLoginTextEntry 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.25 +lcsSetupRadius OBJECT IDENTIFIER ::= { lcsSetup 25 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.4 +lcsSetupRadiusAuthTimeout OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadius 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.5 +lcsSetupRadiusAuthRetry OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadius 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.9 +lcsSetupRadiusBackupQueryStrategy OBJECT-TYPE + SYNTAX INTEGER { + eBlock (0), + eCyclic (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadius 9 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.25.10 +lcsSetupRadiusServer OBJECT IDENTIFIER ::= { lcsSetupRadius 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.10.1 +lcsSetupRadiusServerAuthentificationPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServer 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.25.10.2 +lcsSetupRadiusServerClientsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupRadiusServerClientsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServer 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.25.10.2.1 +lcsSetupRadiusServerClientsEntry OBJECT-TYPE + SYNTAX LcsSetupRadiusServerClientsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupRadiusServerClientsEntryIpNetwork, + lcsSetupRadiusServerClientsEntryIpNetmask + } + ::= { lcsSetupRadiusServerClientsTable 1 } + +LcsSetupRadiusServerClientsEntry ::= SEQUENCE { + lcsSetupRadiusServerClientsEntryIpNetwork IpAddress, + lcsSetupRadiusServerClientsEntrySecret DisplayString, + lcsSetupRadiusServerClientsEntryIpNetmask IpAddress, + lcsSetupRadiusServerClientsEntryProtocols INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.2.1.1 +lcsSetupRadiusServerClientsEntryIpNetwork OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerClientsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.2.1.2 +lcsSetupRadiusServerClientsEntrySecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerClientsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.2.1.3 +lcsSetupRadiusServerClientsEntryIpNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerClientsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.2.1.4 +lcsSetupRadiusServerClientsEntryProtocols OBJECT-TYPE + SYNTAX INTEGER { + eRadius (0), + eRadsec (1), + eAll (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerClientsEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.25.10.3 +lcsSetupRadiusServerForwardServersTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupRadiusServerForwardServersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServer 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.25.10.3.1 +lcsSetupRadiusServerForwardServersEntry OBJECT-TYPE + SYNTAX LcsSetupRadiusServerForwardServersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupRadiusServerForwardServersEntryRealm + } + ::= { lcsSetupRadiusServerForwardServersTable 1 } + +LcsSetupRadiusServerForwardServersEntry ::= SEQUENCE { + lcsSetupRadiusServerForwardServersEntryRealm DisplayString, + lcsSetupRadiusServerForwardServersEntryIpAddress IpAddress, + lcsSetupRadiusServerForwardServersEntryPort Integer32, + lcsSetupRadiusServerForwardServersEntrySecret DisplayString, + lcsSetupRadiusServerForwardServersEntryBackup DisplayString, + lcsSetupRadiusServerForwardServersEntryLoopbackAddr DisplayString, + lcsSetupRadiusServerForwardServersEntryProtocol INTEGER, + lcsSetupRadiusServerForwardServersEntryAccntIpAddress IpAddress, + lcsSetupRadiusServerForwardServersEntryAccntPort Integer32, + lcsSetupRadiusServerForwardServersEntryAccntSecret DisplayString, + lcsSetupRadiusServerForwardServersEntryAccntLoopbackAddr DisplayString, + lcsSetupRadiusServerForwardServersEntryAccntProtocol INTEGER, + lcsSetupRadiusServerForwardServersEntryHostname DisplayString, + lcsSetupRadiusServerForwardServersEntryAccntHostname DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.3.1.1 +lcsSetupRadiusServerForwardServersEntryRealm OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerForwardServersEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.3.1.2 +lcsSetupRadiusServerForwardServersEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerForwardServersEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.3.1.3 +lcsSetupRadiusServerForwardServersEntryPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerForwardServersEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.3.1.4 +lcsSetupRadiusServerForwardServersEntrySecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerForwardServersEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.3.1.5 +lcsSetupRadiusServerForwardServersEntryBackup OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerForwardServersEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.3.1.6 +lcsSetupRadiusServerForwardServersEntryLoopbackAddr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerForwardServersEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.3.1.7 +lcsSetupRadiusServerForwardServersEntryProtocol OBJECT-TYPE + SYNTAX INTEGER { + eRadius (0), + eRadsec (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerForwardServersEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.3.1.8 +lcsSetupRadiusServerForwardServersEntryAccntIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerForwardServersEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.3.1.9 +lcsSetupRadiusServerForwardServersEntryAccntPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerForwardServersEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.3.1.10 +lcsSetupRadiusServerForwardServersEntryAccntSecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerForwardServersEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.3.1.11 +lcsSetupRadiusServerForwardServersEntryAccntLoopbackAddr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerForwardServersEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.3.1.12 +lcsSetupRadiusServerForwardServersEntryAccntProtocol OBJECT-TYPE + SYNTAX INTEGER { + eRadius (0), + eRadsec (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerForwardServersEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.3.1.13 +lcsSetupRadiusServerForwardServersEntryHostname OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerForwardServersEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.3.1.14 +lcsSetupRadiusServerForwardServersEntryAccntHostname OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerForwardServersEntry 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.10.5 +lcsSetupRadiusServerDefaultRealm OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServer 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.10.6 +lcsSetupRadiusServerEmptyRealm OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServer 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.25.10.7 +lcsSetupRadiusServerUsersTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupRadiusServerUsersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServer 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.25.10.7.1 +lcsSetupRadiusServerUsersEntry OBJECT-TYPE + SYNTAX LcsSetupRadiusServerUsersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupRadiusServerUsersEntryUserName, + lcsSetupRadiusServerUsersEntryCallingStationIdMask, + lcsSetupRadiusServerUsersEntryCalledStationIdMask + } + ::= { lcsSetupRadiusServerUsersTable 1 } + +LcsSetupRadiusServerUsersEntry ::= SEQUENCE { + lcsSetupRadiusServerUsersEntryUserName DisplayString, + lcsSetupRadiusServerUsersEntryPassword DisplayString, + lcsSetupRadiusServerUsersEntryLimitAuthMethods BITS, + lcsSetupRadiusServerUsersEntryVlanId Integer32, + lcsSetupRadiusServerUsersEntryCallingStationIdMask DisplayString, + lcsSetupRadiusServerUsersEntryCalledStationIdMask DisplayString, + lcsSetupRadiusServerUsersEntryTxLimit Integer32, + lcsSetupRadiusServerUsersEntryRxLimit Integer32, + lcsSetupRadiusServerUsersEntryMultipleLogin INTEGER, + lcsSetupRadiusServerUsersEntryAbsExpiry DisplayString, + lcsSetupRadiusServerUsersEntryTimeBudget Integer32, + lcsSetupRadiusServerUsersEntryVolumeBudget Integer32, + lcsSetupRadiusServerUsersEntryExpiryType BITS, + lcsSetupRadiusServerUsersEntryRelExpiry Integer32, + lcsSetupRadiusServerUsersEntryComment DisplayString, + lcsSetupRadiusServerUsersEntryServiceType INTEGER, + lcsSetupRadiusServerUsersEntryCaseSensitive INTEGER, + lcsSetupRadiusServerUsersEntryWpaPassphrase DisplayString, + lcsSetupRadiusServerUsersEntryMaxConcurrentLogins Integer32, + lcsSetupRadiusServerUsersEntryActive INTEGER, + lcsSetupRadiusServerUsersEntryShellPrivLevel Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.7.1.1 +lcsSetupRadiusServerUsersEntryUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..48)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerUsersEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.7.1.2 +lcsSetupRadiusServerUsersEntryPassword OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerUsersEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.7.1.3 +lcsSetupRadiusServerUsersEntryLimitAuthMethods OBJECT-TYPE + SYNTAX BITS { + eAll (0), + eEap (11), + eMschapv2 (12), + eMschap (13), + eChap (14), + ePap (15) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerUsersEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.7.1.4 +lcsSetupRadiusServerUsersEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerUsersEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.7.1.5 +lcsSetupRadiusServerUsersEntryCallingStationIdMask OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerUsersEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.7.1.6 +lcsSetupRadiusServerUsersEntryCalledStationIdMask OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerUsersEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.7.1.7 +lcsSetupRadiusServerUsersEntryTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerUsersEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.7.1.8 +lcsSetupRadiusServerUsersEntryRxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerUsersEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.7.1.9 +lcsSetupRadiusServerUsersEntryMultipleLogin OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerUsersEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.7.1.10 +lcsSetupRadiusServerUsersEntryAbsExpiry OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..21)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerUsersEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.7.1.11 +lcsSetupRadiusServerUsersEntryTimeBudget OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerUsersEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.7.1.12 +lcsSetupRadiusServerUsersEntryVolumeBudget OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerUsersEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.7.1.13 +lcsSetupRadiusServerUsersEntryExpiryType OBJECT-TYPE + SYNTAX BITS { + eNone (0), + eRelative (6), + eAbsolute (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerUsersEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.7.1.14 +lcsSetupRadiusServerUsersEntryRelExpiry OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerUsersEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.7.1.15 +lcsSetupRadiusServerUsersEntryComment OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerUsersEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.7.1.16 +lcsSetupRadiusServerUsersEntryServiceType OBJECT-TYPE + SYNTAX INTEGER { + eAny (0), + eLogin (1), + eFramed (2), + eCallbackLogin (3), + eCallbackFramed (4), + eOutbound (5), + eAdministrative (6), + eNasPrompt (7), + eAuthOnly (8), + eCallbackNasPrompt (9), + eCallCheck (10), + eCallbackAdministrative (11), + eVoice (12), + eFax (13), + eModemRelay (14), + eAuthorizeOnly (17), + eFramedManagement (18) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerUsersEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.7.1.17 +lcsSetupRadiusServerUsersEntryCaseSensitive OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerUsersEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.7.1.18 +lcsSetupRadiusServerUsersEntryWpaPassphrase OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerUsersEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.7.1.19 +lcsSetupRadiusServerUsersEntryMaxConcurrentLogins OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerUsersEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.7.1.20 +lcsSetupRadiusServerUsersEntryActive OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerUsersEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.7.1.21 +lcsSetupRadiusServerUsersEntryShellPrivLevel OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerUsersEntry 21 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.25.10.10 +lcsSetupRadiusServerEap OBJECT IDENTIFIER ::= { lcsSetupRadiusServer 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.10.10.1 +lcsSetupRadiusServerEapTunnelServer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerEap 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.10.10.2 +lcsSetupRadiusServerEapTlsCheckUsername OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerEap 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.10.10.3 +lcsSetupRadiusServerEapReauthPeriod OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerEap 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.10.10.4 +lcsSetupRadiusServerEapRetransmitTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerEap 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.10.10.5 +lcsSetupRadiusServerEapTtlsDefaultTunnelMethod OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eMd5 (4), + eGtc (6), + eMschapv2 (26) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerEap 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.10.10.6 +lcsSetupRadiusServerEapPeapDefaultTunnelMethod OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eMd5 (4), + eGtc (6), + eMschapv2 (26) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerEap 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.10.10.7 +lcsSetupRadiusServerEapDefaultMethod OBJECT-TYPE + SYNTAX INTEGER { + eMd5 (4), + eGtc (6), + eTls (13), + eSim (18), + eTtls (21), + ePeap (25), + eMschapv2 (26) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerEap 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.10.10.8 +lcsSetupRadiusServerEapDefaultMtu OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServerEap 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.25.10.10.9 +lcsSetupRadiusServerEapAllowMethodsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupRadiusServerEapAllowMethodsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerEap 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.25.10.10.9.1 +lcsSetupRadiusServerEapAllowMethodsEntry OBJECT-TYPE + SYNTAX LcsSetupRadiusServerEapAllowMethodsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupRadiusServerEapAllowMethodsEntryMethod + } + ::= { lcsSetupRadiusServerEapAllowMethodsTable 1 } + +LcsSetupRadiusServerEapAllowMethodsEntry ::= SEQUENCE { + lcsSetupRadiusServerEapAllowMethodsEntryMethod INTEGER, + lcsSetupRadiusServerEapAllowMethodsEntryAllow INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.10.9.1.1 +lcsSetupRadiusServerEapAllowMethodsEntryMethod OBJECT-TYPE + SYNTAX INTEGER { + eMd5 (4), + eGtc (6), + eTls (13), + eSim (18), + eTtls (21), + ePeap (25), + eMschapv2 (26) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerEapAllowMethodsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.10.9.1.2 +lcsSetupRadiusServerEapAllowMethodsEntryAllow OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eOn (1), + eInternalOnly (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerEapAllowMethodsEntry 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.10.10.10 +lcsSetupRadiusServerEapMschapv2BackendServer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerEap 10 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.25.10.10.18 +lcsSetupRadiusServerEapEapSim OBJECT IDENTIFIER ::= { lcsSetupRadiusServerEap 18 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.25.10.10.18.1 +lcsSetupRadiusServerEapEapSimCardKeysTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupRadiusServerEapEapSimCardKeysEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerEapEapSim 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.25.10.10.18.1.1 +lcsSetupRadiusServerEapEapSimCardKeysEntry OBJECT-TYPE + SYNTAX LcsSetupRadiusServerEapEapSimCardKeysEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupRadiusServerEapEapSimCardKeysEntryUserName, + lcsSetupRadiusServerEapEapSimCardKeysEntryCallingStationIdMask, + lcsSetupRadiusServerEapEapSimCardKeysEntryCalledStationIdMask + } + ::= { lcsSetupRadiusServerEapEapSimCardKeysTable 1 } + +LcsSetupRadiusServerEapEapSimCardKeysEntry ::= SEQUENCE { + lcsSetupRadiusServerEapEapSimCardKeysEntryUserName DisplayString, + lcsSetupRadiusServerEapEapSimCardKeysEntryCallingStationIdMask DisplayString, + lcsSetupRadiusServerEapEapSimCardKeysEntryCalledStationIdMask DisplayString, + lcsSetupRadiusServerEapEapSimCardKeysEntryRand1 OCTET STRING, + lcsSetupRadiusServerEapEapSimCardKeysEntrySres1 OCTET STRING, + lcsSetupRadiusServerEapEapSimCardKeysEntryKc1 OCTET STRING, + lcsSetupRadiusServerEapEapSimCardKeysEntryRand2 OCTET STRING, + lcsSetupRadiusServerEapEapSimCardKeysEntrySres2 OCTET STRING, + lcsSetupRadiusServerEapEapSimCardKeysEntryKc2 OCTET STRING, + lcsSetupRadiusServerEapEapSimCardKeysEntryRand3 OCTET STRING, + lcsSetupRadiusServerEapEapSimCardKeysEntrySres3 OCTET STRING, + lcsSetupRadiusServerEapEapSimCardKeysEntryKc3 OCTET STRING + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.10.18.1.1.1 +lcsSetupRadiusServerEapEapSimCardKeysEntryUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..48)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerEapEapSimCardKeysEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.10.18.1.1.5 +lcsSetupRadiusServerEapEapSimCardKeysEntryCallingStationIdMask OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerEapEapSimCardKeysEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.10.18.1.1.6 +lcsSetupRadiusServerEapEapSimCardKeysEntryCalledStationIdMask OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerEapEapSimCardKeysEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.10.18.1.1.7 +lcsSetupRadiusServerEapEapSimCardKeysEntryRand1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerEapEapSimCardKeysEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.10.18.1.1.8 +lcsSetupRadiusServerEapEapSimCardKeysEntrySres1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerEapEapSimCardKeysEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.10.18.1.1.9 +lcsSetupRadiusServerEapEapSimCardKeysEntryKc1 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerEapEapSimCardKeysEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.10.18.1.1.10 +lcsSetupRadiusServerEapEapSimCardKeysEntryRand2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerEapEapSimCardKeysEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.10.18.1.1.11 +lcsSetupRadiusServerEapEapSimCardKeysEntrySres2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerEapEapSimCardKeysEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.10.18.1.1.12 +lcsSetupRadiusServerEapEapSimCardKeysEntryKc2 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerEapEapSimCardKeysEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.10.18.1.1.13 +lcsSetupRadiusServerEapEapSimCardKeysEntryRand3 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerEapEapSimCardKeysEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.10.18.1.1.14 +lcsSetupRadiusServerEapEapSimCardKeysEntrySres3 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerEapEapSimCardKeysEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.10.18.1.1.15 +lcsSetupRadiusServerEapEapSimCardKeysEntryKc3 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerEapEapSimCardKeysEntry 15 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.25.10.10.19 +lcsSetupRadiusServerEapEapTls OBJECT IDENTIFIER ::= { lcsSetupRadiusServerEap 19 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.10.10.19.3 +lcsSetupRadiusServerEapEapTlsKeyexAlgorithms OBJECT-TYPE + SYNTAX BITS { + eEcdhe (27), + eDhe (29), + eRsa (31) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerEapEapTls 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.10.10.19.4 +lcsSetupRadiusServerEapEapTlsCryptoAlgorithms OBJECT-TYPE + SYNTAX BITS { + eAesgcm256 (20), + eAesgcm128 (21), + eAes256 (22), + eAes128 (23), + e3des (24), + eDes (25), + eDes40 (26), + eRc4128 (27), + eRc456 (28), + eRc440 (29) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerEapEapTls 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.10.10.19.5 +lcsSetupRadiusServerEapEapTlsHashAlgorithms OBJECT-TYPE + SYNTAX BITS { + eSha2384 (26), + eSha2256 (27), + eSha1 (29), + eMd5 (30) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerEapEapTls 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.10.10.19.10 +lcsSetupRadiusServerEapEapTlsCheckUsername OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerEapEapTls 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.10.11 +lcsSetupRadiusServerAccountingPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServer 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.10.12 +lcsSetupRadiusServerAccountingInterimInterval OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServer 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.10.13 +lcsSetupRadiusServerRadsecPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServer 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.10.14 +lcsSetupRadiusServerAutoCleanupUserTable OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServer 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.10.15 +lcsSetupRadiusServerAllowStatusRequests OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupRadiusServer 15 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.25.10.16 +lcsSetupRadiusServerIpv6ClientsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupRadiusServerIpv6ClientsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServer 16 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.25.10.16.1 +lcsSetupRadiusServerIpv6ClientsEntry OBJECT-TYPE + SYNTAX LcsSetupRadiusServerIpv6ClientsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupRadiusServerIpv6ClientsEntryAddressPrefixlength + } + ::= { lcsSetupRadiusServerIpv6ClientsTable 1 } + +LcsSetupRadiusServerIpv6ClientsEntry ::= SEQUENCE { + lcsSetupRadiusServerIpv6ClientsEntryAddressPrefixlength DisplayString, + lcsSetupRadiusServerIpv6ClientsEntrySecret DisplayString, + lcsSetupRadiusServerIpv6ClientsEntryProtocols INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.16.1.1 +lcsSetupRadiusServerIpv6ClientsEntryAddressPrefixlength OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..43)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerIpv6ClientsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.16.1.2 +lcsSetupRadiusServerIpv6ClientsEntrySecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerIpv6ClientsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.25.10.16.1.4 +lcsSetupRadiusServerIpv6ClientsEntryProtocols OBJECT-TYPE + SYNTAX INTEGER { + eRadius (0), + eRadsec (1), + eAll (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusServerIpv6ClientsEntry 4 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.25.20 +lcsSetupRadiusRadsec OBJECT IDENTIFIER ::= { lcsSetupRadius 20 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.20.1 +lcsSetupRadiusRadsecVersions OBJECT-TYPE + SYNTAX BITS { + eTlsv12 (28), + eTlsv11 (29), + eTlsv1 (30), + eSslv3 (31) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusRadsec 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.20.2 +lcsSetupRadiusRadsecKeyexAlgorithms OBJECT-TYPE + SYNTAX BITS { + eEcdhe (27), + eDhe (29), + eRsa (31) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusRadsec 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.20.3 +lcsSetupRadiusRadsecCryptoAlgorithms OBJECT-TYPE + SYNTAX BITS { + eAesgcm256 (20), + eAesgcm128 (21), + eAes256 (22), + eAes128 (23), + e3des (24), + eDes (25), + eDes40 (26), + eRc4128 (27), + eRc456 (28), + eRc440 (29) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusRadsec 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.25.20.4 +lcsSetupRadiusRadsecHashAlgorithms OBJECT-TYPE + SYNTAX BITS { + eSha2384 (26), + eSha2256 (27), + eSha1 (29), + eMd5 (30) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupRadiusRadsec 4 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.26 +lcsSetupNtp OBJECT IDENTIFIER ::= { lcsSetup 26 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.26.2 +lcsSetupNtpServerOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNtp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.26.3 +lcsSetupNtpBcMode OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNtp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.26.4 +lcsSetupNtpBcInterval OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNtp 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.26.7 +lcsSetupNtpRqInterval OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNtp 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.26.11 +lcsSetupNtpRqAddressTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupNtpRqAddressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNtp 11 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.26.11.1 +lcsSetupNtpRqAddressEntry OBJECT-TYPE + SYNTAX LcsSetupNtpRqAddressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupNtpRqAddressEntryRqAddress + } + ::= { lcsSetupNtpRqAddressTable 1 } + +LcsSetupNtpRqAddressEntry ::= SEQUENCE { + lcsSetupNtpRqAddressEntryRqAddress DisplayString, + lcsSetupNtpRqAddressEntryLoopbackAddr DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.26.11.1.1 +lcsSetupNtpRqAddressEntryRqAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNtpRqAddressEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.26.11.1.2 +lcsSetupNtpRqAddressEntryLoopbackAddr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNtpRqAddressEntry 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.26.12 +lcsSetupNtpRqTries OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupNtp 12 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.27 +lcsSetupMail OBJECT IDENTIFIER ::= { lcsSetup 27 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.27.1 +lcsSetupMailSmtpServer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupMail 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.27.2 +lcsSetupMailSmtpPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupMail 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.27.3 +lcsSetupMailPop3Server OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupMail 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.27.4 +lcsSetupMailPop3Port OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupMail 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.27.5 +lcsSetupMailUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupMail 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.27.6 +lcsSetupMailPassword OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupMail 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.27.7 +lcsSetupMailEMailSender OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupMail 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.27.8 +lcsSetupMailSendAgainMin OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupMail 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.27.9 +lcsSetupMailHoldTimeHrs OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupMail 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.27.10 +lcsSetupMailBuffers OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupMail 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.27.11 +lcsSetupMailLoopbackAddr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupMail 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.27.12 +lcsSetupMailSmtpUseTls OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + ePreferred (2), + eRequired (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupMail 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.27.13 +lcsSetupMailSmtpAuthentication OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + ePlainTextPreferred (1), + eEncrypted (2), + ePreferredEncrypted (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupMail 13 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.30 +lcsSetupIeee8021x OBJECT IDENTIFIER ::= { lcsSetup 30 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.30.3 +lcsSetupIeee8021xRadiusServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIeee8021xRadiusServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIeee8021x 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.30.3.1 +lcsSetupIeee8021xRadiusServerEntry OBJECT-TYPE + SYNTAX LcsSetupIeee8021xRadiusServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIeee8021xRadiusServerEntryName + } + ::= { lcsSetupIeee8021xRadiusServerTable 1 } + +LcsSetupIeee8021xRadiusServerEntry ::= SEQUENCE { + lcsSetupIeee8021xRadiusServerEntryName DisplayString, + lcsSetupIeee8021xRadiusServerEntryIpAddress IpAddress, + lcsSetupIeee8021xRadiusServerEntryPort Integer32, + lcsSetupIeee8021xRadiusServerEntrySecret DisplayString, + lcsSetupIeee8021xRadiusServerEntryBackup DisplayString, + lcsSetupIeee8021xRadiusServerEntryLoopbackAddr DisplayString, + lcsSetupIeee8021xRadiusServerEntryProtocol INTEGER, + lcsSetupIeee8021xRadiusServerEntryHostName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.30.3.1.1 +lcsSetupIeee8021xRadiusServerEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIeee8021xRadiusServerEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.30.3.1.2 +lcsSetupIeee8021xRadiusServerEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIeee8021xRadiusServerEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.30.3.1.3 +lcsSetupIeee8021xRadiusServerEntryPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIeee8021xRadiusServerEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.30.3.1.4 +lcsSetupIeee8021xRadiusServerEntrySecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIeee8021xRadiusServerEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.30.3.1.5 +lcsSetupIeee8021xRadiusServerEntryBackup OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIeee8021xRadiusServerEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.30.3.1.6 +lcsSetupIeee8021xRadiusServerEntryLoopbackAddr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIeee8021xRadiusServerEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.30.3.1.7 +lcsSetupIeee8021xRadiusServerEntryProtocol OBJECT-TYPE + SYNTAX INTEGER { + eRadius (0), + eRadsec (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIeee8021xRadiusServerEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.30.3.1.8 +lcsSetupIeee8021xRadiusServerEntryHostName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee8021xRadiusServerEntry 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.30.4 +lcsSetupIeee8021xPortsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIeee8021xPortsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIeee8021x 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.30.4.1 +lcsSetupIeee8021xPortsEntry OBJECT-TYPE + SYNTAX LcsSetupIeee8021xPortsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIeee8021xPortsEntryPort + } + ::= { lcsSetupIeee8021xPortsTable 1 } + +LcsSetupIeee8021xPortsEntry ::= SEQUENCE { + lcsSetupIeee8021xPortsEntryPort DisplayString, + lcsSetupIeee8021xPortsEntryPortControl INTEGER, + lcsSetupIeee8021xPortsEntryReAuthMax Integer32, + lcsSetupIeee8021xPortsEntryMaxReq Integer32, + lcsSetupIeee8021xPortsEntryTxPeriod Integer32, + lcsSetupIeee8021xPortsEntrySuppTimeout Integer32, + lcsSetupIeee8021xPortsEntryServerTimeout Integer32, + lcsSetupIeee8021xPortsEntryQuietPeriod Integer32, + lcsSetupIeee8021xPortsEntryReAuthentication INTEGER, + lcsSetupIeee8021xPortsEntryReAuthInterval Integer32, + lcsSetupIeee8021xPortsEntryKeyTransmission INTEGER, + lcsSetupIeee8021xPortsEntryKeyTxInterval Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.30.4.1.2 +lcsSetupIeee8021xPortsEntryPort OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..18)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIeee8021xPortsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.30.4.1.3 +lcsSetupIeee8021xPortsEntryPortControl OBJECT-TYPE + SYNTAX INTEGER { + eForceUnauth (0), + eForceAuth (1), + eAuto (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIeee8021xPortsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.30.4.1.4 +lcsSetupIeee8021xPortsEntryReAuthMax OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIeee8021xPortsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.30.4.1.5 +lcsSetupIeee8021xPortsEntryMaxReq OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIeee8021xPortsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.30.4.1.6 +lcsSetupIeee8021xPortsEntryTxPeriod OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIeee8021xPortsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.30.4.1.7 +lcsSetupIeee8021xPortsEntrySuppTimeout OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIeee8021xPortsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.30.4.1.8 +lcsSetupIeee8021xPortsEntryServerTimeout OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIeee8021xPortsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.30.4.1.9 +lcsSetupIeee8021xPortsEntryQuietPeriod OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIeee8021xPortsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.30.4.1.10 +lcsSetupIeee8021xPortsEntryReAuthentication OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIeee8021xPortsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.30.4.1.11 +lcsSetupIeee8021xPortsEntryReAuthInterval OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIeee8021xPortsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.30.4.1.12 +lcsSetupIeee8021xPortsEntryKeyTransmission OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIeee8021xPortsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.30.4.1.13 +lcsSetupIeee8021xPortsEntryKeyTxInterval OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIeee8021xPortsEntry 13 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.31 +lcsSetupPppoeServer OBJECT IDENTIFIER ::= { lcsSetup 31 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.31.1 +lcsSetupPppoeServerOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPppoeServer 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.31.2 +lcsSetupPppoeServerNameListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPppoeServerNameListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPppoeServer 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.31.2.1 +lcsSetupPppoeServerNameListEntry OBJECT-TYPE + SYNTAX LcsSetupPppoeServerNameListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPppoeServerNameListEntryPeer + } + ::= { lcsSetupPppoeServerNameListTable 1 } + +LcsSetupPppoeServerNameListEntry ::= SEQUENCE { + lcsSetupPppoeServerNameListEntryPeer DisplayString, + lcsSetupPppoeServerNameListEntryShTime Integer32, + lcsSetupPppoeServerNameListEntryMacAddress DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.31.2.1.1 +lcsSetupPppoeServerNameListEntryPeer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPppoeServerNameListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.31.2.1.2 +lcsSetupPppoeServerNameListEntryShTime OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPppoeServerNameListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.31.2.1.3 +lcsSetupPppoeServerNameListEntryMacAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPppoeServerNameListEntry 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.31.3 +lcsSetupPppoeServerService OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPppoeServer 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.31.4 +lcsSetupPppoeServerSessionLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPppoeServer 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.31.5 +lcsSetupPppoeServerPortsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPppoeServerPortsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPppoeServer 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.31.5.1 +lcsSetupPppoeServerPortsEntry OBJECT-TYPE + SYNTAX LcsSetupPppoeServerPortsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPppoeServerPortsEntryPort + } + ::= { lcsSetupPppoeServerPortsTable 1 } + +LcsSetupPppoeServerPortsEntry ::= SEQUENCE { + lcsSetupPppoeServerPortsEntryPort DisplayString, + lcsSetupPppoeServerPortsEntryEnablePppoe INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.31.5.1.2 +lcsSetupPppoeServerPortsEntryPort OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..18)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPppoeServerPortsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.31.5.1.3 +lcsSetupPppoeServerPortsEntryEnablePppoe OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPppoeServerPortsEntry 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.31.6 +lcsSetupPppoeServerAcName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPppoeServer 6 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.32 +lcsSetupVlan OBJECT IDENTIFIER ::= { lcsSetup 32 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.32.1 +lcsSetupVlanNetworksTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupVlanNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVlan 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.32.1.1 +lcsSetupVlanNetworksEntry OBJECT-TYPE + SYNTAX LcsSetupVlanNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupVlanNetworksEntryName + } + ::= { lcsSetupVlanNetworksTable 1 } + +LcsSetupVlanNetworksEntry ::= SEQUENCE { + lcsSetupVlanNetworksEntryName DisplayString, + lcsSetupVlanNetworksEntryVlanId Integer32, + lcsSetupVlanNetworksEntryPorts DisplayString, + lcsSetupVlanNetworksEntryLldpTxTlvPpid DisplayString, + lcsSetupVlanNetworksEntryLldpTxTlvName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.32.1.1.1 +lcsSetupVlanNetworksEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVlanNetworksEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.32.1.1.2 +lcsSetupVlanNetworksEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVlanNetworksEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.32.1.1.4 +lcsSetupVlanNetworksEntryPorts OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVlanNetworksEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.32.1.1.5 +lcsSetupVlanNetworksEntryLldpTxTlvPpid OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupVlanNetworksEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.32.1.1.6 +lcsSetupVlanNetworksEntryLldpTxTlvName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupVlanNetworksEntry 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.32.2 +lcsSetupVlanPortTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupVlanPortTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVlan 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.32.2.1 +lcsSetupVlanPortTableEntry OBJECT-TYPE + SYNTAX LcsSetupVlanPortTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupVlanPortTableEntryPort + } + ::= { lcsSetupVlanPortTableTable 1 } + +LcsSetupVlanPortTableEntry ::= SEQUENCE { + lcsSetupVlanPortTableEntryPort DisplayString, + lcsSetupVlanPortTableEntryAllowAllVlans INTEGER, + lcsSetupVlanPortTableEntryPortVlanId Integer32, + lcsSetupVlanPortTableEntryTaggingMode INTEGER, + lcsSetupVlanPortTableEntryTxLldpTlvPortVlan INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.32.2.1.1 +lcsSetupVlanPortTableEntryPort OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..18)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVlanPortTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.32.2.1.4 +lcsSetupVlanPortTableEntryAllowAllVlans OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVlanPortTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.32.2.1.5 +lcsSetupVlanPortTableEntryPortVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVlanPortTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.32.2.1.6 +lcsSetupVlanPortTableEntryTaggingMode OBJECT-TYPE + SYNTAX INTEGER { + eIngressMixed (0), + eNever (1), + eMixed (2), + eAlways (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVlanPortTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.32.2.1.7 +lcsSetupVlanPortTableEntryTxLldpTlvPortVlan OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupVlanPortTableEntry 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.32.4 +lcsSetupVlanOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVlan 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.32.5 +lcsSetupVlanTagValue OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..4)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupVlan 5 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.34 +lcsSetupPrinter OBJECT IDENTIFIER ::= { lcsSetup 34 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.34.1 +lcsSetupPrinterPrinterTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPrinterPrinterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPrinter 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.34.1.1 +lcsSetupPrinterPrinterEntry OBJECT-TYPE + SYNTAX LcsSetupPrinterPrinterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPrinterPrinterEntryPrinter + } + ::= { lcsSetupPrinterPrinterTable 1 } + +LcsSetupPrinterPrinterEntry ::= SEQUENCE { + lcsSetupPrinterPrinterEntryPrinter DisplayString, + lcsSetupPrinterPrinterEntryRawipPort Integer32, + lcsSetupPrinterPrinterEntryLpdPort Integer32, + lcsSetupPrinterPrinterEntryActiv INTEGER, + lcsSetupPrinterPrinterEntryBidirectional INTEGER, + lcsSetupPrinterPrinterEntryResetOnOpen INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.34.1.1.1 +lcsSetupPrinterPrinterEntryPrinter OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPrinterPrinterEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.34.1.1.2 +lcsSetupPrinterPrinterEntryRawipPort OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPrinterPrinterEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.34.1.1.3 +lcsSetupPrinterPrinterEntryLpdPort OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPrinterPrinterEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.34.1.1.4 +lcsSetupPrinterPrinterEntryActiv OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPrinterPrinterEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.34.1.1.5 +lcsSetupPrinterPrinterEntryBidirectional OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPrinterPrinterEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.34.1.1.6 +lcsSetupPrinterPrinterEntryResetOnOpen OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPrinterPrinterEntry 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.34.2 +lcsSetupPrinterAccessListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPrinterAccessListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPrinter 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.34.2.1 +lcsSetupPrinterAccessListEntry OBJECT-TYPE + SYNTAX LcsSetupPrinterAccessListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPrinterAccessListEntryIpAddress, + lcsSetupPrinterAccessListEntryIpNetmask, + lcsSetupPrinterAccessListEntryRtgTag + } + ::= { lcsSetupPrinterAccessListTable 1 } + +LcsSetupPrinterAccessListEntry ::= SEQUENCE { + lcsSetupPrinterAccessListEntryIpAddress IpAddress, + lcsSetupPrinterAccessListEntryIpNetmask IpAddress, + lcsSetupPrinterAccessListEntryRtgTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.34.2.1.1 +lcsSetupPrinterAccessListEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPrinterAccessListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.34.2.1.2 +lcsSetupPrinterAccessListEntryIpNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPrinterAccessListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.34.2.1.3 +lcsSetupPrinterAccessListEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPrinterAccessListEntry 3 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.35 +lcsSetupEchoServer OBJECT IDENTIFIER ::= { lcsSetup 35 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.35.1 +lcsSetupEchoServerOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupEchoServer 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.35.2 +lcsSetupEchoServerAccessTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupEchoServerAccessTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupEchoServer 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.35.2.1 +lcsSetupEchoServerAccessTableEntry OBJECT-TYPE + SYNTAX LcsSetupEchoServerAccessTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupEchoServerAccessTableEntryIpAddress, + lcsSetupEchoServerAccessTableEntryNetmask + } + ::= { lcsSetupEchoServerAccessTableTable 1 } + +LcsSetupEchoServerAccessTableEntry ::= SEQUENCE { + lcsSetupEchoServerAccessTableEntryIpAddress IpAddress, + lcsSetupEchoServerAccessTableEntryNetmask IpAddress, + lcsSetupEchoServerAccessTableEntryProtokoll INTEGER, + lcsSetupEchoServerAccessTableEntryActive INTEGER, + lcsSetupEchoServerAccessTableEntryComment DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.35.2.1.1 +lcsSetupEchoServerAccessTableEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupEchoServerAccessTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.35.2.1.2 +lcsSetupEchoServerAccessTableEntryNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupEchoServerAccessTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.35.2.1.3 +lcsSetupEchoServerAccessTableEntryProtokoll OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eTcp (1), + eUdp (2), + eTcpPlusUdp (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupEchoServerAccessTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.35.2.1.4 +lcsSetupEchoServerAccessTableEntryActive OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupEchoServerAccessTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.35.2.1.5 +lcsSetupEchoServerAccessTableEntryComment OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupEchoServerAccessTableEntry 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.35.3 +lcsSetupEchoServerTcpTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupEchoServer 3 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.36 +lcsSetupPerfmon OBJECT IDENTIFIER ::= { lcsSetup 36 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.36.2 +lcsSetupPerfmonRttmonadminTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPerfmonRttmonadminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmon 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.36.2.1 +lcsSetupPerfmonRttmonadminEntry OBJECT-TYPE + SYNTAX LcsSetupPerfmonRttmonadminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPerfmonRttmonadminEntryIndex + } + ::= { lcsSetupPerfmonRttmonadminTable 1 } + +LcsSetupPerfmonRttmonadminEntry ::= SEQUENCE { + lcsSetupPerfmonRttmonadminEntryIndex Integer32, + lcsSetupPerfmonRttmonadminEntryType INTEGER, + lcsSetupPerfmonRttmonadminEntryFrequency Integer32, + lcsSetupPerfmonRttmonadminEntryTimeout Integer32, + lcsSetupPerfmonRttmonadminEntryStatus INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.2.1.1 +lcsSetupPerfmonRttmonadminEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonadminEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.2.1.4 +lcsSetupPerfmonRttmonadminEntryType OBJECT-TYPE + SYNTAX INTEGER { + eJitter (9) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonadminEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.2.1.6 +lcsSetupPerfmonRttmonadminEntryFrequency OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonadminEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.2.1.7 +lcsSetupPerfmonRttmonadminEntryTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonadminEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.2.1.9 +lcsSetupPerfmonRttmonadminEntryStatus OBJECT-TYPE + SYNTAX INTEGER { + eActive (1), + eNotInService (2), + eNotReady (3), + eCreate (5), + eDestroy (6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonadminEntry 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.36.3 +lcsSetupPerfmonRttmonechoadminTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPerfmonRttmonechoadminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmon 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.36.3.1 +lcsSetupPerfmonRttmonechoadminEntry OBJECT-TYPE + SYNTAX LcsSetupPerfmonRttmonechoadminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPerfmonRttmonechoadminEntryIndex + } + ::= { lcsSetupPerfmonRttmonechoadminTable 1 } + +LcsSetupPerfmonRttmonechoadminEntry ::= SEQUENCE { + lcsSetupPerfmonRttmonechoadminEntryProtocol INTEGER, + lcsSetupPerfmonRttmonechoadminEntryDestinationAddress IpAddress, + lcsSetupPerfmonRttmonechoadminEntryPacketSize Integer32, + lcsSetupPerfmonRttmonechoadminEntryDestinationPort Integer32, + lcsSetupPerfmonRttmonechoadminEntryInterval Integer32, + lcsSetupPerfmonRttmonechoadminEntryPacketCount Integer32, + lcsSetupPerfmonRttmonechoadminEntryIndex Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.3.1.1 +lcsSetupPerfmonRttmonechoadminEntryProtocol OBJECT-TYPE + SYNTAX INTEGER { + eEcho (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonechoadminEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.3.1.2 +lcsSetupPerfmonRttmonechoadminEntryDestinationAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonechoadminEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.3.1.3 +lcsSetupPerfmonRttmonechoadminEntryPacketSize OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonechoadminEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.3.1.5 +lcsSetupPerfmonRttmonechoadminEntryDestinationPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonechoadminEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.3.1.17 +lcsSetupPerfmonRttmonechoadminEntryInterval OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonechoadminEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.3.1.18 +lcsSetupPerfmonRttmonechoadminEntryPacketCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonechoadminEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.3.1.255 +lcsSetupPerfmonRttmonechoadminEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonechoadminEntry 255 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.36.4 +lcsSetupPerfmonRttmonstatisticsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPerfmonRttmonstatisticsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmon 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.36.4.1 +lcsSetupPerfmonRttmonstatisticsEntry OBJECT-TYPE + SYNTAX LcsSetupPerfmonRttmonstatisticsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPerfmonRttmonstatisticsEntryIndex + } + ::= { lcsSetupPerfmonRttmonstatisticsTable 1 } + +LcsSetupPerfmonRttmonstatisticsEntry ::= SEQUENCE { + lcsSetupPerfmonRttmonstatisticsEntryCompletions Integer32, + lcsSetupPerfmonRttmonstatisticsEntryRttCount Integer32, + lcsSetupPerfmonRttmonstatisticsEntryRttSum Integer32, + lcsSetupPerfmonRttmonstatisticsEntryRttMin Integer32, + lcsSetupPerfmonRttmonstatisticsEntryRttMax Integer32, + lcsSetupPerfmonRttmonstatisticsEntryJitterMinPosSd Integer32, + lcsSetupPerfmonRttmonstatisticsEntryJitterMaxPosSd Integer32, + lcsSetupPerfmonRttmonstatisticsEntryJitterCountPosSd Integer32, + lcsSetupPerfmonRttmonstatisticsEntryJitterSumPosSd Integer32, + lcsSetupPerfmonRttmonstatisticsEntryJitterMinPosDs Integer32, + lcsSetupPerfmonRttmonstatisticsEntryJitterMaxPosDs Integer32, + lcsSetupPerfmonRttmonstatisticsEntryJitterCountPosDs Integer32, + lcsSetupPerfmonRttmonstatisticsEntryJitterSumPosDs Integer32, + lcsSetupPerfmonRttmonstatisticsEntryJitterMinNegSd Integer32, + lcsSetupPerfmonRttmonstatisticsEntryJitterMaxNegSd Integer32, + lcsSetupPerfmonRttmonstatisticsEntryJitterCountNegSd Integer32, + lcsSetupPerfmonRttmonstatisticsEntryJitterSumNegSd Integer32, + lcsSetupPerfmonRttmonstatisticsEntryJitterMinNegDs Integer32, + lcsSetupPerfmonRttmonstatisticsEntryJitterMaxNegDs Integer32, + lcsSetupPerfmonRttmonstatisticsEntryJitterCountNegDs Integer32, + lcsSetupPerfmonRttmonstatisticsEntryJitterSumNegDs Integer32, + lcsSetupPerfmonRttmonstatisticsEntryPacketLossSd Integer32, + lcsSetupPerfmonRttmonstatisticsEntryPacketLossDs Integer32, + lcsSetupPerfmonRttmonstatisticsEntryAverageJitter Integer32, + lcsSetupPerfmonRttmonstatisticsEntryAverageJitterSd Integer32, + lcsSetupPerfmonRttmonstatisticsEntryAverageJitterDs Integer32, + lcsSetupPerfmonRttmonstatisticsEntryIndex Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.2 +lcsSetupPerfmonRttmonstatisticsEntryCompletions OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.4 +lcsSetupPerfmonRttmonstatisticsEntryRttCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.5 +lcsSetupPerfmonRttmonstatisticsEntryRttSum OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.8 +lcsSetupPerfmonRttmonstatisticsEntryRttMin OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.9 +lcsSetupPerfmonRttmonstatisticsEntryRttMax OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.10 +lcsSetupPerfmonRttmonstatisticsEntryJitterMinPosSd OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.11 +lcsSetupPerfmonRttmonstatisticsEntryJitterMaxPosSd OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.12 +lcsSetupPerfmonRttmonstatisticsEntryJitterCountPosSd OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.13 +lcsSetupPerfmonRttmonstatisticsEntryJitterSumPosSd OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.16 +lcsSetupPerfmonRttmonstatisticsEntryJitterMinPosDs OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.17 +lcsSetupPerfmonRttmonstatisticsEntryJitterMaxPosDs OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.18 +lcsSetupPerfmonRttmonstatisticsEntryJitterCountPosDs OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.19 +lcsSetupPerfmonRttmonstatisticsEntryJitterSumPosDs OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.22 +lcsSetupPerfmonRttmonstatisticsEntryJitterMinNegSd OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.23 +lcsSetupPerfmonRttmonstatisticsEntryJitterMaxNegSd OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.24 +lcsSetupPerfmonRttmonstatisticsEntryJitterCountNegSd OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 24 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.25 +lcsSetupPerfmonRttmonstatisticsEntryJitterSumNegSd OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 25 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.28 +lcsSetupPerfmonRttmonstatisticsEntryJitterMinNegDs OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 28 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.29 +lcsSetupPerfmonRttmonstatisticsEntryJitterMaxNegDs OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 29 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.30 +lcsSetupPerfmonRttmonstatisticsEntryJitterCountNegDs OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 30 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.31 +lcsSetupPerfmonRttmonstatisticsEntryJitterSumNegDs OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 31 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.34 +lcsSetupPerfmonRttmonstatisticsEntryPacketLossSd OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 34 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.35 +lcsSetupPerfmonRttmonstatisticsEntryPacketLossDs OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 35 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.62 +lcsSetupPerfmonRttmonstatisticsEntryAverageJitter OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 62 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.63 +lcsSetupPerfmonRttmonstatisticsEntryAverageJitterSd OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 63 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.64 +lcsSetupPerfmonRttmonstatisticsEntryAverageJitterDs OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 64 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.36.4.1.255 +lcsSetupPerfmonRttmonstatisticsEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupPerfmonRttmonstatisticsEntry 255 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.37 +lcsSetupWlanMngmt OBJECT IDENTIFIER ::= { lcsSetup 37 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.37.1 +lcsSetupWlanMngmtApConf OBJECT IDENTIFIER ::= { lcsSetupWlanMngmt 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.1.1 +lcsSetupWlanMngmtApConfNetwprofilsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtApConfNetwprofilsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "network profiles" + ::= { lcsSetupWlanMngmtApConf 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.1.1.1 +lcsSetupWlanMngmtApConfNetwprofilsEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtApConfNetwprofilsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtApConfNetwprofilsEntryName + } + ::= { lcsSetupWlanMngmtApConfNetwprofilsTable 1 } + +LcsSetupWlanMngmtApConfNetwprofilsEntry ::= SEQUENCE { + lcsSetupWlanMngmtApConfNetwprofilsEntryName DisplayString, + lcsSetupWlanMngmtApConfNetwprofilsEntryParentName DisplayString, + lcsSetupWlanMngmtApConfNetwprofilsEntryLocVal DisplayString, + lcsSetupWlanMngmtApConfNetwprofilsEntryOperating INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntryVlanId Integer32, + lcsSetupWlanMngmtApConfNetwprofilsEntryEncryption INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntryWpa1SessionKeytypes INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntryWpaVersion INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntryKey DisplayString, + lcsSetupWlanMngmtApConfNetwprofilsEntryRadioBand INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntryContinuation Integer32, + lcsSetupWlanMngmtApConfNetwprofilsEntryMinTxRate INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntryMaxTxRate INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntryBasicRate INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntry11bPreamble INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntryMacFilter INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntryClBrgSupport INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntryMaxStations Integer32, + lcsSetupWlanMngmtApConfNetwprofilsEntrySsidBroadcast INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntrySsid DisplayString, + lcsSetupWlanMngmtApConfNetwprofilsEntryMinHtMcs INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntryMaxHtMcs INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntryShortGuardInterval INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntryMaxSpatialStreams INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntrySendAggregates INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntryWpa2SessionKeytypes INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntryRadiusAccounting INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntryVlanMode INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntryConnectSsidTo INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntryInterStationTraffic INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntryVlanIdnew Integer32, + lcsSetupWlanMngmtApConfNetwprofilsEntryRadiusProfile DisplayString, + lcsSetupWlanMngmtApConfNetwprofilsEntryStbcActivated INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntryLdpcActivated INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntryMinClientStrength Integer32, + lcsSetupWlanMngmtApConfNetwprofilsEntryIeee80211uNetworkProfile DisplayString, + lcsSetupWlanMngmtApConfNetwprofilsEntryOkc INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntryWpa2KeyManagement BITS, + lcsSetupWlanMngmtApConfNetwprofilsEntryApsd INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntryProtMgmtFrames INTEGER, + lcsSetupWlanMngmtApConfNetwprofilsEntryTxLimit Integer32, + lcsSetupWlanMngmtApConfNetwprofilsEntryRxLimit Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.1 +lcsSetupWlanMngmtApConfNetwprofilsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.2 +lcsSetupWlanMngmtApConfNetwprofilsEntryParentName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.3 +lcsSetupWlanMngmtApConfNetwprofilsEntryLocVal OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "local values" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.4 +lcsSetupWlanMngmtApConfNetwprofilsEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.5 +lcsSetupWlanMngmtApConfNetwprofilsEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.6 +lcsSetupWlanMngmtApConfNetwprofilsEntryEncryption OBJECT-TYPE + SYNTAX INTEGER { + e80211iWpaPsk (0), + e80211iWpa8021x (1), + eWep104Bits (2), + eWep40Bits (3), + eWep104Bits8021x (4), + eWep40Bits8021x (5), + eNone (6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.7 +lcsSetupWlanMngmtApConfNetwprofilsEntryWpa1SessionKeytypes OBJECT-TYPE + SYNTAX INTEGER { + eTkipAes (0), + eAes (1), + eTkip (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.8 +lcsSetupWlanMngmtApConfNetwprofilsEntryWpaVersion OBJECT-TYPE + SYNTAX INTEGER { + eWpa12 (0), + eWpa1 (1), + eWpa2 (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.9 +lcsSetupWlanMngmtApConfNetwprofilsEntryKey OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.10 +lcsSetupWlanMngmtApConfNetwprofilsEntryRadioBand OBJECT-TYPE + SYNTAX INTEGER { + e24ghz5ghz (0), + e24ghz (1), + e5ghz (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.11 +lcsSetupWlanMngmtApConfNetwprofilsEntryContinuation OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.12 +lcsSetupWlanMngmtApConfNetwprofilsEntryMinTxRate OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + e1M (1), + e2M (2), + e5M5 (3), + e11M (4), + e6M (5), + e9M (6), + e12M (7), + e18M (8), + e24M (9), + e36M (10), + e48M (11), + e54M (12), + eT72M (13), + eT96M (14), + eT108M (15) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.13 +lcsSetupWlanMngmtApConfNetwprofilsEntryMaxTxRate OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + e1M (1), + e2M (2), + e5M5 (3), + e11M (4), + e6M (5), + e9M (6), + e12M (7), + e18M (8), + e24M (9), + e36M (10), + e48M (11), + e54M (12), + eT72M (13), + eT96M (14), + eT108M (15) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.14 +lcsSetupWlanMngmtApConfNetwprofilsEntryBasicRate OBJECT-TYPE + SYNTAX INTEGER { + e2M (0), + e1M (1), + e5M5 (3), + e11M (4), + e6M (5), + e9M (6), + e12M (7), + e18M (8), + e24M (9), + e36M (10), + e48M (11), + e54M (12), + eT72M (13), + eT96M (14), + eT108M (15) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.15 +lcsSetupWlanMngmtApConfNetwprofilsEntry11bPreamble OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eLong (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.16 +lcsSetupWlanMngmtApConfNetwprofilsEntryMacFilter OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.17 +lcsSetupWlanMngmtApConfNetwprofilsEntryClBrgSupport OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eExclusive (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.18 +lcsSetupWlanMngmtApConfNetwprofilsEntryMaxStations OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.19 +lcsSetupWlanMngmtApConfNetwprofilsEntrySsidBroadcast OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1), + eTightened (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.21 +lcsSetupWlanMngmtApConfNetwprofilsEntrySsid OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.22 +lcsSetupWlanMngmtApConfNetwprofilsEntryMinHtMcs OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eMcs08 (1), + eMcs19 (2), + eMcs210 (3), + eMcs311 (4), + eMcs412 (5), + eMcs513 (6), + eMcs614 (7), + eMcs715 (8) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.23 +lcsSetupWlanMngmtApConfNetwprofilsEntryMaxHtMcs OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eMcs08 (1), + eMcs19 (2), + eMcs210 (3), + eMcs311 (4), + eMcs412 (5), + eMcs513 (6), + eMcs614 (7), + eMcs715 (8) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.24 +lcsSetupWlanMngmtApConfNetwprofilsEntryShortGuardInterval OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 24 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.25 +lcsSetupWlanMngmtApConfNetwprofilsEntryMaxSpatialStreams OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eOne (1), + eTwo (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 25 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.26 +lcsSetupWlanMngmtApConfNetwprofilsEntrySendAggregates OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 26 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.27 +lcsSetupWlanMngmtApConfNetwprofilsEntryWpa2SessionKeytypes OBJECT-TYPE + SYNTAX INTEGER { + eTkipAes (0), + eAes (1), + eTkip (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 27 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.28 +lcsSetupWlanMngmtApConfNetwprofilsEntryRadiusAccounting OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 28 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.30 +lcsSetupWlanMngmtApConfNetwprofilsEntryVlanMode OBJECT-TYPE + SYNTAX INTEGER { + eUntagged (0), + eTagged (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 30 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.32 +lcsSetupWlanMngmtApConfNetwprofilsEntryConnectSsidTo OBJECT-TYPE + SYNTAX INTEGER { + eLan (0), + eWlcTunnel1 (1), + eWlcTunnel2 (2), + eWlcTunnel3 (3), + eWlcTunnel4 (4), + eWlcTunnel5 (5), + eWlcTunnel6 (6), + eWlcTunnel7 (7), + eWlcTunnel8 (8), + eWlcTunnel9 (9), + eWlcTunnel10 (10), + eWlcTunnel11 (11), + eWlcTunnel12 (12), + eWlcTunnel13 (13), + eWlcTunnel14 (14), + eWlcTunnel15 (15), + eWlcTunnel16 (16), + eWlcTunnel17 (17), + eWlcTunnel18 (18), + eWlcTunnel19 (19), + eWlcTunnel20 (20), + eWlcTunnel21 (21), + eWlcTunnel22 (22), + eWlcTunnel23 (23), + eWlcTunnel24 (24), + eWlcTunnel25 (25), + eWlcTunnel26 (26), + eWlcTunnel27 (27), + eWlcTunnel28 (28), + eWlcTunnel29 (29), + eWlcTunnel30 (30), + eWlcTunnel31 (31), + eWlcTunnel32 (32), + eWlcTunnelAutowds (33) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 32 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.33 +lcsSetupWlanMngmtApConfNetwprofilsEntryInterStationTraffic OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 33 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.34 +lcsSetupWlanMngmtApConfNetwprofilsEntryVlanIdnew OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 34 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.35 +lcsSetupWlanMngmtApConfNetwprofilsEntryRadiusProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 35 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.36 +lcsSetupWlanMngmtApConfNetwprofilsEntryStbcActivated OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 36 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.37 +lcsSetupWlanMngmtApConfNetwprofilsEntryLdpcActivated OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 37 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.38 +lcsSetupWlanMngmtApConfNetwprofilsEntryMinClientStrength OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 38 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.39 +lcsSetupWlanMngmtApConfNetwprofilsEntryIeee80211uNetworkProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 39 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.40 +lcsSetupWlanMngmtApConfNetwprofilsEntryOkc OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 40 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.41 +lcsSetupWlanMngmtApConfNetwprofilsEntryWpa2KeyManagement OBJECT-TYPE + SYNTAX BITS { + eSha256 (5), + eFastRoaming (6), + eStandard (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 41 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.42 +lcsSetupWlanMngmtApConfNetwprofilsEntryApsd OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 42 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.43 +lcsSetupWlanMngmtApConfNetwprofilsEntryProtMgmtFrames OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eOptional (1), + eMandatory (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 43 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.44 +lcsSetupWlanMngmtApConfNetwprofilsEntryTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 44 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.1.1.45 +lcsSetupWlanMngmtApConfNetwprofilsEntryRxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfNetwprofilsEntry 45 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.1.2 +lcsSetupWlanMngmtApConfRadioprofilsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtApConfRadioprofilsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConf 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.1.2.1 +lcsSetupWlanMngmtApConfRadioprofilsEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtApConfRadioprofilsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtApConfRadioprofilsEntryName + } + ::= { lcsSetupWlanMngmtApConfRadioprofilsTable 1 } + +LcsSetupWlanMngmtApConfRadioprofilsEntry ::= SEQUENCE { + lcsSetupWlanMngmtApConfRadioprofilsEntryName DisplayString, + lcsSetupWlanMngmtApConfRadioprofilsEntryParentName DisplayString, + lcsSetupWlanMngmtApConfRadioprofilsEntryLocVal DisplayString, + lcsSetupWlanMngmtApConfRadioprofilsEntryCountry INTEGER, + lcsSetupWlanMngmtApConfRadioprofilsEntryChannelList DisplayString, + lcsSetupWlanMngmtApConfRadioprofilsEntry24ghzMode INTEGER, + lcsSetupWlanMngmtApConfRadioprofilsEntry5ghzMode INTEGER, + lcsSetupWlanMngmtApConfRadioprofilsEntrySubbands INTEGER, + lcsSetupWlanMngmtApConfRadioprofilsEntryQos INTEGER, + lcsSetupWlanMngmtApConfRadioprofilsEntryDtimPeriod Integer32, + lcsSetupWlanMngmtApConfRadioprofilsEntryBackgroundScan Integer32, + lcsSetupWlanMngmtApConfRadioprofilsEntryAntennaGain Integer32, + lcsSetupWlanMngmtApConfRadioprofilsEntryTxPowerReduction Integer32, + lcsSetupWlanMngmtApConfRadioprofilsEntryMgmtVLANId Integer32, + lcsSetupWlanMngmtApConfRadioprofilsEntryIndoorOnlyOperation INTEGER, + lcsSetupWlanMngmtApConfRadioprofilsEntryActVlanModOfMngdAps INTEGER, + lcsSetupWlanMngmtApConfRadioprofilsEntryMgmtVlanMode INTEGER, + lcsSetupWlanMngmtApConfRadioprofilsEntryMgmtVLANIdnew Integer32, + lcsSetupWlanMngmtApConfRadioprofilsEntryReportSeenClients INTEGER, + lcsSetupWlanMngmtApConfRadioprofilsEntryClientSteering INTEGER, + lcsSetupWlanMngmtApConfRadioprofilsEntryPreferredBand INTEGER, + lcsSetupWlanMngmtApConfRadioprofilsEntryPrReqAgeO Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.2.1.1 +lcsSetupWlanMngmtApConfRadioprofilsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfRadioprofilsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.2.1.2 +lcsSetupWlanMngmtApConfRadioprofilsEntryParentName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfRadioprofilsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.2.1.3 +lcsSetupWlanMngmtApConfRadioprofilsEntryLocVal OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..6)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "local values" + ::= { lcsSetupWlanMngmtApConfRadioprofilsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.2.1.4 +lcsSetupWlanMngmtApConfRadioprofilsEntryCountry OBJECT-TYPE + SYNTAX INTEGER { + eDefault (0), + eAlbania (8), + eAlgeria (12), + eArgentina (32), + eAustralia (36), + eAustria (40), + eBahrain (48), + eBangladesh (50), + eBelgium (56), + eBosniaHerzegovina (70), + eBrazil (76), + eBruneiDarussalam (96), + eBulgaria (100), + eBelarus (112), + eCanada (124), + eChile (152), + eChina (156), + eTaiwan (158), + eColombia (170), + eCostaRica (188), + eCroatia (191), + eCyprus (196), + eCzech (203), + eDenmark (208), + eEcuador (218), + eEstonia (233), + eFinland (246), + eFrance (250), + eGermany (276), + eGhana (288), + eGreece (300), + eGuatemala (320), + eHonduras (340), + eHongKong (344), + eHungary (348), + eIceland (352), + eIndia (356), + eIndonesia (360), + eIreland (372), + eIsrael (376), + eItaly (380), + eJapan (392), + eJordan (400), + eSouthKorea (410), + eKuwait (414), + eLebanon (422), + eLatvia (428), + eLiechtenstein (438), + eLithuania (440), + eLuxembourg (442), + eMacau (446), + eMalaysia (458), + eMalta (470), + eMexico (484), + eMoldavia (498), + eMorocco (504), + eOman (512), + eNetherlands (528), + eNewZealand (554), + eNicaragua (558), + eNorway (578), + ePakistan (586), + ePanama (591), + eParaguay (600), + ePeru (604), + ePhilippines (608), + ePoland (616), + ePortugal (620), + ePuertoRico (630), + eQatar (634), + eRomania (642), + eRussia (643), + eSaudiArabia (682), + eSingapore (702), + eSlovak (703), + eSlovenia (705), + eSouthAfrica (710), + eSpain (724), + eSweden (752), + eSwitzerland (756), + eThailand (764), + eUnitedArabEmirates (784), + eTunisia (788), + eTurkey (792), + eUganda (800), + eUkraine (804), + eMacedonia (807), + eEgypt (818), + eUnitedKingdom (826), + eTanzania (834), + eUnitedStatesFcc (840), + eUruguay (858), + eVenezuela (862), + eEurope (998), + eEgalistan (999) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfRadioprofilsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.2.1.5 +lcsSetupWlanMngmtApConfRadioprofilsEntryChannelList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..48)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfRadioprofilsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.2.1.6 +lcsSetupWlanMngmtApConfRadioprofilsEntry24ghzMode OBJECT-TYPE + SYNTAX INTEGER { + e11bgMixed (0), + e11gOnly (1), + e11bOnly (2), + e108mbps (3), + e11bgnMixed (4), + e11gnMixed (5), + eGreenfield (6), + eAuto (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfRadioprofilsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.2.1.7 +lcsSetupWlanMngmtApConfRadioprofilsEntry5ghzMode OBJECT-TYPE + SYNTAX INTEGER { + eNormal (0), + e108mbps (3), + e11anMixed (4), + eGreenfield (5), + e11anacMixed (6), + e11nacMixed (7), + e11acOnly (8), + eAuto (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfRadioprofilsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.2.1.8 +lcsSetupWlanMngmtApConfRadioprofilsEntrySubbands OBJECT-TYPE + SYNTAX INTEGER { + eBand1Plus2Plus3 (0), + eBand1 (1), + eBand2 (2), + eBand3 (3), + eBand1Plus2 (4), + eBand1Plus3 (5), + eBand2Plus3 (6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfRadioprofilsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.2.1.9 +lcsSetupWlanMngmtApConfRadioprofilsEntryQos OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfRadioprofilsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.2.1.10 +lcsSetupWlanMngmtApConfRadioprofilsEntryDtimPeriod OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfRadioprofilsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.2.1.11 +lcsSetupWlanMngmtApConfRadioprofilsEntryBackgroundScan OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfRadioprofilsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.2.1.12 +lcsSetupWlanMngmtApConfRadioprofilsEntryAntennaGain OBJECT-TYPE + SYNTAX Integer32 (-128..127) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfRadioprofilsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.2.1.13 +lcsSetupWlanMngmtApConfRadioprofilsEntryTxPowerReduction OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfRadioprofilsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.2.1.14 +lcsSetupWlanMngmtApConfRadioprofilsEntryMgmtVLANId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfRadioprofilsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.2.1.16 +lcsSetupWlanMngmtApConfRadioprofilsEntryIndoorOnlyOperation OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfRadioprofilsEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.2.1.17 +lcsSetupWlanMngmtApConfRadioprofilsEntryActVlanModOfMngdAps OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfRadioprofilsEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.2.1.18 +lcsSetupWlanMngmtApConfRadioprofilsEntryMgmtVlanMode OBJECT-TYPE + SYNTAX INTEGER { + eUntagged (0), + eTagged (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfRadioprofilsEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.2.1.19 +lcsSetupWlanMngmtApConfRadioprofilsEntryMgmtVLANIdnew OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfRadioprofilsEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.2.1.20 +lcsSetupWlanMngmtApConfRadioprofilsEntryReportSeenClients OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfRadioprofilsEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.2.1.21 +lcsSetupWlanMngmtApConfRadioprofilsEntryClientSteering OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eYes (1), + eOn (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfRadioprofilsEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.2.1.22 +lcsSetupWlanMngmtApConfRadioprofilsEntryPreferredBand OBJECT-TYPE + SYNTAX INTEGER { + e24ghz (1), + e5ghz (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfRadioprofilsEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.2.1.23 +lcsSetupWlanMngmtApConfRadioprofilsEntryPrReqAgeO OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfRadioprofilsEntry 23 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.1.3 +lcsSetupWlanMngmtApConfCommonprofilsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtApConfCommonprofilsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConf 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.1.3.1 +lcsSetupWlanMngmtApConfCommonprofilsEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtApConfCommonprofilsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtApConfCommonprofilsEntryName + } + ::= { lcsSetupWlanMngmtApConfCommonprofilsTable 1 } + +LcsSetupWlanMngmtApConfCommonprofilsEntry ::= SEQUENCE { + lcsSetupWlanMngmtApConfCommonprofilsEntryName DisplayString, + lcsSetupWlanMngmtApConfCommonprofilsEntryNetw DisplayString, + lcsSetupWlanMngmtApConfCommonprofilsEntryApParams DisplayString, + lcsSetupWlanMngmtApConfCommonprofilsEntryContr DisplayString, + lcsSetupWlanMngmtApConfCommonprofilsEntryIeee80211uGeneral DisplayString, + lcsSetupWlanMngmtApConfCommonprofilsEntryConfigurationDelay Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.3.1.1 +lcsSetupWlanMngmtApConfCommonprofilsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfCommonprofilsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.3.1.2 +lcsSetupWlanMngmtApConfCommonprofilsEntryNetw OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfCommonprofilsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.3.1.3 +lcsSetupWlanMngmtApConfCommonprofilsEntryApParams OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfCommonprofilsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.3.1.4 +lcsSetupWlanMngmtApConfCommonprofilsEntryContr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..159)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfCommonprofilsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.3.1.6 +lcsSetupWlanMngmtApConfCommonprofilsEntryIeee80211uGeneral OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfCommonprofilsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.3.1.7 +lcsSetupWlanMngmtApConfCommonprofilsEntryConfigurationDelay OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfCommonprofilsEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.1.4 +lcsSetupWlanMngmtApConfApsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtApConfApsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "accesspoints" + ::= { lcsSetupWlanMngmtApConf 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.1.4.1 +lcsSetupWlanMngmtApConfApsEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtApConfApsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtApConfApsEntryMacAddress + } + ::= { lcsSetupWlanMngmtApConfApsTable 1 } + +LcsSetupWlanMngmtApConfApsEntry ::= SEQUENCE { + lcsSetupWlanMngmtApConfApsEntryMacAddress DisplayString, + lcsSetupWlanMngmtApConfApsEntryName DisplayString, + lcsSetupWlanMngmtApConfApsEntryLocation DisplayString, + lcsSetupWlanMngmtApConfApsEntryProfile DisplayString, + lcsSetupWlanMngmtApConfApsEntryDeviceParameters DisplayString, + lcsSetupWlanMngmtApConfApsEntryEncryption INTEGER, + lcsSetupWlanMngmtApConfApsEntryWlanModule1 INTEGER, + lcsSetupWlanMngmtApConfApsEntryWlanModule2 INTEGER, + lcsSetupWlanMngmtApConfApsEntryModule1ChannelList DisplayString, + lcsSetupWlanMngmtApConfApsEntryModule2ChannelList DisplayString, + lcsSetupWlanMngmtApConfApsEntryOperating INTEGER, + lcsSetupWlanMngmtApConfApsEntryIpAddress IpAddress, + lcsSetupWlanMngmtApConfApsEntryNetmask IpAddress, + lcsSetupWlanMngmtApConfApsEntryGateway IpAddress, + lcsSetupWlanMngmtApConfApsEntryAllow40mhz INTEGER, + lcsSetupWlanMngmtApConfApsEntryAntennaMask INTEGER, + lcsSetupWlanMngmtApConfApsEntryApIntranet DisplayString, + lcsSetupWlanMngmtApConfApsEntryManageFirmware INTEGER, + lcsSetupWlanMngmtApConfApsEntryMngmtFwAddInfo INTEGER, + lcsSetupWlanMngmtApConfApsEntryModule1AntGain DisplayString, + lcsSetupWlanMngmtApConfApsEntryModule2AntGain DisplayString, + lcsSetupWlanMngmtApConfApsEntryModule1TxReduct DisplayString, + lcsSetupWlanMngmtApConfApsEntryModule2TxReduct DisplayString, + lcsSetupWlanMngmtApConfApsEntryGroups DisplayString, + lcsSetupWlanMngmtApConfApsEntryModule2MaxChannelBandwidth INTEGER, + lcsSetupWlanMngmtApConfApsEntryModule1MaxChannelBandwidth INTEGER, + lcsSetupWlanMngmtApConfApsEntryClientSteeringProfile DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.1 +lcsSetupWlanMngmtApConfApsEntryMacAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.2 +lcsSetupWlanMngmtApConfApsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.3 +lcsSetupWlanMngmtApConfApsEntryLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.4 +lcsSetupWlanMngmtApConfApsEntryProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.5 +lcsSetupWlanMngmtApConfApsEntryDeviceParameters OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.6 +lcsSetupWlanMngmtApConfApsEntryEncryption OBJECT-TYPE + SYNTAX INTEGER { + eDefault (0), + eDtls (1), + eNo (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.7 +lcsSetupWlanMngmtApConfApsEntryWlanModule1 OBJECT-TYPE + SYNTAX INTEGER { + eDefault (0), + e24ghz (1), + e5ghz (2), + eOff (3), + eAuto (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.8 +lcsSetupWlanMngmtApConfApsEntryWlanModule2 OBJECT-TYPE + SYNTAX INTEGER { + eDefault (0), + e24ghz (1), + e5ghz (2), + eOff (3), + eAuto (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.9 +lcsSetupWlanMngmtApConfApsEntryModule1ChannelList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..48)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.10 +lcsSetupWlanMngmtApConfApsEntryModule2ChannelList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..48)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.11 +lcsSetupWlanMngmtApConfApsEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.12 +lcsSetupWlanMngmtApConfApsEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.13 +lcsSetupWlanMngmtApConfApsEntryNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.14 +lcsSetupWlanMngmtApConfApsEntryGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApsEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.15 +lcsSetupWlanMngmtApConfApsEntryAllow40mhz OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApsEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.16 +lcsSetupWlanMngmtApConfApsEntryAntennaMask OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eAntenna1 (1), + eAntenna1Plus2 (3), + eAntenna1Plus3 (5), + eAntenna1Plus2Plus3 (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApsEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.17 +lcsSetupWlanMngmtApConfApsEntryApIntranet OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApsEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.18 +lcsSetupWlanMngmtApConfApsEntryManageFirmware OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApsEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.19 +lcsSetupWlanMngmtApConfApsEntryMngmtFwAddInfo OBJECT-TYPE + SYNTAX INTEGER { + eDisabledDueToErrorDuringUpdate (1), + eDisabledByManualUpload (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApsEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.20 +lcsSetupWlanMngmtApConfApsEntryModule1AntGain OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..4)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApsEntry 20 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.21 +lcsSetupWlanMngmtApConfApsEntryModule2AntGain OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..4)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApsEntry 21 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.22 +lcsSetupWlanMngmtApConfApsEntryModule1TxReduct OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApsEntry 22 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.23 +lcsSetupWlanMngmtApConfApsEntryModule2TxReduct OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApsEntry 23 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.24 +lcsSetupWlanMngmtApConfApsEntryGroups OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfApsEntry 24 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.25 +lcsSetupWlanMngmtApConfApsEntryModule2MaxChannelBandwidth OBJECT-TYPE + SYNTAX INTEGER { + e20mhz (0), + e40mhz (1), + e80mhz (2), + eAuto (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfApsEntry 25 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.26 +lcsSetupWlanMngmtApConfApsEntryModule1MaxChannelBandwidth OBJECT-TYPE + SYNTAX INTEGER { + e20mhz (0), + e40mhz (1), + e80mhz (2), + eAuto (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfApsEntry 26 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.4.1.27 +lcsSetupWlanMngmtApConfApsEntryClientSteeringProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfApsEntry 27 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.1.5 +lcsSetupWlanMngmtApConfWlanModul1Default OBJECT-TYPE + SYNTAX INTEGER { + e24ghz (1), + e5ghz (2), + eOff (3), + eAuto (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConf 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.1.6 +lcsSetupWlanMngmtApConfWlanModul2Default OBJECT-TYPE + SYNTAX INTEGER { + e24ghz (1), + e5ghz (2), + eOff (3), + eAuto (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConf 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.1.7 +lcsSetupWlanMngmtApConfControlConnectionEncryptionDefault OBJECT-TYPE + SYNTAX INTEGER { + eDtls (1), + eNo (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConf 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.1.8 +lcsSetupWlanMngmtApConfCountryDefault OBJECT-TYPE + SYNTAX INTEGER { + eAlbania (8), + eAlgeria (12), + eArgentina (32), + eAustralia (36), + eAustria (40), + eBahrain (48), + eBangladesh (50), + eBelgium (56), + eBosniaHerzegovina (70), + eBrazil (76), + eBruneiDarussalam (96), + eBulgaria (100), + eBelarus (112), + eCanada (124), + eChile (152), + eChina (156), + eTaiwan (158), + eColombia (170), + eCostaRica (188), + eCroatia (191), + eCyprus (196), + eCzech (203), + eDenmark (208), + eEcuador (218), + eEstonia (233), + eFinland (246), + eFrance (250), + eGermany (276), + eGhana (288), + eGreece (300), + eGuatemala (320), + eHonduras (340), + eHongKong (344), + eHungary (348), + eIceland (352), + eIndia (356), + eIndonesia (360), + eIreland (372), + eIsrael (376), + eItaly (380), + eJapan (392), + eJordan (400), + eSouthKorea (410), + eKuwait (414), + eLebanon (422), + eLatvia (428), + eLiechtenstein (438), + eLithuania (440), + eLuxembourg (442), + eMacau (446), + eMalaysia (458), + eMalta (470), + eMexico (484), + eMoldavia (498), + eMorocco (504), + eOman (512), + eNetherlands (528), + eNewZealand (554), + eNicaragua (558), + eNorway (578), + ePakistan (586), + ePanama (591), + eParaguay (600), + ePeru (604), + ePhilippines (608), + ePoland (616), + ePortugal (620), + ePuertoRico (630), + eQatar (634), + eRomania (642), + eRussia (643), + eSaudiArabia (682), + eSingapore (702), + eSlovak (703), + eSlovenia (705), + eSouthAfrica (710), + eSpain (724), + eSweden (752), + eSwitzerland (756), + eThailand (764), + eUnitedArabEmirates (784), + eTunisia (788), + eTurkey (792), + eUganda (800), + eUkraine (804), + eMacedonia (807), + eEgypt (818), + eUnitedKingdom (826), + eTanzania (834), + eUnitedStatesFcc (840), + eUruguay (858), + eVenezuela (862), + eEurope (998), + eEgalistan (999) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConf 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.1.9 +lcsSetupWlanMngmtApConfApIntranetsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtApConfApIntranetsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConf 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.1.9.1 +lcsSetupWlanMngmtApConfApIntranetsEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtApConfApIntranetsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtApConfApIntranetsEntryName + } + ::= { lcsSetupWlanMngmtApConfApIntranetsTable 1 } + +LcsSetupWlanMngmtApConfApIntranetsEntry ::= SEQUENCE { + lcsSetupWlanMngmtApConfApIntranetsEntryName DisplayString, + lcsSetupWlanMngmtApConfApIntranetsEntryParentName DisplayString, + lcsSetupWlanMngmtApConfApIntranetsEntryLocVal DisplayString, + lcsSetupWlanMngmtApConfApIntranetsEntryDomainName DisplayString, + lcsSetupWlanMngmtApConfApIntranetsEntryNetmask IpAddress, + lcsSetupWlanMngmtApConfApIntranetsEntryGateway IpAddress, + lcsSetupWlanMngmtApConfApIntranetsEntryPrimaryDnsSrv IpAddress, + lcsSetupWlanMngmtApConfApIntranetsEntrySecondaryDnsSrv IpAddress, + lcsSetupWlanMngmtApConfApIntranetsEntryIpv4ConfigPoolStart DisplayString, + lcsSetupWlanMngmtApConfApIntranetsEntryIpv4ConfigPoolEnd DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.9.1.1 +lcsSetupWlanMngmtApConfApIntranetsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApIntranetsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.9.1.2 +lcsSetupWlanMngmtApConfApIntranetsEntryParentName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApIntranetsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.9.1.3 +lcsSetupWlanMngmtApConfApIntranetsEntryLocVal OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..2)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "local values" + ::= { lcsSetupWlanMngmtApConfApIntranetsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.9.1.4 +lcsSetupWlanMngmtApConfApIntranetsEntryDomainName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApIntranetsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.9.1.5 +lcsSetupWlanMngmtApConfApIntranetsEntryNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApIntranetsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.9.1.6 +lcsSetupWlanMngmtApConfApIntranetsEntryGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApIntranetsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.9.1.7 +lcsSetupWlanMngmtApConfApIntranetsEntryPrimaryDnsSrv OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApIntranetsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.9.1.8 +lcsSetupWlanMngmtApConfApIntranetsEntrySecondaryDnsSrv OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfApIntranetsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.9.1.9 +lcsSetupWlanMngmtApConfApIntranetsEntryIpv4ConfigPoolStart OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfApIntranetsEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.9.1.10 +lcsSetupWlanMngmtApConfApIntranetsEntryIpv4ConfigPoolEnd OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfApIntranetsEntry 10 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.1.10 +lcsSetupWlanMngmtApConfPredefIntranetsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtApConfPredefIntranetsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConf 10 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.1.10.1 +lcsSetupWlanMngmtApConfPredefIntranetsEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtApConfPredefIntranetsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtApConfPredefIntranetsEntryName + } + ::= { lcsSetupWlanMngmtApConfPredefIntranetsTable 1 } + +LcsSetupWlanMngmtApConfPredefIntranetsEntry ::= SEQUENCE { + lcsSetupWlanMngmtApConfPredefIntranetsEntryName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.10.1.1 +lcsSetupWlanMngmtApConfPredefIntranetsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfPredefIntranetsEntry 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.1.12 +lcsSetupWlanMngmtApConfDscpForControlPackets OBJECT-TYPE + SYNTAX INTEGER { + eBestEffort (0), + eAssuredForwarding11 (40), + eAssuredForwarding12 (48), + eAssuredForwarding13 (56), + eAssuredForwarding21 (72), + eAssuredForwarding22 (80), + eAssuredForwarding23 (88), + eAssuredForwarding31 (104), + eAssuredForwarding32 (112), + eAssuredForwarding33 (120), + eAssuredForwarding41 (136), + eAssuredForwarding42 (144), + eAssuredForwarding43 (152), + eExpeditedForwarding (184) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConf 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.1.13 +lcsSetupWlanMngmtApConfDscpForDataPackets OBJECT-TYPE + SYNTAX INTEGER { + eBestEffort (0), + eAssuredForwarding11 (40), + eAssuredForwarding12 (48), + eAssuredForwarding13 (56), + eAssuredForwarding21 (72), + eAssuredForwarding22 (80), + eAssuredForwarding23 (88), + eAssuredForwarding31 (104), + eAssuredForwarding32 (112), + eAssuredForwarding33 (120), + eAssuredForwarding41 (136), + eAssuredForwarding42 (144), + eAssuredForwarding43 (152), + eExpeditedForwarding (184) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConf 13 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.1.14 +lcsSetupWlanMngmtApConfMulticastNetworksTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtApConfMulticastNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConf 14 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.1.14.1 +lcsSetupWlanMngmtApConfMulticastNetworksEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtApConfMulticastNetworksEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtApConfMulticastNetworksEntryBridgeInterface + } + ::= { lcsSetupWlanMngmtApConfMulticastNetworksTable 1 } + +LcsSetupWlanMngmtApConfMulticastNetworksEntry ::= SEQUENCE { + lcsSetupWlanMngmtApConfMulticastNetworksEntryBridgeInterface INTEGER, + lcsSetupWlanMngmtApConfMulticastNetworksEntryActive INTEGER, + lcsSetupWlanMngmtApConfMulticastNetworksEntryMulticastAddress IpAddress, + lcsSetupWlanMngmtApConfMulticastNetworksEntryMulticastPort Integer32, + lcsSetupWlanMngmtApConfMulticastNetworksEntryLoopbackAddr DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.14.1.1 +lcsSetupWlanMngmtApConfMulticastNetworksEntryBridgeInterface OBJECT-TYPE + SYNTAX INTEGER { + eLan (0), + eWlcTunnel1 (1), + eWlcTunnel2 (2), + eWlcTunnel3 (3), + eWlcTunnel4 (4), + eWlcTunnel5 (5), + eWlcTunnel6 (6), + eWlcTunnel7 (7), + eWlcTunnel8 (8), + eWlcTunnel9 (9), + eWlcTunnel10 (10), + eWlcTunnel11 (11), + eWlcTunnel12 (12), + eWlcTunnel13 (13), + eWlcTunnel14 (14), + eWlcTunnel15 (15), + eWlcTunnel16 (16), + eWlcTunnel17 (17), + eWlcTunnel18 (18), + eWlcTunnel19 (19), + eWlcTunnel20 (20), + eWlcTunnel21 (21), + eWlcTunnel22 (22), + eWlcTunnel23 (23), + eWlcTunnel24 (24), + eWlcTunnel25 (25), + eWlcTunnel26 (26), + eWlcTunnel27 (27), + eWlcTunnel28 (28), + eWlcTunnel29 (29), + eWlcTunnel30 (30), + eWlcTunnel31 (31), + eWlcTunnel32 (32), + eWlcTunnelAutowds (33) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfMulticastNetworksEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.14.1.2 +lcsSetupWlanMngmtApConfMulticastNetworksEntryActive OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfMulticastNetworksEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.14.1.3 +lcsSetupWlanMngmtApConfMulticastNetworksEntryMulticastAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfMulticastNetworksEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.14.1.4 +lcsSetupWlanMngmtApConfMulticastNetworksEntryMulticastPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfMulticastNetworksEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.14.1.5 +lcsSetupWlanMngmtApConfMulticastNetworksEntryLoopbackAddr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfMulticastNetworksEntry 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.1.15 +lcsSetupWlanMngmtApConfAutowdsProfilesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtApConfAutowdsProfilesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf 15 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.1.15.1 +lcsSetupWlanMngmtApConfAutowdsProfilesEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtApConfAutowdsProfilesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtApConfAutowdsProfilesEntryName + } + ::= { lcsSetupWlanMngmtApConfAutowdsProfilesTable 1 } + +LcsSetupWlanMngmtApConfAutowdsProfilesEntry ::= SEQUENCE { + lcsSetupWlanMngmtApConfAutowdsProfilesEntryName DisplayString, + lcsSetupWlanMngmtApConfAutowdsProfilesEntryCommonprofile DisplayString, + lcsSetupWlanMngmtApConfAutowdsProfilesEntrySsid DisplayString, + lcsSetupWlanMngmtApConfAutowdsProfilesEntryKey DisplayString, + lcsSetupWlanMngmtApConfAutowdsProfilesEntryEnabled INTEGER, + lcsSetupWlanMngmtApConfAutowdsProfilesEntryAllowExprInt INTEGER, + lcsSetupWlanMngmtApConfAutowdsProfilesEntryTopologyManagement INTEGER, + lcsSetupWlanMngmtApConfAutowdsProfilesEntrySlaveTxLimit Integer32, + lcsSetupWlanMngmtApConfAutowdsProfilesEntryMasterTxLimit Integer32, + lcsSetupWlanMngmtApConfAutowdsProfilesEntryLinkLossTimeout Integer32, + lcsSetupWlanMngmtApConfAutowdsProfilesEntryContinuation Integer32, + lcsSetupWlanMngmtApConfAutowdsProfilesEntryTimeTillPreconfScan Integer32, + lcsSetupWlanMngmtApConfAutowdsProfilesEntryTimeTillExpressScan Integer32, + lcsSetupWlanMngmtApConfAutowdsProfilesEntryInterfacePairing INTEGER, + lcsSetupWlanMngmtApConfAutowdsProfilesEntrySlaveRadioMultiHop INTEGER, + lcsSetupWlanMngmtApConfAutowdsProfilesEntryRadioBand INTEGER, + lcsSetupWlanMngmtApConfAutowdsProfilesEntrySsidBroadcast INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.15.1.1 +lcsSetupWlanMngmtApConfAutowdsProfilesEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsProfilesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.15.1.2 +lcsSetupWlanMngmtApConfAutowdsProfilesEntryCommonprofile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsProfilesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.15.1.3 +lcsSetupWlanMngmtApConfAutowdsProfilesEntrySsid OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsProfilesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.15.1.4 +lcsSetupWlanMngmtApConfAutowdsProfilesEntryKey OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsProfilesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.15.1.6 +lcsSetupWlanMngmtApConfAutowdsProfilesEntryEnabled OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsProfilesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.15.1.7 +lcsSetupWlanMngmtApConfAutowdsProfilesEntryAllowExprInt OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Allow-Express-Integration" + ::= { lcsSetupWlanMngmtApConfAutowdsProfilesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.15.1.8 +lcsSetupWlanMngmtApConfAutowdsProfilesEntryTopologyManagement OBJECT-TYPE + SYNTAX INTEGER { + eAutomatic (0), + eSemiAutomatic (1), + eManual (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsProfilesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.15.1.10 +lcsSetupWlanMngmtApConfAutowdsProfilesEntrySlaveTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsProfilesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.15.1.11 +lcsSetupWlanMngmtApConfAutowdsProfilesEntryMasterTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsProfilesEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.15.1.12 +lcsSetupWlanMngmtApConfAutowdsProfilesEntryLinkLossTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsProfilesEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.15.1.14 +lcsSetupWlanMngmtApConfAutowdsProfilesEntryContinuation OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfAutowdsProfilesEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.15.1.15 +lcsSetupWlanMngmtApConfAutowdsProfilesEntryTimeTillPreconfScan OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsProfilesEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.15.1.16 +lcsSetupWlanMngmtApConfAutowdsProfilesEntryTimeTillExpressScan OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsProfilesEntry 16 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.15.1.17 +lcsSetupWlanMngmtApConfAutowdsProfilesEntryInterfacePairing OBJECT-TYPE + SYNTAX INTEGER { + eAutomatic (0), + eStrict (1), + eMixed (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsProfilesEntry 17 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.15.1.18 +lcsSetupWlanMngmtApConfAutowdsProfilesEntrySlaveRadioMultiHop OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1), + eSingleRadioApOnly (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsProfilesEntry 18 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.15.1.19 +lcsSetupWlanMngmtApConfAutowdsProfilesEntryRadioBand OBJECT-TYPE + SYNTAX INTEGER { + e24ghz5ghz (0), + e24ghz (1), + e5ghz (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsProfilesEntry 19 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.15.1.20 +lcsSetupWlanMngmtApConfAutowdsProfilesEntrySsidBroadcast OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsProfilesEntry 20 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.1.16 +lcsSetupWlanMngmtApConfAutowdsTopologyTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtApConfAutowdsTopologyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf 16 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.1.16.1 +lcsSetupWlanMngmtApConfAutowdsTopologyEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtApConfAutowdsTopologyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtApConfAutowdsTopologyEntryAutowdsProfile, + lcsSetupWlanMngmtApConfAutowdsTopologyEntryPriority, + lcsSetupWlanMngmtApConfAutowdsTopologyEntrySlaveApName, + lcsSetupWlanMngmtApConfAutowdsTopologyEntrySlaveApWlanIfc + } + ::= { lcsSetupWlanMngmtApConfAutowdsTopologyTable 1 } + +LcsSetupWlanMngmtApConfAutowdsTopologyEntry ::= SEQUENCE { + lcsSetupWlanMngmtApConfAutowdsTopologyEntryAutowdsProfile DisplayString, + lcsSetupWlanMngmtApConfAutowdsTopologyEntryPriority Integer32, + lcsSetupWlanMngmtApConfAutowdsTopologyEntrySlaveApName DisplayString, + lcsSetupWlanMngmtApConfAutowdsTopologyEntrySlaveApWlanIfc INTEGER, + lcsSetupWlanMngmtApConfAutowdsTopologyEntryMasterApName DisplayString, + lcsSetupWlanMngmtApConfAutowdsTopologyEntryMasterApWlanIfc INTEGER, + lcsSetupWlanMngmtApConfAutowdsTopologyEntryKey DisplayString, + lcsSetupWlanMngmtApConfAutowdsTopologyEntryEnabled INTEGER, + lcsSetupWlanMngmtApConfAutowdsTopologyEntrySlaveTxLimit Integer32, + lcsSetupWlanMngmtApConfAutowdsTopologyEntryMasterTxLimit Integer32, + lcsSetupWlanMngmtApConfAutowdsTopologyEntryLinkLossTimeout Integer32, + lcsSetupWlanMngmtApConfAutowdsTopologyEntryContinuation Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.16.1.1 +lcsSetupWlanMngmtApConfAutowdsTopologyEntryAutowdsProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsTopologyEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.16.1.2 +lcsSetupWlanMngmtApConfAutowdsTopologyEntryPriority OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsTopologyEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.16.1.3 +lcsSetupWlanMngmtApConfAutowdsTopologyEntrySlaveApName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsTopologyEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.16.1.4 +lcsSetupWlanMngmtApConfAutowdsTopologyEntrySlaveApWlanIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsTopologyEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.16.1.6 +lcsSetupWlanMngmtApConfAutowdsTopologyEntryMasterApName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsTopologyEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.16.1.7 +lcsSetupWlanMngmtApConfAutowdsTopologyEntryMasterApWlanIfc OBJECT-TYPE + SYNTAX INTEGER { + eWlan1 (1), + eWlan2 (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsTopologyEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.16.1.9 +lcsSetupWlanMngmtApConfAutowdsTopologyEntryKey OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsTopologyEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.16.1.10 +lcsSetupWlanMngmtApConfAutowdsTopologyEntryEnabled OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsTopologyEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.16.1.12 +lcsSetupWlanMngmtApConfAutowdsTopologyEntrySlaveTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsTopologyEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.16.1.13 +lcsSetupWlanMngmtApConfAutowdsTopologyEntryMasterTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsTopologyEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.16.1.14 +lcsSetupWlanMngmtApConfAutowdsTopologyEntryLinkLossTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfAutowdsTopologyEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.16.1.16 +lcsSetupWlanMngmtApConfAutowdsTopologyEntryContinuation OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConfAutowdsTopologyEntry 16 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.37.1.17 +lcsSetupWlanMngmtApConf11u OBJECT IDENTIFIER ::= { lcsSetupWlanMngmtApConf 17 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.1.17.1 +lcsSetupWlanMngmtApConf11u11u-NwTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtApConf11u11u-NwEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IEEE802.11u-Networks" + ::= { lcsSetupWlanMngmtApConf11u 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.1.17.1.1 +lcsSetupWlanMngmtApConf11u11u-NwEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtApConf11u11u-NwEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtApConf11u11u-NwEntryName + } + ::= { lcsSetupWlanMngmtApConf11u11u-NwTable 1 } + +LcsSetupWlanMngmtApConf11u11u-NwEntry ::= SEQUENCE { + lcsSetupWlanMngmtApConf11u11u-NwEntryName DisplayString, + lcsSetupWlanMngmtApConf11u11u-NwEntryOper INTEGER, + lcsSetupWlanMngmtApConf11u11u-NwEntryHs20 INTEGER, + lcsSetupWlanMngmtApConf11u11u-NwEntryInet INTEGER, + lcsSetupWlanMngmtApConf11u11u-NwEntryNwType INTEGER, + lcsSetupWlanMngmtApConf11u11u-NwEntryAsra INTEGER, + lcsSetupWlanMngmtApConf11u11u-NwEntryHESSIDT INTEGER, + lcsSetupWlanMngmtApConf11u11u-NwEntryHESSIDM MacAddress, + lcsSetupWlanMngmtApConf11u11u-NwEntryANQP-Prof DisplayString, + lcsSetupWlanMngmtApConf11u11u-NwEntryHs20-Prof DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.1.1.1 +lcsSetupWlanMngmtApConf11u11u-NwEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11u11u-NwEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.1.1.2 +lcsSetupWlanMngmtApConf11u11u-NwEntryOper OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Operating" + ::= { lcsSetupWlanMngmtApConf11u11u-NwEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.1.1.3 +lcsSetupWlanMngmtApConf11u11u-NwEntryHs20 OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Hotspot2.0" + ::= { lcsSetupWlanMngmtApConf11u11u-NwEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.1.1.4 +lcsSetupWlanMngmtApConf11u11u-NwEntryInet OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Internet" + ::= { lcsSetupWlanMngmtApConf11u11u-NwEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.1.1.5 +lcsSetupWlanMngmtApConf11u11u-NwEntryNwType OBJECT-TYPE + SYNTAX INTEGER { + ePrivate (0), + ePrivateGuestacc (1), + ePublicCharge (2), + ePublicFree (3), + ePersonalDev (4), + eEmergency (5), + eExperimental (14), + eWildcard (15) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Network-Type" + ::= { lcsSetupWlanMngmtApConf11u11u-NwEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.1.1.6 +lcsSetupWlanMngmtApConf11u11u-NwEntryAsra OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Asra" + ::= { lcsSetupWlanMngmtApConf11u11u-NwEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.1.1.7 +lcsSetupWlanMngmtApConf11u11u-NwEntryHESSIDT OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eUser (1), + eNone (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "HESSID-Type" + ::= { lcsSetupWlanMngmtApConf11u11u-NwEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.1.1.8 +lcsSetupWlanMngmtApConf11u11u-NwEntryHESSIDM OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "HESSID-MAC" + ::= { lcsSetupWlanMngmtApConf11u11u-NwEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.1.1.10 +lcsSetupWlanMngmtApConf11u11u-NwEntryANQP-Prof OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ANQP-Profile" + ::= { lcsSetupWlanMngmtApConf11u11u-NwEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.1.1.12 +lcsSetupWlanMngmtApConf11u11u-NwEntryHs20-Prof OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "HS20-Profile" + ::= { lcsSetupWlanMngmtApConf11u11u-NwEntry 12 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.1.17.2 +lcsSetupWlanMngmtApConf11uANQP-ProfsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtApConf11uANQP-ProfsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ANQP-Profiles" + ::= { lcsSetupWlanMngmtApConf11u 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.1.17.2.1 +lcsSetupWlanMngmtApConf11uANQP-ProfsEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtApConf11uANQP-ProfsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtApConf11uANQP-ProfsEntryName + } + ::= { lcsSetupWlanMngmtApConf11uANQP-ProfsTable 1 } + +LcsSetupWlanMngmtApConf11uANQP-ProfsEntry ::= SEQUENCE { + lcsSetupWlanMngmtApConf11uANQP-ProfsEntryName DisplayString, + lcsSetupWlanMngmtApConf11uANQP-ProfsEntryIncOUI DisplayString, + lcsSetupWlanMngmtApConf11uANQP-ProfsEntryAddOUI DisplayString, + lcsSetupWlanMngmtApConf11uANQP-ProfsEntryDomainList DisplayString, + lcsSetupWlanMngmtApConf11uANQP-ProfsEntryNaiRealmList DisplayString, + lcsSetupWlanMngmtApConf11uANQP-ProfsEntryCellularList DisplayString, + lcsSetupWlanMngmtApConf11uANQP-ProfsEntryNetList DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.2.1.1 +lcsSetupWlanMngmtApConf11uANQP-ProfsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uANQP-ProfsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.2.1.2 +lcsSetupWlanMngmtApConf11uANQP-ProfsEntryIncOUI OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Include-in-Beacon-OUI" + ::= { lcsSetupWlanMngmtApConf11uANQP-ProfsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.2.1.3 +lcsSetupWlanMngmtApConf11uANQP-ProfsEntryAddOUI OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Additional-OUI" + ::= { lcsSetupWlanMngmtApConf11uANQP-ProfsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.2.1.4 +lcsSetupWlanMngmtApConf11uANQP-ProfsEntryDomainList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uANQP-ProfsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.2.1.5 +lcsSetupWlanMngmtApConf11uANQP-ProfsEntryNaiRealmList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uANQP-ProfsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.2.1.6 +lcsSetupWlanMngmtApConf11uANQP-ProfsEntryCellularList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uANQP-ProfsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.2.1.7 +lcsSetupWlanMngmtApConf11uANQP-ProfsEntryNetList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Network-Auth-Type-List" + ::= { lcsSetupWlanMngmtApConf11uANQP-ProfsEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.1.17.3 +lcsSetupWlanMngmtApConf11uHs20-ProfsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtApConf11uHs20-ProfsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Hotspot2.0-Profiles" + ::= { lcsSetupWlanMngmtApConf11u 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.1.17.3.1 +lcsSetupWlanMngmtApConf11uHs20-ProfsEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtApConf11uHs20-ProfsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtApConf11uHs20-ProfsEntryName + } + ::= { lcsSetupWlanMngmtApConf11uHs20-ProfsTable 1 } + +LcsSetupWlanMngmtApConf11uHs20-ProfsEntry ::= SEQUENCE { + lcsSetupWlanMngmtApConf11uHs20-ProfsEntryName DisplayString, + lcsSetupWlanMngmtApConf11uHs20-ProfsEntryOperatorName DisplayString, + lcsSetupWlanMngmtApConf11uHs20-ProfsEntryConnCaps DisplayString, + lcsSetupWlanMngmtApConf11uHs20-ProfsEntryOpClass DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.3.1.1 +lcsSetupWlanMngmtApConf11uHs20-ProfsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uHs20-ProfsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.3.1.2 +lcsSetupWlanMngmtApConf11uHs20-ProfsEntryOperatorName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uHs20-ProfsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.3.1.3 +lcsSetupWlanMngmtApConf11uHs20-ProfsEntryConnCaps OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..250)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Connection-Capabilities" + ::= { lcsSetupWlanMngmtApConf11uHs20-ProfsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.3.1.4 +lcsSetupWlanMngmtApConf11uHs20-ProfsEntryOpClass OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Operating-Class" + ::= { lcsSetupWlanMngmtApConf11uHs20-ProfsEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.1.17.4 +lcsSetupWlanMngmtApConf11uNetAuthTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtApConf11uNetAuthEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Network-Authentication-Type" + ::= { lcsSetupWlanMngmtApConf11u 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.1.17.4.1 +lcsSetupWlanMngmtApConf11uNetAuthEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtApConf11uNetAuthEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtApConf11uNetAuthEntryName + } + ::= { lcsSetupWlanMngmtApConf11uNetAuthTable 1 } + +LcsSetupWlanMngmtApConf11uNetAuthEntry ::= SEQUENCE { + lcsSetupWlanMngmtApConf11uNetAuthEntryName DisplayString, + lcsSetupWlanMngmtApConf11uNetAuthEntryNetType INTEGER, + lcsSetupWlanMngmtApConf11uNetAuthEntryReUrl DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.4.1.1 +lcsSetupWlanMngmtApConf11uNetAuthEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uNetAuthEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.4.1.2 +lcsSetupWlanMngmtApConf11uNetAuthEntryNetType OBJECT-TYPE + SYNTAX INTEGER { + eAcceptTermsCond (0), + eOnlineEnrollment (1), + eHttpRedirection (2), + eDnsRedirection (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Network-Auth-Type" + ::= { lcsSetupWlanMngmtApConf11uNetAuthEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.4.1.3 +lcsSetupWlanMngmtApConf11uNetAuthEntryReUrl OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Redirect-URL" + ::= { lcsSetupWlanMngmtApConf11uNetAuthEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.1.17.5 +lcsSetupWlanMngmtApConf11uCellListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtApConf11uCellListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Cellular-Network-Information-List" + ::= { lcsSetupWlanMngmtApConf11u 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.1.17.5.1 +lcsSetupWlanMngmtApConf11uCellListEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtApConf11uCellListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtApConf11uCellListEntryName + } + ::= { lcsSetupWlanMngmtApConf11uCellListTable 1 } + +LcsSetupWlanMngmtApConf11uCellListEntry ::= SEQUENCE { + lcsSetupWlanMngmtApConf11uCellListEntryName DisplayString, + lcsSetupWlanMngmtApConf11uCellListEntryCountry DisplayString, + lcsSetupWlanMngmtApConf11uCellListEntryNetwork DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.5.1.1 +lcsSetupWlanMngmtApConf11uCellListEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uCellListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.5.1.2 +lcsSetupWlanMngmtApConf11uCellListEntryCountry OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Country-Code" + ::= { lcsSetupWlanMngmtApConf11uCellListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.5.1.3 +lcsSetupWlanMngmtApConf11uCellListEntryNetwork OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Network-Code" + ::= { lcsSetupWlanMngmtApConf11uCellListEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.1.17.6 +lcsSetupWlanMngmtApConf11uVenueNameTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtApConf11uVenueNameEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11u 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.1.17.6.1 +lcsSetupWlanMngmtApConf11uVenueNameEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtApConf11uVenueNameEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtApConf11uVenueNameEntryName, + lcsSetupWlanMngmtApConf11uVenueNameEntryLanguage + } + ::= { lcsSetupWlanMngmtApConf11uVenueNameTable 1 } + +LcsSetupWlanMngmtApConf11uVenueNameEntry ::= SEQUENCE { + lcsSetupWlanMngmtApConf11uVenueNameEntryName DisplayString, + lcsSetupWlanMngmtApConf11uVenueNameEntryLanguage INTEGER, + lcsSetupWlanMngmtApConf11uVenueNameEntryVenueName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.6.1.1 +lcsSetupWlanMngmtApConf11uVenueNameEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uVenueNameEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.6.1.2 +lcsSetupWlanMngmtApConf11uVenueNameEntryLanguage OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eEnglish (1), + eGerman (2), + eChinese (3), + eSpanish (4), + eFrench (5), + eItalian (6), + eRussian (7), + eDutch (8), + eTurkish (9), + ePortuguese (10), + ePolish (11), + eCzech (12), + eArabic (13) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uVenueNameEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.6.1.3 +lcsSetupWlanMngmtApConf11uVenueNameEntryVenueName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uVenueNameEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.1.17.7 +lcsSetupWlanMngmtApConf11uNAIsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtApConf11uNAIsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "NAI-Realms" + ::= { lcsSetupWlanMngmtApConf11u 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.1.17.7.1 +lcsSetupWlanMngmtApConf11uNAIsEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtApConf11uNAIsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtApConf11uNAIsEntryName + } + ::= { lcsSetupWlanMngmtApConf11uNAIsTable 1 } + +LcsSetupWlanMngmtApConf11uNAIsEntry ::= SEQUENCE { + lcsSetupWlanMngmtApConf11uNAIsEntryName DisplayString, + lcsSetupWlanMngmtApConf11uNAIsEntryNaiRealm DisplayString, + lcsSetupWlanMngmtApConf11uNAIsEntryEapMethod INTEGER, + lcsSetupWlanMngmtApConf11uNAIsEntryAuthPar DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.7.1.1 +lcsSetupWlanMngmtApConf11uNAIsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uNAIsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.7.1.2 +lcsSetupWlanMngmtApConf11uNAIsEntryNaiRealm OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uNAIsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.7.1.3 +lcsSetupWlanMngmtApConf11uNAIsEntryEapMethod OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eEapTls (13), + eEapSim (18), + eEapTtls (21), + eEapAka (23) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uNAIsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.7.1.4 +lcsSetupWlanMngmtApConf11uNAIsEntryAuthPar OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Auth-Parameter-List" + ::= { lcsSetupWlanMngmtApConf11uNAIsEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.1.17.8 +lcsSetupWlanMngmtApConf11uOperatorListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtApConf11uOperatorListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11u 8 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.1.17.8.1 +lcsSetupWlanMngmtApConf11uOperatorListEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtApConf11uOperatorListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtApConf11uOperatorListEntryName, + lcsSetupWlanMngmtApConf11uOperatorListEntryLanguage + } + ::= { lcsSetupWlanMngmtApConf11uOperatorListTable 1 } + +LcsSetupWlanMngmtApConf11uOperatorListEntry ::= SEQUENCE { + lcsSetupWlanMngmtApConf11uOperatorListEntryName DisplayString, + lcsSetupWlanMngmtApConf11uOperatorListEntryLanguage INTEGER, + lcsSetupWlanMngmtApConf11uOperatorListEntryOperatorName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.8.1.1 +lcsSetupWlanMngmtApConf11uOperatorListEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uOperatorListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.8.1.2 +lcsSetupWlanMngmtApConf11uOperatorListEntryLanguage OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eEnglish (1), + eGerman (2), + eChinese (3), + eSpanish (4), + eFrench (5), + eItalian (6), + eRussian (7), + eDutch (8), + eTurkish (9), + ePortuguese (10), + ePolish (11), + eCzech (12), + eArabic (13) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uOperatorListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.8.1.3 +lcsSetupWlanMngmtApConf11uOperatorListEntryOperatorName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uOperatorListEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.1.17.9 +lcsSetupWlanMngmtApConf11uGeneralTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtApConf11uGeneralEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11u 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.1.17.9.1 +lcsSetupWlanMngmtApConf11uGeneralEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtApConf11uGeneralEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtApConf11uGeneralEntryName + } + ::= { lcsSetupWlanMngmtApConf11uGeneralTable 1 } + +LcsSetupWlanMngmtApConf11uGeneralEntry ::= SEQUENCE { + lcsSetupWlanMngmtApConf11uGeneralEntryName DisplayString, + lcsSetupWlanMngmtApConf11uGeneralEntryLinkStatus INTEGER, + lcsSetupWlanMngmtApConf11uGeneralEntryDownlinkSpeed Integer32, + lcsSetupWlanMngmtApConf11uGeneralEntryUplinkSpeed Integer32, + lcsSetupWlanMngmtApConf11uGeneralEntryIpv4AddrType INTEGER, + lcsSetupWlanMngmtApConf11uGeneralEntryIpv6AddrType INTEGER, + lcsSetupWlanMngmtApConf11uGeneralEntryVenueGroup INTEGER, + lcsSetupWlanMngmtApConf11uGeneralEntryVenueType Integer32, + lcsSetupWlanMngmtApConf11uGeneralEntryVenueName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.9.1.1 +lcsSetupWlanMngmtApConf11uGeneralEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uGeneralEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.9.1.2 +lcsSetupWlanMngmtApConf11uGeneralEntryLinkStatus OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eLinkUp (1), + eLinkDown (2), + eLinkTest (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uGeneralEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.9.1.3 +lcsSetupWlanMngmtApConf11uGeneralEntryDownlinkSpeed OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uGeneralEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.9.1.4 +lcsSetupWlanMngmtApConf11uGeneralEntryUplinkSpeed OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uGeneralEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.9.1.5 +lcsSetupWlanMngmtApConf11uGeneralEntryIpv4AddrType OBJECT-TYPE + SYNTAX INTEGER { + eNotAvailable (0), + ePublicAddrAvailable (1), + ePortRestrAddrAvail (2), + eSingleNatPrivAddrAvail (3), + eDoubleNatPrivAddrAvail (4), + ePortRestrSingleNatAddrAvail (5), + ePortRestrDoubleNatAddrAvail (6), + eAvailabilityNotKnown (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uGeneralEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.9.1.6 +lcsSetupWlanMngmtApConf11uGeneralEntryIpv6AddrType OBJECT-TYPE + SYNTAX INTEGER { + eNotAvailable (0), + eAvailable (1), + eAvailabilityNotKnown (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uGeneralEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.9.1.7 +lcsSetupWlanMngmtApConf11uGeneralEntryVenueGroup OBJECT-TYPE + SYNTAX INTEGER { + eUnspecified (0), + eAssembly (1), + eBusiness (2), + eEducational (3), + eFactoryAndIndustrial (4), + eInstitutional (5), + eMercantile (6), + eResindential (7), + eStorage (8), + eUtilityAndMiscellaneous (9), + eVehicular (10), + eOutdoor (11) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uGeneralEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.9.1.8 +lcsSetupWlanMngmtApConf11uGeneralEntryVenueType OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uGeneralEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.9.1.9 +lcsSetupWlanMngmtApConf11uGeneralEntryVenueName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uGeneralEntry 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.1.17.10 +lcsSetupWlanMngmtApConf11uAuthParameterTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtApConf11uAuthParameterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11u 10 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.1.17.10.1 +lcsSetupWlanMngmtApConf11uAuthParameterEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtApConf11uAuthParameterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtApConf11uAuthParameterEntryName + } + ::= { lcsSetupWlanMngmtApConf11uAuthParameterTable 1 } + +LcsSetupWlanMngmtApConf11uAuthParameterEntry ::= SEQUENCE { + lcsSetupWlanMngmtApConf11uAuthParameterEntryName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.10.1.1 +lcsSetupWlanMngmtApConf11uAuthParameterEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uAuthParameterEntry 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.1.17.11 +lcsSetupWlanMngmtApConf11uConnCapTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtApConf11uConnCapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Connection-Capability" + ::= { lcsSetupWlanMngmtApConf11u 11 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.1.17.11.1 +lcsSetupWlanMngmtApConf11uConnCapEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtApConf11uConnCapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtApConf11uConnCapEntryName + } + ::= { lcsSetupWlanMngmtApConf11uConnCapTable 1 } + +LcsSetupWlanMngmtApConf11uConnCapEntry ::= SEQUENCE { + lcsSetupWlanMngmtApConf11uConnCapEntryName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.17.11.1.1 +lcsSetupWlanMngmtApConf11uConnCapEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf11uConnCapEntry 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.1.18 +lcsSetupWlanMngmtApConfCfgAsgGrpTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtApConfCfgAsgGrpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtApConf 18 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.1.18.1 +lcsSetupWlanMngmtApConfCfgAsgGrpEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtApConfCfgAsgGrpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtApConfCfgAsgGrpEntryName + } + ::= { lcsSetupWlanMngmtApConfCfgAsgGrpTable 1 } + +LcsSetupWlanMngmtApConfCfgAsgGrpEntry ::= SEQUENCE { + lcsSetupWlanMngmtApConfCfgAsgGrpEntryName DisplayString, + lcsSetupWlanMngmtApConfCfgAsgGrpEntryProfile DisplayString, + lcsSetupWlanMngmtApConfCfgAsgGrpEntryApIntranet DisplayString, + lcsSetupWlanMngmtApConfCfgAsgGrpEntryIpv4ReferencePoolStart DisplayString, + lcsSetupWlanMngmtApConfCfgAsgGrpEntryIpv4ReferencePoolEnd DisplayString, + lcsSetupWlanMngmtApConfCfgAsgGrpEntryClientSteeringProfile DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.18.1.1 +lcsSetupWlanMngmtApConfCfgAsgGrpEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfCfgAsgGrpEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.18.1.2 +lcsSetupWlanMngmtApConfCfgAsgGrpEntryProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfCfgAsgGrpEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.18.1.3 +lcsSetupWlanMngmtApConfCfgAsgGrpEntryApIntranet OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfCfgAsgGrpEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.18.1.4 +lcsSetupWlanMngmtApConfCfgAsgGrpEntryIpv4ReferencePoolStart OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfCfgAsgGrpEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.18.1.5 +lcsSetupWlanMngmtApConfCfgAsgGrpEntryIpv4ReferencePoolEnd OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfCfgAsgGrpEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.18.1.6 +lcsSetupWlanMngmtApConfCfgAsgGrpEntryClientSteeringProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfCfgAsgGrpEntry 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.1.20 +lcsSetupWlanMngmtApConfTagGroupsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtApConfTagGroupsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConf 20 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.1.20.1 +lcsSetupWlanMngmtApConfTagGroupsEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtApConfTagGroupsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtApConfTagGroupsEntryName + } + ::= { lcsSetupWlanMngmtApConfTagGroupsTable 1 } + +LcsSetupWlanMngmtApConfTagGroupsEntry ::= SEQUENCE { + lcsSetupWlanMngmtApConfTagGroupsEntryName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.1.20.1.1 +lcsSetupWlanMngmtApConfTagGroupsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtApConfTagGroupsEntry 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.5 +lcsSetupWlanMngmtCapwapPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmt 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.6 +lcsSetupWlanMngmtAutoacceptAp OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmt 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.7 +lcsSetupWlanMngmtAcceptAp OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmt 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.8 +lcsSetupWlanMngmtProvideDefaultConfiguration OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmt 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.9 +lcsSetupWlanMngmtDisconnectAp OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmt 9 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.37.10 +lcsSetupWlanMngmtNotification OBJECT IDENTIFIER ::= { lcsSetupWlanMngmt 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.10.1 +lcsSetupWlanMngmtNotificationEMail OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtNotification 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.10.2 +lcsSetupWlanMngmtNotificationSyslog OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtNotification 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.10.3 +lcsSetupWlanMngmtNotificationEMailReceiver OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtNotification 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.10.4 +lcsSetupWlanMngmtNotificationAdvancedTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtNotificationAdvancedEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtNotification 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.10.4.1 +lcsSetupWlanMngmtNotificationAdvancedEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtNotificationAdvancedEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtNotificationAdvancedEntryName + } + ::= { lcsSetupWlanMngmtNotificationAdvancedTable 1 } + +LcsSetupWlanMngmtNotificationAdvancedEntry ::= SEQUENCE { + lcsSetupWlanMngmtNotificationAdvancedEntryName INTEGER, + lcsSetupWlanMngmtNotificationAdvancedEntryActiveRadios INTEGER, + lcsSetupWlanMngmtNotificationAdvancedEntryMissingAp INTEGER, + lcsSetupWlanMngmtNotificationAdvancedEntryNewAp INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.10.4.1.1 +lcsSetupWlanMngmtNotificationAdvancedEntryName OBJECT-TYPE + SYNTAX INTEGER { + eEMail (1), + eSyslog (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtNotificationAdvancedEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.10.4.1.2 +lcsSetupWlanMngmtNotificationAdvancedEntryActiveRadios OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtNotificationAdvancedEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.10.4.1.3 +lcsSetupWlanMngmtNotificationAdvancedEntryMissingAp OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtNotificationAdvancedEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.10.4.1.4 +lcsSetupWlanMngmtNotificationAdvancedEntryNewAp OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtNotificationAdvancedEntry 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.10.5 +lcsSetupWlanMngmtNotificationSendSnmpTrapForStationTableEvent OBJECT-TYPE + SYNTAX INTEGER { + eAddRemoveEntry (0), + eAllEvents (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtNotification 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.17 +lcsSetupWlanMngmtRadiusServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtRadiusServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmt 17 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.17.1 +lcsSetupWlanMngmtRadiusServerEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtRadiusServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtRadiusServerEntryType + } + ::= { lcsSetupWlanMngmtRadiusServerTable 1 } + +LcsSetupWlanMngmtRadiusServerEntry ::= SEQUENCE { + lcsSetupWlanMngmtRadiusServerEntryType INTEGER, + lcsSetupWlanMngmtRadiusServerEntryIpAddress IpAddress, + lcsSetupWlanMngmtRadiusServerEntryPort Integer32, + lcsSetupWlanMngmtRadiusServerEntrySecret DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.17.1.1 +lcsSetupWlanMngmtRadiusServerEntryType OBJECT-TYPE + SYNTAX INTEGER { + eAccount (1), + eAccess (2), + eBackupAccount (3), + eBackupAccess (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtRadiusServerEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.17.1.2 +lcsSetupWlanMngmtRadiusServerEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtRadiusServerEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.17.1.3 +lcsSetupWlanMngmtRadiusServerEntryPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtRadiusServerEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.17.1.4 +lcsSetupWlanMngmtRadiusServerEntrySecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtRadiusServerEntry 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.19 +lcsSetupWlanMngmtStartAutomaticRadioFieldOptimization OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmt 19 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.20 +lcsSetupWlanMngmtAccessListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtAccessListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmt 20 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.20.1 +lcsSetupWlanMngmtAccessListEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtAccessListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtAccessListEntryMacAddress + } + ::= { lcsSetupWlanMngmtAccessListTable 1 } + +LcsSetupWlanMngmtAccessListEntry ::= SEQUENCE { + lcsSetupWlanMngmtAccessListEntryMacAddress MacAddress, + lcsSetupWlanMngmtAccessListEntryName DisplayString, + lcsSetupWlanMngmtAccessListEntryComment DisplayString, + lcsSetupWlanMngmtAccessListEntryWpaPassphrase DisplayString, + lcsSetupWlanMngmtAccessListEntryTxLimit Integer32, + lcsSetupWlanMngmtAccessListEntryRxLimit Integer32, + lcsSetupWlanMngmtAccessListEntryVlanId Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.20.1.1 +lcsSetupWlanMngmtAccessListEntryMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtAccessListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.20.1.2 +lcsSetupWlanMngmtAccessListEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtAccessListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.20.1.3 +lcsSetupWlanMngmtAccessListEntryComment OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..30)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtAccessListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.20.1.4 +lcsSetupWlanMngmtAccessListEntryWpaPassphrase OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtAccessListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.20.1.5 +lcsSetupWlanMngmtAccessListEntryTxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtAccessListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.20.1.6 +lcsSetupWlanMngmtAccessListEntryRxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtAccessListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.20.1.7 +lcsSetupWlanMngmtAccessListEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtAccessListEntry 7 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.37.27 +lcsSetupWlanMngmtCentralFwMngmt OBJECT IDENTIFIER ::= { lcsSetupWlanMngmt 27 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.27.11 +lcsSetupWlanMngmtCentralFwMngmtFirmwareRepositoryUrl OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtCentralFwMngmt 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.27.12 +lcsSetupWlanMngmtCentralFwMngmtScriptRepositoryUrl OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtCentralFwMngmt 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.27.13 +lcsSetupWlanMngmtCentralFwMngmtUpdFwScriptInfo OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "update firmware and script information" + ::= { lcsSetupWlanMngmtCentralFwMngmt 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.27.14 +lcsSetupWlanMngmtCentralFwMngmtMaximumNumberOfLoadedFirmwares OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtCentralFwMngmt 14 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.27.15 +lcsSetupWlanMngmtCentralFwMngmtFwVersMngmtTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtCentralFwMngmtFwVersMngmtEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "firmware version management" + ::= { lcsSetupWlanMngmtCentralFwMngmt 15 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.27.15.1 +lcsSetupWlanMngmtCentralFwMngmtFwVersMngmtEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtCentralFwMngmtFwVersMngmtEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtCentralFwMngmtFwVersMngmtEntryDevice, + lcsSetupWlanMngmtCentralFwMngmtFwVersMngmtEntryMacAddress + } + ::= { lcsSetupWlanMngmtCentralFwMngmtFwVersMngmtTable 1 } + +LcsSetupWlanMngmtCentralFwMngmtFwVersMngmtEntry ::= SEQUENCE { + lcsSetupWlanMngmtCentralFwMngmtFwVersMngmtEntryDevice INTEGER, + lcsSetupWlanMngmtCentralFwMngmtFwVersMngmtEntryMacAddress DisplayString, + lcsSetupWlanMngmtCentralFwMngmtFwVersMngmtEntryVersion DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.27.15.1.2 +lcsSetupWlanMngmtCentralFwMngmtFwVersMngmtEntryDevice OBJECT-TYPE + SYNTAX INTEGER { + eAllDevices (1), + eLancom1821WirelessAdslAnnA (2), + eLancom1821WirelessAdslAnnB (3), + eLANCOM1821plusWirelessADSLAnnA (5), + eLANCOM1821plusWirelessADSLAnnB (6), + eLancom1823VoipAnnexA (10), + eLancom1823VoipAnnexB (11), + eLancomIap54Wireless (12), + eLancomL54agWireless (13), + eLancom3850Umts (14), + eLancom3550Wireless (15), + eLancomOap54Wireless (16), + eLancomXap402 (19), + eLancomL54DualWireless (20), + eLancom1811WirelessDsl (21), + eLancomL310agnWireless (22), + eLancomL54gWireless (23), + eLancomXap402Fcc (24), + eLancomL305agnWireless (25), + eLancom3050Wireless (26), + eLancomOap310agnWireless (27), + eLancomOap541Wireless (28), + eLancom1811nWireless (29), + eLancomL315agnDualWireless (30), + eBAT54Rail (31), + eBAT54RailPlus (32), + eBAT300Rail (33), + eBAT300F (34), + eBAT300FX2 (35), + eBAT54F (36), + eBAT54FPlus (37), + eBAT54FX2 (38), + eBAT54FX2Plus (39), + eBAT54FSinglePlus (40), + eBAT54FX2SinglePlus (41), + eLancomL320agnWireless (42), + eLancomL321agnWireless (43), + eLancomL322agnDualWireless (44), + eBAT54RailSinglePlus (45), + eLancomOap321 (46), + eLancomIap321 (47), + eLancom1780ew3g (48), + eLancomIap3213g (49), + eLancomOap3213g (50), + eBatR (51), + eBatF (52), + eLancom1781ew (53), + eLancom1781aw (54), + eLancomOap382 (55), + eLancomL450agnWireless (56), + eLancomL451agnWireless (57), + eLancomL452agnDualWireless (58), + eLancomL460agnDualWireless (59), + eLancomOap322 (60), + eLancom1780ew4g (61), + eLancomIap322 (62) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtCentralFwMngmtFwVersMngmtEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.27.15.1.3 +lcsSetupWlanMngmtCentralFwMngmtFwVersMngmtEntryMacAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtCentralFwMngmtFwVersMngmtEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.27.15.1.4 +lcsSetupWlanMngmtCentralFwMngmtFwVersMngmtEntryVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..4)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtCentralFwMngmtFwVersMngmtEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.27.16 +lcsSetupWlanMngmtCentralFwMngmtScriptMngmtTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtCentralFwMngmtScriptMngmtEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "script management" + ::= { lcsSetupWlanMngmtCentralFwMngmt 16 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.27.16.1 +lcsSetupWlanMngmtCentralFwMngmtScriptMngmtEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtCentralFwMngmtScriptMngmtEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtCentralFwMngmtScriptMngmtEntryProfile + } + ::= { lcsSetupWlanMngmtCentralFwMngmtScriptMngmtTable 1 } + +LcsSetupWlanMngmtCentralFwMngmtScriptMngmtEntry ::= SEQUENCE { + lcsSetupWlanMngmtCentralFwMngmtScriptMngmtEntryProfile DisplayString, + lcsSetupWlanMngmtCentralFwMngmtScriptMngmtEntryName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.27.16.1.1 +lcsSetupWlanMngmtCentralFwMngmtScriptMngmtEntryProfile OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtCentralFwMngmtScriptMngmtEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.27.16.1.2 +lcsSetupWlanMngmtCentralFwMngmtScriptMngmtEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtCentralFwMngmtScriptMngmtEntry 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.27.18 +lcsSetupWlanMngmtCentralFwMngmtRebootUpdatedAps OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtCentralFwMngmt 18 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.27.25 +lcsSetupWlanMngmtCentralFwMngmtFwLoopbkAddr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "firmware loopback address" + ::= { lcsSetupWlanMngmtCentralFwMngmt 25 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.27.26 +lcsSetupWlanMngmtCentralFwMngmtScriptLoopbAddr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "script loopback address" + ::= { lcsSetupWlanMngmtCentralFwMngmt 26 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.30 +lcsSetupWlanMngmtSyncWtpPassword OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmt 30 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.31 +lcsSetupWlanMngmtIntervalForStatusTableCleanup OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmt 31 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.32 +lcsSetupWlanMngmtLicenseCount OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmt 32 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.33 +lcsSetupWlanMngmtLicenseLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmt 33 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.37.34 +lcsSetupWlanMngmtWlcTunnels OBJECT IDENTIFIER ::= { lcsSetupWlanMngmt 34 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.34.2 +lcsSetupWlanMngmtWlcTunnelsWlcDataTunnelActive OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtWlcTunnels 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.34.3 +lcsSetupWlanMngmtWlcTunnelsStaticWlcListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtWlcTunnelsStaticWlcListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtWlcTunnels 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.34.3.1 +lcsSetupWlanMngmtWlcTunnelsStaticWlcListEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtWlcTunnelsStaticWlcListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtWlcTunnelsStaticWlcListEntryIpAddress + } + ::= { lcsSetupWlanMngmtWlcTunnelsStaticWlcListTable 1 } + +LcsSetupWlanMngmtWlcTunnelsStaticWlcListEntry ::= SEQUENCE { + lcsSetupWlanMngmtWlcTunnelsStaticWlcListEntryIpAddress IpAddress, + lcsSetupWlanMngmtWlcTunnelsStaticWlcListEntryLoopbackAddr DisplayString, + lcsSetupWlanMngmtWlcTunnelsStaticWlcListEntryPort Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.34.3.1.1 +lcsSetupWlanMngmtWlcTunnelsStaticWlcListEntryIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtWlcTunnelsStaticWlcListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.34.3.1.2 +lcsSetupWlanMngmtWlcTunnelsStaticWlcListEntryLoopbackAddr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtWlcTunnelsStaticWlcListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.34.3.1.3 +lcsSetupWlanMngmtWlcTunnelsStaticWlcListEntryPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtWlcTunnelsStaticWlcListEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.34.4 +lcsSetupWlanMngmtWlcTunnelsWlcDiscoveryTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtWlcTunnelsWlcDiscoveryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtWlcTunnels 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.34.4.1 +lcsSetupWlanMngmtWlcTunnelsWlcDiscoveryEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtWlcTunnelsWlcDiscoveryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtWlcTunnelsWlcDiscoveryEntryNetwork + } + ::= { lcsSetupWlanMngmtWlcTunnelsWlcDiscoveryTable 1 } + +LcsSetupWlanMngmtWlcTunnelsWlcDiscoveryEntry ::= SEQUENCE { + lcsSetupWlanMngmtWlcTunnelsWlcDiscoveryEntryNetwork DisplayString, + lcsSetupWlanMngmtWlcTunnelsWlcDiscoveryEntryActive INTEGER, + lcsSetupWlanMngmtWlcTunnelsWlcDiscoveryEntryPort Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.34.4.1.1 +lcsSetupWlanMngmtWlcTunnelsWlcDiscoveryEntryNetwork OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtWlcTunnelsWlcDiscoveryEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.34.4.1.2 +lcsSetupWlanMngmtWlcTunnelsWlcDiscoveryEntryActive OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWlanMngmtWlcTunnelsWlcDiscoveryEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.34.4.1.3 +lcsSetupWlanMngmtWlcTunnelsWlcDiscoveryEntryPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtWlcTunnelsWlcDiscoveryEntry 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.34.5 +lcsSetupWlanMngmtWlcTunnelsTriggerWlcRediscoveryOnWtps OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtWlcTunnels 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.34.6 +lcsSetupWlanMngmtWlcTunnelsWlcTunnelActive OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtWlcTunnels 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.35 +lcsSetupWlanMngmtRadiusServerProfilesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtRadiusServerProfilesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmt 35 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.35.1 +lcsSetupWlanMngmtRadiusServerProfilesEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtRadiusServerProfilesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtRadiusServerProfilesEntryName + } + ::= { lcsSetupWlanMngmtRadiusServerProfilesTable 1 } + +LcsSetupWlanMngmtRadiusServerProfilesEntry ::= SEQUENCE { + lcsSetupWlanMngmtRadiusServerProfilesEntryName DisplayString, + lcsSetupWlanMngmtRadiusServerProfilesEntryAccountIp IpAddress, + lcsSetupWlanMngmtRadiusServerProfilesEntryAccountPort Integer32, + lcsSetupWlanMngmtRadiusServerProfilesEntryAccountSecret DisplayString, + lcsSetupWlanMngmtRadiusServerProfilesEntryAccountLoopback DisplayString, + lcsSetupWlanMngmtRadiusServerProfilesEntryAccountProtocol INTEGER, + lcsSetupWlanMngmtRadiusServerProfilesEntryAccessIp IpAddress, + lcsSetupWlanMngmtRadiusServerProfilesEntryAccessPort Integer32, + lcsSetupWlanMngmtRadiusServerProfilesEntryAccessSecret DisplayString, + lcsSetupWlanMngmtRadiusServerProfilesEntryAccessLoopback DisplayString, + lcsSetupWlanMngmtRadiusServerProfilesEntryAccessProtocol INTEGER, + lcsSetupWlanMngmtRadiusServerProfilesEntryBackup DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.35.1.1 +lcsSetupWlanMngmtRadiusServerProfilesEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtRadiusServerProfilesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.35.1.2 +lcsSetupWlanMngmtRadiusServerProfilesEntryAccountIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtRadiusServerProfilesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.35.1.3 +lcsSetupWlanMngmtRadiusServerProfilesEntryAccountPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtRadiusServerProfilesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.35.1.4 +lcsSetupWlanMngmtRadiusServerProfilesEntryAccountSecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtRadiusServerProfilesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.35.1.5 +lcsSetupWlanMngmtRadiusServerProfilesEntryAccountLoopback OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtRadiusServerProfilesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.35.1.6 +lcsSetupWlanMngmtRadiusServerProfilesEntryAccountProtocol OBJECT-TYPE + SYNTAX INTEGER { + eRadius (0), + eRadsec (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtRadiusServerProfilesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.35.1.7 +lcsSetupWlanMngmtRadiusServerProfilesEntryAccessIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtRadiusServerProfilesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.35.1.8 +lcsSetupWlanMngmtRadiusServerProfilesEntryAccessPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtRadiusServerProfilesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.35.1.9 +lcsSetupWlanMngmtRadiusServerProfilesEntryAccessSecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtRadiusServerProfilesEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.35.1.10 +lcsSetupWlanMngmtRadiusServerProfilesEntryAccessLoopback OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtRadiusServerProfilesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.35.1.11 +lcsSetupWlanMngmtRadiusServerProfilesEntryAccessProtocol OBJECT-TYPE + SYNTAX INTEGER { + eRadius (0), + eRadsec (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtRadiusServerProfilesEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.35.1.12 +lcsSetupWlanMngmtRadiusServerProfilesEntryBackup OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtRadiusServerProfilesEntry 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.36 +lcsSetupWlanMngmtCapwapOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmt 36 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.37 +lcsSetupWlanMngmtPreference OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmt 37 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.37.40 +lcsSetupWlanMngmtClSte OBJECT IDENTIFIER ::= { lcsSetupWlanMngmt 40 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.40.11 +lcsSetupWlanMngmtClSteTraceMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtClSte 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.40.17 +lcsSetupWlanMngmtClSteAcquireStatisticalData OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtClSte 17 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.37.40.19 +lcsSetupWlanMngmtClSteProfilesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWlanMngmtClSteProfilesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtClSte 19 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.37.40.19.1 +lcsSetupWlanMngmtClSteProfilesEntry OBJECT-TYPE + SYNTAX LcsSetupWlanMngmtClSteProfilesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWlanMngmtClSteProfilesEntryName + } + ::= { lcsSetupWlanMngmtClSteProfilesTable 1 } + +LcsSetupWlanMngmtClSteProfilesEntry ::= SEQUENCE { + lcsSetupWlanMngmtClSteProfilesEntryName DisplayString, + lcsSetupWlanMngmtClSteProfilesEntryToleranceLevel Integer32, + lcsSetupWlanMngmtClSteProfilesEntrySignalStrengthWeighting Integer32, + lcsSetupWlanMngmtClSteProfilesEntryAssociatedClientsWeighting Integer32, + lcsSetupWlanMngmtClSteProfilesEntryFrequencyBandWeighting Integer32, + lcsSetupWlanMngmtClSteProfilesEntryPreferredBand INTEGER, + lcsSetupWlanMngmtClSteProfilesEntryDisassociationThreshold Integer32, + lcsSetupWlanMngmtClSteProfilesEntryTimeToDisassociation Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.40.19.1.1 +lcsSetupWlanMngmtClSteProfilesEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtClSteProfilesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.40.19.1.2 +lcsSetupWlanMngmtClSteProfilesEntryToleranceLevel OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtClSteProfilesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.40.19.1.4 +lcsSetupWlanMngmtClSteProfilesEntrySignalStrengthWeighting OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtClSteProfilesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.40.19.1.5 +lcsSetupWlanMngmtClSteProfilesEntryAssociatedClientsWeighting OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtClSteProfilesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.40.19.1.6 +lcsSetupWlanMngmtClSteProfilesEntryFrequencyBandWeighting OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtClSteProfilesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.40.19.1.9 +lcsSetupWlanMngmtClSteProfilesEntryPreferredBand OBJECT-TYPE + SYNTAX INTEGER { + e24ghz (1), + e5ghz (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtClSteProfilesEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.40.19.1.10 +lcsSetupWlanMngmtClSteProfilesEntryDisassociationThreshold OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtClSteProfilesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.37.40.19.1.11 +lcsSetupWlanMngmtClSteProfilesEntryTimeToDisassociation OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtClSteProfilesEntry 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.37.40.20 +lcsSetupWlanMngmtClSteClientMacStatisticFilter OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWlanMngmtClSte 20 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.38 +lcsSetupLldp OBJECT IDENTIFIER ::= { lcsSetup 38 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.38.1 +lcsSetupLldpMessageTxInterval OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLldp 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.38.2 +lcsSetupLldpMessageTxHoldMultiplier OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLldp 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.38.3 +lcsSetupLldpReinitDelay OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLldp 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.38.4 +lcsSetupLldpTxDelay OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLldp 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.38.5 +lcsSetupLldpNotificationInterval OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLldp 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.38.6 +lcsSetupLldpPortsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupLldpPortsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLldp 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.38.6.1 +lcsSetupLldpPortsEntry OBJECT-TYPE + SYNTAX LcsSetupLldpPortsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupLldpPortsEntryName + } + ::= { lcsSetupLldpPortsTable 1 } + +LcsSetupLldpPortsEntry ::= SEQUENCE { + lcsSetupLldpPortsEntryName DisplayString, + lcsSetupLldpPortsEntryAdminStatus INTEGER, + lcsSetupLldpPortsEntryNotifications INTEGER, + lcsSetupLldpPortsEntryTlvs BITS, + lcsSetupLldpPortsEntryTlvs8023 BITS, + lcsSetupLldpPortsEntryMaxNeighbours Integer32, + lcsSetupLldpPortsEntryUpdateSource INTEGER, + lcsSetupLldpPortsEntryTlvsLcs BITS + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.38.6.1.1 +lcsSetupLldpPortsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..18)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLldpPortsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.38.6.1.2 +lcsSetupLldpPortsEntryAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + eDisabled (0), + eTxOnly (1), + eRxOnly (2), + eRxTx (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLldpPortsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.38.6.1.3 +lcsSetupLldpPortsEntryNotifications OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLldpPortsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.38.6.1.4 +lcsSetupLldpPortsEntryTlvs OBJECT-TYPE + SYNTAX BITS { + ePortDescription (0), + eSysName (1), + eSysDescriptor (2), + eSysCaps (3), + eNone (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLldpPortsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.38.6.1.6 +lcsSetupLldpPortsEntryTlvs8023 OBJECT-TYPE + SYNTAX BITS { + ePhyConfigStatus (0), + ePowerViaMdi (1), + eLinkAggregation (2), + eMaxFrameSize (3), + eNone (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLldpPortsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.38.6.1.7 +lcsSetupLldpPortsEntryMaxNeighbours OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLldpPortsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.38.6.1.8 +lcsSetupLldpPortsEntryUpdateSource OBJECT-TYPE + SYNTAX INTEGER { + eLldpOnly (0), + eOtherOnly (1), + eBoth (2), + eAuto (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLldpPortsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.38.6.1.9 +lcsSetupLldpPortsEntryTlvsLcs OBJECT-TYPE + SYNTAX BITS { + eSsid (0), + eRadioChannel (1), + ePhyType (2), + eNone (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLldpPortsEntry 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.38.7 +lcsSetupLldpManagementAddressesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupLldpManagementAddressesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLldp 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.38.7.1 +lcsSetupLldpManagementAddressesEntry OBJECT-TYPE + SYNTAX LcsSetupLldpManagementAddressesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupLldpManagementAddressesEntryNetworkName + } + ::= { lcsSetupLldpManagementAddressesTable 1 } + +LcsSetupLldpManagementAddressesEntry ::= SEQUENCE { + lcsSetupLldpManagementAddressesEntryNetworkName DisplayString, + lcsSetupLldpManagementAddressesEntryPortList DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.38.7.1.1 +lcsSetupLldpManagementAddressesEntryNetworkName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLldpManagementAddressesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.38.7.1.2 +lcsSetupLldpManagementAddressesEntryPortList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLldpManagementAddressesEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.38.8 +lcsSetupLldpProtocolsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupLldpProtocolsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLldp 8 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.38.8.1 +lcsSetupLldpProtocolsEntry OBJECT-TYPE + SYNTAX LcsSetupLldpProtocolsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupLldpProtocolsEntryProtocol + } + ::= { lcsSetupLldpProtocolsTable 1 } + +LcsSetupLldpProtocolsEntry ::= SEQUENCE { + lcsSetupLldpProtocolsEntryProtocol INTEGER, + lcsSetupLldpProtocolsEntryPortList DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.38.8.1.1 +lcsSetupLldpProtocolsEntryProtocol OBJECT-TYPE + SYNTAX INTEGER { + eSpanningTree (1), + eRapidSpanningTree (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLldpProtocolsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.38.8.1.2 +lcsSetupLldpProtocolsEntryPortList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLldpProtocolsEntry 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.38.10 +lcsSetupLldpOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupLldp 10 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.39 +lcsSetupCerts OBJECT IDENTIFIER ::= { lcsSetup 39 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.39.1 +lcsSetupCertsScepClnt OBJECT IDENTIFIER ::= { lcsSetupCerts 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.1.1 +lcsSetupCertsScepClntScepOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClnt 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.1.2 +lcsSetupCertsScepClntDeviceCertificateUpdateBefore OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClnt 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.1.3 +lcsSetupCertsScepClntCaCertificateUpdateBefore OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClnt 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.39.1.7 +lcsSetupCertsScepClntCertsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupCertsScepClntCertsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClnt 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.39.1.7.1 +lcsSetupCertsScepClntCertsEntry OBJECT-TYPE + SYNTAX LcsSetupCertsScepClntCertsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupCertsScepClntCertsEntryName + } + ::= { lcsSetupCertsScepClntCertsTable 1 } + +LcsSetupCertsScepClntCertsEntry ::= SEQUENCE { + lcsSetupCertsScepClntCertsEntryName DisplayString, + lcsSetupCertsScepClntCertsEntryCadn DisplayString, + lcsSetupCertsScepClntCertsEntrySubject DisplayString, + lcsSetupCertsScepClntCertsEntryChallengepwd DisplayString, + lcsSetupCertsScepClntCertsEntrySubjectaltname DisplayString, + lcsSetupCertsScepClntCertsEntryKeyusage DisplayString, + lcsSetupCertsScepClntCertsEntryDevCertKeyl Integer32, + lcsSetupCertsScepClntCertsEntryApplication INTEGER, + lcsSetupCertsScepClntCertsEntryExtendedKeyusage DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.1.7.1.1 +lcsSetupCertsScepClntCertsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClntCertsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.1.7.1.2 +lcsSetupCertsScepClntCertsEntryCadn OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClntCertsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.1.7.1.3 +lcsSetupCertsScepClntCertsEntrySubject OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClntCertsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.1.7.1.4 +lcsSetupCertsScepClntCertsEntryChallengepwd OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClntCertsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.1.7.1.5 +lcsSetupCertsScepClntCertsEntrySubjectaltname OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClntCertsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.1.7.1.6 +lcsSetupCertsScepClntCertsEntryKeyusage OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClntCertsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.1.7.1.7 +lcsSetupCertsScepClntCertsEntryDevCertKeyl OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClntCertsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.1.7.1.8 +lcsSetupCertsScepClntCertsEntryApplication OBJECT-TYPE + SYNTAX INTEGER { + eUnconfigured (-1), + eVpn1 (0), + eWlanController (1), + eEapTls (3), + eVpn2 (5), + eVpn3 (6), + eVpn4 (7), + eVpn5 (8), + eVpn6 (9), + eVpn7 (10), + eVpn8 (11), + eVpn9 (12), + eDefault (13), + eCa (14) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClntCertsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.1.7.1.9 +lcsSetupCertsScepClntCertsEntryExtendedKeyusage OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClntCertsEntry 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.1.8 +lcsSetupCertsScepClntReinit OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClnt 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.1.9 +lcsSetupCertsScepClntUpdate OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClnt 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.1.10 +lcsSetupCertsScepClntClearScepFilesystem OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClnt 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.1.11 +lcsSetupCertsScepClntRetryAfterErrorInterval OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClnt 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.1.12 +lcsSetupCertsScepClntCheckPendingRequestsInterval OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClnt 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.1.13 +lcsSetupCertsScepClntTraceLevel OBJECT-TYPE + SYNTAX INTEGER { + eOnlyErrors (3), + eReduced (6), + eAll (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClnt 13 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.39.1.14 +lcsSetupCertsScepClntCasTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupCertsScepClntCasEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClnt 14 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.39.1.14.1 +lcsSetupCertsScepClntCasEntry OBJECT-TYPE + SYNTAX LcsSetupCertsScepClntCasEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupCertsScepClntCasEntryName + } + ::= { lcsSetupCertsScepClntCasTable 1 } + +LcsSetupCertsScepClntCasEntry ::= SEQUENCE { + lcsSetupCertsScepClntCasEntryName DisplayString, + lcsSetupCertsScepClntCasEntryUrl DisplayString, + lcsSetupCertsScepClntCasEntryDn DisplayString, + lcsSetupCertsScepClntCasEntryEncAlg INTEGER, + lcsSetupCertsScepClntCasEntryIdentifier DisplayString, + lcsSetupCertsScepClntCasEntryCaSignatureAlgorithm INTEGER, + lcsSetupCertsScepClntCasEntryRaAutoapprove INTEGER, + lcsSetupCertsScepClntCasEntryCaFingerprintAlgorithm INTEGER, + lcsSetupCertsScepClntCasEntryCaFingerprint DisplayString, + lcsSetupCertsScepClntCasEntryLoopbackAddr DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.1.14.1.1 +lcsSetupCertsScepClntCasEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClntCasEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.1.14.1.2 +lcsSetupCertsScepClntCasEntryUrl OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClntCasEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.1.14.1.3 +lcsSetupCertsScepClntCasEntryDn OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClntCasEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.1.14.1.4 +lcsSetupCertsScepClntCasEntryEncAlg OBJECT-TYPE + SYNTAX INTEGER { + eDes (0), + e3des (1), + eBlowfish (2), + eAes128 (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClntCasEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.1.14.1.5 +lcsSetupCertsScepClntCasEntryIdentifier OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClntCasEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.1.14.1.6 +lcsSetupCertsScepClntCasEntryCaSignatureAlgorithm OBJECT-TYPE + SYNTAX INTEGER { + eMd5 (0), + eSha1 (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClntCasEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.1.14.1.7 +lcsSetupCertsScepClntCasEntryRaAutoapprove OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClntCasEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.1.14.1.8 +lcsSetupCertsScepClntCasEntryCaFingerprintAlgorithm OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eSha1 (1), + eMd5 (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClntCasEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.1.14.1.9 +lcsSetupCertsScepClntCasEntryCaFingerprint OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..59)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClntCasEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.1.14.1.11 +lcsSetupCertsScepClntCasEntryLoopbackAddr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepClntCasEntry 11 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.39.2 +lcsSetupCertsScepCa OBJECT IDENTIFIER ::= { lcsSetupCerts 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.1 +lcsSetupCertsScepCaOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCa 1 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.39.2.2 +lcsSetupCertsScepCaCaCerts OBJECT IDENTIFIER ::= { lcsSetupCertsScepCa 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.2.1 +lcsSetupCertsScepCaCaCertsCaDistingName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "CA distinguished name" + ::= { lcsSetupCertsScepCaCaCerts 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.2.3 +lcsSetupCertsScepCaCaCertsAlternativeName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCaCaCerts 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.2.4 +lcsSetupCertsScepCaCaCertsRsaKeyLength OBJECT-TYPE + SYNTAX INTEGER { + e1024 (1024), + e2048 (2048), + e3072 (3072), + e4096 (4096), + e8192 (8192) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCaCaCerts 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.2.5 +lcsSetupCertsScepCaCaCertsValidityPeriod OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCaCaCerts 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.2.6 +lcsSetupCertsScepCaCaCertsUpdateCaCertificatesBeforeExpiration OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCaCaCerts 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.2.8 +lcsSetupCertsScepCaCaCertsRaDistinguishedName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCaCaCerts 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.2.9 +lcsSetupCertsScepCaCaCertsCreateNewCaCertificates OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCaCaCerts 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.2.10 +lcsSetupCertsScepCaCaCertsCreatePkcs12BackupFiles OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCaCaCerts 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.2.11 +lcsSetupCertsScepCaCaCertsRestoreCertificatesFromBackup OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCaCaCerts 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.3 +lcsSetupCertsScepCaEncryptionAlgorithm OBJECT-TYPE + SYNTAX INTEGER { + eDes (0), + e3des (1), + eBlowfish (2), + eAes128 (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCa 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.4 +lcsSetupCertsScepCaRaAutoapprove OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCa 4 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.39.2.5 +lcsSetupCertsScepCaClientCerts OBJECT IDENTIFIER ::= { lcsSetupCertsScepCa 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.5.1 +lcsSetupCertsScepCaClientCertsValidityPeriod OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCaClientCerts 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.39.2.5.3 +lcsSetupCertsScepCaClientCertsChallPasswdsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupCertsScepCaClientCertsChallPasswdsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "challange passwords" + ::= { lcsSetupCertsScepCaClientCerts 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.39.2.5.3.1 +lcsSetupCertsScepCaClientCertsChallPasswdsEntry OBJECT-TYPE + SYNTAX LcsSetupCertsScepCaClientCertsChallPasswdsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupCertsScepCaClientCertsChallPasswdsEntryIndex + } + ::= { lcsSetupCertsScepCaClientCertsChallPasswdsTable 1 } + +LcsSetupCertsScepCaClientCertsChallPasswdsEntry ::= SEQUENCE { + lcsSetupCertsScepCaClientCertsChallPasswdsEntryIndex Integer32, + lcsSetupCertsScepCaClientCertsChallPasswdsEntrySubjDistngName DisplayString, + lcsSetupCertsScepCaClientCertsChallPasswdsEntryMacAddress DisplayString, + lcsSetupCertsScepCaClientCertsChallPasswdsEntryChallenge DisplayString, + lcsSetupCertsScepCaClientCertsChallPasswdsEntryValidity INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.2.5.3.1.1 +lcsSetupCertsScepCaClientCertsChallPasswdsEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCaClientCertsChallPasswdsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.2.5.3.1.2 +lcsSetupCertsScepCaClientCertsChallPasswdsEntrySubjDistngName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "subject distinguished name" + ::= { lcsSetupCertsScepCaClientCertsChallPasswdsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.2.5.3.1.3 +lcsSetupCertsScepCaClientCertsChallPasswdsEntryMacAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..12)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCaClientCertsChallPasswdsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.2.5.3.1.4 +lcsSetupCertsScepCaClientCertsChallPasswdsEntryChallenge OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCaClientCertsChallPasswdsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.2.5.3.1.5 +lcsSetupCertsScepCaClientCertsChallPasswdsEntryValidity OBJECT-TYPE + SYNTAX INTEGER { + ePermanently (0), + eOneTime (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCaClientCertsChallPasswdsEntry 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.5.4 +lcsSetupCertsScepCaClientCertsGeneralChallengePassword OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCaClientCerts 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.6 +lcsSetupCertsScepCaSignatureAlgorithm OBJECT-TYPE + SYNTAX INTEGER { + eMd5 (0), + eSha1 (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCa 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.7 +lcsSetupCertsScepCaFingerprintAlgorithm OBJECT-TYPE + SYNTAX INTEGER { + eMd5 (0), + eSha1 (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCa 7 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.39.2.8 +lcsSetupCertsScepCaCertRevLists OBJECT IDENTIFIER ::= { lcsSetupCertsScepCa 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.8.1 +lcsSetupCertsScepCaCertRevListsCrlUpdateInterval OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCaCertRevLists 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.8.2 +lcsSetupCertsScepCaCertRevListsCrlDistributionPointHostname OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCaCertRevLists 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.8.3 +lcsSetupCertsScepCaCertRevListsCreateNewCrl OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCaCertRevLists 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.9 +lcsSetupCertsScepCaReinitialize OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCa 9 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.39.2.10 +lcsSetupCertsScepCaLogging OBJECT IDENTIFIER ::= { lcsSetupCertsScepCa 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.10.1 +lcsSetupCertsScepCaLoggingEMail OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCaLogging 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.10.2 +lcsSetupCertsScepCaLoggingSyslog OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCaLogging 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.10.3 +lcsSetupCertsScepCaLoggingEMailReceiver OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCaLogging 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.10.4 +lcsSetupCertsScepCaLoggingSendBackupReminder OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsScepCaLogging 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.11 +lcsSetupCertsScepCaRootCa OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupCertsScepCa 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.12 +lcsSetupCertsScepCaCaPathLength OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupCertsScepCa 12 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.39.2.13 +lcsSetupCertsScepCaSubCa OBJECT IDENTIFIER ::= { lcsSetupCertsScepCa 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.13.1 +lcsSetupCertsScepCaSubCaAutoGeneratedRequest OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupCertsScepCaSubCa 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.13.2 +lcsSetupCertsScepCaSubCaCadn OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..100)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupCertsScepCaSubCa 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.13.3 +lcsSetupCertsScepCaSubCaChallengePwd OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..100)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupCertsScepCaSubCa 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.13.4 +lcsSetupCertsScepCaSubCaExtKeyUsage OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..100)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupCertsScepCaSubCa 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.13.5 +lcsSetupCertsScepCaSubCaCertKeyUsage OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..100)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupCertsScepCaSubCa 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.13.8 +lcsSetupCertsScepCaSubCaCaUrlAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupCertsScepCaSubCa 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.2.13.9 +lcsSetupCertsScepCaSubCaRestart OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupCertsScepCaSubCa 9 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.39.3 +lcsSetupCertsCrls OBJECT IDENTIFIER ::= { lcsSetupCerts 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.3.1 +lcsSetupCertsCrlsCrlOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsCrls 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.3.4 +lcsSetupCertsCrlsUpdateBefore OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsCrls 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.3.5 +lcsSetupCertsCrlsPrefetchPeriod OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsCrls 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.3.6 +lcsSetupCertsCrlsValidityExceedance OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsCrls 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.3.7 +lcsSetupCertsCrlsRefreshCrlNow OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsCrls 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.39.3.8 +lcsSetupCertsCrlsAlternativeUrlTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupCertsCrlsAlternativeUrlTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsCrls 8 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.39.3.8.1 +lcsSetupCertsCrlsAlternativeUrlTableEntry OBJECT-TYPE + SYNTAX LcsSetupCertsCrlsAlternativeUrlTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupCertsCrlsAlternativeUrlTableEntryAlternativeUrl + } + ::= { lcsSetupCertsCrlsAlternativeUrlTableTable 1 } + +LcsSetupCertsCrlsAlternativeUrlTableEntry ::= SEQUENCE { + lcsSetupCertsCrlsAlternativeUrlTableEntryAlternativeUrl DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.3.8.1.1 +lcsSetupCertsCrlsAlternativeUrlTableEntryAlternativeUrl OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsCrlsAlternativeUrlTableEntry 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.39.3.9 +lcsSetupCertsCrlsLoopbackAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsCrls 9 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.39.6 +lcsSetupCertsOcspClient OBJECT IDENTIFIER ::= { lcsSetupCerts 6 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.39.6.1 +lcsSetupCertsOcspClientCaProfileTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupCertsOcspClientCaProfileTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsOcspClient 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.39.6.1.1 +lcsSetupCertsOcspClientCaProfileTableEntry OBJECT-TYPE + SYNTAX LcsSetupCertsOcspClientCaProfileTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupCertsOcspClientCaProfileTableEntryProfileName + } + ::= { lcsSetupCertsOcspClientCaProfileTableTable 1 } + +LcsSetupCertsOcspClientCaProfileTableEntry ::= SEQUENCE { + lcsSetupCertsOcspClientCaProfileTableEntryProfileName DisplayString, + lcsSetupCertsOcspClientCaProfileTableEntryCaDistinguishedName DisplayString, + lcsSetupCertsOcspClientCaProfileTableEntryPreferAia INTEGER, + lcsSetupCertsOcspClientCaProfileTableEntryResponderProfileName DisplayString, + lcsSetupCertsOcspClientCaProfileTableEntrySourceInterface DisplayString, + lcsSetupCertsOcspClientCaProfileTableEntryCertEvaluationMode INTEGER, + lcsSetupCertsOcspClientCaProfileTableEntrySyslogEvents INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.6.1.1.1 +lcsSetupCertsOcspClientCaProfileTableEntryProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsOcspClientCaProfileTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.6.1.1.2 +lcsSetupCertsOcspClientCaProfileTableEntryCaDistinguishedName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsOcspClientCaProfileTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.6.1.1.3 +lcsSetupCertsOcspClientCaProfileTableEntryPreferAia OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsOcspClientCaProfileTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.6.1.1.4 +lcsSetupCertsOcspClientCaProfileTableEntryResponderProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsOcspClientCaProfileTableEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.6.1.1.5 +lcsSetupCertsOcspClientCaProfileTableEntrySourceInterface OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsOcspClientCaProfileTableEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.6.1.1.6 +lcsSetupCertsOcspClientCaProfileTableEntryCertEvaluationMode OBJECT-TYPE + SYNTAX INTEGER { + eStrict (0), + eLoose (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsOcspClientCaProfileTableEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.6.1.1.7 +lcsSetupCertsOcspClientCaProfileTableEntrySyslogEvents OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsOcspClientCaProfileTableEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.39.6.2 +lcsSetupCertsOcspClientResponderProfileTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupCertsOcspClientResponderProfileTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsOcspClient 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.39.6.2.1 +lcsSetupCertsOcspClientResponderProfileTableEntry OBJECT-TYPE + SYNTAX LcsSetupCertsOcspClientResponderProfileTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupCertsOcspClientResponderProfileTableEntryProfileName + } + ::= { lcsSetupCertsOcspClientResponderProfileTableTable 1 } + +LcsSetupCertsOcspClientResponderProfileTableEntry ::= SEQUENCE { + lcsSetupCertsOcspClientResponderProfileTableEntryProfileName DisplayString, + lcsSetupCertsOcspClientResponderProfileTableEntryUrl DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.6.2.1.1 +lcsSetupCertsOcspClientResponderProfileTableEntryProfileName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsOcspClientResponderProfileTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.39.6.2.1.2 +lcsSetupCertsOcspClientResponderProfileTableEntryUrl OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupCertsOcspClientResponderProfileTableEntry 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.40 +lcsSetupGps OBJECT IDENTIFIER ::= { lcsSetup 40 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.40.1 +lcsSetupGpsOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupGps 1 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.41 +lcsSetupUtm OBJECT IDENTIFIER ::= { lcsSetup 41 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.41.2 +lcsSetupUtmCf OBJECT IDENTIFIER ::= { lcsSetupUtm 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.41.2.1 +lcsSetupUtmCfOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCf 1 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.41.2.2 +lcsSetupUtmCfGlobalSettings OBJECT IDENTIFIER ::= { lcsSetupUtmCf 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.41.2.2.1 +lcsSetupUtmCfGlobalSettingsAdminEmail OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettings 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.41.2.2.5 +lcsSetupUtmCfGlobalSettingsActionOnError OBJECT-TYPE + SYNTAX INTEGER { + eBlock (0), + ePass (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettings 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.41.2.2.6 +lcsSetupUtmCfGlobalSettingsActionOnLicenseExceedance OBJECT-TYPE + SYNTAX INTEGER { + eBlock (0), + ePass (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettings 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.41.2.2.7 +lcsSetupUtmCfGlobalSettingsActionOnLicenseExpiration OBJECT-TYPE + SYNTAX INTEGER { + eBlock (0), + ePass (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettings 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.41.2.2.9 +lcsSetupUtmCfGlobalSettingsNotificationTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupUtmCfGlobalSettingsNotificationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettings 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.41.2.2.9.1 +lcsSetupUtmCfGlobalSettingsNotificationEntry OBJECT-TYPE + SYNTAX LcsSetupUtmCfGlobalSettingsNotificationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupUtmCfGlobalSettingsNotificationEntryCause + } + ::= { lcsSetupUtmCfGlobalSettingsNotificationTable 1 } + +LcsSetupUtmCfGlobalSettingsNotificationEntry ::= SEQUENCE { + lcsSetupUtmCfGlobalSettingsNotificationEntryCause INTEGER, + lcsSetupUtmCfGlobalSettingsNotificationEntryEMail INTEGER, + lcsSetupUtmCfGlobalSettingsNotificationEntrySnmp INTEGER, + lcsSetupUtmCfGlobalSettingsNotificationEntrySyslog INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.2.9.1.1 +lcsSetupUtmCfGlobalSettingsNotificationEntryCause OBJECT-TYPE + SYNTAX INTEGER { + eSpamMail (1), + ePhishingMail (2), + eUpdate (3), + eInfected (4), + eBlockedUrl (5), + eError (6), + eLicenseExpired (7), + eLicenseExceeded (8), + eOverride (9), + eProxyLimit (10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettingsNotificationEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.2.9.1.2 +lcsSetupUtmCfGlobalSettingsNotificationEntryEMail OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettingsNotificationEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.2.9.1.3 +lcsSetupUtmCfGlobalSettingsNotificationEntrySnmp OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettingsNotificationEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.2.9.1.4 +lcsSetupUtmCfGlobalSettingsNotificationEntrySyslog OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettingsNotificationEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.41.2.2.10 +lcsSetupUtmCfGlobalSettingsBlockTextTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupUtmCfGlobalSettingsBlockTextEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettings 10 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.41.2.2.10.1 +lcsSetupUtmCfGlobalSettingsBlockTextEntry OBJECT-TYPE + SYNTAX LcsSetupUtmCfGlobalSettingsBlockTextEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupUtmCfGlobalSettingsBlockTextEntryLanguage + } + ::= { lcsSetupUtmCfGlobalSettingsBlockTextTable 1 } + +LcsSetupUtmCfGlobalSettingsBlockTextEntry ::= SEQUENCE { + lcsSetupUtmCfGlobalSettingsBlockTextEntryLanguage DisplayString, + lcsSetupUtmCfGlobalSettingsBlockTextEntryText DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.2.10.1.1 +lcsSetupUtmCfGlobalSettingsBlockTextEntryLanguage OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettingsBlockTextEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.2.10.1.2 +lcsSetupUtmCfGlobalSettingsBlockTextEntryText OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..254)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettingsBlockTextEntry 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.41.2.2.11 +lcsSetupUtmCfGlobalSettingsUrlToShowOnBlocking OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..254)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettings 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.41.2.2.12 +lcsSetupUtmCfGlobalSettingsLoopbackToUseOnBlocking OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettings 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.41.2.2.13 +lcsSetupUtmCfGlobalSettingsOverrideActive OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettings 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.41.2.2.14 +lcsSetupUtmCfGlobalSettingsOverrideDuration OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettings 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.41.2.2.15 +lcsSetupUtmCfGlobalSettingsOverrideType OBJECT-TYPE + SYNTAX INTEGER { + eCategory (0), + eDomain (1), + eCategoryAndDomain (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettings 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.41.2.2.17 +lcsSetupUtmCfGlobalSettingsSaveToFlashrom OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettings 17 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.41.2.2.19 +lcsSetupUtmCfGlobalSettingsErrorTextTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupUtmCfGlobalSettingsErrorTextEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettings 19 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.41.2.2.19.1 +lcsSetupUtmCfGlobalSettingsErrorTextEntry OBJECT-TYPE + SYNTAX LcsSetupUtmCfGlobalSettingsErrorTextEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupUtmCfGlobalSettingsErrorTextEntryLanguage + } + ::= { lcsSetupUtmCfGlobalSettingsErrorTextTable 1 } + +LcsSetupUtmCfGlobalSettingsErrorTextEntry ::= SEQUENCE { + lcsSetupUtmCfGlobalSettingsErrorTextEntryLanguage DisplayString, + lcsSetupUtmCfGlobalSettingsErrorTextEntryText DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.2.19.1.1 +lcsSetupUtmCfGlobalSettingsErrorTextEntryLanguage OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettingsErrorTextEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.2.19.1.2 +lcsSetupUtmCfGlobalSettingsErrorTextEntryText OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..254)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettingsErrorTextEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.41.2.2.20 +lcsSetupUtmCfGlobalSettingsOverrideTextTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupUtmCfGlobalSettingsOverrideTextEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettings 20 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.41.2.2.20.1 +lcsSetupUtmCfGlobalSettingsOverrideTextEntry OBJECT-TYPE + SYNTAX LcsSetupUtmCfGlobalSettingsOverrideTextEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupUtmCfGlobalSettingsOverrideTextEntryLanguage + } + ::= { lcsSetupUtmCfGlobalSettingsOverrideTextTable 1 } + +LcsSetupUtmCfGlobalSettingsOverrideTextEntry ::= SEQUENCE { + lcsSetupUtmCfGlobalSettingsOverrideTextEntryLanguage DisplayString, + lcsSetupUtmCfGlobalSettingsOverrideTextEntryText DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.2.20.1.1 +lcsSetupUtmCfGlobalSettingsOverrideTextEntryLanguage OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettingsOverrideTextEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.2.20.1.2 +lcsSetupUtmCfGlobalSettingsOverrideTextEntryText OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..254)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettingsOverrideTextEntry 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.41.2.2.21 +lcsSetupUtmCfGlobalSettingsUrlToShowOnOverride OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..254)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettings 21 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.41.2.2.22 +lcsSetupUtmCfGlobalSettingsLoopbackToUseOnOverride OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettings 22 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.41.2.2.23 +lcsSetupUtmCfGlobalSettingsSnapshot OBJECT IDENTIFIER ::= { lcsSetupUtmCfGlobalSettings 23 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.41.2.2.23.1 +lcsSetupUtmCfGlobalSettingsSnapshotActive OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettingsSnapshot 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.41.2.2.23.2 +lcsSetupUtmCfGlobalSettingsSnapshotType OBJECT-TYPE + SYNTAX INTEGER { + eMonthly (0), + eWeekly (1), + eDaily (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettingsSnapshot 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.41.2.2.23.3 +lcsSetupUtmCfGlobalSettingsSnapshotTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..5)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettingsSnapshot 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.41.2.2.23.4 +lcsSetupUtmCfGlobalSettingsSnapshotDay OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettingsSnapshot 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.41.2.2.23.5 +lcsSetupUtmCfGlobalSettingsSnapshotWeekday OBJECT-TYPE + SYNTAX INTEGER { + eSunday (0), + eMonday (1), + eTuesday (2), + eWednesday (3), + eThursday (4), + eFriday (5), + eSaturday (6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettingsSnapshot 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.41.2.2.24 +lcsSetupUtmCfGlobalSettingsProxyConnectionsLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettings 24 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.41.2.2.25 +lcsSetupUtmCfGlobalSettingsProcessingTimeoutInMs OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettings 25 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.41.2.2.26 +lcsSetupUtmCfGlobalSettingsUrlToShowOnError OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..254)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettings 26 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.41.2.2.27 +lcsSetupUtmCfGlobalSettingsLoopbackToUseOnError OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfGlobalSettings 27 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.41.2.2.28 +lcsSetupUtmCfGlobalSettingsLoopbackToRatingServer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupUtmCfGlobalSettings 28 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.41.2.2.29 +lcsSetupUtmCfGlobalSettingsWildcard OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupUtmCfGlobalSettings 29 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.41.2.3 +lcsSetupUtmCfProf OBJECT IDENTIFIER ::= { lcsSetupUtmCf 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.41.2.3.1 +lcsSetupUtmCfProfProfTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupUtmCfProfProfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Profiles" + ::= { lcsSetupUtmCfProf 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.41.2.3.1.1 +lcsSetupUtmCfProfProfEntry OBJECT-TYPE + SYNTAX LcsSetupUtmCfProfProfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupUtmCfProfProfEntryName, + lcsSetupUtmCfProfProfEntryTimeframe + } + ::= { lcsSetupUtmCfProfProfTable 1 } + +LcsSetupUtmCfProfProfEntry ::= SEQUENCE { + lcsSetupUtmCfProfProfEntryName DisplayString, + lcsSetupUtmCfProfProfEntryTimeframe DisplayString, + lcsSetupUtmCfProfProfEntryWhitelist DisplayString, + lcsSetupUtmCfProfProfEntryBlacklist DisplayString, + lcsSetupUtmCfProfProfEntryCatProf DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.1.1.1 +lcsSetupUtmCfProfProfEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfProfEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.1.1.2 +lcsSetupUtmCfProfProfEntryTimeframe OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfProfEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.1.1.3 +lcsSetupUtmCfProfProfEntryWhitelist OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfProfEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.1.1.4 +lcsSetupUtmCfProfProfEntryBlacklist OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfProfEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.1.1.5 +lcsSetupUtmCfProfProfEntryCatProf OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Category-Profile" + ::= { lcsSetupUtmCfProfProfEntry 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.41.2.3.2 +lcsSetupUtmCfProfWhitelistsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupUtmCfProfWhitelistsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProf 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.41.2.3.2.1 +lcsSetupUtmCfProfWhitelistsEntry OBJECT-TYPE + SYNTAX LcsSetupUtmCfProfWhitelistsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupUtmCfProfWhitelistsEntryName + } + ::= { lcsSetupUtmCfProfWhitelistsTable 1 } + +LcsSetupUtmCfProfWhitelistsEntry ::= SEQUENCE { + lcsSetupUtmCfProfWhitelistsEntryName DisplayString, + lcsSetupUtmCfProfWhitelistsEntryWhitelist DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.2.1.1 +lcsSetupUtmCfProfWhitelistsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfWhitelistsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.2.1.2 +lcsSetupUtmCfProfWhitelistsEntryWhitelist OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfWhitelistsEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.41.2.3.3 +lcsSetupUtmCfProfBlacklistsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupUtmCfProfBlacklistsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProf 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.41.2.3.3.1 +lcsSetupUtmCfProfBlacklistsEntry OBJECT-TYPE + SYNTAX LcsSetupUtmCfProfBlacklistsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupUtmCfProfBlacklistsEntryName + } + ::= { lcsSetupUtmCfProfBlacklistsTable 1 } + +LcsSetupUtmCfProfBlacklistsEntry ::= SEQUENCE { + lcsSetupUtmCfProfBlacklistsEntryName DisplayString, + lcsSetupUtmCfProfBlacklistsEntryBlacklist DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.3.1.1 +lcsSetupUtmCfProfBlacklistsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfBlacklistsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.3.1.2 +lcsSetupUtmCfProfBlacklistsEntryBlacklist OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..251)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfBlacklistsEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.41.2.3.4 +lcsSetupUtmCfProfCatProfTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupUtmCfProfCatProfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Category-Profiles" + ::= { lcsSetupUtmCfProf 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1 +lcsSetupUtmCfProfCatProfEntry OBJECT-TYPE + SYNTAX LcsSetupUtmCfProfCatProfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupUtmCfProfCatProfEntryName + } + ::= { lcsSetupUtmCfProfCatProfTable 1 } + +LcsSetupUtmCfProfCatProfEntry ::= SEQUENCE { + lcsSetupUtmCfProfCatProfEntryName DisplayString, + lcsSetupUtmCfProfCatProfEntryUnknown INTEGER, + lcsSetupUtmCfProfCatProfEntryPornographyEroticSex INTEGER, + lcsSetupUtmCfProfCatProfEntrySwimwearLingerie INTEGER, + lcsSetupUtmCfProfCatProfEntryShopping INTEGER, + lcsSetupUtmCfProfCatProfEntryAuctionsClassifiedAds INTEGER, + lcsSetupUtmCfProfCatProfEntryGovNonProv INTEGER, + lcsSetupUtmCfProfCatProfEntryCitiesRegionsCountries INTEGER, + lcsSetupUtmCfProfCatProfEntryEducation INTEGER, + lcsSetupUtmCfProfCatProfEntryPoliticalParties INTEGER, + lcsSetupUtmCfProfCatProfEntryReligionSpirituality INTEGER, + lcsSetupUtmCfProfCatProfEntryIllegalActivities INTEGER, + lcsSetupUtmCfProfCatProfEntryComputerCrimeWarezHacking INTEGER, + lcsSetupUtmCfProfCatProfEntryPolHateDiscr INTEGER, + lcsSetupUtmCfProfCatProfEntryViolenceExtreme INTEGER, + lcsSetupUtmCfProfCatProfEntryGamblingLottery INTEGER, + lcsSetupUtmCfProfCatProfEntryComputerGames INTEGER, + lcsSetupUtmCfProfCatProfEntryToys INTEGER, + lcsSetupUtmCfProfCatProfEntryCinTvSocial INTEGER, + lcsSetupUtmCfProfCatProfEntryRecrFacThemPark INTEGER, + lcsSetupUtmCfProfCatProfEntryArtsMuseumsTheaters INTEGER, + lcsSetupUtmCfProfCatProfEntryMusicRadioBroadcast INTEGER, + lcsSetupUtmCfProfCatProfEntryLiteratureBooks INTEGER, + lcsSetupUtmCfProfCatProfEntryHumorCartoons INTEGER, + lcsSetupUtmCfProfCatProfEntryNewsMagazines INTEGER, + lcsSetupUtmCfProfCatProfEntryWebmailUnifiedMessaging INTEGER, + lcsSetupUtmCfProfCatProfEntryChat INTEGER, + lcsSetupUtmCfProfCatProfEntryBlogsBulletinBoards INTEGER, + lcsSetupUtmCfProfCatProfEntryMobileTelephony INTEGER, + lcsSetupUtmCfProfCatProfEntryDigitalPostcards INTEGER, + lcsSetupUtmCfProfCatProfEntrySearchWebPortal INTEGER, + lcsSetupUtmCfProfCatProfEntrySoftwareHardware INTEGER, + lcsSetupUtmCfProfCatProfEntryCommunicationServices INTEGER, + lcsSetupUtmCfProfCatProfEntryItSecurityItInformation INTEGER, + lcsSetupUtmCfProfCatProfEntryWebSiteTranslation INTEGER, + lcsSetupUtmCfProfCatProfEntryAnonymousProxies INTEGER, + lcsSetupUtmCfProfCatProfEntryIllegalDrugs INTEGER, + lcsSetupUtmCfProfCatProfEntryAlcoholTobacco INTEGER, + lcsSetupUtmCfProfCatProfEntryDatingNetworks INTEGER, + lcsSetupUtmCfProfCatProfEntryRestEnter INTEGER, + lcsSetupUtmCfProfCatProfEntryTravel INTEGER, + lcsSetupUtmCfProfCatProfEntryFashionCosmeticsJewelry INTEGER, + lcsSetupUtmCfProfCatProfEntrySports INTEGER, + lcsSetupUtmCfProfCatProfEntryArchConstFurn INTEGER, + lcsSetupUtmCfProfCatProfEntryEnvironmentClimatePets INTEGER, + lcsSetupUtmCfProfCatProfEntryPersonalWebSites INTEGER, + lcsSetupUtmCfProfCatProfEntryJobSearch INTEGER, + lcsSetupUtmCfProfCatProfEntryFinanceInvestment INTEGER, + lcsSetupUtmCfProfCatProfEntryBanking INTEGER, + lcsSetupUtmCfProfCatProfEntryVehicles INTEGER, + lcsSetupUtmCfProfCatProfEntryWeaponsMilitary INTEGER, + lcsSetupUtmCfProfCatProfEntryMedicineHealthSelfHelp INTEGER, + lcsSetupUtmCfProfCatProfEntryAbortion INTEGER, + lcsSetupUtmCfProfCatProfEntrySpamUrls INTEGER, + lcsSetupUtmCfProfCatProfEntryMalware INTEGER, + lcsSetupUtmCfProfCatProfEntryPhishingUrls INTEGER, + lcsSetupUtmCfProfCatProfEntryInstantMessaging INTEGER, + lcsSetupUtmCfProfCatProfEntryGeneralBusiness INTEGER, + lcsSetupUtmCfProfCatProfEntryBannerAdvertisements INTEGER, + lcsSetupUtmCfProfCatProfEntryWebStorage INTEGER, + lcsSetupUtmCfProfCatProfEntryCommandControlServer INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.1 +lcsSetupUtmCfProfCatProfEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.100 +lcsSetupUtmCfProfCatProfEntryUnknown OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 100 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.101 +lcsSetupUtmCfProfCatProfEntryPornographyEroticSex OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 101 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.103 +lcsSetupUtmCfProfCatProfEntrySwimwearLingerie OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 103 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.104 +lcsSetupUtmCfProfCatProfEntryShopping OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 104 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.105 +lcsSetupUtmCfProfCatProfEntryAuctionsClassifiedAds OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 105 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.106 +lcsSetupUtmCfProfCatProfEntryGovNonProv OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Governmental / Non-Profit Organizations" + ::= { lcsSetupUtmCfProfCatProfEntry 106 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.108 +lcsSetupUtmCfProfCatProfEntryCitiesRegionsCountries OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 108 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.109 +lcsSetupUtmCfProfCatProfEntryEducation OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 109 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.110 +lcsSetupUtmCfProfCatProfEntryPoliticalParties OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 110 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.111 +lcsSetupUtmCfProfCatProfEntryReligionSpirituality OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 111 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.113 +lcsSetupUtmCfProfCatProfEntryIllegalActivities OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 113 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.114 +lcsSetupUtmCfProfCatProfEntryComputerCrimeWarezHacking OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 114 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.115 +lcsSetupUtmCfProfCatProfEntryPolHateDiscr OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Political Extreme / Hate / Discrimination" + ::= { lcsSetupUtmCfProfCatProfEntry 115 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.117 +lcsSetupUtmCfProfCatProfEntryViolenceExtreme OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 117 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.118 +lcsSetupUtmCfProfCatProfEntryGamblingLottery OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 118 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.119 +lcsSetupUtmCfProfCatProfEntryComputerGames OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 119 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.120 +lcsSetupUtmCfProfCatProfEntryToys OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 120 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.121 +lcsSetupUtmCfProfCatProfEntryCinTvSocial OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Cinema / Television / Social Media" + ::= { lcsSetupUtmCfProfCatProfEntry 121 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.122 +lcsSetupUtmCfProfCatProfEntryRecrFacThemPark OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Recreational Facilities / Theme Parks" + ::= { lcsSetupUtmCfProfCatProfEntry 122 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.123 +lcsSetupUtmCfProfCatProfEntryArtsMuseumsTheaters OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 123 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.124 +lcsSetupUtmCfProfCatProfEntryMusicRadioBroadcast OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 124 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.125 +lcsSetupUtmCfProfCatProfEntryLiteratureBooks OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 125 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.126 +lcsSetupUtmCfProfCatProfEntryHumorCartoons OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 126 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.127 +lcsSetupUtmCfProfCatProfEntryNewsMagazines OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 127 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.128 +lcsSetupUtmCfProfCatProfEntryWebmailUnifiedMessaging OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 128 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.129 +lcsSetupUtmCfProfCatProfEntryChat OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 129 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.130 +lcsSetupUtmCfProfCatProfEntryBlogsBulletinBoards OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 130 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.131 +lcsSetupUtmCfProfCatProfEntryMobileTelephony OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 131 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.132 +lcsSetupUtmCfProfCatProfEntryDigitalPostcards OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 132 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.133 +lcsSetupUtmCfProfCatProfEntrySearchWebPortal OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Search Engines / Web Catalogs / Portals" + ::= { lcsSetupUtmCfProfCatProfEntry 133 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.134 +lcsSetupUtmCfProfCatProfEntrySoftwareHardware OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 134 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.135 +lcsSetupUtmCfProfCatProfEntryCommunicationServices OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 135 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.136 +lcsSetupUtmCfProfCatProfEntryItSecurityItInformation OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 136 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.137 +lcsSetupUtmCfProfCatProfEntryWebSiteTranslation OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 137 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.138 +lcsSetupUtmCfProfCatProfEntryAnonymousProxies OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 138 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.139 +lcsSetupUtmCfProfCatProfEntryIllegalDrugs OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 139 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.140 +lcsSetupUtmCfProfCatProfEntryAlcoholTobacco OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 140 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.143 +lcsSetupUtmCfProfCatProfEntryDatingNetworks OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 143 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.144 +lcsSetupUtmCfProfCatProfEntryRestEnter OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Restaurants / Entertainment Venues" + ::= { lcsSetupUtmCfProfCatProfEntry 144 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.145 +lcsSetupUtmCfProfCatProfEntryTravel OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 145 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.146 +lcsSetupUtmCfProfCatProfEntryFashionCosmeticsJewelry OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 146 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.147 +lcsSetupUtmCfProfCatProfEntrySports OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 147 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.148 +lcsSetupUtmCfProfCatProfEntryArchConstFurn OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Architecture / Construction / Furniture" + ::= { lcsSetupUtmCfProfCatProfEntry 148 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.149 +lcsSetupUtmCfProfCatProfEntryEnvironmentClimatePets OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 149 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.150 +lcsSetupUtmCfProfCatProfEntryPersonalWebSites OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 150 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.151 +lcsSetupUtmCfProfCatProfEntryJobSearch OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 151 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.152 +lcsSetupUtmCfProfCatProfEntryFinanceInvestment OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 152 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.154 +lcsSetupUtmCfProfCatProfEntryBanking OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 154 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.155 +lcsSetupUtmCfProfCatProfEntryVehicles OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 155 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.156 +lcsSetupUtmCfProfCatProfEntryWeaponsMilitary OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 156 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.157 +lcsSetupUtmCfProfCatProfEntryMedicineHealthSelfHelp OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 157 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.158 +lcsSetupUtmCfProfCatProfEntryAbortion OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 158 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.160 +lcsSetupUtmCfProfCatProfEntrySpamUrls OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 160 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.161 +lcsSetupUtmCfProfCatProfEntryMalware OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 161 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.162 +lcsSetupUtmCfProfCatProfEntryPhishingUrls OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 162 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.163 +lcsSetupUtmCfProfCatProfEntryInstantMessaging OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 163 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.167 +lcsSetupUtmCfProfCatProfEntryGeneralBusiness OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 167 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.174 +lcsSetupUtmCfProfCatProfEntryBannerAdvertisements OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 174 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.180 +lcsSetupUtmCfProfCatProfEntryWebStorage OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUtmCfProfCatProfEntry 180 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.41.2.3.4.1.181 +lcsSetupUtmCfProfCatProfEntryCommandControlServer OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eForbidden (1), + eOverride (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupUtmCfProfCatProfEntry 181 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.52 +lcsSetupComPorts OBJECT IDENTIFIER ::= { lcsSetup 52 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.52.1 +lcsSetupComPortsDevTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupComPortsDevEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPorts 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.52.1.1 +lcsSetupComPortsDevEntry OBJECT-TYPE + SYNTAX LcsSetupComPortsDevEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupComPortsDevEntryDeviceType + } + ::= { lcsSetupComPortsDevTable 1 } + +LcsSetupComPortsDevEntry ::= SEQUENCE { + lcsSetupComPortsDevEntryDeviceType INTEGER, + lcsSetupComPortsDevEntryServ INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.1.1.1 +lcsSetupComPortsDevEntryDeviceType OBJECT-TYPE + SYNTAX INTEGER { + eOutband (1), + eSierraMinicard8780 (11), + eSierraMinicard8781 (12), + eOptionIcon (17), + eOptionMinicard0201 (19), + eHuaweiE612E630E1750 (21), + e4gSystemsUxs1 (23), + eNovatelMerlinMc950d (26), + eSierraAircard875u (30), + eHuaweiE172E220E870 (31), + eBelkinF5u103 (33), + eProlific2303 (34), + eFtdi8u232am (35), + eGpsNmea (36), + eSierraMinicard8790 (38), + eSierraCompass885 (39), + eQualcomDm (45), + eSierraAircard501 (46), + eHuaweiK4505 (49), + eHuaweiK3765 (51), + eSierraDirectIp (53), + eHuaweiE182 (54), + eSierraMinicard8705 (55), + eSierraMinicard8801 (56), + eHuaweiE1750 (57), + eNokiaCs19 (59), + eHuaweiE398 (60), + eHuaweiE1550 (61), + eSierraMinicard7710 (62), + eHuaweiE352 (64) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsDevEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.1.1.4 +lcsSetupComPortsDevEntryServ OBJECT-TYPE + SYNTAX INTEGER { + eWan (1), + eCOMPortServ (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsDevEntry 4 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.52.2 +lcsSetupComPortsCOMPortServ OBJECT IDENTIFIER ::= { lcsSetupComPorts 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.52.2.1 +lcsSetupComPortsCOMPortServOperTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupComPortsCOMPortServOperEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServ 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.52.2.1.1 +lcsSetupComPortsCOMPortServOperEntry OBJECT-TYPE + SYNTAX LcsSetupComPortsCOMPortServOperEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupComPortsCOMPortServOperEntryDeviceType, + lcsSetupComPortsCOMPortServOperEntryPortNumber + } + ::= { lcsSetupComPortsCOMPortServOperTable 1 } + +LcsSetupComPortsCOMPortServOperEntry ::= SEQUENCE { + lcsSetupComPortsCOMPortServOperEntryDeviceType INTEGER, + lcsSetupComPortsCOMPortServOperEntryPortNumber Integer32, + lcsSetupComPortsCOMPortServOperEntryOperating INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.1.1.1 +lcsSetupComPortsCOMPortServOperEntryDeviceType OBJECT-TYPE + SYNTAX INTEGER { + eOutband (1), + eBelkinF5u103 (33), + eProlific2303 (34), + eFtdi8u232am (35), + eGpsNmea (36), + eQualcomDm (45) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServOperEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.1.1.2 +lcsSetupComPortsCOMPortServOperEntryPortNumber OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServOperEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.1.1.4 +lcsSetupComPortsCOMPortServOperEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServOperEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.52.2.2 +lcsSetupComPortsCOMPortServCOMPortSetTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupComPortsCOMPortServCOMPortSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServ 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.52.2.2.1 +lcsSetupComPortsCOMPortServCOMPortSetEntry OBJECT-TYPE + SYNTAX LcsSetupComPortsCOMPortServCOMPortSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupComPortsCOMPortServCOMPortSetEntryDeviceType, + lcsSetupComPortsCOMPortServCOMPortSetEntryPortNumber + } + ::= { lcsSetupComPortsCOMPortServCOMPortSetTable 1 } + +LcsSetupComPortsCOMPortServCOMPortSetEntry ::= SEQUENCE { + lcsSetupComPortsCOMPortServCOMPortSetEntryDeviceType INTEGER, + lcsSetupComPortsCOMPortServCOMPortSetEntryPortNumber Integer32, + lcsSetupComPortsCOMPortServCOMPortSetEntryBitRate INTEGER, + lcsSetupComPortsCOMPortServCOMPortSetEntryDataBits INTEGER, + lcsSetupComPortsCOMPortServCOMPortSetEntryParity INTEGER, + lcsSetupComPortsCOMPortServCOMPortSetEntryStopBits INTEGER, + lcsSetupComPortsCOMPortServCOMPortSetEntryHandshake INTEGER, + lcsSetupComPortsCOMPortServCOMPortSetEntryReadyCondition INTEGER, + lcsSetupComPortsCOMPortServCOMPortSetEntryReadyDataTimeout Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.2.1.1 +lcsSetupComPortsCOMPortServCOMPortSetEntryDeviceType OBJECT-TYPE + SYNTAX INTEGER { + eOutband (1), + eBelkinF5u103 (33), + eProlific2303 (34), + eFtdi8u232am (35), + eGpsNmea (36), + eQualcomDm (45) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServCOMPortSetEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.2.1.2 +lcsSetupComPortsCOMPortServCOMPortSetEntryPortNumber OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServCOMPortSetEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.2.1.4 +lcsSetupComPortsCOMPortServCOMPortSetEntryBitRate OBJECT-TYPE + SYNTAX INTEGER { + e110 (110), + e300 (300), + e600 (600), + e1200 (1200), + e2400 (2400), + e4800 (4800), + e9600 (9600), + e19200 (19200), + e38400 (38400), + e57600 (57600), + e115200 (115200), + e125000 (125000), + e230400 (230400) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServCOMPortSetEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.2.1.5 +lcsSetupComPortsCOMPortServCOMPortSetEntryDataBits OBJECT-TYPE + SYNTAX INTEGER { + e7 (7), + e8 (8) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServCOMPortSetEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.2.1.6 +lcsSetupComPortsCOMPortServCOMPortSetEntryParity OBJECT-TYPE + SYNTAX INTEGER { + eNone (1), + eOdd (2), + eEven (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServCOMPortSetEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.2.1.7 +lcsSetupComPortsCOMPortServCOMPortSetEntryStopBits OBJECT-TYPE + SYNTAX INTEGER { + e1 (1), + e2 (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServCOMPortSetEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.2.1.8 +lcsSetupComPortsCOMPortServCOMPortSetEntryHandshake OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eRtsCts (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServCOMPortSetEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.2.1.9 +lcsSetupComPortsCOMPortServCOMPortSetEntryReadyCondition OBJECT-TYPE + SYNTAX INTEGER { + eDtr (0), + eData (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServCOMPortSetEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.2.1.10 +lcsSetupComPortsCOMPortServCOMPortSetEntryReadyDataTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServCOMPortSetEntry 10 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.52.2.3 +lcsSetupComPortsCOMPortServNetwSetTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupComPortsCOMPortServNetwSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServ 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.52.2.3.1 +lcsSetupComPortsCOMPortServNetwSetEntry OBJECT-TYPE + SYNTAX LcsSetupComPortsCOMPortServNetwSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupComPortsCOMPortServNetwSetEntryDeviceType, + lcsSetupComPortsCOMPortServNetwSetEntryPortNumber + } + ::= { lcsSetupComPortsCOMPortServNetwSetTable 1 } + +LcsSetupComPortsCOMPortServNetwSetEntry ::= SEQUENCE { + lcsSetupComPortsCOMPortServNetwSetEntryDeviceType INTEGER, + lcsSetupComPortsCOMPortServNetwSetEntryPortNumber Integer32, + lcsSetupComPortsCOMPortServNetwSetEntryTcpMode INTEGER, + lcsSetupComPortsCOMPortServNetwSetEntryListenPort Integer32, + lcsSetupComPortsCOMPortServNetwSetEntryConnectHostname DisplayString, + lcsSetupComPortsCOMPortServNetwSetEntryConnectPort Integer32, + lcsSetupComPortsCOMPortServNetwSetEntryLoopbackAddr DisplayString, + lcsSetupComPortsCOMPortServNetwSetEntryRfc2217Extensions INTEGER, + lcsSetupComPortsCOMPortServNetwSetEntryNewlineConversion INTEGER, + lcsSetupComPortsCOMPortServNetwSetEntryAssumeBinaryMode INTEGER, + lcsSetupComPortsCOMPortServNetwSetEntryTcpRetransmitTimeout Integer32, + lcsSetupComPortsCOMPortServNetwSetEntryTcpRetryCount Integer32, + lcsSetupComPortsCOMPortServNetwSetEntryTcpKeepalive INTEGER, + lcsSetupComPortsCOMPortServNetwSetEntryTcpKeepaliveInterval Integer32, + lcsSetupComPortsCOMPortServNetwSetEntryBinaryMode INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.3.1.1 +lcsSetupComPortsCOMPortServNetwSetEntryDeviceType OBJECT-TYPE + SYNTAX INTEGER { + eOutband (1), + eBelkinF5u103 (33), + eProlific2303 (34), + eFtdi8u232am (35), + eGpsNmea (36), + eQualcomDm (45) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServNetwSetEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.3.1.2 +lcsSetupComPortsCOMPortServNetwSetEntryPortNumber OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServNetwSetEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.3.1.4 +lcsSetupComPortsCOMPortServNetwSetEntryTcpMode OBJECT-TYPE + SYNTAX INTEGER { + eServer (0), + eClient (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServNetwSetEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.3.1.5 +lcsSetupComPortsCOMPortServNetwSetEntryListenPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServNetwSetEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.3.1.6 +lcsSetupComPortsCOMPortServNetwSetEntryConnectHostname OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..48)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServNetwSetEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.3.1.7 +lcsSetupComPortsCOMPortServNetwSetEntryConnectPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServNetwSetEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.3.1.8 +lcsSetupComPortsCOMPortServNetwSetEntryLoopbackAddr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServNetwSetEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.3.1.9 +lcsSetupComPortsCOMPortServNetwSetEntryRfc2217Extensions OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServNetwSetEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.3.1.10 +lcsSetupComPortsCOMPortServNetwSetEntryNewlineConversion OBJECT-TYPE + SYNTAX INTEGER { + eCrlf (0), + eCr (1), + eLf (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServNetwSetEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.3.1.11 +lcsSetupComPortsCOMPortServNetwSetEntryAssumeBinaryMode OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServNetwSetEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.3.1.12 +lcsSetupComPortsCOMPortServNetwSetEntryTcpRetransmitTimeout OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServNetwSetEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.3.1.13 +lcsSetupComPortsCOMPortServNetwSetEntryTcpRetryCount OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServNetwSetEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.3.1.14 +lcsSetupComPortsCOMPortServNetwSetEntryTcpKeepalive OBJECT-TYPE + SYNTAX INTEGER { + eInactive (0), + eActive (1), + eProactive (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServNetwSetEntry 14 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.3.1.15 +lcsSetupComPortsCOMPortServNetwSetEntryTcpKeepaliveInterval OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServNetwSetEntry 15 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.2.3.1.16 +lcsSetupComPortsCOMPortServNetwSetEntryBinaryMode OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eYes (1), + eNo (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsCOMPortServNetwSetEntry 16 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.52.3 +lcsSetupComPortsWan OBJECT IDENTIFIER ::= { lcsSetupComPorts 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.52.3.1 +lcsSetupComPortsWanDevTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupComPortsWanDevEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsWan 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.52.3.1.1 +lcsSetupComPortsWanDevEntry OBJECT-TYPE + SYNTAX LcsSetupComPortsWanDevEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupComPortsWanDevEntryDeviceType + } + ::= { lcsSetupComPortsWanDevTable 1 } + +LcsSetupComPortsWanDevEntry ::= SEQUENCE { + lcsSetupComPortsWanDevEntryDeviceType INTEGER, + lcsSetupComPortsWanDevEntryOperating INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.3.1.1.1 +lcsSetupComPortsWanDevEntryDeviceType OBJECT-TYPE + SYNTAX INTEGER { + eOutbandModem (2), + eSierraMinicard8780 (11), + eSierraMinicard8781 (12), + eOptionIcon (17), + eOptionMinicard0201 (19), + eHuaweiE612E630E1750 (21), + e4gSystemsUxs1 (23), + eNovatelMerlinMc950d (26), + eSierraAircard875u (30), + eHuaweiE172E220E870 (31), + eBelkinF5u103 (33), + eProlific2303 (34), + eFtdi8u232am (35), + eSierraMinicard8790 (38), + eSierraCompass885 (39), + eSierraAircard501 (46), + eHuaweiK4505 (49), + eHuaweiK3765 (51), + eSierraDirectIp (53), + eHuaweiE182 (54), + eSierraMinicard8705 (55), + eSierraMinicard8801 (56), + eHuaweiE1750 (57), + eNokiaCs19 (59), + eHuaweiE398 (60), + eHuaweiE1550 (61), + eSierraMinicard7710 (62), + eHuaweiE352 (64) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsWanDevEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.52.3.1.1.3 +lcsSetupComPortsWanDevEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupComPortsWanDevEntry 3 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.53 +lcsSetupTemperatureMonitor OBJECT IDENTIFIER ::= { lcsSetup 53 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.53.1 +lcsSetupTemperatureMonitorUpperLimitDegrees OBJECT-TYPE + SYNTAX Integer32 (-128..127) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTemperatureMonitor 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.53.2 +lcsSetupTemperatureMonitorLowerLimitDegrees OBJECT-TYPE + SYNTAX Integer32 (-128..127) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTemperatureMonitor 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.54 +lcsSetupTacacsPlus OBJECT IDENTIFIER ::= { lcsSetup 54 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.54.1 +lcsSetupTacacsPlusAuthentication OBJECT-TYPE + SYNTAX INTEGER { + eDeactivated (0), + eActivated (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTacacsPlus 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.54.2 +lcsSetupTacacsPlusAuthorisation OBJECT-TYPE + SYNTAX INTEGER { + eDeactivated (0), + eActivated (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTacacsPlus 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.54.3 +lcsSetupTacacsPlusAccounting OBJECT-TYPE + SYNTAX INTEGER { + eDeactivated (0), + eActivated (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTacacsPlus 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.54.6 +lcsSetupTacacsPlusSharedSecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTacacsPlus 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.54.7 +lcsSetupTacacsPlusEncryption OBJECT-TYPE + SYNTAX INTEGER { + eDeactivated (0), + eActivated (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTacacsPlus 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.54.9 +lcsSetupTacacsPlusServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupTacacsPlusServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTacacsPlus 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.54.9.1 +lcsSetupTacacsPlusServerEntry OBJECT-TYPE + SYNTAX LcsSetupTacacsPlusServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupTacacsPlusServerEntryServerAddress + } + ::= { lcsSetupTacacsPlusServerTable 1 } + +LcsSetupTacacsPlusServerEntry ::= SEQUENCE { + lcsSetupTacacsPlusServerEntryServerAddress DisplayString, + lcsSetupTacacsPlusServerEntryLoopbackAddress DisplayString, + lcsSetupTacacsPlusServerEntryCompatibilityMode INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.54.9.1.1 +lcsSetupTacacsPlusServerEntryServerAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTacacsPlusServerEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.54.9.1.2 +lcsSetupTacacsPlusServerEntryLoopbackAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTacacsPlusServerEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.54.9.1.3 +lcsSetupTacacsPlusServerEntryCompatibilityMode OBJECT-TYPE + SYNTAX INTEGER { + eDeactivated (0), + eActivated (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTacacsPlusServerEntry 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.54.10 +lcsSetupTacacsPlusFallbackToLocalUsers OBJECT-TYPE + SYNTAX INTEGER { + eAllowed (0), + eProhibited (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTacacsPlus 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.54.11 +lcsSetupTacacsPlusSnmpGetRequestsAuthorisation OBJECT-TYPE + SYNTAX INTEGER { + eOnlyForSetupTree (0), + eAll (1), + eNone (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTacacsPlus 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.54.12 +lcsSetupTacacsPlusSnmpGetRequestsAccounting OBJECT-TYPE + SYNTAX INTEGER { + eOnlyForSetupTree (0), + eAll (1), + eNone (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTacacsPlus 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.54.13 +lcsSetupTacacsPlusBypassTacacsForCronScriptsActionTable OBJECT-TYPE + SYNTAX INTEGER { + eDeactivated (0), + eActivated (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTacacsPlus 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.54.14 +lcsSetupTacacsPlusIncludeValueIntoAuthorisationRequest OBJECT-TYPE + SYNTAX INTEGER { + eDeactivated (0), + eActivated (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupTacacsPlus 14 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.56 +lcsSetupUsb OBJECT IDENTIFIER ::= { lcsSetup 56 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.56.1 +lcsSetupUsbFirmwareAndLoader OBJECT-TYPE + SYNTAX INTEGER { + eInactive (1), + eIfUnconfigured (2), + eActive (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUsb 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.56.2 +lcsSetupUsbConfigAndScript OBJECT-TYPE + SYNTAX INTEGER { + eInactive (1), + eIfUnconfigured (2), + eActive (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsSetupUsb 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.59 +lcsSetupWtpMngmt OBJECT IDENTIFIER ::= { lcsSetup 59 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.59.1 +lcsSetupWtpMngmtStaticWlcConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupWtpMngmtStaticWlcConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "static WLC configuartion" + ::= { lcsSetupWtpMngmt 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.59.1.1 +lcsSetupWtpMngmtStaticWlcConfEntry OBJECT-TYPE + SYNTAX LcsSetupWtpMngmtStaticWlcConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupWtpMngmtStaticWlcConfEntryIpAddress + } + ::= { lcsSetupWtpMngmtStaticWlcConfTable 1 } + +LcsSetupWtpMngmtStaticWlcConfEntry ::= SEQUENCE { + lcsSetupWtpMngmtStaticWlcConfEntryIpAddress DisplayString, + lcsSetupWtpMngmtStaticWlcConfEntryPort Integer32, + lcsSetupWtpMngmtStaticWlcConfEntryLoopbackAddr DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.59.1.1.1 +lcsSetupWtpMngmtStaticWlcConfEntryIpAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWtpMngmtStaticWlcConfEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.59.1.1.2 +lcsSetupWtpMngmtStaticWlcConfEntryPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWtpMngmtStaticWlcConfEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.59.1.1.3 +lcsSetupWtpMngmtStaticWlcConfEntryLoopbackAddr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWtpMngmtStaticWlcConfEntry 3 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.59.4 +lcsSetupWtpMngmtAutowds OBJECT IDENTIFIER ::= { lcsSetupWtpMngmt 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.59.4.1 +lcsSetupWtpMngmtAutowdsOperation OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWtpMngmtAutowds 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.59.4.2 +lcsSetupWtpMngmtAutowdsPreconfSsid OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWtpMngmtAutowds 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.59.4.3 +lcsSetupWtpMngmtAutowdsPreconfKey OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWtpMngmtAutowds 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.59.4.4 +lcsSetupWtpMngmtAutowdsTimeTillPreconfScan OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWtpMngmtAutowds 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.59.4.5 +lcsSetupWtpMngmtAutowdsTimeTillExpressScan OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupWtpMngmtAutowds 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.59.120 +lcsSetupWtpMngmtLogEntries OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupWtpMngmt 120 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.60 +lcsSetupAutold OBJECT IDENTIFIER ::= { lcsSetup 60 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.60.1 +lcsSetupAutoldNetwork OBJECT IDENTIFIER ::= { lcsSetupAutold 1 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.60.1.1 +lcsSetupAutoldNetworkFirmware OBJECT IDENTIFIER ::= { lcsSetupAutoldNetwork 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.60.1.1.1 +lcsSetupAutoldNetworkFirmwareCondition OBJECT-TYPE + SYNTAX INTEGER { + eUnconditionally (0), + eIfDifferent (1), + eIfNewer (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAutoldNetworkFirmware 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.60.1.1.2 +lcsSetupAutoldNetworkFirmwareUrl OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..127)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAutoldNetworkFirmware 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.60.1.1.3 +lcsSetupAutoldNetworkFirmwareMinimumVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..14)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAutoldNetworkFirmware 3 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.60.1.2 +lcsSetupAutoldNetworkConfig OBJECT IDENTIFIER ::= { lcsSetupAutoldNetwork 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.60.1.2.1 +lcsSetupAutoldNetworkConfigCondition OBJECT-TYPE + SYNTAX INTEGER { + eUnconditionally (0), + eIfDifferent (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAutoldNetworkConfig 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.60.1.2.2 +lcsSetupAutoldNetworkConfigUrl OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..127)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAutoldNetworkConfig 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.60.1.3 +lcsSetupAutoldNetworkScript OBJECT IDENTIFIER ::= { lcsSetupAutoldNetwork 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.60.1.3.1 +lcsSetupAutoldNetworkScriptCondition OBJECT-TYPE + SYNTAX INTEGER { + eUnconditionally (0), + eIfDifferent (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAutoldNetworkScript 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.60.1.3.2 +lcsSetupAutoldNetworkScriptUrl OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..127)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAutoldNetworkScript 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.60.1.4 +lcsSetupAutoldNetworkTftpClient OBJECT IDENTIFIER ::= { lcsSetupAutoldNetwork 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.60.1.4.1 +lcsSetupAutoldNetworkTftpClientBytesPerHashmark OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAutoldNetworkTftpClient 1 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.60.3 +lcsSetupAutoldLicense OBJECT IDENTIFIER ::= { lcsSetupAutold 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.60.3.1 +lcsSetupAutoldLicenseUrl OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..127)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupAutoldLicense 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.60.3.2 +lcsSetupAutoldLicenseLoopbackAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupAutoldLicense 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.60.3.10 +lcsSetupAutoldLicenseCompany OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..127)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupAutoldLicense 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.60.3.11 +lcsSetupAutoldLicenseLastName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupAutoldLicense 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.60.3.12 +lcsSetupAutoldLicenseFirstName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupAutoldLicense 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.60.3.13 +lcsSetupAutoldLicenseStreetAndNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..127)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupAutoldLicense 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.60.3.14 +lcsSetupAutoldLicensePostCode OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupAutoldLicense 14 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.60.3.15 +lcsSetupAutoldLicenseCity OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupAutoldLicense 15 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.60.3.16 +lcsSetupAutoldLicenseCountry OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupAutoldLicense 16 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.60.3.17 +lcsSetupAutoldLicenseEmailAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupAutoldLicense 17 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.60.56 +lcsSetupAutoldUsb OBJECT IDENTIFIER ::= { lcsSetupAutold 56 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.60.56.1 +lcsSetupAutoldUsbFirmwareAndLoader OBJECT-TYPE + SYNTAX INTEGER { + eInactive (1), + eIfUnconfigured (2), + eActive (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAutoldUsb 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.60.56.2 +lcsSetupAutoldUsbConfigAndScript OBJECT-TYPE + SYNTAX INTEGER { + eInactive (1), + eIfUnconfigured (2), + eActive (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsSetupAutoldUsb 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.63 +lcsSetupPacketCapture OBJECT IDENTIFIER ::= { lcsSetup 63 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.63.1 +lcsSetupPacketCaptureLcoscapOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPacketCapture 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.63.2 +lcsSetupPacketCaptureLcoscapPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPacketCapture 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.63.11 +lcsSetupPacketCaptureRpcapOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPacketCapture 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.63.12 +lcsSetupPacketCaptureRpcapPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPacketCapture 12 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.64 +lcsSetupPmsInterface OBJECT IDENTIFIER ::= { lcsSetup 64 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.64.1 +lcsSetupPmsInterfaceOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterface 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.64.2 +lcsSetupPmsInterfacePmsTyp OBJECT-TYPE + SYNTAX INTEGER { + eTcpIp (0) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterface 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.64.3 +lcsSetupPmsInterfacePmsServerIpAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterface 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.64.4 +lcsSetupPmsInterfaceLoopbackAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterface 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.64.5 +lcsSetupPmsInterfacePmsPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterface 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.64.6 +lcsSetupPmsInterfaceSeparator OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..1)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterface 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.64.7 +lcsSetupPmsInterfaceCharset OBJECT-TYPE + SYNTAX INTEGER { + eCp850 (0), + eW1252 (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterface 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.64.8 +lcsSetupPmsInterfaceCurrency OBJECT-TYPE + SYNTAX INTEGER { + eCent (0), + ePenny (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterface 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.64.9 +lcsSetupPmsInterfaceRateTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPmsInterfaceRateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterface 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.64.9.1 +lcsSetupPmsInterfaceRateEntry OBJECT-TYPE + SYNTAX LcsSetupPmsInterfaceRateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPmsInterfaceRateEntryRate, + lcsSetupPmsInterfaceRateEntryUnit + } + ::= { lcsSetupPmsInterfaceRateTable 1 } + +LcsSetupPmsInterfaceRateEntry ::= SEQUENCE { + lcsSetupPmsInterfaceRateEntryRate DisplayString, + lcsSetupPmsInterfaceRateEntryUnit INTEGER, + lcsSetupPmsInterfaceRateEntryRateValue DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.64.9.1.1 +lcsSetupPmsInterfaceRateEntryRate OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterfaceRateEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.64.9.1.2 +lcsSetupPmsInterfaceRateEntryUnit OBJECT-TYPE + SYNTAX INTEGER { + eHourS (0), + eDayS (1), + eMinuteS (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterfaceRateEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.64.9.1.3 +lcsSetupPmsInterfaceRateEntryRateValue OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterfaceRateEntry 3 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.64.10 +lcsSetupPmsInterfaceAccounting OBJECT IDENTIFIER ::= { lcsSetupPmsInterface 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.64.10.1 +lcsSetupPmsInterfaceAccountingSaveToFlashrom OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterfaceAccounting 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.64.10.2 +lcsSetupPmsInterfaceAccountingSaveToFlashromPeriod OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterfaceAccounting 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.64.10.3 +lcsSetupPmsInterfaceAccountingCleanupAccountingTablePeriod OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterfaceAccounting 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.64.10.4 +lcsSetupPmsInterfaceAccountingUpdateAccountingTablePeriod OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterfaceAccounting 4 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.64.11 +lcsSetupPmsInterfaceLoginForm OBJECT IDENTIFIER ::= { lcsSetupPmsInterface 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.64.11.1 +lcsSetupPmsInterfaceLoginFormPublicspotLoginForm OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterfaceLoginForm 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.64.11.2 +lcsSetupPmsInterfaceLoginFormPmsLoginForm OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eFree (1), + eCharge (2), + eFreeVip (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterfaceLoginForm 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.64.11.3 +lcsSetupPmsInterfaceLoginFormFidelioFreeAdditionalCheck OBJECT-TYPE + SYNTAX INTEGER { + eNoCheck (0), + eReservationNumber (1), + eArrivalDate (2), + eDepartureDate (3), + eFirstName (4), + eProfileNumber (5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterfaceLoginForm 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.64.11.4 +lcsSetupPmsInterfaceLoginFormFidelioChargeAdditionalCheck OBJECT-TYPE + SYNTAX INTEGER { + eNoCheck (0), + eReservationNumber (1), + eArrivalDate (2), + eDepartureDate (3), + eFirstName (4), + eProfileNumber (5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterfaceLoginForm 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.64.11.5 +lcsSetupPmsInterfaceLoginFormFidelioFreeVipAdditionalCheck OBJECT-TYPE + SYNTAX INTEGER { + eNoCheck (0), + eReservationNumber (1), + eArrivalDate (2), + eDepartureDate (3), + eFirstName (4), + eProfileNumber (5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterfaceLoginForm 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.64.11.6 +lcsSetupPmsInterfaceLoginFormFreeVipStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupPmsInterfaceLoginFormFreeVipStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterfaceLoginForm 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.64.11.6.1 +lcsSetupPmsInterfaceLoginFormFreeVipStatusEntry OBJECT-TYPE + SYNTAX LcsSetupPmsInterfaceLoginFormFreeVipStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupPmsInterfaceLoginFormFreeVipStatusEntryStatus + } + ::= { lcsSetupPmsInterfaceLoginFormFreeVipStatusTable 1 } + +LcsSetupPmsInterfaceLoginFormFreeVipStatusEntry ::= SEQUENCE { + lcsSetupPmsInterfaceLoginFormFreeVipStatusEntryStatus DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.64.11.6.1.1 +lcsSetupPmsInterfaceLoginFormFreeVipStatusEntryStatus OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterfaceLoginFormFreeVipStatusEntry 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.64.12 +lcsSetupPmsInterfaceGuestNameCaseSensitive OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterface 12 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.64.13 +lcsSetupPmsInterfaceMultiLogin OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupPmsInterface 13 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.70 +lcsSetupIpv6 OBJECT IDENTIFIER ::= { lcsSetup 70 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.70.1 +lcsSetupIpv6Tunnel OBJECT IDENTIFIER ::= { lcsSetupIpv6 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.1.1 +lcsSetupIpv6Tunnel6in4Table OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6Tunnel6in4Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.1.1.1 +lcsSetupIpv6Tunnel6in4Entry OBJECT-TYPE + SYNTAX LcsSetupIpv6Tunnel6in4Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6Tunnel6in4EntryPeerName + } + ::= { lcsSetupIpv6Tunnel6in4Table 1 } + +LcsSetupIpv6Tunnel6in4Entry ::= SEQUENCE { + lcsSetupIpv6Tunnel6in4EntryPeerName DisplayString, + lcsSetupIpv6Tunnel6in4EntryRtgTag Integer32, + lcsSetupIpv6Tunnel6in4EntryGatewayAddress DisplayString, + lcsSetupIpv6Tunnel6in4EntryIpv4RtgTag Integer32, + lcsSetupIpv6Tunnel6in4EntryGatewayIpv6Address DisplayString, + lcsSetupIpv6Tunnel6in4EntryLocalIpv6Address DisplayString, + lcsSetupIpv6Tunnel6in4EntryRoutedIpv6Prefix DisplayString, + lcsSetupIpv6Tunnel6in4EntryFirewall INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.1.1.1 +lcsSetupIpv6Tunnel6in4EntryPeerName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6in4Entry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.1.1.2 +lcsSetupIpv6Tunnel6in4EntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6in4Entry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.1.1.3 +lcsSetupIpv6Tunnel6in4EntryGatewayAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6in4Entry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.1.1.4 +lcsSetupIpv6Tunnel6in4EntryIpv4RtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6in4Entry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.1.1.5 +lcsSetupIpv6Tunnel6in4EntryGatewayIpv6Address OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..43)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6in4Entry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.1.1.6 +lcsSetupIpv6Tunnel6in4EntryLocalIpv6Address OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..43)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6in4Entry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.1.1.7 +lcsSetupIpv6Tunnel6in4EntryRoutedIpv6Prefix OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..43)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6in4Entry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.1.1.8 +lcsSetupIpv6Tunnel6in4EntryFirewall OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6in4Entry 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.1.2 +lcsSetupIpv6Tunnel6rdBorderRelayTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6Tunnel6rdBorderRelayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.1.2.1 +lcsSetupIpv6Tunnel6rdBorderRelayEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6Tunnel6rdBorderRelayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6Tunnel6rdBorderRelayEntryPeerName + } + ::= { lcsSetupIpv6Tunnel6rdBorderRelayTable 1 } + +LcsSetupIpv6Tunnel6rdBorderRelayEntry ::= SEQUENCE { + lcsSetupIpv6Tunnel6rdBorderRelayEntryPeerName DisplayString, + lcsSetupIpv6Tunnel6rdBorderRelayEntryRtgTag Integer32, + lcsSetupIpv6Tunnel6rdBorderRelayEntryIpv4LoopbackAddress DisplayString, + lcsSetupIpv6Tunnel6rdBorderRelayEntry6rdPrefix DisplayString, + lcsSetupIpv6Tunnel6rdBorderRelayEntryIpv4MaskLength Integer32, + lcsSetupIpv6Tunnel6rdBorderRelayEntryDhcpv4Propagate INTEGER, + lcsSetupIpv6Tunnel6rdBorderRelayEntryFirewall INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.2.1.1 +lcsSetupIpv6Tunnel6rdBorderRelayEntryPeerName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6rdBorderRelayEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.2.1.2 +lcsSetupIpv6Tunnel6rdBorderRelayEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6rdBorderRelayEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.2.1.3 +lcsSetupIpv6Tunnel6rdBorderRelayEntryIpv4LoopbackAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..21)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6rdBorderRelayEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.2.1.4 +lcsSetupIpv6Tunnel6rdBorderRelayEntry6rdPrefix OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..24)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6rdBorderRelayEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.2.1.5 +lcsSetupIpv6Tunnel6rdBorderRelayEntryIpv4MaskLength OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6rdBorderRelayEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.2.1.6 +lcsSetupIpv6Tunnel6rdBorderRelayEntryDhcpv4Propagate OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6rdBorderRelayEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.2.1.7 +lcsSetupIpv6Tunnel6rdBorderRelayEntryFirewall OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6rdBorderRelayEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.1.3 +lcsSetupIpv6Tunnel6rdTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6Tunnel6rdEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.1.3.1 +lcsSetupIpv6Tunnel6rdEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6Tunnel6rdEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6Tunnel6rdEntryPeerName + } + ::= { lcsSetupIpv6Tunnel6rdTable 1 } + +LcsSetupIpv6Tunnel6rdEntry ::= SEQUENCE { + lcsSetupIpv6Tunnel6rdEntryPeerName DisplayString, + lcsSetupIpv6Tunnel6rdEntryRtgTag Integer32, + lcsSetupIpv6Tunnel6rdEntryBorderRelayAddress DisplayString, + lcsSetupIpv6Tunnel6rdEntryIpv4RtgTag Integer32, + lcsSetupIpv6Tunnel6rdEntry6rdPrefix DisplayString, + lcsSetupIpv6Tunnel6rdEntryIpv4MaskLength Integer32, + lcsSetupIpv6Tunnel6rdEntryFirewall INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.3.1.1 +lcsSetupIpv6Tunnel6rdEntryPeerName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6rdEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.3.1.2 +lcsSetupIpv6Tunnel6rdEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6rdEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.3.1.3 +lcsSetupIpv6Tunnel6rdEntryBorderRelayAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6rdEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.3.1.4 +lcsSetupIpv6Tunnel6rdEntryIpv4RtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6rdEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.3.1.5 +lcsSetupIpv6Tunnel6rdEntry6rdPrefix OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..24)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6rdEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.3.1.6 +lcsSetupIpv6Tunnel6rdEntryIpv4MaskLength OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6rdEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.3.1.7 +lcsSetupIpv6Tunnel6rdEntryFirewall OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6rdEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.1.4 +lcsSetupIpv6Tunnel6to4Table OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6Tunnel6to4Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.1.4.1 +lcsSetupIpv6Tunnel6to4Entry OBJECT-TYPE + SYNTAX LcsSetupIpv6Tunnel6to4Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6Tunnel6to4EntryPeerName + } + ::= { lcsSetupIpv6Tunnel6to4Table 1 } + +LcsSetupIpv6Tunnel6to4Entry ::= SEQUENCE { + lcsSetupIpv6Tunnel6to4EntryPeerName DisplayString, + lcsSetupIpv6Tunnel6to4EntryRtgTag Integer32, + lcsSetupIpv6Tunnel6to4EntryGatewayAddress DisplayString, + lcsSetupIpv6Tunnel6to4EntryIpv4RtgTag Integer32, + lcsSetupIpv6Tunnel6to4EntryFirewall INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.4.1.1 +lcsSetupIpv6Tunnel6to4EntryPeerName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6to4Entry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.4.1.2 +lcsSetupIpv6Tunnel6to4EntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6to4Entry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.4.1.3 +lcsSetupIpv6Tunnel6to4EntryGatewayAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6to4Entry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.4.1.4 +lcsSetupIpv6Tunnel6to4EntryIpv4RtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6to4Entry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.1.4.1.5 +lcsSetupIpv6Tunnel6to4EntryFirewall OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Tunnel6to4Entry 5 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.70.2 +lcsSetupIpv6RouterAdv OBJECT IDENTIFIER ::= { lcsSetupIpv6 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.2.1 +lcsSetupIpv6RouterAdvPrefixOptionsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6RouterAdvPrefixOptionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdv 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.2.1.1 +lcsSetupIpv6RouterAdvPrefixOptionsEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6RouterAdvPrefixOptionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6RouterAdvPrefixOptionsEntryInterfaceName, + lcsSetupIpv6RouterAdvPrefixOptionsEntryPrefix + } + ::= { lcsSetupIpv6RouterAdvPrefixOptionsTable 1 } + +LcsSetupIpv6RouterAdvPrefixOptionsEntry ::= SEQUENCE { + lcsSetupIpv6RouterAdvPrefixOptionsEntryInterfaceName DisplayString, + lcsSetupIpv6RouterAdvPrefixOptionsEntryPrefix DisplayString, + lcsSetupIpv6RouterAdvPrefixOptionsEntrySubnetId DisplayString, + lcsSetupIpv6RouterAdvPrefixOptionsEntryAdvOnlink INTEGER, + lcsSetupIpv6RouterAdvPrefixOptionsEntryAdvAutonomous INTEGER, + lcsSetupIpv6RouterAdvPrefixOptionsEntryPdSource DisplayString, + lcsSetupIpv6RouterAdvPrefixOptionsEntryAdvPrefLifetime Integer32, + lcsSetupIpv6RouterAdvPrefixOptionsEntryAdvValidLifetime Integer32, + lcsSetupIpv6RouterAdvPrefixOptionsEntryDecrementlifetimes INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.1.1.1 +lcsSetupIpv6RouterAdvPrefixOptionsEntryInterfaceName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvPrefixOptionsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.1.1.2 +lcsSetupIpv6RouterAdvPrefixOptionsEntryPrefix OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..43)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvPrefixOptionsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.1.1.3 +lcsSetupIpv6RouterAdvPrefixOptionsEntrySubnetId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvPrefixOptionsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.1.1.4 +lcsSetupIpv6RouterAdvPrefixOptionsEntryAdvOnlink OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvPrefixOptionsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.1.1.5 +lcsSetupIpv6RouterAdvPrefixOptionsEntryAdvAutonomous OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvPrefixOptionsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.1.1.6 +lcsSetupIpv6RouterAdvPrefixOptionsEntryPdSource OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvPrefixOptionsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.1.1.7 +lcsSetupIpv6RouterAdvPrefixOptionsEntryAdvPrefLifetime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvPrefixOptionsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.1.1.8 +lcsSetupIpv6RouterAdvPrefixOptionsEntryAdvValidLifetime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvPrefixOptionsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.1.1.9 +lcsSetupIpv6RouterAdvPrefixOptionsEntryDecrementlifetimes OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvPrefixOptionsEntry 9 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.2.2 +lcsSetupIpv6RouterAdvInterfaceOptionsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6RouterAdvInterfaceOptionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdv 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.2.2.1 +lcsSetupIpv6RouterAdvInterfaceOptionsEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6RouterAdvInterfaceOptionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6RouterAdvInterfaceOptionsEntryInterfaceName + } + ::= { lcsSetupIpv6RouterAdvInterfaceOptionsTable 1 } + +LcsSetupIpv6RouterAdvInterfaceOptionsEntry ::= SEQUENCE { + lcsSetupIpv6RouterAdvInterfaceOptionsEntryInterfaceName DisplayString, + lcsSetupIpv6RouterAdvInterfaceOptionsEntrySendAdverts INTEGER, + lcsSetupIpv6RouterAdvInterfaceOptionsEntryMinRtrInterval Integer32, + lcsSetupIpv6RouterAdvInterfaceOptionsEntryMaxRtrInterval Integer32, + lcsSetupIpv6RouterAdvInterfaceOptionsEntryManagedFlag INTEGER, + lcsSetupIpv6RouterAdvInterfaceOptionsEntryOtherConfigFlag INTEGER, + lcsSetupIpv6RouterAdvInterfaceOptionsEntryLinkMtu Integer32, + lcsSetupIpv6RouterAdvInterfaceOptionsEntryReachableTime Integer32, + lcsSetupIpv6RouterAdvInterfaceOptionsEntryCrtHopLimit Integer32, + lcsSetupIpv6RouterAdvInterfaceOptionsEntryDefaultLifetime Integer32, + lcsSetupIpv6RouterAdvInterfaceOptionsEntryDefaultRouterMode INTEGER, + lcsSetupIpv6RouterAdvInterfaceOptionsEntryRouterPreference INTEGER, + lcsSetupIpv6RouterAdvInterfaceOptionsEntryRtrTime Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.2.1.1 +lcsSetupIpv6RouterAdvInterfaceOptionsEntryInterfaceName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvInterfaceOptionsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.2.1.2 +lcsSetupIpv6RouterAdvInterfaceOptionsEntrySendAdverts OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvInterfaceOptionsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.2.1.3 +lcsSetupIpv6RouterAdvInterfaceOptionsEntryMinRtrInterval OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvInterfaceOptionsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.2.1.4 +lcsSetupIpv6RouterAdvInterfaceOptionsEntryMaxRtrInterval OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvInterfaceOptionsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.2.1.5 +lcsSetupIpv6RouterAdvInterfaceOptionsEntryManagedFlag OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvInterfaceOptionsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.2.1.6 +lcsSetupIpv6RouterAdvInterfaceOptionsEntryOtherConfigFlag OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvInterfaceOptionsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.2.1.7 +lcsSetupIpv6RouterAdvInterfaceOptionsEntryLinkMtu OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvInterfaceOptionsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.2.1.8 +lcsSetupIpv6RouterAdvInterfaceOptionsEntryReachableTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvInterfaceOptionsEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.2.1.10 +lcsSetupIpv6RouterAdvInterfaceOptionsEntryCrtHopLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvInterfaceOptionsEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.2.1.11 +lcsSetupIpv6RouterAdvInterfaceOptionsEntryDefaultLifetime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvInterfaceOptionsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.2.1.12 +lcsSetupIpv6RouterAdvInterfaceOptionsEntryDefaultRouterMode OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eAlways (1), + eNever (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvInterfaceOptionsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.2.1.13 +lcsSetupIpv6RouterAdvInterfaceOptionsEntryRouterPreference OBJECT-TYPE + SYNTAX INTEGER { + eMedium (0), + eHigh (1), + eLow (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvInterfaceOptionsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.2.1.14 +lcsSetupIpv6RouterAdvInterfaceOptionsEntryRtrTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvInterfaceOptionsEntry 14 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.2.3 +lcsSetupIpv6RouterAdvRouteOptionsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6RouterAdvRouteOptionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdv 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.2.3.1 +lcsSetupIpv6RouterAdvRouteOptionsEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6RouterAdvRouteOptionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6RouterAdvRouteOptionsEntryInterfaceName, + lcsSetupIpv6RouterAdvRouteOptionsEntryPrefix + } + ::= { lcsSetupIpv6RouterAdvRouteOptionsTable 1 } + +LcsSetupIpv6RouterAdvRouteOptionsEntry ::= SEQUENCE { + lcsSetupIpv6RouterAdvRouteOptionsEntryInterfaceName DisplayString, + lcsSetupIpv6RouterAdvRouteOptionsEntryPrefix DisplayString, + lcsSetupIpv6RouterAdvRouteOptionsEntryRouteLifetime Integer32, + lcsSetupIpv6RouterAdvRouteOptionsEntryRoutePreference INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.3.1.1 +lcsSetupIpv6RouterAdvRouteOptionsEntryInterfaceName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvRouteOptionsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.3.1.2 +lcsSetupIpv6RouterAdvRouteOptionsEntryPrefix OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..43)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvRouteOptionsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.3.1.3 +lcsSetupIpv6RouterAdvRouteOptionsEntryRouteLifetime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvRouteOptionsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.3.1.4 +lcsSetupIpv6RouterAdvRouteOptionsEntryRoutePreference OBJECT-TYPE + SYNTAX INTEGER { + eMedium (0), + eHigh (1), + eLow (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvRouteOptionsEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.2.5 +lcsSetupIpv6RouterAdvRdnssOptionsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6RouterAdvRdnssOptionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdv 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.2.5.1 +lcsSetupIpv6RouterAdvRdnssOptionsEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6RouterAdvRdnssOptionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6RouterAdvRdnssOptionsEntryInterfaceName + } + ::= { lcsSetupIpv6RouterAdvRdnssOptionsTable 1 } + +LcsSetupIpv6RouterAdvRdnssOptionsEntry ::= SEQUENCE { + lcsSetupIpv6RouterAdvRdnssOptionsEntryInterfaceName DisplayString, + lcsSetupIpv6RouterAdvRdnssOptionsEntryPrimaryDns DisplayString, + lcsSetupIpv6RouterAdvRdnssOptionsEntrySecondaryDns DisplayString, + lcsSetupIpv6RouterAdvRdnssOptionsEntryDnsSearchList BITS, + lcsSetupIpv6RouterAdvRdnssOptionsEntryLifetime Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.5.1.1 +lcsSetupIpv6RouterAdvRdnssOptionsEntryInterfaceName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvRdnssOptionsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.5.1.2 +lcsSetupIpv6RouterAdvRdnssOptionsEntryPrimaryDns OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvRdnssOptionsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.5.1.3 +lcsSetupIpv6RouterAdvRdnssOptionsEntrySecondaryDns OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvRdnssOptionsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.5.1.4 +lcsSetupIpv6RouterAdvRdnssOptionsEntryDnsSearchList OBJECT-TYPE + SYNTAX BITS { + eNone (0), + eWan (6), + eInternal (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvRdnssOptionsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.5.1.5 +lcsSetupIpv6RouterAdvRdnssOptionsEntryLifetime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvRdnssOptionsEntry 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.2.6 +lcsSetupIpv6RouterAdvPrefixPoolsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6RouterAdvPrefixPoolsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdv 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.2.6.1 +lcsSetupIpv6RouterAdvPrefixPoolsEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6RouterAdvPrefixPoolsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6RouterAdvPrefixPoolsEntryInterfaceName, + lcsSetupIpv6RouterAdvPrefixPoolsEntryStartPrefixPool + } + ::= { lcsSetupIpv6RouterAdvPrefixPoolsTable 1 } + +LcsSetupIpv6RouterAdvPrefixPoolsEntry ::= SEQUENCE { + lcsSetupIpv6RouterAdvPrefixPoolsEntryInterfaceName DisplayString, + lcsSetupIpv6RouterAdvPrefixPoolsEntryStartPrefixPool DisplayString, + lcsSetupIpv6RouterAdvPrefixPoolsEntryEndPrefixPool DisplayString, + lcsSetupIpv6RouterAdvPrefixPoolsEntryPrefixLength Integer32, + lcsSetupIpv6RouterAdvPrefixPoolsEntryAdvOnlink INTEGER, + lcsSetupIpv6RouterAdvPrefixPoolsEntryAdvAutonomous INTEGER, + lcsSetupIpv6RouterAdvPrefixPoolsEntryAdvPrefLifetime Integer32, + lcsSetupIpv6RouterAdvPrefixPoolsEntryAdvValidLifetime Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.6.1.1 +lcsSetupIpv6RouterAdvPrefixPoolsEntryInterfaceName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvPrefixPoolsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.6.1.2 +lcsSetupIpv6RouterAdvPrefixPoolsEntryStartPrefixPool OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..43)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvPrefixPoolsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.6.1.3 +lcsSetupIpv6RouterAdvPrefixPoolsEntryEndPrefixPool OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..43)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvPrefixPoolsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.6.1.4 +lcsSetupIpv6RouterAdvPrefixPoolsEntryPrefixLength OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvPrefixPoolsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.6.1.5 +lcsSetupIpv6RouterAdvPrefixPoolsEntryAdvOnlink OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvPrefixPoolsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.6.1.6 +lcsSetupIpv6RouterAdvPrefixPoolsEntryAdvAutonomous OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvPrefixPoolsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.6.1.7 +lcsSetupIpv6RouterAdvPrefixPoolsEntryAdvPrefLifetime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvPrefixPoolsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.2.6.1.8 +lcsSetupIpv6RouterAdvPrefixPoolsEntryAdvValidLifetime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterAdvPrefixPoolsEntry 8 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.70.3 +lcsSetupIpv6Dhcpv6 OBJECT IDENTIFIER ::= { lcsSetupIpv6 3 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.70.3.1 +lcsSetupIpv6Dhcpv6Server OBJECT IDENTIFIER ::= { lcsSetupIpv6Dhcpv6 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.3.1.2 +lcsSetupIpv6Dhcpv6ServerAddressPoolsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6Dhcpv6ServerAddressPoolsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6Server 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.3.1.2.1 +lcsSetupIpv6Dhcpv6ServerAddressPoolsEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6Dhcpv6ServerAddressPoolsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6Dhcpv6ServerAddressPoolsEntryAddressPoolName, + lcsSetupIpv6Dhcpv6ServerAddressPoolsEntryStartAddressPool, + lcsSetupIpv6Dhcpv6ServerAddressPoolsEntryPdSource + } + ::= { lcsSetupIpv6Dhcpv6ServerAddressPoolsTable 1 } + +LcsSetupIpv6Dhcpv6ServerAddressPoolsEntry ::= SEQUENCE { + lcsSetupIpv6Dhcpv6ServerAddressPoolsEntryAddressPoolName DisplayString, + lcsSetupIpv6Dhcpv6ServerAddressPoolsEntryStartAddressPool DisplayString, + lcsSetupIpv6Dhcpv6ServerAddressPoolsEntryEndAddressPool DisplayString, + lcsSetupIpv6Dhcpv6ServerAddressPoolsEntryPrefLifetime Integer32, + lcsSetupIpv6Dhcpv6ServerAddressPoolsEntryValidLifetime Integer32, + lcsSetupIpv6Dhcpv6ServerAddressPoolsEntryPdSource DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.2.1.1 +lcsSetupIpv6Dhcpv6ServerAddressPoolsEntryAddressPoolName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerAddressPoolsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.2.1.2 +lcsSetupIpv6Dhcpv6ServerAddressPoolsEntryStartAddressPool OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerAddressPoolsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.2.1.3 +lcsSetupIpv6Dhcpv6ServerAddressPoolsEntryEndAddressPool OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerAddressPoolsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.2.1.5 +lcsSetupIpv6Dhcpv6ServerAddressPoolsEntryPrefLifetime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerAddressPoolsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.2.1.6 +lcsSetupIpv6Dhcpv6ServerAddressPoolsEntryValidLifetime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerAddressPoolsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.2.1.7 +lcsSetupIpv6Dhcpv6ServerAddressPoolsEntryPdSource OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerAddressPoolsEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.3.1.3 +lcsSetupIpv6Dhcpv6ServerPdPoolsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6Dhcpv6ServerPdPoolsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6Server 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.3.1.3.1 +lcsSetupIpv6Dhcpv6ServerPdPoolsEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6Dhcpv6ServerPdPoolsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6Dhcpv6ServerPdPoolsEntryPdPoolName, + lcsSetupIpv6Dhcpv6ServerPdPoolsEntryStartPdPool, + lcsSetupIpv6Dhcpv6ServerPdPoolsEntryPdSource + } + ::= { lcsSetupIpv6Dhcpv6ServerPdPoolsTable 1 } + +LcsSetupIpv6Dhcpv6ServerPdPoolsEntry ::= SEQUENCE { + lcsSetupIpv6Dhcpv6ServerPdPoolsEntryPdPoolName DisplayString, + lcsSetupIpv6Dhcpv6ServerPdPoolsEntryStartPdPool DisplayString, + lcsSetupIpv6Dhcpv6ServerPdPoolsEntryEndPdPool DisplayString, + lcsSetupIpv6Dhcpv6ServerPdPoolsEntryPrefixLength Integer32, + lcsSetupIpv6Dhcpv6ServerPdPoolsEntryPrefLifetime Integer32, + lcsSetupIpv6Dhcpv6ServerPdPoolsEntryValidLifetime Integer32, + lcsSetupIpv6Dhcpv6ServerPdPoolsEntryPdSource DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.3.1.1 +lcsSetupIpv6Dhcpv6ServerPdPoolsEntryPdPoolName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerPdPoolsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.3.1.2 +lcsSetupIpv6Dhcpv6ServerPdPoolsEntryStartPdPool OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerPdPoolsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.3.1.3 +lcsSetupIpv6Dhcpv6ServerPdPoolsEntryEndPdPool OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerPdPoolsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.3.1.4 +lcsSetupIpv6Dhcpv6ServerPdPoolsEntryPrefixLength OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerPdPoolsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.3.1.5 +lcsSetupIpv6Dhcpv6ServerPdPoolsEntryPrefLifetime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerPdPoolsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.3.1.6 +lcsSetupIpv6Dhcpv6ServerPdPoolsEntryValidLifetime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerPdPoolsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.3.1.7 +lcsSetupIpv6Dhcpv6ServerPdPoolsEntryPdSource OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerPdPoolsEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.3.1.4 +lcsSetupIpv6Dhcpv6ServerIfcListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6Dhcpv6ServerIfcListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsSetupIpv6Dhcpv6Server 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.3.1.4.1 +lcsSetupIpv6Dhcpv6ServerIfcListEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6Dhcpv6ServerIfcListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6Dhcpv6ServerIfcListEntryInterfaceNameOrRelay + } + ::= { lcsSetupIpv6Dhcpv6ServerIfcListTable 1 } + +LcsSetupIpv6Dhcpv6ServerIfcListEntry ::= SEQUENCE { + lcsSetupIpv6Dhcpv6ServerIfcListEntryInterfaceNameOrRelay DisplayString, + lcsSetupIpv6Dhcpv6ServerIfcListEntryOperating INTEGER, + lcsSetupIpv6Dhcpv6ServerIfcListEntryPrimaryDns DisplayString, + lcsSetupIpv6Dhcpv6ServerIfcListEntrySecondaryDns DisplayString, + lcsSetupIpv6Dhcpv6ServerIfcListEntryAddressPoolName DisplayString, + lcsSetupIpv6Dhcpv6ServerIfcListEntryPdPoolName DisplayString, + lcsSetupIpv6Dhcpv6ServerIfcListEntryRapidCommit INTEGER, + lcsSetupIpv6Dhcpv6ServerIfcListEntryPreference Integer32, + lcsSetupIpv6Dhcpv6ServerIfcListEntryRenewTime Integer32, + lcsSetupIpv6Dhcpv6ServerIfcListEntryRebindTime Integer32, + lcsSetupIpv6Dhcpv6ServerIfcListEntryUnicastAddress DisplayString, + lcsSetupIpv6Dhcpv6ServerIfcListEntryDnsSearchList BITS, + lcsSetupIpv6Dhcpv6ServerIfcListEntryReconfigure INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.4.1.1 +lcsSetupIpv6Dhcpv6ServerIfcListEntryInterfaceNameOrRelay OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerIfcListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.4.1.2 +lcsSetupIpv6Dhcpv6ServerIfcListEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerIfcListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.4.1.3 +lcsSetupIpv6Dhcpv6ServerIfcListEntryPrimaryDns OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerIfcListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.4.1.4 +lcsSetupIpv6Dhcpv6ServerIfcListEntrySecondaryDns OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerIfcListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.4.1.5 +lcsSetupIpv6Dhcpv6ServerIfcListEntryAddressPoolName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerIfcListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.4.1.6 +lcsSetupIpv6Dhcpv6ServerIfcListEntryPdPoolName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerIfcListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.4.1.7 +lcsSetupIpv6Dhcpv6ServerIfcListEntryRapidCommit OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerIfcListEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.4.1.8 +lcsSetupIpv6Dhcpv6ServerIfcListEntryPreference OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerIfcListEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.4.1.9 +lcsSetupIpv6Dhcpv6ServerIfcListEntryRenewTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerIfcListEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.4.1.10 +lcsSetupIpv6Dhcpv6ServerIfcListEntryRebindTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerIfcListEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.4.1.11 +lcsSetupIpv6Dhcpv6ServerIfcListEntryUnicastAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerIfcListEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.4.1.12 +lcsSetupIpv6Dhcpv6ServerIfcListEntryDnsSearchList OBJECT-TYPE + SYNTAX BITS { + eNone (0), + eWan (6), + eInternal (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerIfcListEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.4.1.13 +lcsSetupIpv6Dhcpv6ServerIfcListEntryReconfigure OBJECT-TYPE + SYNTAX INTEGER { + eOff (0), + eReject (1), + eAllow (2), + eRequire (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerIfcListEntry 13 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.70.3.1.5 +lcsSetupIpv6Dhcpv6ServerLimitConfirmToClientsWithAddresses OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6Server 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.3.1.6 +lcsSetupIpv6Dhcpv6ServerReservationsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6Dhcpv6ServerReservationsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6Server 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.3.1.6.1 +lcsSetupIpv6Dhcpv6ServerReservationsEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6Dhcpv6ServerReservationsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6Dhcpv6ServerReservationsEntryInterfaceNameOrRelay, + lcsSetupIpv6Dhcpv6ServerReservationsEntryAddressOrPdPrefix, + lcsSetupIpv6Dhcpv6ServerReservationsEntryPdSource + } + ::= { lcsSetupIpv6Dhcpv6ServerReservationsTable 1 } + +LcsSetupIpv6Dhcpv6ServerReservationsEntry ::= SEQUENCE { + lcsSetupIpv6Dhcpv6ServerReservationsEntryInterfaceNameOrRelay DisplayString, + lcsSetupIpv6Dhcpv6ServerReservationsEntryAddressOrPdPrefix DisplayString, + lcsSetupIpv6Dhcpv6ServerReservationsEntryClientId DisplayString, + lcsSetupIpv6Dhcpv6ServerReservationsEntryPrefLifetime Integer32, + lcsSetupIpv6Dhcpv6ServerReservationsEntryValidLifetime Integer32, + lcsSetupIpv6Dhcpv6ServerReservationsEntryPdSource DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.6.1.1 +lcsSetupIpv6Dhcpv6ServerReservationsEntryInterfaceNameOrRelay OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerReservationsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.6.1.2 +lcsSetupIpv6Dhcpv6ServerReservationsEntryAddressOrPdPrefix OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..43)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerReservationsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.6.1.3 +lcsSetupIpv6Dhcpv6ServerReservationsEntryClientId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..96)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerReservationsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.6.1.5 +lcsSetupIpv6Dhcpv6ServerReservationsEntryPrefLifetime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerReservationsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.6.1.6 +lcsSetupIpv6Dhcpv6ServerReservationsEntryValidLifetime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerReservationsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.1.6.1.7 +lcsSetupIpv6Dhcpv6ServerReservationsEntryPdSource OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ServerReservationsEntry 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.70.3.1.7 +lcsSetupIpv6Dhcpv6ServerCreateAddressRoutes OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6Server 7 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.70.3.2 +lcsSetupIpv6Dhcpv6Client OBJECT IDENTIFIER ::= { lcsSetupIpv6Dhcpv6 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.3.2.1 +lcsSetupIpv6Dhcpv6ClientInterfaceListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6Dhcpv6ClientInterfaceListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6Client 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.3.2.1.1 +lcsSetupIpv6Dhcpv6ClientInterfaceListEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6Dhcpv6ClientInterfaceListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6Dhcpv6ClientInterfaceListEntryInterfaceName + } + ::= { lcsSetupIpv6Dhcpv6ClientInterfaceListTable 1 } + +LcsSetupIpv6Dhcpv6ClientInterfaceListEntry ::= SEQUENCE { + lcsSetupIpv6Dhcpv6ClientInterfaceListEntryInterfaceName DisplayString, + lcsSetupIpv6Dhcpv6ClientInterfaceListEntryOperating INTEGER, + lcsSetupIpv6Dhcpv6ClientInterfaceListEntryRequestDns INTEGER, + lcsSetupIpv6Dhcpv6ClientInterfaceListEntryRequestAddress INTEGER, + lcsSetupIpv6Dhcpv6ClientInterfaceListEntryRequestPd INTEGER, + lcsSetupIpv6Dhcpv6ClientInterfaceListEntryRapidCommit INTEGER, + lcsSetupIpv6Dhcpv6ClientInterfaceListEntrySendFqdn INTEGER, + lcsSetupIpv6Dhcpv6ClientInterfaceListEntryAcceptReconf INTEGER, + lcsSetupIpv6Dhcpv6ClientInterfaceListEntryRequestDomainList INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.2.1.1.1 +lcsSetupIpv6Dhcpv6ClientInterfaceListEntryInterfaceName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ClientInterfaceListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.2.1.1.2 +lcsSetupIpv6Dhcpv6ClientInterfaceListEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eAutoconf (1), + eYes (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ClientInterfaceListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.2.1.1.3 +lcsSetupIpv6Dhcpv6ClientInterfaceListEntryRequestDns OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ClientInterfaceListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.2.1.1.4 +lcsSetupIpv6Dhcpv6ClientInterfaceListEntryRequestAddress OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ClientInterfaceListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.2.1.1.5 +lcsSetupIpv6Dhcpv6ClientInterfaceListEntryRequestPd OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ClientInterfaceListEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.2.1.1.6 +lcsSetupIpv6Dhcpv6ClientInterfaceListEntryRapidCommit OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ClientInterfaceListEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.2.1.1.7 +lcsSetupIpv6Dhcpv6ClientInterfaceListEntrySendFqdn OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ClientInterfaceListEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.2.1.1.8 +lcsSetupIpv6Dhcpv6ClientInterfaceListEntryAcceptReconf OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ClientInterfaceListEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.2.1.1.9 +lcsSetupIpv6Dhcpv6ClientInterfaceListEntryRequestDomainList OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6ClientInterfaceListEntry 9 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.70.3.2.2 +lcsSetupIpv6Dhcpv6ClientUserClassIdentifer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..253)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6Client 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.70.3.2.3 +lcsSetupIpv6Dhcpv6ClientVendorClassIdentifer OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..253)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6Client 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.70.3.2.4 +lcsSetupIpv6Dhcpv6ClientVendorClassNumber OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6Client 4 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.70.3.3 +lcsSetupIpv6Dhcpv6RelayAgent OBJECT IDENTIFIER ::= { lcsSetupIpv6Dhcpv6 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.3.3.1 +lcsSetupIpv6Dhcpv6RelayAgentInterfaceListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6Dhcpv6RelayAgentInterfaceListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6RelayAgent 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.3.3.1.1 +lcsSetupIpv6Dhcpv6RelayAgentInterfaceListEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6Dhcpv6RelayAgentInterfaceListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6Dhcpv6RelayAgentInterfaceListEntryInterfaceName + } + ::= { lcsSetupIpv6Dhcpv6RelayAgentInterfaceListTable 1 } + +LcsSetupIpv6Dhcpv6RelayAgentInterfaceListEntry ::= SEQUENCE { + lcsSetupIpv6Dhcpv6RelayAgentInterfaceListEntryInterfaceName DisplayString, + lcsSetupIpv6Dhcpv6RelayAgentInterfaceListEntryOperating INTEGER, + lcsSetupIpv6Dhcpv6RelayAgentInterfaceListEntryInterfaceAddress DisplayString, + lcsSetupIpv6Dhcpv6RelayAgentInterfaceListEntryDestAddress DisplayString, + lcsSetupIpv6Dhcpv6RelayAgentInterfaceListEntryDestInterface DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.3.1.1.1 +lcsSetupIpv6Dhcpv6RelayAgentInterfaceListEntryInterfaceName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6RelayAgentInterfaceListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.3.1.1.2 +lcsSetupIpv6Dhcpv6RelayAgentInterfaceListEntryOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6RelayAgentInterfaceListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.3.1.1.3 +lcsSetupIpv6Dhcpv6RelayAgentInterfaceListEntryInterfaceAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6RelayAgentInterfaceListEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.3.1.1.4 +lcsSetupIpv6Dhcpv6RelayAgentInterfaceListEntryDestAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6RelayAgentInterfaceListEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.3.3.1.1.5 +lcsSetupIpv6Dhcpv6RelayAgentInterfaceListEntryDestInterface OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6RelayAgentInterfaceListEntry 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.70.3.3.2 +lcsSetupIpv6Dhcpv6RelayAgentCreateAddressRoutes OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Dhcpv6RelayAgent 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.70.4 +lcsSetupIpv6Network OBJECT IDENTIFIER ::= { lcsSetupIpv6 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.4.1 +lcsSetupIpv6NetworkAddressesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6NetworkAddressesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Network 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.4.1.1 +lcsSetupIpv6NetworkAddressesEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6NetworkAddressesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6NetworkAddressesEntryInterfaceName, + lcsSetupIpv6NetworkAddressesEntryIpv6AddressPrefixlength + } + ::= { lcsSetupIpv6NetworkAddressesTable 1 } + +LcsSetupIpv6NetworkAddressesEntry ::= SEQUENCE { + lcsSetupIpv6NetworkAddressesEntryInterfaceName DisplayString, + lcsSetupIpv6NetworkAddressesEntryIpv6AddressPrefixlength DisplayString, + lcsSetupIpv6NetworkAddressesEntryAddressType INTEGER, + lcsSetupIpv6NetworkAddressesEntryNetworkGroup DisplayString, + lcsSetupIpv6NetworkAddressesEntryComment DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.4.1.1.1 +lcsSetupIpv6NetworkAddressesEntryInterfaceName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6NetworkAddressesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.4.1.1.2 +lcsSetupIpv6NetworkAddressesEntryIpv6AddressPrefixlength OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..43)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6NetworkAddressesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.4.1.1.3 +lcsSetupIpv6NetworkAddressesEntryAddressType OBJECT-TYPE + SYNTAX INTEGER { + eUnicast (0), + eAnycast (1), + eEui64 (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6NetworkAddressesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.4.1.1.4 +lcsSetupIpv6NetworkAddressesEntryNetworkGroup OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6NetworkAddressesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.4.1.1.5 +lcsSetupIpv6NetworkAddressesEntryComment OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6NetworkAddressesEntry 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.4.2 +lcsSetupIpv6NetworkParameterTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6NetworkParameterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Network 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.4.2.1 +lcsSetupIpv6NetworkParameterEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6NetworkParameterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6NetworkParameterEntryInterfaceName + } + ::= { lcsSetupIpv6NetworkParameterTable 1 } + +LcsSetupIpv6NetworkParameterEntry ::= SEQUENCE { + lcsSetupIpv6NetworkParameterEntryInterfaceName DisplayString, + lcsSetupIpv6NetworkParameterEntryIpv6Gateway DisplayString, + lcsSetupIpv6NetworkParameterEntryPrimaryDns DisplayString, + lcsSetupIpv6NetworkParameterEntrySecondaryDns DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.4.2.1.1 +lcsSetupIpv6NetworkParameterEntryInterfaceName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6NetworkParameterEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.4.2.1.2 +lcsSetupIpv6NetworkParameterEntryIpv6Gateway OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6NetworkParameterEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.4.2.1.3 +lcsSetupIpv6NetworkParameterEntryPrimaryDns OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6NetworkParameterEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.4.2.1.4 +lcsSetupIpv6NetworkParameterEntrySecondaryDns OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6NetworkParameterEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.4.3 +lcsSetupIpv6NetworkLoopbackTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6NetworkLoopbackEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Network 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.4.3.1 +lcsSetupIpv6NetworkLoopbackEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6NetworkLoopbackEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6NetworkLoopbackEntryName + } + ::= { lcsSetupIpv6NetworkLoopbackTable 1 } + +LcsSetupIpv6NetworkLoopbackEntry ::= SEQUENCE { + lcsSetupIpv6NetworkLoopbackEntryName DisplayString, + lcsSetupIpv6NetworkLoopbackEntryIpv6LoopbackAddr DisplayString, + lcsSetupIpv6NetworkLoopbackEntryRtgTag Integer32, + lcsSetupIpv6NetworkLoopbackEntryComment DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.4.3.1.1 +lcsSetupIpv6NetworkLoopbackEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6NetworkLoopbackEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.4.3.1.2 +lcsSetupIpv6NetworkLoopbackEntryIpv6LoopbackAddr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..39)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6NetworkLoopbackEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.4.3.1.3 +lcsSetupIpv6NetworkLoopbackEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6NetworkLoopbackEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.4.3.1.4 +lcsSetupIpv6NetworkLoopbackEntryComment OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6NetworkLoopbackEntry 4 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.70.5 +lcsSetupIpv6Firewall OBJECT IDENTIFIER ::= { lcsSetupIpv6 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.70.5.1 +lcsSetupIpv6FirewallOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Firewall 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.5.2 +lcsSetupIpv6FirewallForwardingRulesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6FirewallForwardingRulesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Firewall 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.5.2.1 +lcsSetupIpv6FirewallForwardingRulesEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6FirewallForwardingRulesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6FirewallForwardingRulesEntryName + } + ::= { lcsSetupIpv6FirewallForwardingRulesTable 1 } + +LcsSetupIpv6FirewallForwardingRulesEntry ::= SEQUENCE { + lcsSetupIpv6FirewallForwardingRulesEntryName DisplayString, + lcsSetupIpv6FirewallForwardingRulesEntryFlags BITS, + lcsSetupIpv6FirewallForwardingRulesEntryPrio Integer32, + lcsSetupIpv6FirewallForwardingRulesEntryRtgTag Integer32, + lcsSetupIpv6FirewallForwardingRulesEntryAction DisplayString, + lcsSetupIpv6FirewallForwardingRulesEntryServices DisplayString, + lcsSetupIpv6FirewallForwardingRulesEntrySourceStations DisplayString, + lcsSetupIpv6FirewallForwardingRulesEntryDestinationStations DisplayString, + lcsSetupIpv6FirewallForwardingRulesEntryComment DisplayString, + lcsSetupIpv6FirewallForwardingRulesEntrySrcTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.2.1.1 +lcsSetupIpv6FirewallForwardingRulesEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..36)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallForwardingRulesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.2.1.2 +lcsSetupIpv6FirewallForwardingRulesEntryFlags OBJECT-TYPE + SYNTAX BITS { + eNone (0), + eStateless (4), + eLinked (5), + eDeactivated (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallForwardingRulesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.2.1.3 +lcsSetupIpv6FirewallForwardingRulesEntryPrio OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallForwardingRulesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.2.1.4 +lcsSetupIpv6FirewallForwardingRulesEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallForwardingRulesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.2.1.5 +lcsSetupIpv6FirewallForwardingRulesEntryAction OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallForwardingRulesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.2.1.7 +lcsSetupIpv6FirewallForwardingRulesEntryServices OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallForwardingRulesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.2.1.8 +lcsSetupIpv6FirewallForwardingRulesEntrySourceStations OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallForwardingRulesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.2.1.9 +lcsSetupIpv6FirewallForwardingRulesEntryDestinationStations OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallForwardingRulesEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.2.1.10 +lcsSetupIpv6FirewallForwardingRulesEntryComment OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallForwardingRulesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.2.1.11 +lcsSetupIpv6FirewallForwardingRulesEntrySrcTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallForwardingRulesEntry 11 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.5.3 +lcsSetupIpv6FirewallActionListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6FirewallActionListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Firewall 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.5.3.1 +lcsSetupIpv6FirewallActionListEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6FirewallActionListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6FirewallActionListEntryName + } + ::= { lcsSetupIpv6FirewallActionListTable 1 } + +LcsSetupIpv6FirewallActionListEntry ::= SEQUENCE { + lcsSetupIpv6FirewallActionListEntryName DisplayString, + lcsSetupIpv6FirewallActionListEntryDescription DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.3.1.1 +lcsSetupIpv6FirewallActionListEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..36)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallActionListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.3.1.2 +lcsSetupIpv6FirewallActionListEntryDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..252)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallActionListEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.5.5 +lcsSetupIpv6FirewallStationListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6FirewallStationListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Firewall 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.5.5.1 +lcsSetupIpv6FirewallStationListEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6FirewallStationListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6FirewallStationListEntryName + } + ::= { lcsSetupIpv6FirewallStationListTable 1 } + +LcsSetupIpv6FirewallStationListEntry ::= SEQUENCE { + lcsSetupIpv6FirewallStationListEntryName DisplayString, + lcsSetupIpv6FirewallStationListEntryDescription DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.5.1.1 +lcsSetupIpv6FirewallStationListEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..36)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallStationListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.5.1.2 +lcsSetupIpv6FirewallStationListEntryDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..252)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallStationListEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.5.6 +lcsSetupIpv6FirewallServiceListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6FirewallServiceListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Firewall 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.5.6.1 +lcsSetupIpv6FirewallServiceListEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6FirewallServiceListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6FirewallServiceListEntryName + } + ::= { lcsSetupIpv6FirewallServiceListTable 1 } + +LcsSetupIpv6FirewallServiceListEntry ::= SEQUENCE { + lcsSetupIpv6FirewallServiceListEntryName DisplayString, + lcsSetupIpv6FirewallServiceListEntryDescription DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.6.1.1 +lcsSetupIpv6FirewallServiceListEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..36)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallServiceListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.6.1.2 +lcsSetupIpv6FirewallServiceListEntryDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..252)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallServiceListEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.5.7 +lcsSetupIpv6FirewallActionsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6FirewallActionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Firewall 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.5.7.1 +lcsSetupIpv6FirewallActionsEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6FirewallActionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6FirewallActionsEntryName + } + ::= { lcsSetupIpv6FirewallActionsTable 1 } + +LcsSetupIpv6FirewallActionsEntry ::= SEQUENCE { + lcsSetupIpv6FirewallActionsEntryName DisplayString, + lcsSetupIpv6FirewallActionsEntryLimit Integer32, + lcsSetupIpv6FirewallActionsEntryUnit INTEGER, + lcsSetupIpv6FirewallActionsEntryTime INTEGER, + lcsSetupIpv6FirewallActionsEntryContext INTEGER, + lcsSetupIpv6FirewallActionsEntryFlags BITS, + lcsSetupIpv6FirewallActionsEntryAction INTEGER, + lcsSetupIpv6FirewallActionsEntryDiffserv INTEGER, + lcsSetupIpv6FirewallActionsEntryDscpValue Integer32, + lcsSetupIpv6FirewallActionsEntryConditions DisplayString, + lcsSetupIpv6FirewallActionsEntryTriggerActions DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.7.1.1 +lcsSetupIpv6FirewallActionsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallActionsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.7.1.2 +lcsSetupIpv6FirewallActionsEntryLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallActionsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.7.1.3 +lcsSetupIpv6FirewallActionsEntryUnit OBJECT-TYPE + SYNTAX INTEGER { + eKbit (0), + eKbytes (1), + ePackets (2), + eSessions (3), + eBandwidth (4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallActionsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.7.1.4 +lcsSetupIpv6FirewallActionsEntryTime OBJECT-TYPE + SYNTAX INTEGER { + eSecond (0), + eMinute (1), + eHoute (2), + eAbsolute (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallActionsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.7.1.5 +lcsSetupIpv6FirewallActionsEntryContext OBJECT-TYPE + SYNTAX INTEGER { + eSession (0), + eStation (1), + eGlobal (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallActionsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.7.1.6 +lcsSetupIpv6FirewallActionsEntryFlags OBJECT-TYPE + SYNTAX BITS { + eNone (0), + eShared (6), + eReset (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallActionsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.7.1.7 +lcsSetupIpv6FirewallActionsEntryAction OBJECT-TYPE + SYNTAX INTEGER { + eReject (0), + eDrop (1), + eAccept (2), + eCheck (4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallActionsEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.7.1.11 +lcsSetupIpv6FirewallActionsEntryDiffserv OBJECT-TYPE + SYNTAX INTEGER { + eBe (0), + eCs1 (32), + eAf11 (40), + eAf12 (48), + eAf13 (56), + eCs2 (64), + eAf21 (72), + eAf22 (80), + eAf23 (88), + eCs3 (96), + eAf31 (104), + eAf32 (112), + eAf33 (120), + eCs4 (128), + eAf41 (136), + eAf42 (144), + eAf43 (152), + eCs5 (160), + eEf (184), + eCs6 (192), + eCs7 (224), + eCs0 (249), + eNo (254), + eValue (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallActionsEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.7.1.12 +lcsSetupIpv6FirewallActionsEntryDscpValue OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallActionsEntry 12 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.7.1.13 +lcsSetupIpv6FirewallActionsEntryConditions OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallActionsEntry 13 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.7.1.14 +lcsSetupIpv6FirewallActionsEntryTriggerActions OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallActionsEntry 14 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.5.9 +lcsSetupIpv6FirewallStationsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6FirewallStationsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Firewall 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.5.9.1 +lcsSetupIpv6FirewallStationsEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6FirewallStationsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6FirewallStationsEntryName + } + ::= { lcsSetupIpv6FirewallStationsTable 1 } + +LcsSetupIpv6FirewallStationsEntry ::= SEQUENCE { + lcsSetupIpv6FirewallStationsEntryName DisplayString, + lcsSetupIpv6FirewallStationsEntryType INTEGER, + lcsSetupIpv6FirewallStationsEntryLocalNetwork DisplayString, + lcsSetupIpv6FirewallStationsEntryRemotePeerLocalHost DisplayString, + lcsSetupIpv6FirewallStationsEntryAddressPrefix DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.9.1.1 +lcsSetupIpv6FirewallStationsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallStationsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.9.1.2 +lcsSetupIpv6FirewallStationsEntryType OBJECT-TYPE + SYNTAX INTEGER { + eLocalNetwork (0), + eRemotePeer (1), + ePrefix (2), + eIdentifier (3), + eIpAddress (4), + eNamedHost (5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallStationsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.9.1.3 +lcsSetupIpv6FirewallStationsEntryLocalNetwork OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallStationsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.9.1.6 +lcsSetupIpv6FirewallStationsEntryRemotePeerLocalHost OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallStationsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.9.1.7 +lcsSetupIpv6FirewallStationsEntryAddressPrefix OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..43)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallStationsEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.5.10 +lcsSetupIpv6FirewallServicesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6FirewallServicesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Firewall 10 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.5.10.1 +lcsSetupIpv6FirewallServicesEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6FirewallServicesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6FirewallServicesEntryName + } + ::= { lcsSetupIpv6FirewallServicesTable 1 } + +LcsSetupIpv6FirewallServicesEntry ::= SEQUENCE { + lcsSetupIpv6FirewallServicesEntryName DisplayString, + lcsSetupIpv6FirewallServicesEntryProtocol INTEGER, + lcsSetupIpv6FirewallServicesEntryPorts DisplayString, + lcsSetupIpv6FirewallServicesEntrySrcPorts INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.10.1.1 +lcsSetupIpv6FirewallServicesEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallServicesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.10.1.2 +lcsSetupIpv6FirewallServicesEntryProtocol OBJECT-TYPE + SYNTAX INTEGER { + eTcp (2), + eUdp (4), + eTcpPlusUdp (6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallServicesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.10.1.3 +lcsSetupIpv6FirewallServicesEntryPorts OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallServicesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.10.1.4 +lcsSetupIpv6FirewallServicesEntrySrcPorts OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallServicesEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.5.11 +lcsSetupIpv6FirewallProtocolsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6FirewallProtocolsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Firewall 11 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.5.11.1 +lcsSetupIpv6FirewallProtocolsEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6FirewallProtocolsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6FirewallProtocolsEntryName + } + ::= { lcsSetupIpv6FirewallProtocolsTable 1 } + +LcsSetupIpv6FirewallProtocolsEntry ::= SEQUENCE { + lcsSetupIpv6FirewallProtocolsEntryName DisplayString, + lcsSetupIpv6FirewallProtocolsEntryProtocol Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.11.1.1 +lcsSetupIpv6FirewallProtocolsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallProtocolsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.11.1.2 +lcsSetupIpv6FirewallProtocolsEntryProtocol OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallProtocolsEntry 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.5.12 +lcsSetupIpv6FirewallConditionsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6FirewallConditionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Firewall 12 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.5.12.1 +lcsSetupIpv6FirewallConditionsEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6FirewallConditionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6FirewallConditionsEntryName + } + ::= { lcsSetupIpv6FirewallConditionsTable 1 } + +LcsSetupIpv6FirewallConditionsEntry ::= SEQUENCE { + lcsSetupIpv6FirewallConditionsEntryName DisplayString, + lcsSetupIpv6FirewallConditionsEntryConditions BITS, + lcsSetupIpv6FirewallConditionsEntryTransportDirection INTEGER, + lcsSetupIpv6FirewallConditionsEntryDiffserv INTEGER, + lcsSetupIpv6FirewallConditionsEntryDscpValue Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.12.1.1 +lcsSetupIpv6FirewallConditionsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallConditionsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.12.1.2 +lcsSetupIpv6FirewallConditionsEntryConditions OBJECT-TYPE + SYNTAX BITS { + eNone (0), + eReceived (2), + eSent (3), + eVpnRoute (4), + eBackupConnection (5), + eDefaultRoute (6), + eNotConnected (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallConditionsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.12.1.3 +lcsSetupIpv6FirewallConditionsEntryTransportDirection OBJECT-TYPE + SYNTAX INTEGER { + ePhysical (0), + eLogical (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallConditionsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.12.1.4 +lcsSetupIpv6FirewallConditionsEntryDiffserv OBJECT-TYPE + SYNTAX INTEGER { + eBe (0), + eCs1 (32), + eAf11 (40), + eAf12 (48), + eAf13 (56), + eCs2 (64), + eAf21 (72), + eAf22 (80), + eAf23 (88), + eCs3 (96), + eAf31 (104), + eAf32 (112), + eAf33 (120), + eCs4 (128), + eAf41 (136), + eAf42 (144), + eAf43 (152), + eCs5 (160), + eEf (184), + eCs6 (192), + eCs7 (224), + eCsx (240), + eAf1x (241), + eAf2x (242), + eAf3x (243), + eAf4x (244), + eAfx1 (245), + eAfx2 (246), + eAfx3 (247), + eAfxx (248), + eCs0 (249), + eIgnore (254), + eValue (255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallConditionsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.12.1.5 +lcsSetupIpv6FirewallConditionsEntryDscpValue OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallConditionsEntry 5 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.5.13 +lcsSetupIpv6FirewallTriggerActionsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6FirewallTriggerActionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Firewall 13 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.5.13.1 +lcsSetupIpv6FirewallTriggerActionsEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6FirewallTriggerActionsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6FirewallTriggerActionsEntryName + } + ::= { lcsSetupIpv6FirewallTriggerActionsTable 1 } + +LcsSetupIpv6FirewallTriggerActionsEntry ::= SEQUENCE { + lcsSetupIpv6FirewallTriggerActionsEntryName DisplayString, + lcsSetupIpv6FirewallTriggerActionsEntryNotifications BITS, + lcsSetupIpv6FirewallTriggerActionsEntryDisconnect INTEGER, + lcsSetupIpv6FirewallTriggerActionsEntryBlockSource INTEGER, + lcsSetupIpv6FirewallTriggerActionsEntryBlockTime Integer32, + lcsSetupIpv6FirewallTriggerActionsEntryCloseDestination INTEGER, + lcsSetupIpv6FirewallTriggerActionsEntryCloseTime Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.13.1.1 +lcsSetupIpv6FirewallTriggerActionsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallTriggerActionsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.13.1.2 +lcsSetupIpv6FirewallTriggerActionsEntryNotifications OBJECT-TYPE + SYNTAX BITS { + eNone (0), + eEmail (5), + eSyslog (6), + eSnmp (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallTriggerActionsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.13.1.3 +lcsSetupIpv6FirewallTriggerActionsEntryDisconnect OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallTriggerActionsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.13.1.4 +lcsSetupIpv6FirewallTriggerActionsEntryBlockSource OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallTriggerActionsEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.13.1.5 +lcsSetupIpv6FirewallTriggerActionsEntryBlockTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallTriggerActionsEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.13.1.6 +lcsSetupIpv6FirewallTriggerActionsEntryCloseDestination OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallTriggerActionsEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.13.1.7 +lcsSetupIpv6FirewallTriggerActionsEntryCloseTime OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallTriggerActionsEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.5.14 +lcsSetupIpv6FirewallIcmpServicesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6FirewallIcmpServicesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Firewall 14 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.5.14.1 +lcsSetupIpv6FirewallIcmpServicesEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6FirewallIcmpServicesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6FirewallIcmpServicesEntryName + } + ::= { lcsSetupIpv6FirewallIcmpServicesTable 1 } + +LcsSetupIpv6FirewallIcmpServicesEntry ::= SEQUENCE { + lcsSetupIpv6FirewallIcmpServicesEntryName DisplayString, + lcsSetupIpv6FirewallIcmpServicesEntryType Integer32, + lcsSetupIpv6FirewallIcmpServicesEntryCode Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.14.1.1 +lcsSetupIpv6FirewallIcmpServicesEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallIcmpServicesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.14.1.2 +lcsSetupIpv6FirewallIcmpServicesEntryType OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallIcmpServicesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.14.1.3 +lcsSetupIpv6FirewallIcmpServicesEntryCode OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallIcmpServicesEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.5.15 +lcsSetupIpv6FirewallInboundRulesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6FirewallInboundRulesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Firewall 15 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.5.15.1 +lcsSetupIpv6FirewallInboundRulesEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6FirewallInboundRulesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6FirewallInboundRulesEntryName + } + ::= { lcsSetupIpv6FirewallInboundRulesTable 1 } + +LcsSetupIpv6FirewallInboundRulesEntry ::= SEQUENCE { + lcsSetupIpv6FirewallInboundRulesEntryName DisplayString, + lcsSetupIpv6FirewallInboundRulesEntryActive INTEGER, + lcsSetupIpv6FirewallInboundRulesEntryPrio Integer32, + lcsSetupIpv6FirewallInboundRulesEntryAction DisplayString, + lcsSetupIpv6FirewallInboundRulesEntryServices DisplayString, + lcsSetupIpv6FirewallInboundRulesEntrySourceStations DisplayString, + lcsSetupIpv6FirewallInboundRulesEntryComment DisplayString, + lcsSetupIpv6FirewallInboundRulesEntrySrcTag Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.15.1.1 +lcsSetupIpv6FirewallInboundRulesEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..36)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallInboundRulesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.15.1.2 +lcsSetupIpv6FirewallInboundRulesEntryActive OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallInboundRulesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.15.1.3 +lcsSetupIpv6FirewallInboundRulesEntryPrio OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallInboundRulesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.15.1.5 +lcsSetupIpv6FirewallInboundRulesEntryAction OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallInboundRulesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.15.1.7 +lcsSetupIpv6FirewallInboundRulesEntryServices OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallInboundRulesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.15.1.8 +lcsSetupIpv6FirewallInboundRulesEntrySourceStations OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallInboundRulesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.15.1.10 +lcsSetupIpv6FirewallInboundRulesEntryComment OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallInboundRulesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.5.15.1.11 +lcsSetupIpv6FirewallInboundRulesEntrySrcTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6FirewallInboundRulesEntry 11 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.70.5.20 +lcsSetupIpv6FirewallAllowRouteOptions OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Firewall 20 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.70.5.21 +lcsSetupIpv6FirewallDestinationCacheLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Firewall 21 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.6 +lcsSetupIpv6LanInterfacesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6LanInterfacesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6 6 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.6.1 +lcsSetupIpv6LanInterfacesEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6LanInterfacesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6LanInterfacesEntryInterfaceName + } + ::= { lcsSetupIpv6LanInterfacesTable 1 } + +LcsSetupIpv6LanInterfacesEntry ::= SEQUENCE { + lcsSetupIpv6LanInterfacesEntryInterfaceName DisplayString, + lcsSetupIpv6LanInterfacesEntryInterfaceId INTEGER, + lcsSetupIpv6LanInterfacesEntryVlanId Integer32, + lcsSetupIpv6LanInterfacesEntryRtgTag Integer32, + lcsSetupIpv6LanInterfacesEntryAutoconf INTEGER, + lcsSetupIpv6LanInterfacesEntryAcceptRa INTEGER, + lcsSetupIpv6LanInterfacesEntryInterfaceStatus INTEGER, + lcsSetupIpv6LanInterfacesEntryForwarding INTEGER, + lcsSetupIpv6LanInterfacesEntryMtu Integer32, + lcsSetupIpv6LanInterfacesEntryFirewall INTEGER, + lcsSetupIpv6LanInterfacesEntryComment DisplayString, + lcsSetupIpv6LanInterfacesEntryDadAttempts Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.6.1.1 +lcsSetupIpv6LanInterfacesEntryInterfaceName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6LanInterfacesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.6.1.2 +lcsSetupIpv6LanInterfacesEntryInterfaceId OBJECT-TYPE + SYNTAX INTEGER { + eLan1 (256), + eLan2 (257), + eLan3 (258), + eLan4 (259), + eLan5 (260), + eWlan1 (512), + eWlan2 (513), + eP2p11 (768), + eP2p12 (769), + eP2p13 (770), + eP2p14 (771), + eP2p15 (772), + eP2p16 (773), + eP2p21 (774), + eP2p22 (775), + eP2p23 (776), + eP2p24 (777), + eP2p25 (778), + eP2p26 (779), + eP2p17 (799), + eP2p18 (800), + eP2p19 (801), + eP2p110 (802), + eP2p111 (803), + eP2p112 (804), + eP2p113 (805), + eP2p114 (806), + eP2p115 (807), + eP2p116 (808), + eP2p27 (831), + eP2p28 (832), + eP2p29 (833), + eP2p210 (834), + eP2p211 (835), + eP2p212 (836), + eP2p213 (837), + eP2p214 (838), + eP2p215 (839), + eP2p216 (840), + eWlan12 (1024), + eWlan13 (1025), + eWlan14 (1026), + eWlan15 (1027), + eWlan16 (1028), + eWlan17 (1029), + eWlan18 (1030), + eWlan22 (1031), + eWlan23 (1032), + eWlan24 (1033), + eWlan25 (1034), + eWlan26 (1035), + eWlan27 (1036), + eWlan28 (1037), + eBrg1 (1536), + eBrg2 (1537), + eBrg3 (1538), + eBrg4 (1539), + eBrg5 (1540), + eBrg6 (1541), + eBrg7 (1542), + eBrg8 (1543), + eWlcTunnel1 (1792), + eWlcTunnel2 (1793), + eWlcTunnel3 (1794), + eWlcTunnel4 (1795), + eWlcTunnel5 (1796), + eWlcTunnel6 (1797), + eWlcTunnel7 (1798), + eWlcTunnel8 (1799), + eWlcTunnel9 (1800), + eWlcTunnel10 (1801), + eWlcTunnel11 (1802), + eWlcTunnel12 (1803), + eWlcTunnel13 (1804), + eWlcTunnel14 (1805), + eWlcTunnel15 (1806), + eWlcTunnel16 (1807), + eWlcTunnel17 (1808), + eWlcTunnel18 (1809), + eWlcTunnel19 (1810), + eWlcTunnel20 (1811), + eWlcTunnel21 (1812), + eWlcTunnel22 (1813), + eWlcTunnel23 (1814), + eWlcTunnel24 (1815), + eWlcTunnel25 (1816), + eWlcTunnel26 (1817), + eWlcTunnel27 (1818), + eWlcTunnel28 (1819), + eWlcTunnel29 (1820), + eWlcTunnel30 (1821), + eWlcTunnel31 (1822), + eWlcTunnel32 (1823), + eWlcTunnelAutowds (1824), + eBundle1 (2048), + eBundle2 (2049) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6LanInterfacesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.6.1.3 +lcsSetupIpv6LanInterfacesEntryVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6LanInterfacesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.6.1.4 +lcsSetupIpv6LanInterfacesEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6LanInterfacesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.6.1.5 +lcsSetupIpv6LanInterfacesEntryAutoconf OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6LanInterfacesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.6.1.6 +lcsSetupIpv6LanInterfacesEntryAcceptRa OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6LanInterfacesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.6.1.7 +lcsSetupIpv6LanInterfacesEntryInterfaceStatus OBJECT-TYPE + SYNTAX INTEGER { + eUp (1), + eDown (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6LanInterfacesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.6.1.8 +lcsSetupIpv6LanInterfacesEntryForwarding OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6LanInterfacesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.6.1.9 +lcsSetupIpv6LanInterfacesEntryMtu OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6LanInterfacesEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.6.1.10 +lcsSetupIpv6LanInterfacesEntryFirewall OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6LanInterfacesEntry 10 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.6.1.11 +lcsSetupIpv6LanInterfacesEntryComment OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6LanInterfacesEntry 11 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.6.1.12 +lcsSetupIpv6LanInterfacesEntryDadAttempts OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6LanInterfacesEntry 12 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.7 +lcsSetupIpv6WanInterfacesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6WanInterfacesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6 7 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.7.1 +lcsSetupIpv6WanInterfacesEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6WanInterfacesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6WanInterfacesEntryInterfaceName + } + ::= { lcsSetupIpv6WanInterfacesTable 1 } + +LcsSetupIpv6WanInterfacesEntry ::= SEQUENCE { + lcsSetupIpv6WanInterfacesEntryInterfaceName DisplayString, + lcsSetupIpv6WanInterfacesEntryRtgTag Integer32, + lcsSetupIpv6WanInterfacesEntryAutoconf INTEGER, + lcsSetupIpv6WanInterfacesEntryAcceptRa INTEGER, + lcsSetupIpv6WanInterfacesEntryInterfaceStatus INTEGER, + lcsSetupIpv6WanInterfacesEntryForwarding INTEGER, + lcsSetupIpv6WanInterfacesEntryFirewall INTEGER, + lcsSetupIpv6WanInterfacesEntryComment DisplayString, + lcsSetupIpv6WanInterfacesEntryDadAttempts Integer32, + lcsSetupIpv6WanInterfacesEntryPdMode INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.7.1.1 +lcsSetupIpv6WanInterfacesEntryInterfaceName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6WanInterfacesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.7.1.2 +lcsSetupIpv6WanInterfacesEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6WanInterfacesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.7.1.3 +lcsSetupIpv6WanInterfacesEntryAutoconf OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6WanInterfacesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.7.1.4 +lcsSetupIpv6WanInterfacesEntryAcceptRa OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6WanInterfacesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.7.1.5 +lcsSetupIpv6WanInterfacesEntryInterfaceStatus OBJECT-TYPE + SYNTAX INTEGER { + eUp (1), + eDown (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6WanInterfacesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.7.1.6 +lcsSetupIpv6WanInterfacesEntryForwarding OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6WanInterfacesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.7.1.7 +lcsSetupIpv6WanInterfacesEntryFirewall OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6WanInterfacesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.7.1.8 +lcsSetupIpv6WanInterfacesEntryComment OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6WanInterfacesEntry 8 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.7.1.9 +lcsSetupIpv6WanInterfacesEntryDadAttempts OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6WanInterfacesEntry 9 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.7.1.10 +lcsSetupIpv6WanInterfacesEntryPdMode OBJECT-TYPE + SYNTAX INTEGER { + eDhcpv6 (0), + eRouterAdv (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6WanInterfacesEntry 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.70.10 +lcsSetupIpv6Operating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6 10 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.70.11 +lcsSetupIpv6Forwarding OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6 11 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.70.12 +lcsSetupIpv6Router OBJECT IDENTIFIER ::= { lcsSetupIpv6 12 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.12.1 +lcsSetupIpv6RouterRoutingTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6RouterRoutingTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Router 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.12.1.1 +lcsSetupIpv6RouterRoutingTableEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6RouterRoutingTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6RouterRoutingTableEntryPrefix, + lcsSetupIpv6RouterRoutingTableEntryRtgTag + } + ::= { lcsSetupIpv6RouterRoutingTableTable 1 } + +LcsSetupIpv6RouterRoutingTableEntry ::= SEQUENCE { + lcsSetupIpv6RouterRoutingTableEntryPrefix DisplayString, + lcsSetupIpv6RouterRoutingTableEntryRtgTag Integer32, + lcsSetupIpv6RouterRoutingTableEntryPeerOrIpv6 DisplayString, + lcsSetupIpv6RouterRoutingTableEntryComment DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.12.1.1.1 +lcsSetupIpv6RouterRoutingTableEntryPrefix OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..43)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterRoutingTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.12.1.1.2 +lcsSetupIpv6RouterRoutingTableEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterRoutingTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.12.1.1.3 +lcsSetupIpv6RouterRoutingTableEntryPeerOrIpv6 OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..56)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterRoutingTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.12.1.1.4 +lcsSetupIpv6RouterRoutingTableEntryComment OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RouterRoutingTableEntry 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.70.12.2 +lcsSetupIpv6RouterDestCacheTimeout OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Router 2 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.13 +lcsSetupIpv6Icmpv6Table OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6Icmpv6Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6 13 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.13.1 +lcsSetupIpv6Icmpv6Entry OBJECT-TYPE + SYNTAX LcsSetupIpv6Icmpv6Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6Icmpv6EntryInterfaceName + } + ::= { lcsSetupIpv6Icmpv6Table 1 } + +LcsSetupIpv6Icmpv6Entry ::= SEQUENCE { + lcsSetupIpv6Icmpv6EntryInterfaceName DisplayString, + lcsSetupIpv6Icmpv6EntryErrorBandwidth Integer32, + lcsSetupIpv6Icmpv6EntryRedirects INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.13.1.1 +lcsSetupIpv6Icmpv6EntryInterfaceName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Icmpv6Entry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.13.1.2 +lcsSetupIpv6Icmpv6EntryErrorBandwidth OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Icmpv6Entry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.13.1.3 +lcsSetupIpv6Icmpv6EntryRedirects OBJECT-TYPE + SYNTAX INTEGER { + eDisable (0), + eEnable (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6Icmpv6Entry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.70.14 +lcsSetupIpv6RasInterfacesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIpv6RasInterfacesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6 14 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.70.14.1 +lcsSetupIpv6RasInterfacesEntry OBJECT-TYPE + SYNTAX LcsSetupIpv6RasInterfacesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIpv6RasInterfacesEntryInterfaceName + } + ::= { lcsSetupIpv6RasInterfacesTable 1 } + +LcsSetupIpv6RasInterfacesEntry ::= SEQUENCE { + lcsSetupIpv6RasInterfacesEntryInterfaceName DisplayString, + lcsSetupIpv6RasInterfacesEntryRtgTag Integer32, + lcsSetupIpv6RasInterfacesEntryInterfaceStatus INTEGER, + lcsSetupIpv6RasInterfacesEntryForwarding INTEGER, + lcsSetupIpv6RasInterfacesEntryFirewall INTEGER, + lcsSetupIpv6RasInterfacesEntryDadAttempts Integer32, + lcsSetupIpv6RasInterfacesEntryPeerName DisplayString, + lcsSetupIpv6RasInterfacesEntryComment DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.14.1.1 +lcsSetupIpv6RasInterfacesEntryInterfaceName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RasInterfacesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.14.1.2 +lcsSetupIpv6RasInterfacesEntryRtgTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RasInterfacesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.14.1.3 +lcsSetupIpv6RasInterfacesEntryInterfaceStatus OBJECT-TYPE + SYNTAX INTEGER { + eUp (1), + eDown (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RasInterfacesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.14.1.4 +lcsSetupIpv6RasInterfacesEntryForwarding OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RasInterfacesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.14.1.5 +lcsSetupIpv6RasInterfacesEntryFirewall OBJECT-TYPE + SYNTAX INTEGER { + eYes (0), + eNo (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RasInterfacesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.14.1.6 +lcsSetupIpv6RasInterfacesEntryDadAttempts OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RasInterfacesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.14.1.7 +lcsSetupIpv6RasInterfacesEntryPeerName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RasInterfacesEntry 7 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.70.14.1.8 +lcsSetupIpv6RasInterfacesEntryComment OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIpv6RasInterfacesEntry 8 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.71 +lcsSetupIeee80211u OBJECT IDENTIFIER ::= { lcsSetup 71 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.71.1 +lcsSetupIeee80211uAnqpProfilesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIeee80211uAnqpProfilesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211u 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.71.1.1 +lcsSetupIeee80211uAnqpProfilesEntry OBJECT-TYPE + SYNTAX LcsSetupIeee80211uAnqpProfilesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIeee80211uAnqpProfilesEntryName + } + ::= { lcsSetupIeee80211uAnqpProfilesTable 1 } + +LcsSetupIeee80211uAnqpProfilesEntry ::= SEQUENCE { + lcsSetupIeee80211uAnqpProfilesEntryName DisplayString, + lcsSetupIeee80211uAnqpProfilesEntryIncludeInBeaconOui DisplayString, + lcsSetupIeee80211uAnqpProfilesEntryAdditionalOui DisplayString, + lcsSetupIeee80211uAnqpProfilesEntryDomainList DisplayString, + lcsSetupIeee80211uAnqpProfilesEntryNaiRealmList DisplayString, + lcsSetupIeee80211uAnqpProfilesEntryCellularList DisplayString, + lcsSetupIeee80211uAnqpProfilesEntryNetworkAuthTypeList DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.1.1.1 +lcsSetupIeee80211uAnqpProfilesEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uAnqpProfilesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.1.1.2 +lcsSetupIeee80211uAnqpProfilesEntryIncludeInBeaconOui OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uAnqpProfilesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.1.1.3 +lcsSetupIeee80211uAnqpProfilesEntryAdditionalOui OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uAnqpProfilesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.1.1.4 +lcsSetupIeee80211uAnqpProfilesEntryDomainList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uAnqpProfilesEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.1.1.5 +lcsSetupIeee80211uAnqpProfilesEntryNaiRealmList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uAnqpProfilesEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.1.1.6 +lcsSetupIeee80211uAnqpProfilesEntryCellularList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uAnqpProfilesEntry 6 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.1.1.7 +lcsSetupIeee80211uAnqpProfilesEntryNetworkAuthTypeList OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uAnqpProfilesEntry 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.71.3 +lcsSetupIeee80211uVenueNameTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIeee80211uVenueNameEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211u 3 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.71.3.1 +lcsSetupIeee80211uVenueNameEntry OBJECT-TYPE + SYNTAX LcsSetupIeee80211uVenueNameEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIeee80211uVenueNameEntryName, + lcsSetupIeee80211uVenueNameEntryLanguage + } + ::= { lcsSetupIeee80211uVenueNameTable 1 } + +LcsSetupIeee80211uVenueNameEntry ::= SEQUENCE { + lcsSetupIeee80211uVenueNameEntryName DisplayString, + lcsSetupIeee80211uVenueNameEntryVenueName DisplayString, + lcsSetupIeee80211uVenueNameEntryLanguage INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.3.1.1 +lcsSetupIeee80211uVenueNameEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uVenueNameEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.3.1.2 +lcsSetupIeee80211uVenueNameEntryVenueName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uVenueNameEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.3.1.3 +lcsSetupIeee80211uVenueNameEntryLanguage OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eEnglish (1), + eGerman (2), + eChinese (3), + eSpanish (4), + eFrench (5), + eItalian (6), + eRussian (7), + eDutch (8), + eTurkish (9), + ePortuguese (10), + ePolish (11), + eCzech (12), + eArabic (13) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uVenueNameEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.71.4 +lcsSetupIeee80211uCellularNetworkInformationListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIeee80211uCellularNetworkInformationListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211u 4 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.71.4.1 +lcsSetupIeee80211uCellularNetworkInformationListEntry OBJECT-TYPE + SYNTAX LcsSetupIeee80211uCellularNetworkInformationListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIeee80211uCellularNetworkInformationListEntryName + } + ::= { lcsSetupIeee80211uCellularNetworkInformationListTable 1 } + +LcsSetupIeee80211uCellularNetworkInformationListEntry ::= SEQUENCE { + lcsSetupIeee80211uCellularNetworkInformationListEntryName DisplayString, + lcsSetupIeee80211uCellularNetworkInformationListEntryCountryCode DisplayString, + lcsSetupIeee80211uCellularNetworkInformationListEntryNetworkCode DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.4.1.1 +lcsSetupIeee80211uCellularNetworkInformationListEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uCellularNetworkInformationListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.4.1.2 +lcsSetupIeee80211uCellularNetworkInformationListEntryCountryCode OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uCellularNetworkInformationListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.4.1.3 +lcsSetupIeee80211uCellularNetworkInformationListEntryNetworkCode OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uCellularNetworkInformationListEntry 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.71.5 +lcsSetupIeee80211uNetworkAuthenticationTypeTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIeee80211uNetworkAuthenticationTypeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211u 5 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.71.5.1 +lcsSetupIeee80211uNetworkAuthenticationTypeEntry OBJECT-TYPE + SYNTAX LcsSetupIeee80211uNetworkAuthenticationTypeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIeee80211uNetworkAuthenticationTypeEntryName + } + ::= { lcsSetupIeee80211uNetworkAuthenticationTypeTable 1 } + +LcsSetupIeee80211uNetworkAuthenticationTypeEntry ::= SEQUENCE { + lcsSetupIeee80211uNetworkAuthenticationTypeEntryNetworkAuthType INTEGER, + lcsSetupIeee80211uNetworkAuthenticationTypeEntryRedirectUrl DisplayString, + lcsSetupIeee80211uNetworkAuthenticationTypeEntryName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.5.1.1 +lcsSetupIeee80211uNetworkAuthenticationTypeEntryNetworkAuthType OBJECT-TYPE + SYNTAX INTEGER { + eAcceptTermsCond (0), + eOnlineEnrollment (1), + eHttpRedirection (2), + eDnsRedirection (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uNetworkAuthenticationTypeEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.5.1.2 +lcsSetupIeee80211uNetworkAuthenticationTypeEntryRedirectUrl OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uNetworkAuthenticationTypeEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.5.1.3 +lcsSetupIeee80211uNetworkAuthenticationTypeEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uNetworkAuthenticationTypeEntry 3 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.71.6 +lcsSetupIeee80211uAnqpGeneral OBJECT IDENTIFIER ::= { lcsSetupIeee80211u 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.71.6.1 +lcsSetupIeee80211uAnqpGeneralVenueGroup OBJECT-TYPE + SYNTAX INTEGER { + eUnspecified (0), + eAssembly (1), + eBusiness (2), + eEducational (3), + eFactoryAndIndustrial (4), + eInstitutional (5), + eMercantile (6), + eResindential (7), + eStorage (8), + eUtilityAndMiscellaneous (9), + eVehicular (10), + eOutdoor (11) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uAnqpGeneral 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.71.6.2 +lcsSetupIeee80211uAnqpGeneralVenueType OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uAnqpGeneral 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.71.6.5 +lcsSetupIeee80211uAnqpGeneralIpv4AddrType OBJECT-TYPE + SYNTAX INTEGER { + eNotAvailable (0), + ePublicAddrAvailable (1), + ePortRestrAddrAvail (2), + eSingleNatPrivAddrAvail (3), + eDoubleNatPrivAddrAvail (4), + ePortRestrSingleNatAddrAvail (5), + ePortRestrDoubleNatAddrAvail (6), + eAvailabilityNotKnown (7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uAnqpGeneral 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.71.6.6 +lcsSetupIeee80211uAnqpGeneralIpv6AddrType OBJECT-TYPE + SYNTAX INTEGER { + eNotAvailable (0), + eAvailable (1), + eAvailabilityNotKnown (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uAnqpGeneral 6 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.71.7 +lcsSetupIeee80211uHotspot20 OBJECT IDENTIFIER ::= { lcsSetupIeee80211u 7 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.71.7.1 +lcsSetupIeee80211uHotspot20OperatorListTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIeee80211uHotspot20OperatorListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uHotspot20 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.71.7.1.1 +lcsSetupIeee80211uHotspot20OperatorListEntry OBJECT-TYPE + SYNTAX LcsSetupIeee80211uHotspot20OperatorListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIeee80211uHotspot20OperatorListEntryName, + lcsSetupIeee80211uHotspot20OperatorListEntryLanguage + } + ::= { lcsSetupIeee80211uHotspot20OperatorListTable 1 } + +LcsSetupIeee80211uHotspot20OperatorListEntry ::= SEQUENCE { + lcsSetupIeee80211uHotspot20OperatorListEntryName DisplayString, + lcsSetupIeee80211uHotspot20OperatorListEntryOperatorName DisplayString, + lcsSetupIeee80211uHotspot20OperatorListEntryLanguage INTEGER + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.7.1.1.1 +lcsSetupIeee80211uHotspot20OperatorListEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uHotspot20OperatorListEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.7.1.1.2 +lcsSetupIeee80211uHotspot20OperatorListEntryOperatorName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uHotspot20OperatorListEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.7.1.1.4 +lcsSetupIeee80211uHotspot20OperatorListEntryLanguage OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eEnglish (1), + eGerman (2), + eChinese (3), + eSpanish (4), + eFrench (5), + eItalian (6), + eRussian (7), + eDutch (8), + eTurkish (9), + ePortuguese (10), + ePolish (11), + eCzech (12), + eArabic (13) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uHotspot20OperatorListEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.71.7.2 +lcsSetupIeee80211uHotspot20ConnectionCapabilityTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIeee80211uHotspot20ConnectionCapabilityEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uHotspot20 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.71.7.2.1 +lcsSetupIeee80211uHotspot20ConnectionCapabilityEntry OBJECT-TYPE + SYNTAX LcsSetupIeee80211uHotspot20ConnectionCapabilityEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIeee80211uHotspot20ConnectionCapabilityEntryName + } + ::= { lcsSetupIeee80211uHotspot20ConnectionCapabilityTable 1 } + +LcsSetupIeee80211uHotspot20ConnectionCapabilityEntry ::= SEQUENCE { + lcsSetupIeee80211uHotspot20ConnectionCapabilityEntryName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.7.2.1.4 +lcsSetupIeee80211uHotspot20ConnectionCapabilityEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uHotspot20ConnectionCapabilityEntry 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.71.7.4 +lcsSetupIeee80211uHotspot20LinkStatus OBJECT-TYPE + SYNTAX INTEGER { + eAuto (0), + eLinkUp (1), + eLinkDown (2), + eLinkTest (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uHotspot20 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.71.7.7 +lcsSetupIeee80211uHotspot20DownlinkSpeed OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uHotspot20 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.71.7.8 +lcsSetupIeee80211uHotspot20UplinkSpeed OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uHotspot20 8 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.71.7.9 +lcsSetupIeee80211uHotspot20Hotspot20ProfilesTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIeee80211uHotspot20Hotspot20ProfilesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uHotspot20 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.71.7.9.1 +lcsSetupIeee80211uHotspot20Hotspot20ProfilesEntry OBJECT-TYPE + SYNTAX LcsSetupIeee80211uHotspot20Hotspot20ProfilesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIeee80211uHotspot20Hotspot20ProfilesEntryName + } + ::= { lcsSetupIeee80211uHotspot20Hotspot20ProfilesTable 1 } + +LcsSetupIeee80211uHotspot20Hotspot20ProfilesEntry ::= SEQUENCE { + lcsSetupIeee80211uHotspot20Hotspot20ProfilesEntryName DisplayString, + lcsSetupIeee80211uHotspot20Hotspot20ProfilesEntryOperatorName DisplayString, + lcsSetupIeee80211uHotspot20Hotspot20ProfilesEtryConnectCapabil DisplayString, + lcsSetupIeee80211uHotspot20Hotspot20ProfilesEntryOperatingClass DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.7.9.1.1 +lcsSetupIeee80211uHotspot20Hotspot20ProfilesEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uHotspot20Hotspot20ProfilesEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.7.9.1.2 +lcsSetupIeee80211uHotspot20Hotspot20ProfilesEntryOperatorName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uHotspot20Hotspot20ProfilesEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.7.9.1.3 +lcsSetupIeee80211uHotspot20Hotspot20ProfilesEtryConnectCapabil OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..250)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uHotspot20Hotspot20ProfilesEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.7.9.1.4 +lcsSetupIeee80211uHotspot20Hotspot20ProfilesEntryOperatingClass OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uHotspot20Hotspot20ProfilesEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.71.8 +lcsSetupIeee80211uAuthParameterTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIeee80211uAuthParameterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211u 8 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.71.8.1 +lcsSetupIeee80211uAuthParameterEntry OBJECT-TYPE + SYNTAX LcsSetupIeee80211uAuthParameterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIeee80211uAuthParameterEntryName + } + ::= { lcsSetupIeee80211uAuthParameterTable 1 } + +LcsSetupIeee80211uAuthParameterEntry ::= SEQUENCE { + lcsSetupIeee80211uAuthParameterEntryName DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.8.1.1 +lcsSetupIeee80211uAuthParameterEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uAuthParameterEntry 1 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.2.71.9 +lcsSetupIeee80211uNaiRealmsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsSetupIeee80211uNaiRealmsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211u 9 } + +-- {ROW} 1.3.6.1.4.1.2356.11.2.71.9.1 +lcsSetupIeee80211uNaiRealmsEntry OBJECT-TYPE + SYNTAX LcsSetupIeee80211uNaiRealmsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsSetupIeee80211uNaiRealmsEntryName + } + ::= { lcsSetupIeee80211uNaiRealmsTable 1 } + +LcsSetupIeee80211uNaiRealmsEntry ::= SEQUENCE { + lcsSetupIeee80211uNaiRealmsEntryName DisplayString, + lcsSetupIeee80211uNaiRealmsEntryNaiRealm DisplayString, + lcsSetupIeee80211uNaiRealmsEntryEapMethod INTEGER, + lcsSetupIeee80211uNaiRealmsEntryAuthParameter DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.9.1.1 +lcsSetupIeee80211uNaiRealmsEntryName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uNaiRealmsEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.9.1.2 +lcsSetupIeee80211uNaiRealmsEntryNaiRealm OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uNaiRealmsEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.9.1.3 +lcsSetupIeee80211uNaiRealmsEntryEapMethod OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eEapTls (13), + eEapSim (18), + eEapTtls (21), + eEapAka (23) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uNaiRealmsEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.2.71.9.1.4 +lcsSetupIeee80211uNaiRealmsEntryAuthParameter OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..65)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupIeee80211uNaiRealmsEntry 4 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.82 +lcsSetupCrypto OBJECT IDENTIFIER ::= { lcsSetup 82 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.82.1 +lcsSetupCryptoRng OBJECT IDENTIFIER ::= { lcsSetupCrypto 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.82.1.1 +lcsSetupCryptoRngSeed OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupCryptoRng 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.82.1.2 +lcsSetupCryptoRngReseed OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupCryptoRng 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.82.1.3 +lcsSetupCryptoRngReset OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupCryptoRng 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.82.1.4 +lcsSetupCryptoRngWriteInterval OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupCryptoRng 4 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.83 +lcsSetupSms OBJECT IDENTIFIER ::= { lcsSetup 83 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.83.1 +lcsSetupSmsSmscAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupSms 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.83.2 +lcsSetupSmsInboxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupSms 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.83.3 +lcsSetupSmsOutboxLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupSms 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.83.4 +lcsSetupSmsOutboxPreservation OBJECT-TYPE + SYNTAX INTEGER { + eNone (0), + eUnconfirmed (1), + eAll (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupSms 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.83.5 +lcsSetupSmsMailForwardAddr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupSms 5 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.83.6 +lcsSetupSmsSmsForwardAddr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupSms 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.83.7 +lcsSetupSmsSmsForwardLimit OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupSms 7 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.83.8 +lcsSetupSmsSyslog OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eSenderonly (1), + eFull (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupSms 8 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.83.9 +lcsSetupSmsMaxSendAttempts OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupSms 9 } + +-- {NODE} 1.3.6.1.4.1.2356.11.2.200 +lcsSetupSipAlg OBJECT IDENTIFIER ::= { lcsSetup 200 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.200.1 +lcsSetupSipAlgOperating OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupSipAlg 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.2.200.2 +lcsSetupSipAlgFirewallOverrule OBJECT-TYPE + SYNTAX INTEGER { + eNo (0), + eYes (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsSetupSipAlg 2 } + +-- {NODE} 1.3.6.1.4.1.2356.11.3 +lcsFirmware OBJECT IDENTIFIER ::= { lcos 3 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.3.1 +lcsFirmwareVersionTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsFirmwareVersionTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsFirmware 1 } + +-- {ROW} 1.3.6.1.4.1.2356.11.3.1.1 +lcsFirmwareVersionTableEntry OBJECT-TYPE + SYNTAX LcsFirmwareVersionTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsFirmwareVersionTableEntryIfc + } + ::= { lcsFirmwareVersionTableTable 1 } + +LcsFirmwareVersionTableEntry ::= SEQUENCE { + lcsFirmwareVersionTableEntryIfc INTEGER, + lcsFirmwareVersionTableEntryModule DisplayString, + lcsFirmwareVersionTableEntryVersion DisplayString, + lcsFirmwareVersionTableEntrySerialNumber DisplayString + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.3.1.1.1 +lcsFirmwareVersionTableEntryIfc OBJECT-TYPE + SYNTAX INTEGER { + eIfc (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsFirmwareVersionTableEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.3.1.1.2 +lcsFirmwareVersionTableEntryModule OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsFirmwareVersionTableEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.3.1.1.3 +lcsFirmwareVersionTableEntryVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..30)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsFirmwareVersionTableEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.3.1.1.4 +lcsFirmwareVersionTableEntrySerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..19)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsFirmwareVersionTableEntry 4 } + +-- {TABLE} 1.3.6.1.4.1.2356.11.3.2 +lcsFirmwareTableFirmsafeTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcsFirmwareTableFirmsafeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { lcsFirmware 2 } + +-- {ROW} 1.3.6.1.4.1.2356.11.3.2.1 +lcsFirmwareTableFirmsafeEntry OBJECT-TYPE + SYNTAX LcsFirmwareTableFirmsafeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { + lcsFirmwareTableFirmsafeEntryPosition + } + ::= { lcsFirmwareTableFirmsafeTable 1 } + +LcsFirmwareTableFirmsafeEntry ::= SEQUENCE { + lcsFirmwareTableFirmsafeEntryPosition Integer32, + lcsFirmwareTableFirmsafeEntryStatus INTEGER, + lcsFirmwareTableFirmsafeEntryVersion DisplayString, + lcsFirmwareTableFirmsafeEntryDate DisplayString, + lcsFirmwareTableFirmsafeEntrySize Integer32, + lcsFirmwareTableFirmsafeEntryIndex Integer32 + } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.3.2.1.1 +lcsFirmwareTableFirmsafeEntryPosition OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsFirmwareTableFirmsafeEntry 1 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.3.2.1.2 +lcsFirmwareTableFirmsafeEntryStatus OBJECT-TYPE + SYNTAX INTEGER { + eInactive (0), + eActive (1), + eLoader (2), + eMinimalPlusInactive (4), + eMinimalPlusActive (5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsFirmwareTableFirmsafeEntry 2 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.3.2.1.3 +lcsFirmwareTableFirmsafeEntryVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsFirmwareTableFirmsafeEntry 3 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.3.2.1.4 +lcsFirmwareTableFirmsafeEntryDate OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..9)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsFirmwareTableFirmsafeEntry 4 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.3.2.1.5 +lcsFirmwareTableFirmsafeEntrySize OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsFirmwareTableFirmsafeEntry 5 } + +-- {COLUMN} 1.3.6.1.4.1.2356.11.3.2.1.6 +lcsFirmwareTableFirmsafeEntryIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsFirmwareTableFirmsafeEntry 6 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.3.3 +lcsFirmwareModeFirmsafe OBJECT-TYPE + SYNTAX INTEGER { + eImmediate (0), + eLogin (1), + eManual (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsFirmware 3 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.3.4 +lcsFirmwareTimeoutFirmsafe OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsFirmware 4 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.3.7 +lcsFirmwareFeatureWord OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..34)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { lcsFirmware 7 } + +-- {NODE} 1.3.6.1.4.1.2356.11.4 +lcsOther OBJECT IDENTIFIER ::= { lcos 4 } + +-- {NODE} 1.3.6.1.4.1.2356.11.4.1 +lcsOtherManualDialing OBJECT IDENTIFIER ::= { lcsOther 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.4.1.1 +lcsOtherManualDialingConnect OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsOtherManualDialing 1 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.4.1.2 +lcsOtherManualDialingDisconnect OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsOtherManualDialing 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.4.2 +lcsOtherBootSystem OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsOther 2 } + +-- {SCALAR} 1.3.6.1.4.1.2356.11.4.5 +lcsOtherColdBoot OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { lcsOther 5 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8 +lcsProducts OBJECT IDENTIFIER ::= { lcos 8 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.101 +lcsProductsL320agnWireless OBJECT IDENTIFIER ::= { lcsProducts 101 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.102 +lcsProductsL321agnWireless OBJECT IDENTIFIER ::= { lcsProducts 102 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.103 +lcsProductsL322agnDualWireless OBJECT IDENTIFIER ::= { lcsProducts 103 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.105 +lcsProductsL451agnWireless OBJECT IDENTIFIER ::= { lcsProducts 105 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.106 +lcsProductsL452agnDualWireless OBJECT IDENTIFIER ::= { lcsProducts 106 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.107 +lcsProductsL460agnDualWireless OBJECT IDENTIFIER ::= { lcsProducts 107 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.108 +lcsProductsL151gnWireless OBJECT IDENTIFIER ::= { lcsProducts 108 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.109 +lcsProductsL320R2agnWireless OBJECT IDENTIFIER ::= { lcsProducts 109 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.110 +lcsProductsL321R2agnWireless OBJECT IDENTIFIER ::= { lcsProducts 110 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.111 +lcsProductsL322R2agnDualWireless OBJECT IDENTIFIER ::= { lcsProducts 111 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.112 +lcsProductsL1302acnDualWireless OBJECT IDENTIFIER ::= { lcsProducts 112 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.113 +lcsProductsL1310acnDualWireless OBJECT IDENTIFIER ::= { lcsProducts 113 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.114 +lcsProductsL322EWireless OBJECT IDENTIFIER ::= { lcsProducts 114 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.201 +lcsProductsIAP321agnWireless OBJECT IDENTIFIER ::= { lcsProducts 201 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.202 +lcsProductsIAP322agnDualWireless OBJECT IDENTIFIER ::= { lcsProducts 202 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.203 +lcsProductsIAP3G OBJECT IDENTIFIER ::= { lcsProducts 203 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.204 +lcsProductsIAP3213G OBJECT IDENTIFIER ::= { lcsProducts 204 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.301 +lcsProductsOAP321agnWireless OBJECT IDENTIFIER ::= { lcsProducts 301 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.302 +lcsProductsOAP322agnDualWireless OBJECT IDENTIFIER ::= { lcsProducts 302 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.303 +lcsProductsOAP3213G OBJECT IDENTIFIER ::= { lcsProducts 303 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.304 +lcsProductsOAP3G OBJECT IDENTIFIER ::= { lcsProducts 304 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.305 +lcsProductsOAP381 OBJECT IDENTIFIER ::= { lcsProducts 305 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.306 +lcsProductsOAP382 OBJECT IDENTIFIER ::= { lcsProducts 306 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.308 +lcsProductsOAP4G OBJECT IDENTIFIER ::= { lcsProducts 308 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.501 +lcsProductsLC1681E OBJECT IDENTIFIER ::= { lcsProducts 501 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.502 +lcsProductsLC1681A OBJECT IDENTIFIER ::= { lcsProducts 502 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.503 +lcsProductsLC1681V OBJECT IDENTIFIER ::= { lcsProducts 503 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.504 +lcsProductsLC1681V-3G OBJECT IDENTIFIER ::= { lcsProducts 504 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.505 +lcsProductsLC1681-4G OBJECT IDENTIFIER ::= { lcsProducts 505 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.506 +lcsProductsLC1631E OBJECT IDENTIFIER ::= { lcsProducts 506 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.507 +lcsProductsLC831A OBJECT IDENTIFIER ::= { lcsProducts 507 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.508 +lcsProductsBusinessLANR800A OBJECT IDENTIFIER ::= { lcsProducts 508 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.601 +lcsProductsLC1780EW3G OBJECT IDENTIFIER ::= { lcsProducts 601 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.602 +lcsProductsLC1781A OBJECT IDENTIFIER ::= { lcsProducts 602 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.603 +lcsProductsLC1781A-3G OBJECT IDENTIFIER ::= { lcsProducts 603 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.604 +lcsProductsLC1781EF OBJECT IDENTIFIER ::= { lcsProducts 604 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.606 +lcsProductsLC1781EW OBJECT IDENTIFIER ::= { lcsProducts 606 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.607 +lcsProductsLC1781AW OBJECT IDENTIFIER ::= { lcsProducts 607 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.608 +lcsProductsLC1781-4G OBJECT IDENTIFIER ::= { lcsProducts 608 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.609 +lcsProductsLC1781VA OBJECT IDENTIFIER ::= { lcsProducts 609 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.610 +lcsProductsLC1781EFplus OBJECT IDENTIFIER ::= { lcsProducts 610 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.611 +lcsProductsLC1781VAW OBJECT IDENTIFIER ::= { lcsProducts 611 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.612 +lcsProductsLC1781VA-4G OBJECT IDENTIFIER ::= { lcsProducts 612 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.613 +lcsProductsLC1781A-4G OBJECT IDENTIFIER ::= { lcsProducts 613 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.620 +lcsProductsLC1780EW4G OBJECT IDENTIFIER ::= { lcsProducts 620 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.621 +lcsProductsLC1781EWplus OBJECT IDENTIFIER ::= { lcsProducts 621 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.4001 +lcsProductsWLC4006 OBJECT IDENTIFIER ::= { lcsProducts 4001 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.4002 +lcsProductsWLC4025 OBJECT IDENTIFIER ::= { lcsProducts 4002 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.4003 +lcsProductsWLC4025plus OBJECT IDENTIFIER ::= { lcsProducts 4003 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.4004 +lcsProductsWLC4100 OBJECT IDENTIFIER ::= { lcsProducts 4004 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.4005 +lcsProductsWLC4006plus OBJECT IDENTIFIER ::= { lcsProducts 4005 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.7001 +lcsProductsLC7100VPN OBJECT IDENTIFIER ::= { lcsProducts 7001 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.9001 +lcsProductsLC9100VPN OBJECT IDENTIFIER ::= { lcsProducts 9001 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.9002 +lcsProductsLC9100plusVPN OBJECT IDENTIFIER ::= { lcsProducts 9002 } + +-- {NODE} 1.3.6.1.4.1.2356.11.8.9003 +lcsProductsLC7100plusVPN OBJECT IDENTIFIER ::= { lcsProducts 9003 } + +-- +-- NOTIFICATIONS +-- +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.1 +lcsTrapsStatChan NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWanConnections, + lcsStatusChannelEntryState, + lcsStatusChannelEntryApp, + lcsStatusChannelEntryConnector, + lcsStatusChannelEntryCause, + lcsStatusChannelEntryNumber, + lcsStatusChannelEntrySubaddress, + lcsStatusChannelEntryCharge, + lcsStatusChannelEntryExtra, + lcsStatusChannelEntryConnTime, + lcsStatusChannelEntryConnStart, + lcsStatusChannelEntryIsdnDisplay, + lcsStatusChannelEntryPhChan, + lcsStatusChannelEntryPptpConns, + lcsStatusChannelEntryVpnConns + } + STATUS current + DESCRIPTION + "WAN connection status" + ::= { lcsTraps 1 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.4 +lcsTrapsFwUplStart NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusConfigEventLogEntrySystemTime, + lcsStatusConfigEventLogEntryEvent, + lcsStatusConfigEventLogEntryAccess, + lcsStatusConfigEventLogEntryIpAddressNew, + lcsStatusConfigEventLogEntryIpAddress + } + STATUS current + DESCRIPTION + "Firmware upload was started" + ::= { lcsTraps 4 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.5 +lcsTrapsUplsucc NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusConfigEventLogEntrySystemTime, + lcsStatusConfigEventLogEntryEvent, + lcsStatusConfigEventLogEntryAccess, + lcsStatusConfigEventLogEntryIpAddressNew, + lcsStatusConfigEventLogEntryIpAddress, + lcsStatusConfigEventLogEntryInfo1, + lcsStatusConfigEventLogEntryInfo2 + } + STATUS current + DESCRIPTION + "Firmware or configuration upload successful" + ::= { lcsTraps 5 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.6 +lcsTrapsUplfailto NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusConfigEventLogEntrySystemTime, + lcsStatusConfigEventLogEntryEvent, + lcsStatusConfigEventLogEntryAccess, + lcsStatusConfigEventLogEntryIpAddressNew, + lcsStatusConfigEventLogEntryIpAddress, + lcsStatusConfigEventLogEntryInfo1, + lcsStatusConfigEventLogEntryInfo2 + } + STATUS current + DESCRIPTION + "The upload the firmware or configuration failed: maximum time was exceeded" + ::= { lcsTraps 6 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.7 +lcsTrapsUplfailincl NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusConfigEventLogEntrySystemTime, + lcsStatusConfigEventLogEntryEvent, + lcsStatusConfigEventLogEntryAccess, + lcsStatusConfigEventLogEntryIpAddressNew, + lcsStatusConfigEventLogEntryIpAddress, + lcsStatusConfigEventLogEntryInfo1, + lcsStatusConfigEventLogEntryInfo2 + } + STATUS current + DESCRIPTION + "The upload the firmware or configuration failed: incomplete configuration" + ::= { lcsTraps 7 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.8 +lcsTrapsUplfailbaddev NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusConfigEventLogEntrySystemTime, + lcsStatusConfigEventLogEntryEvent, + lcsStatusConfigEventLogEntryAccess, + lcsStatusConfigEventLogEntryIpAddressNew, + lcsStatusConfigEventLogEntryIpAddress, + lcsStatusConfigEventLogEntryInfo1, + lcsStatusConfigEventLogEntryInfo2 + } + STATUS current + DESCRIPTION + "The upload the firmware or configuration failed: wrong device" + ::= { lcsTraps 8 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.9 +lcsTrapsLogin NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusConfigEventLogEntrySystemTime, + lcsStatusConfigEventLogEntryEvent, + lcsStatusConfigEventLogEntryAccess, + lcsStatusConfigEventLogEntryIpAddressNew, + lcsStatusConfigEventLogEntryIpAddress + } + STATUS current + DESCRIPTION + "Login to configuration successful" + ::= { lcsTraps 9 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.10 +lcsTrapsLogout NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusConfigEventLogEntrySystemTime, + lcsStatusConfigEventLogEntryEvent, + lcsStatusConfigEventLogEntryAccess, + lcsStatusConfigEventLogEntryIpAddressNew, + lcsStatusConfigEventLogEntryIpAddress + } + STATUS current + DESCRIPTION + "Logout from configuration was successful" + ::= { lcsTraps 10 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.11 +lcsTrapsCnfuplstart NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusConfigEventLogEntrySystemTime, + lcsStatusConfigEventLogEntryEvent, + lcsStatusConfigEventLogEntryAccess, + lcsStatusConfigEventLogEntryIpAddressNew, + lcsStatusConfigEventLogEntryIpAddress + } + STATUS current + DESCRIPTION + "Configuration upload was started" + ::= { lcsTraps 11 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.12 +lcsTrapsCnfdnlstart NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusConfigEventLogEntrySystemTime, + lcsStatusConfigEventLogEntryEvent, + lcsStatusConfigEventLogEntryAccess, + lcsStatusConfigEventLogEntryIpAddressNew, + lcsStatusConfigEventLogEntryIpAddress + } + STATUS current + DESCRIPTION + "Configuration download was started" + ::= { lcsTraps 12 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.13 +lcsTrapsCnfdnlsucc NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusConfigEventLogEntrySystemTime, + lcsStatusConfigEventLogEntryEvent, + lcsStatusConfigEventLogEntryAccess, + lcsStatusConfigEventLogEntryIpAddressNew, + lcsStatusConfigEventLogEntryIpAddress, + lcsStatusConfigEventLogEntryInfo1, + lcsStatusConfigEventLogEntryInfo2 + } + STATUS current + DESCRIPTION + "Configuration download successful" + ::= { lcsTraps 13 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.14 +lcsTrapsBssscan NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanIfcsEntryIfc + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 14 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.15 +lcsTrapsBssstart NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanWlanParameterEntryIfc, + lcsStatusWlanNetworksEntryBssid + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 15 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.16 +lcsTrapsBssjoin NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanWlanParameterEntryIfc, + lcsStatusWlanNetworksEntryBssid + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 16 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.17 +lcsTrapsAuthstation NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanStationTableEntryMacAddress, + lcsStatusWlanStationTableEntryIdentification + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 17 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.18 +lcsTrapsDeauthstation NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanStationTableEntryMacAddress, + lcsStatusWlanStationTableEntryIdentification + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 18 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.19 +lcsTrapsAssstation NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanStationTableEntryMacAddress, + lcsStatusWlanStationTableEntryIdentification + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 19 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.20 +lcsTrapsReassstation NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanStationTableEntryMacAddress, + lcsStatusWlanStationTableEntryIdentification + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 20 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.21 +lcsTrapsDisassstation NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanStationTableEntryMacAddress, + lcsStatusWlanStationTableEntryIdentification + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 21 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.22 +lcsTrapsAssrej NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanLogTableEntryAddress + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 22 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.25 +lcsTrapsCardhung NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanIfcsEntryIfc + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 25 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.26 +lcsTrapsIpfwflt NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusIpRouterLogTableEntrySystemTime, + lcsStatusIpRouterLogTableEntrySrcAddress, + lcsStatusIpRouterLogTableEntryDstAddress, + lcsStatusIpRouterLogTableEntryProt, + lcsStatusIpRouterLogTableEntrySrcPort, + lcsStatusIpRouterLogTableEntryDstPort, + lcsStatusIpRouterLogTableEntryFilterRule, + lcsStatusIpRouterLogTableEntryLimit, + lcsStatusIpRouterLogTableEntryThreshold, + lcsStatusIpRouterLogTableEntryAction + } + STATUS current + DESCRIPTION + "Information about a firewall event" + ::= { lcsTraps 26 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.27 +lcsTrapsVpnconn NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusVpnTunnel, + lcsStatusVpnConnectionsEntryPeer, + lcsStatusVpnConnectionsEntryState, + lcsStatusVpnConnectionsEntryLastError, + lcsStatusVpnConnectionsEntryMode, + lcsStatusVpnConnectionsEntryShTime, + lcsStatusVpnConnectionsEntryPhysConn, + lcsStatusVpnConnectionsEntryB1Dt, + lcsStatusVpnConnectionsEntryRemoteGwNew, + lcsStatusVpnConnectionsEntryRemoteGw, + lcsStatusVpnConnectionsEntryNatDetection, + lcsStatusVpnConnectionsEntrySslEncaps, + lcsStatusVpnConnectionsEntryCryptAlg, + lcsStatusVpnConnectionsEntryCryptLength, + lcsStatusVpnConnectionsEntryHashAlg, + lcsStatusVpnConnectionsEntryHashLength, + lcsStatusVpnConnectionsEntryHmacAlg, + lcsStatusVpnConnectionsEntryHmacLength, + lcsStatusVpnConnectionsEntryComprAlg, + lcsStatusVpnConnectionsEntryClientSn + } + STATUS current + DESCRIPTION + "Status of VPN connection" + ::= { lcsTraps 27 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.28 +lcsTrapsPptpconn NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusPptpTunnel, + lcsStatusPptpConnectionsEntryChannel, + lcsStatusPptpConnectionsEntryState, + lcsStatusPptpConnectionsEntryMode, + lcsStatusPptpConnectionsEntryShTime, + lcsStatusPptpConnectionsEntryPhysConnection, + lcsStatusPptpConnectionsEntryPeerAddress, + lcsStatusPptpConnectionsEntryIpAddress, + lcsStatusPptpConnectionsEntryDnsDefault, + lcsStatusPptpConnectionsEntryNbnsDefault, + lcsStatusPptpConnectionsEntryLastError, + lcsStatusPptpConnectionsEntryDnsBackup, + lcsStatusPptpConnectionsEntryNbnsBackup + } + STATUS current + DESCRIPTION + "Status of PPTP connection" + ::= { lcsTraps 28 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.29 +lcsTrapsErrlogin NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusConfigEventLogEntrySystemTime, + lcsStatusConfigEventLogEntryEvent, + lcsStatusConfigEventLogEntryAccess, + lcsStatusConfigEventLogEntryIpAddressNew, + lcsStatusConfigEventLogEntryIpAddress + } + STATUS current + DESCRIPTION + "Error during login to configuration" + ::= { lcsTraps 29 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.33 +lcsTrapsKeyhandshakeTimeout NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 33 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.35 +lcsTrapsSupervision NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanStationTableEntryMacAddress, + lcsStatusWlanStationTableEntryIdentification + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 35 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.38 +lcsTrapsLdblconn NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusIpRouterLoadBalancerConnectionsEntryPeer, + lcsStatusIpRouterLoadBalancerConnectionsEntryBundlePeer, + lcsStatusIpRouterLoadBalancerConnectionsEntryState + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 38 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.39 +lcsTrapsPppoesconn NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusPppoeServerNumConnections, + lcsStatusPppoeServerConnectionsEntryChannel, + lcsStatusPppoeServerConnectionsEntryMacAddress, + lcsStatusPppoeServerConnectionsEntryState, + lcsStatusPppoeServerConnectionsEntryLastError, + lcsStatusPppoeServerConnectionsEntryShTime, + lcsStatusPppoeServerConnectionsEntryPeerAddress + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 39 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.41 +lcsTrapsVrrp NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusIpRouterVrrpEventLogEntrySystemTime, + lcsStatusIpRouterVrrpEventLogEntrySrcAddress, + lcsStatusIpRouterVrrpEventLogEntryVrid, + lcsStatusIpRouterVrrpEventLogEntryEvent, + lcsStatusIpRouterVrrpEventLogEntryInfo + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 41 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.42 +lcsTrapsExceirp NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanWlanParameterEntryIfc, + lcsStatusWlanWlanParameterEntryEirp + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 42 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.46 +lcsTrapsIdleTimeout NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 46 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.47 +lcsTrapsAdminDeassoc NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanStationTableEntryMacAddress, + lcsStatusWlanStationTableEntryIdentification + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 47 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.48 +lcsTrapsWlanovertemp NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusHardwareInfoTemperatureDegrees + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 48 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.49 +lcsTrapsWlanovertempend NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusHardwareInfoTemperatureDegrees + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 49 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.50 +lcsTrapsWlanundertemp NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusHardwareInfoTemperatureDegrees + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 50 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.51 +lcsTrapsWlanundertempend NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusHardwareInfoTemperatureDegrees + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 51 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.52 +lcsTrapsMacchkfail NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanStationTableEntryMacAddress, + lcsStatusWlanStationTableEntryIdentification + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 52 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.53 +lcsTrapsRoamed NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanStationTableEntryMacAddress, + lcsStatusWlanStationTableEntryIdentification + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 53 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.54 +lcsTrapsConnected NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanStationTableEntryMacAddress, + lcsStatusWlanStationTableEntryIdentification + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 54 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.55 +lcsTrapsClLostconn NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanClientIfcsEntryIfc, + lcsStatusWlanClientIfcsEntryState + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 55 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.56 +lcsTrapsClAuthfail NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanClientIfcsEntryIfc, + lcsStatusWlanClientIfcsEntryState + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 56 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.57 +lcsTrapsClAssocfail NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanClientIfcsEntryIfc, + lcsStatusWlanClientIfcsEntryState + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 57 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.58 +lcsTrapsClConnected NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanClientIfcsEntryIfc, + lcsStatusWlanClientIfcsEntryState + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 58 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.59 +lcsTrapsCl8021xFail NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanClientIfcsEntryIfc, + lcsStatusWlanClientIfcsEntryState + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 59 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.61 +lcsTrapsCastatchg NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusCertsScepCaCaStatusCaStatus, + lcsStatusCertsScepCaCaStatusError + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 61 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.62 +lcsTrapsNewpendreq NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusCertsScepCaRequestsPendReqEntryIndex, + lcsStatusCertsScepCaRequestsPendReqEntryMacAddress, + lcsStatusCertsScepCaRequestsPendReqEntryIpAddress, + lcsStatusCertsScepCaRequestsPendReqEntryReason, + lcsStatusCertsScepCaRequestsPendReqEntryDn, + lcsStatusCertsScepCaRequestsPendReqEntryReceiveDate + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 62 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.63 +lcsTrapsMissingAp NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanMngmtConnectedExpectedAp, + lcsStatusWlanMngmtNextdoorAp, + lcsStatusWlanMngmtExpectedAp, + lcsStatusWlanMngmtApStatusMissingApEntryApLanMac, + lcsStatusWlanMngmtApStatusMissingApEntryIpAddress, + lcsStatusWlanMngmtApStatusMissingApEntryName, + lcsStatusWlanMngmtApStatusMissingApEntryLocation, + lcsStatusWlanMngmtApStatusMissingApEntryValid, + lcsStatusWlanMngmtApStatusMissingApEntryModule + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 63 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.64 +lcsTrapsActiveAp NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanMngmtConnectedManagedAp, + lcsStatusWlanMngmtNextdoorAp, + lcsStatusWlanMngmtApStatusActiveRadiosEntryApLanMac, + lcsStatusWlanMngmtApStatusActiveRadiosEntryIfc, + lcsStatusWlanMngmtApStatusActiveRadiosEntryIpAddress, + lcsStatusWlanMngmtApStatusActiveRadiosEntryName, + lcsStatusWlanMngmtApStatusActiveRadiosEntryLocation, + lcsStatusWlanMngmtApStatusActiveRadiosEntryValid, + lcsStatusWlanMngmtApStatusActiveRadiosEntryApWlanMac, + lcsStatusWlanMngmtApStatusActiveRadiosEntryRadioBand, + lcsStatusWlanMngmtApStatusActiveRadiosEntryRadioChannel, + lcsStatusWlanMngmtApStatusActiveRadiosEntryClientCount, + lcsStatusWlanMngmtApStatusActiveRadiosEntryBackgroundScan, + lcsStatusWlanMngmtApStatusActiveRadiosEntryCardId, + lcsStatusWlanMngmtApStatusActiveRadiosEntryCardFirmwareVersion, + lcsStatusWlanMngmtApStatusActiveRadiosEntryCardSerialNumber, + lcsStatusWlanMngmtApStatusActiveRadiosEntryOperating, + lcsStatusWlanMngmtApStatusActiveRadiosEntryTransmitPower, + lcsStatusWlanMngmtApStatusActiveRadiosEntryEirp, + lcsStatusWlanMngmtApStatusActiveRadiosEntryExcEirp, + lcsStatusWlanMngmtApStatusActiveRadiosEntryInternal, + lcsStatusWlanMngmtApStatusActiveRadiosEntryRadios, + lcsStatusWlanMngmtApStatusActiveRadiosEntryModule, + lcsStatusWlanMngmtApStatusActiveRadiosEntrySerialNumber, + lcsStatusWlanMngmtApStatusActiveRadiosEntryVersion, + lcsStatusWlanMngmtApStatusActiveRadiosEntryCardState, + lcsStatusWlanMngmtApStatusActiveRadiosEntryRadioFldOpt + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 64 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.65 +lcsTrapsNewAp NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanMngmtConnectedNewAp, + lcsStatusWlanMngmtApStatusNewApEntryApLanMac, + lcsStatusWlanMngmtApStatusNewApEntryIpAddress, + lcsStatusWlanMngmtApStatusNewApEntryName, + lcsStatusWlanMngmtApStatusNewApEntryLocation, + lcsStatusWlanMngmtApStatusNewApEntryValid, + lcsStatusWlanMngmtApStatusNewApEntryConfiguration, + lcsStatusWlanMngmtApStatusNewApEntryAutowdsIntegration + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 65 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.66 +lcsTrapsStations NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanMngmtStationTableEntryClientMac, + lcsStatusWlanMngmtStationTableEntryApWlanMac, + lcsStatusWlanMngmtStationTableEntryIdentification, + lcsStatusWlanMngmtStationTableEntryTrap, + lcsStatusWlanMngmtStationTableEntryPhySignal, + lcsStatusWlanMngmtStationTableEntryTxRate, + lcsStatusWlanMngmtStationTableEntryRxRate, + lcsStatusWlanMngmtStationTableEntryNetworkName, + lcsStatusWlanMngmtStationTableEntryKeyType, + lcsStatusWlanMngmtStationTableEntryWpaVersion, + lcsStatusWlanMngmtStationTableEntryState, + lcsStatusWlanMngmtStationTableEntryLastError, + lcsStatusWlanMngmtStationTableEntryIpAddress, + lcsStatusWlanMngmtStationTableEntryInterface, + lcsStatusWlanMngmtStationTableEntryThroughput, + lcsStatusWlanMngmtStationTableEntryCompression, + lcsStatusWlanMngmtStationTableEntryApLanMac, + lcsStatusWlanMngmtStationTableEntryApName, + lcsStatusWlanMngmtStationTableEntryValid, + lcsStatusWlanMngmtStationTableEntryEffTxRate, + lcsStatusWlanMngmtStationTableEntryEffRxRate + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 66 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.67 +lcsTrapsNetworks NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanMngmtNetworksEntryBssid, + lcsStatusWlanMngmtNetworksEntryApWlanMac, + lcsStatusWlanMngmtNetworksEntryNetNumber, + lcsStatusWlanMngmtNetworksEntryName, + lcsStatusWlanMngmtNetworksEntryClientCount, + lcsStatusWlanMngmtNetworksEntryValid + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 67 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.68 +lcsTrapsNetworkcounts NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanMngmtNetCountEntryName, + lcsStatusWlanMngmtNetCountEntryNumRadios, + lcsStatusWlanMngmtNetCountEntryNumStations, + lcsStatusWlanMngmtNetCountEntrySsid, + lcsStatusWlanMngmtNetCountEntryBridgeInterface + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 68 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.69 +lcsTrapsApCounter NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanMngmtConnectedExpectedAp, + lcsStatusWlanMngmtConnectedManagedAp, + lcsStatusWlanMngmtConnectedNewAp, + lcsStatusWlanMngmtNextdoorAp + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 69 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.72 +lcsTrapsUtmcontentfilter NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusUtmCfLogEntrySystemTime, + lcsStatusUtmCfLogEntryCause, + lcsStatusUtmCfLogEntryUserProfile, + lcsStatusUtmCfLogEntryCategoryError, + lcsStatusUtmCfLogEntryUrl + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 72 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.73 +lcsTrapsCerttabmod NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusCertsScepCaCertsCertsStatusTabEntryIndex, + lcsStatusCertsScepCaCertsCertsStatusTabEntrySerialnumber, + lcsStatusCertsScepCaCertsCertsStatusTabEntryStatus, + lcsStatusCertsScepCaCertsCertsStatusTabEntryCreationDate, + lcsStatusCertsScepCaCertsCertsStatusTabEntryEndTime, + lcsStatusCertsScepCaCertsCertsStatusTabEntryRevTime, + lcsStatusCertsScepCaCertsCertsStatusTabEntryRevReas, + lcsStatusCertsScepCaCertsCertsStatusTabEntryMacAddress, + lcsStatusCertsScepCaCertsCertsStatusTabEntryDn + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 73 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.74 +lcsTrapsPendlistmod NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 74 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.75 +lcsTrapsNextdoorAp NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanMngmtNextdoorAp, + lcsStatusWlanMngmtApStatusNextdoorApEntryApLanMac, + lcsStatusWlanMngmtApStatusNextdoorApEntryIpAddress, + lcsStatusWlanMngmtApStatusNextdoorApEntryName, + lcsStatusWlanMngmtApStatusNextdoorApEntryLocation, + lcsStatusWlanMngmtApStatusNextdoorApEntryValid, + lcsStatusWlanMngmtApStatusNextdoorApEntryWlcName + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 75 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.76 +lcsTrapsWlcTunnels NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanMngmtWlcTunnelsNumberOfWlcConn, + lcsStatusWlanMngmtWlcTunnelsActiveConnections, + lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryIpAddress, + lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryPort, + lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryResult, + lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryName, + lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryState, + lcsStatusWlanMngmtWlcTunnelsWlcConnectionsEntryValid + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 76 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.77 +lcsTrapsLicensemgtexpire NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusConfigFeaturesEntryFeature, + lcsStatusConfigFeaturesEntryExpires, + lcsStatusConfigFeaturesEntryExpire, + lcsStatusConfigFeaturesEntryState, + lcsStatusConfigFeaturesEntryIndex, + lcsStatusConfigFeaturesEntryCount + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 77 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.78 +lcsTrapsVdslstate NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusVdslLineState + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 78 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.79 +lcsTrapsScrptuplstart NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusConfigEventLogEntrySystemTime, + lcsStatusConfigEventLogEntryEvent, + lcsStatusConfigEventLogEntryAccess, + lcsStatusConfigEventLogEntryIpAddressNew, + lcsStatusConfigEventLogEntryIpAddress + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 79 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.80 +lcsTrapsScrptdnlstart NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusConfigEventLogEntrySystemTime, + lcsStatusConfigEventLogEntryEvent, + lcsStatusConfigEventLogEntryAccess, + lcsStatusConfigEventLogEntryIpAddressNew, + lcsStatusConfigEventLogEntryIpAddress + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 80 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.81 +lcsTrapsIpv6fwflt NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusIpv6FirewallLogTableEntrySystemTime, + lcsStatusIpv6FirewallLogTableEntrySrcAddress, + lcsStatusIpv6FirewallLogTableEntryDstAddress, + lcsStatusIpv6FirewallLogTableEntryProt, + lcsStatusIpv6FirewallLogTableEntrySrcPort, + lcsStatusIpv6FirewallLogTableEntryDstPort, + lcsStatusIpv6FirewallLogTableEntryFilterRule, + lcsStatusIpv6FirewallLogTableEntryLimit, + lcsStatusIpv6FirewallLogTableEntryThreshold, + lcsStatusIpv6FirewallLogTableEntryAction + } + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsTraps 81 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.82 +lcsTrapsWwanStates NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusModemMobileState, + lcsStatusModemMobileRegistration + } + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsTraps 82 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.83 +lcsTrapsDS-Lite NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusDsLiteConnectionsEntryPeer, + lcsStatusDsLiteConnectionsEntryState, + lcsStatusDsLiteConnectionsEntryLastError, + lcsStatusDsLiteConnectionsEntryIpv4Address, + lcsStatusDsLiteConnectionsEntryPhysConn, + lcsStatusDsLiteConnectionsEntryAftrName, + lcsStatusDsLiteConnectionsEntryAftrIpv6Address, + lcsStatusDsLiteConnectionsEntryConnTime + } + STATUS current + DESCRIPTION + "DS-LITE connection status" + ::= { lcsTraps 83 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.84 +lcsTrapsVolumebudget NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusChargingVolumeBudgetsEntryPeer, + lcsStatusChargingVolumeBudgetsEntryDataMb, + lcsStatusChargingVolumeBudgetsEntryDataKb, + lcsStatusChargingVolumeBudgetsEntryLimitMb, + lcsStatusChargingVolumeBudgetsEntryPercent, + lcsStatusChargingVolumeBudgetsEntryFlags, + lcsStatusChargingVolumeBudgetsEntryMonth, + lcsStatusChargingVolumeBudgetsEntryYear + } + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsTraps 84 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.85 +lcsTrapsL2TP-Endpoints NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusL2tpNumEndpoints, + lcsStatusL2tpEndpointsEntryL2tpEndpoint, + lcsStatusL2tpEndpointsEntryState, + lcsStatusL2tpEndpointsEntryLastError, + lcsStatusL2tpEndpointsEntryMode, + lcsStatusL2tpEndpointsEntryPhysConnection, + lcsStatusL2tpEndpointsEntryGateway, + lcsStatusL2tpEndpointsEntrySessions, + lcsStatusL2tpEndpointsEntryConnTime, + lcsStatusL2tpEndpointsEntryEmbeddedErrorMessage + } + STATUS current + DESCRIPTION + "L2TP tunnel end point status" + ::= { lcsTraps 85 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.86 +lcsTrapsL2TP-Connections NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusL2tpNumConnections, + lcsStatusL2tpConnectionsEntryPeer, + lcsStatusL2tpConnectionsEntryState, + lcsStatusL2tpConnectionsEntryLastError, + lcsStatusL2tpConnectionsEntryMode, + lcsStatusL2tpConnectionsEntryShTime, + lcsStatusL2tpConnectionsEntryL2tpEndpoint, + lcsStatusL2tpConnectionsEntryPeerAddress, + lcsStatusL2tpConnectionsEntryIpAddress, + lcsStatusL2tpConnectionsEntryDnsDefault, + lcsStatusL2tpConnectionsEntryDnsBackup, + lcsStatusL2tpConnectionsEntryNbnsDefault, + lcsStatusL2tpConnectionsEntryNbnsBackup, + lcsStatusL2tpConnectionsEntryConnTime + } + STATUS current + DESCRIPTION + "L2TP connection status" + ::= { lcsTraps 86 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.1000 +lcsTrapsSpgtreePortstatchg NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusLanBridgeSpanningTreePortTableEntryDescription, + lcsStatusLanBridgeSpanningTreePortTableEntryState, + lcsStatusLanBridgeSpanningTreePortTableEntryPathCost + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 1000 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.1001 +lcsTrapsSpgtreeRstpstatchg NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusLanBridgeSpanningTreeRstpPortTableEntryDescription, + lcsStatusLanBridgeSpanningTreeRstpPortTableEntryRole, + lcsStatusLanBridgeSpanningTreeRstpPortTableEntryLearning, + lcsStatusLanBridgeSpanningTreeRstpPortTableEntryForwarding, + lcsStatusLanBridgeSpanningTreeRstpPortTableEntryEdgePort, + lcsStatusLanBridgeSpanningTreeRstpPortTableEntryProtocolVersion, + lcsStatusLanBridgeSpanningTreeRstpPortTableEntryPathCost + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 1001 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.1002 +lcsTrapsSpgtreeRootportchg NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusLanBridgeSpanningTreeRootBridge, + lcsStatusLanBridgeSpanningTreeRootPort, + lcsStatusLanBridgeSpanningTreeRootPathCost + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 1002 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.2000 +lcsTrapsHttpTunnelOpen NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusTcpIpHttpActiveTunnelsEntryIndex, + lcsStatusTcpIpHttpActiveTunnelsEntryRemoteAddress, + lcsStatusTcpIpHttpActiveTunnelsEntryRemotePort, + lcsStatusTcpIpHttpActiveTunnelsEntryLocalHost, + lcsStatusTcpIpHttpActiveTunnelsEntryLocalPort, + lcsStatusTcpIpHttpActiveTunnelsEntryIdleTime, + lcsStatusTcpIpHttpActiveTunnelsEntryLocalRtgTag + } + STATUS current + DESCRIPTION + "HTTP tunnel opened successful" + ::= { lcsTraps 2000 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.2001 +lcsTrapsHttpTunnelClose NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusTcpIpHttpActiveTunnelsEntryIndex + } + STATUS current + DESCRIPTION + "HTTP tunnel closed successful" + ::= { lcsTraps 2001 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.3000 +lcsTrapsLanauthuseradd NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsSetupPublicSpotModuleUserTableEntryName, + lcsSetupPublicSpotModuleUserTableEntryComment + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 3000 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.3001 +lcsTrapsLanauthuserdel NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsSetupPublicSpotModuleUserTableEntryName, + lcsSetupPublicSpotModuleUserTableEntryComment + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 3001 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.3002 +lcsTrapsLanauthsessionstart NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusPublicSpotStationTableEntryMacAddress, + lcsStatusPublicSpotStationTableEntryName, + lcsStatusPublicSpotStationTableEntrySessionId + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 3002 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.3003 +lcsTrapsLanauthsessionend NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusPublicSpotStationTableEntryMacAddress, + lcsStatusPublicSpotStationTableEntryName, + lcsStatusPublicSpotStationTableEntrySessionId, + lcsStatusPublicSpotStationTableEntryTxBytes, + lcsStatusPublicSpotStationTableEntryRxBytes, + lcsStatusPublicSpotStationTableEntryTxPackets, + lcsStatusPublicSpotStationTableEntryRxPackets, + lcsStatusPublicSpotStationTableEntryLoginTime + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 3003 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.4000 +lcsTrapsTempmonovertemp NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusHardwareInfoTemperatureDegrees + } + STATUS current + DESCRIPTION + "Device temperature exceeds the upper tempreature limit" + ::= { lcsTraps 4000 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.4001 +lcsTrapsTempmonnoovertemp NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusHardwareInfoTemperatureDegrees + } + STATUS current + DESCRIPTION + "Device temperature falls below the upper temperature limit and is in the normal operating range again" + ::= { lcsTraps 4001 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.4002 +lcsTrapsTempmonundertemp NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusHardwareInfoTemperatureDegrees + } + STATUS current + DESCRIPTION + "Device temperature under-runs the lower temperature limit" + ::= { lcsTraps 4002 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.4003 +lcsTrapsTempmonnoundertemp NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusHardwareInfoTemperatureDegrees + } + STATUS current + DESCRIPTION + "Device temperature rises above the lower temperature limit and is in the normal operating range again" + ::= { lcsTraps 4003 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.4500 +lcsTrapsVoltmonovervolt NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusHardwareInfoWideRangePowerSupplyMv + } + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsTraps 4500 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.4501 +lcsTrapsVoltmonnoovervolt NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusHardwareInfoWideRangePowerSupplyMv + } + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsTraps 4501 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.4502 +lcsTrapsVoltmonundervolt NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusHardwareInfoWideRangePowerSupplyMv + } + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsTraps 4502 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.4503 +lcsTrapsVoltmonnoundervolt NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusHardwareInfoWideRangePowerSupplyMv + } + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsTraps 4503 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.5001 +lcsTrapsLanDownshift NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusLanInterfacesEntryIfc, + lcsStatusLanInterfacesEntryConnector, + lcsStatusLanInterfacesEntryDownshift + } + STATUS current + DESCRIPTION + "LAN interface downshifts its speed to 100 Mbit" + ::= { lcsTraps 5001 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.5002 +lcsTrapsLanOvertempThrottle NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount + } + STATUS current + DESCRIPTION + "Throttling of LAN Speed due to temperature exceedance active" + ::= { lcsTraps 5002 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.5003 +lcsTrapsLanOvertempThrottleEnd NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount + } + STATUS current + DESCRIPTION + "Throttling of LAN Speed due to temperature exceedance stopped" + ::= { lcsTraps 5003 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.5004 +lcsTrapsLanOvertempThrottleRecommend NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount + } + STATUS current + DESCRIPTION + "Throttling of LAN Speed due to temperature exceedance recommended" + ::= { lcsTraps 5004 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.5101 +lcsTrapsEthPortDownshift NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusEthernetPortsPortsEntryPort, + lcsStatusEthernetPortsPortsEntryAssignment, + lcsStatusEthernetPortsPortsEntryDownshift + } + STATUS current + DESCRIPTION + "Ethernet interface downshifts its speed to 100 Mbit" + ::= { lcsTraps 5101 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.6100 +lcsTrapsWlanConfadaptRadiochannel NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 6100 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.6101 +lcsTrapsWlanConfadaptRadiomode NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanNetworksEntryRadioMode + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 6101 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.6102 +lcsTrapsWlanConfadaptBasicRate NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 6102 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.6103 +lcsTrapsWlanConfadaptEapolRate NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 6103 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.6104 +lcsTrapsWlanConfadaptEncryption NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount + } + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsTraps 6104 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.6200 +lcsTrapsWlanAlarmP2pSignal NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanInterpointsAccesspointListEntryAlarmState, + lcsStatusWlanInterpointsAccesspointListEntryRxPhySignal, + lcsStatusWlanInterpointsAccesspointListEntryLinkPhySignal + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 6200 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.6201 +lcsTrapsWlanAlarmP2pTxtotretries NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanInterpointsAccesspointListEntryAlarmState, + lcsStatusWlanInterpointsAccesspointListEntryTxPackets, + lcsStatusWlanInterpointsAccesspointListEntryTotalRetries + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 6201 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.6202 +lcsTrapsWlanAlarmP2pTxerrors NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanInterpointsAccesspointListEntryAlarmState, + lcsStatusWlanInterpointsAccesspointListEntryTxPackets, + lcsStatusWlanInterpointsAccesspointListEntryTxErrors + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 6202 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.6203 +lcsTrapsWlanAlarmNetwSignal NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanNetworksEntryAlarmState + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 6203 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.6204 +lcsTrapsWlanAlarmNetwTxtotretries NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanNetworksEntryAlarmState + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 6204 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.6205 +lcsTrapsWlanAlarmNetwTxerrors NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanNetworksEntryAlarmState + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 6205 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.6206 +lcsTrapsWlanAlarmClientSignal NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanClientIfcsEntryAlarmState, + lcsStatusWlanClientIfcsEntryPhySignal, + lcsStatusWlanClientIfcsEntryLinkPhySignal + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 6206 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.6207 +lcsTrapsWlanAlarmClientTxtotretries NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanClientIfcsEntryAlarmState, + lcsStatusWlanClientIfcsEntryTxPackets, + lcsStatusWlanClientIfcsEntryTotalRetries + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 6207 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.6208 +lcsTrapsWlanAlarmClientTxerrors NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusWlanClientIfcsEntryAlarmState, + lcsStatusWlanClientIfcsEntryTxPackets, + lcsStatusWlanClientIfcsEntryTotalRetries + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 6208 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.6300 +lcsTrapsWlanDfsAllblocked NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount + } + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsTraps 6300 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.7000 +lcsTrapsUplinvversion NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusConfigEventLogEntrySystemTime, + lcsStatusConfigEventLogEntryEvent, + lcsStatusConfigEventLogEntryAccess, + lcsStatusConfigEventLogEntryIpAddressNew, + lcsStatusConfigEventLogEntryIpAddress, + lcsStatusConfigEventLogEntryInfo1, + lcsStatusConfigEventLogEntryInfo2 + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 7000 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.7001 +lcsTrapsUplfileexists NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusConfigEventLogEntrySystemTime, + lcsStatusConfigEventLogEntryEvent, + lcsStatusConfigEventLogEntryAccess, + lcsStatusConfigEventLogEntryIpAddressNew, + lcsStatusConfigEventLogEntryIpAddress, + lcsStatusConfigEventLogEntryInfo1, + lcsStatusConfigEventLogEntryInfo2 + } + STATUS current + DESCRIPTION + "" + ::= { lcsTraps 7001 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.8000 +lcsTrapsSmsinboxmsgchanged NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusSmsInboxEntryRowstatus + } + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsTraps 8000 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.8001 +lcsTrapsSmsoutboxmsgchanged NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusSmsOutboxEntryRowstatus + } + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsTraps 8001 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.8002 +lcsTrapsSmsoutboxcleared NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount + } + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsTraps 8002 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.8003 +lcsTrapsSmsinboxcleared NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount + } + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsTraps 8003 } + +-- {NOTIFICATION} 1.3.6.1.4.1.2356.11.0.0.8100 +lcsTrapsSimstatuschanged NOTIFICATION-TYPE + OBJECTS { + sysDescr, + sysName, + lcsStatusSnmpEventEntryCount, + lcsStatusModemMobileSimstatusEntrySimstatus, + lcsStatusModemMobileSimstatusEntrySimIdIccid, + lcsStatusModemMobileSimstatusEntryProvidername, + lcsStatusModemMobileSimstatusEntryImsi, + lcsStatusModemMobileSimstatusEntryPhoneNumber + } + STATUS current + DESCRIPTION + "-- empty --" + ::= { lcsTraps 8100 } +END + +-- statistics --------------------------------------------- +-- module-ids 1 +-- nodes 370 +-- scalars 1922 +-- tables 638 +-- rows 638 +-- columns 5215 +-- notifications 113 +----------------------------------------------------------- diff --git a/mibs/NETGEAR-ME-MIB.mib b/mibs/NETGEAR-ME-MIB.mib new file mode 100644 index 0000000..0839725 --- /dev/null +++ b/mibs/NETGEAR-ME-MIB.mib @@ -0,0 +1,1269 @@ +NETGEAR-ME-MIB DEFINITIONS ::= BEGIN + + + +IMPORTS + Counter32, TimeTicks, enterprises + , IpAddress + FROM SNMPv2-SMI + DisplayString + , PhysAddress + FROM RFC1213-MIB + OBJECT-TYPE FROM RFC-1212 + TRAP-TYPE FROM RFC-1215; + + + + +netgear OBJECT IDENTIFIER ::= { enterprises 4526 } +wirelessProducts OBJECT IDENTIFIER ::= { netgear 4 } + + +wirelessAccessPointDev OBJECT IDENTIFIER + ::= { wirelessProducts 1 } + + + +wirelessAPSystemGroup OBJECT IDENTIFIER ::= { wirelessAccessPointDev 1 } +wirelessAPConnectedStationGroup OBJECT IDENTIFIER ::= { wirelessAccessPointDev 2 } +wirelessAPIfTrafficGroup OBJECT IDENTIFIER ::= { wirelessAccessPointDev 3 } +wirelessAPIfSettingsGroup OBJECT IDENTIFIER ::= { wirelessAccessPointDev 4 } +wirelessAPWirelessSettingsGroup OBJECT IDENTIFIER ::= { wirelessAccessPointDev 5 } +wirelessAPSecuritySettingsGroup OBJECT IDENTIFIER ::= { wirelessAccessPointDev 6 } + + + + +wirelessAPMacAddr OBJECT-TYPE + SYNTAX PhysAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Access Point MAC address, It will be like '00c002003009'" + ::= { wirelessAPSystemGroup 1 } + +wirelessAPFWVer OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Access Point firmware version, It will be like 'Version 2.0 Release 08'" + ::= { wirelessAPSystemGroup 2 } + +wirelessAPDateTime OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The date and time, with optional timezone + information. It will be like '2003-04-03 02:50:54 GMT'" + ::= { wirelessAPSystemGroup 3 } + +wirelessAPUpTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The time (in hundredths of a second) since the + network management portion of the system was last + re-initialized. + It will like '11223533' in the unit of 1/100second. + This object value is the same as MIB-II sysUpTime object" + ::= { wirelessAPSystemGroup 4 } + +wirelessAPResetNow OBJECT-TYPE + SYNTAX INTEGER { + not-reset(0), + reset(1) + } + + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Setting this object to true(1) causes the device to reset. + Reading this object always returns false(2)." + ::= { wirelessAPSystemGroup 5 } + +wirelessAPResetToFactoryDefault OBJECT-TYPE + SYNTAX INTEGER{ + not-erase(0), + erase(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Setting this object to true(1) causes the device to reset to factory default value. Reading this object always returns false(2)." + ::= { wirelessAPSystemGroup 6 } + +wirelessAPPassword OBJECT-TYPE + SYNTAX DisplayString (SIZE(4..20)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Get/Set the password" + ::= { wirelessAPSystemGroup 7 } + + +wirelessAPClearLog OBJECT-TYPE + SYNTAX INTEGER { + not-clear(0), + clear(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Setting this value clear(1) causes the AP to clear the log data, + Reading this walue always return not-clear(0)." + ::= { wirelessAPSystemGroup 8 } + +wirelessAPSaveConfiguration OBJECT-TYPE + SYNTAX INTEGER { + not-save(0), + save(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Setting this value save(1) causes the settings changed by SNMP to be stored forever but in memory, + Reading this walue always return save(0)." + ::= { wirelessAPSystemGroup 9 } + +snmpTrapVersion OBJECT-TYPE + SYNTAX INTEGER { + v1(0), + v2c(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + " " + ::= { wirelessAPSystemGroup 10 } + +snmpTrapRcvIpType OBJECT-TYPE + SYNTAX INTEGER { + uni-cast(0), + broadcast(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + " " + ::= { wirelessAPSystemGroup 11 } + +snmpAPTrapRcvIpAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + " " + ::= {wirelessAPSystemGroup 12 } + +snmpAPSNMPEnable OBJECT-TYPE + SYNTAX INTEGER { + disable(0), + enable(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + " " + ::= {wirelessAPSystemGroup 13 } + +snmpAPCommunity OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..7)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + " " + ::= {wirelessAPSystemGroup 14 } + +snmpAPAccessRight OBJECT-TYPE + SYNTAX INTEGER { + read-only(0), + read-and-write(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + " " + ::= {wirelessAPSystemGroup 15 } + +snmpAPManagersType OBJECT-TYPE + SYNTAX INTEGER { + a-specific-station(0), + any-station(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + " " + ::= {wirelessAPSystemGroup 16 } + +snmpAPSpecificStationIp OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + " " + ::= {wirelessAPSystemGroup 17 } + +snmpAPTrapEnable OBJECT-TYPE + SYNTAX INTEGER { + disable(0), + enable(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + " " + ::= {wirelessAPSystemGroup 18 } + + +wirelessAPConnectedStationTableRefresh OBJECT-TYPE + SYNTAX INTEGER { + not-refresh(0), + refresh(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Setting this value to refresh(1), the wireless AP will start the conntected Station Table refresh progress. + Reading this vlaue always return not-refresh(1)" + DEFVAL { 2 } + ::= { wirelessAPConnectedStationGroup 1 } + +wirelessAPConnectedStation OBJECT IDENTIFIER ::= { wirelessAPConnectedStationGroup 2 } + +wirelessAPConnectedStationTable OBJECT-TYPE + SYNTAX SEQUENCE OF WirelessAPConnectedStationEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Wireless AP Connected Station Table Object" + ::= { wirelessAPConnectedStation 1 } + +wirelessAPConnectedStationEntry OBJECT-TYPE + SYNTAX WirelessAPConnectedStationEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry containing information for Wireless AP Connected Station Table" + INDEX { wirelessAPConnectedStationMacAddr } + ::= { wirelessAPConnectedStationTable 1 } + +WirelessAPConnectedStationEntry ::= + SEQUENCE { + wirelessAPConnectedStationMacAddr PhysAddress, + wirelessAPConnectedStationStatus INTEGER + + } + + +wirelessAPConnectedStationMacAddr OBJECT-TYPE + SYNTAX PhysAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Wireless Connected Station Mac Address" + ::= { wirelessAPConnectedStationEntry 2 } + +wirelessAPConnectedStationStatus OBJECT-TYPE + SYNTAX INTEGER { + associated(0), + athenticating(1), + authenticated(2), + not-associated(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Wireless Connected Station Status" + ::= { wirelessAPConnectedStationEntry 3 } + + + + +wirelessAPControl OBJECT-TYPE + SYNTAX INTEGER { + off(0), + on(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Wireless Access Point Control" + DEFVAL { 0} + ::= { wirelessAPConnectedStationGroup 3 } + +wirelessAPControlList OBJECT IDENTIFIER ::= { wirelessAPConnectedStationGroup 4 } + +wirelessAPControlListTable OBJECT-TYPE + SYNTAX SEQUENCE OF WirelessAPControlListEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Wireless Access Point Control List Table Object" + ::= { wirelessAPControlList 1 } + +wirelessAPControlListEntry OBJECT-TYPE + SYNTAX WirelessAPControlListEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry containing information for Wireless Access Point Control List Table Object" + INDEX { wirelessAPControlListMacAddr } + ::= { wirelessAPControlListTable 1 } + +WirelessAPControlListEntry ::= SEQUENCE { + wirelessAPControlListMacAddr PhysAddress + + } + + +wirelessAPControlListMacAddr OBJECT-TYPE + SYNTAX PhysAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Wireless Access Point Control List Mac Address" + ::= { wirelessAPControlListEntry 2 } + + + + +wirelessAPCtlOperate OBJECT IDENTIFIER ::= {wirelessAPConnectedStationGroup 5} +wirelessAPAddCtlMacAddr OBJECT-TYPE + SYNTAX PhysAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The added entry's Physical Address, + Reading this object always return '000000000000'" + ::= {wirelessAPCtlOperate 1} + +wirelessAPDelCtlMacAddr OBJECT-TYPE + SYNTAX PhysAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The deleted entry's Physical Address, + Reading this object always return '000000000000'" + ::= {wirelessAPCtlOperate 2} + + + +wirelessAPIfWiredTrafficGroup OBJECT IDENTIFIER + ::= { wirelessAPIfTrafficGroup 1 } + +wirelessAPIfWlanTrafficGroup OBJECT IDENTIFIER + ::= { wirelessAPIfTrafficGroup 2 } + + +wirelessAPIfWiredTotalOctetsIn OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Traffic received by the wireless AP via Ethernet in octets" + ::= { wirelessAPIfWiredTrafficGroup 1 } + +wirelessAPIfWiredTotalOctetsOut OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Traffic transmitted by the wireless AP via Ethernet in octets" + ::= { wirelessAPIfWiredTrafficGroup 2 } + +wirelessAPIfWiredPacketsIn OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Traffic received by the wireless AP via Ethernet in packets" + ::= { wirelessAPIfWiredTrafficGroup 3 } + +wirelessAPIfWiredPacketsOut OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Traffic transmitted by the wireless AP via Ethernet in packets." + ::= { wirelessAPIfWiredTrafficGroup 4 } + +wirelessAPIfWiredThroughputIn OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Throughput-in at Ethernet by the wireless AP in the unit of B/s" + ::= { wirelessAPIfWiredTrafficGroup 5 } + +wirelessAPIfWiredThroughputOut OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Throughput-out at Ethernet by the wireless AP in the unit of B/s" + ::= { wirelessAPIfWiredTrafficGroup 6 } + +wirelessAPIfWiredErrorsIn OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "CRC errors in in-traffic occurs at Ethernet by the wireless AP" + ::= { wirelessAPIfWiredTrafficGroup 7 } + +wirelessAPIfWiredErrorsOut OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "CRC errors in out-traffic occurs at Ethernet by the wireless AP" + ::= { wirelessAPIfWiredTrafficGroup 8 } + +wirelessAPIfWiredTrafficResetCounter OBJECT-TYPE + SYNTAX INTEGER { + false(0), + true(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Reset the Etherenet interface both Octets In and Out counters" + ::= { wirelessAPIfWiredTrafficGroup 9 } + +wirelessAPIfWLANTotalOctetsIn OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Traffic received via WLAN by the wireless AP in octets" + ::= { wirelessAPIfWlanTrafficGroup 1 } + +wirelessAPIfWLANTotalOctetsOut OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Traffic transmitted via WLAN by the wireless AP in octets" + ::= { wirelessAPIfWlanTrafficGroup 2 } + +wirelessAPIfWLANUnicastPacketsIn OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Unicast traffic received via WLAN by the wireless AP in packets" + ::= { wirelessAPIfWlanTrafficGroup 3 } + +wirelessAPIfWLANUnicastPacketsOut OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Unicast traffic transmitted via WLAN by the wireless AP in packets" + ::= { wirelessAPIfWlanTrafficGroup 4 } + +wirelessAPIfWLANBroadcastPacketsIn OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Broadcast traffic received via WLAN by the wireless AP in packets" + ::= { wirelessAPIfWlanTrafficGroup 5 } + +wirelessAPIfWLANBroadcastPacketsOut OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Broadcast traffic transmitted via WLAN by the wireless AP in packets" + ::= { wirelessAPIfWlanTrafficGroup 6 } + +wirelessAPIfWLANMulticastPacketsIn OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Multicast traffic received via WLAN by the wireless AP in packets" + ::= { wirelessAPIfWlanTrafficGroup 7 } + +wirelessAPIfWLANMulticastPacketsOut OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Multicast traffic transmitted via WLAN by the wireless AP in packets" + ::= { wirelessAPIfWlanTrafficGroup 8 } + + +wirelessAPIfWLANThroughputIn OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Throughtput-in at WLAN transmitted by the wireless AP in the unit of B/s" + ::= { wirelessAPIfWlanTrafficGroup 9 } + +wirelessAPIfWLANThroughputOut OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Throughtput-out at WLAN transmitted by the wireless AP in the unit of B/s" + ::= { wirelessAPIfWlanTrafficGroup 10 } + +wirelessAPIfWLANPacketsIn OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total in-packets at WLAN received by the wireless AP in packets" + ::= { wirelessAPIfWlanTrafficGroup 11 } + +wirelessAPIfWLANPacketsOut OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total out-packets at WLAN transmitted by the wireless AP in packets" + ::= { wirelessAPIfWlanTrafficGroup 12 } + +wirelessAPIfWLANTrafficResetCounter OBJECT-TYPE + SYNTAX INTEGER { + false(0), + true(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Reset the WLAN interface 's counters, they will start from 0 again." + ::= { wirelessAPIfWlanTrafficGroup 13 } + + + + + + +wirelessAPDHCPClientObtainIPchoice OBJECT-TYPE + SYNTAX INTEGER { + static(0), + automatic(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Wireless Access Point DHCP Client Obtain an IP address choice + static(0) means use static IP addess; + automatic(1) means obtain an IP address automatically from + DHCP server" + DEFVAL { 0 } + ::= { wirelessAPIfSettingsGroup 1 } + +wirelessAPDHCPClientIPaddr OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Wireless Access Point DHCP Client IP address + If wirelessAPDHCPClientObtainIPchoice is set to static(0), + then it should be the same as + wirelessAPDHCPClientStaticIPaddr." + ::= { wirelessAPIfSettingsGroup 2 } + +wirelessAPDHCPClientIPsubnetMask OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Wireless Access Point DHCP Client IP subnet mask + If wirelessAPDHCPClientObtainIPchoice is set to static(0), + then it should be the same as + wirelessAPDHCPClientStaticIPsubnetMask." + ::= { wirelessAPIfSettingsGroup 3 } + +wirelessAPDHCPClientGateway OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Wireless Access Point DHCP Client gateway + If wirelessAPDHCPClientObtainIPchoice is set to static(0), + then it should be the same as + wirelessAPDHCPClientStaticGateway." + ::= { wirelessAPIfSettingsGroup 4 } + +wirelessAPDHCPClientPriDNS OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Wireless Access Point DHCP Client primary DNS + If wirelessAPDHCPClientObtainIPchoice is set to static(0), + then it should be the same as + wirelessAPDHCPClientStaticPriDNS." + ::= { wirelessAPIfSettingsGroup 5 } + +wirelessAPDHCPClientSecDNS OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Wireless Access Point DHCP Client secondary DNS + If wirelessAPDHCPClientObtainIPchoice is set to static(0), + then it should be the same as + wirelessAPDHCPClientStaticSecDNS." + ::= { wirelessAPIfSettingsGroup 6 } + +wirelessAPDHCPClientStaticIPaddr OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Wireless Access Point DHCP Client static IP address + If wirelessAPDHCPClientObtainIPchoice is set to automatic + (1), then it should be 0.0.0.0." + ::= { wirelessAPIfSettingsGroup 7 } + +wirelessAPDHCPClientStaticIPsubnetMask OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Wireless Access Point DHCP Client static IP subnet mask + If wirelessAPDHCPClientObtainIPchoice is set to automatic + (1), then it should be 0.0.0.0." + ::= { wirelessAPIfSettingsGroup 8 } + +wirelessAPDHCPClientStaticGateway OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Wireless Access Point DHCP Client static gateway + If wirelessAPDHCPClientObtainIPchoice is set to automatic + (1), then it should be 0.0.0.0." + ::= { wirelessAPIfSettingsGroup 9 } + +wirelessAPDHCPClientStaticPriDNS OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Wireless Access Point DHCP Client static primary DNS + If wirelessAPDHCPClientObtainIPchoice is set to automatic + (1), then it should be 0.0.0.0." + ::= { wirelessAPIfSettingsGroup 10 } + +wirelessAPDHCPClientStaticSecDNS OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Wireless Access Point DHCP Client static secondary DNS + If wirelessAPDHCPClientObtainIPchoice is set to automatic + (1), then it should be 0.0.0.0." + ::= { wirelessAPIfSettingsGroup 11 } + +wirelessAPName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Wireless Access Point Name" + ::= { wirelessAPIfSettingsGroup 12 } + +wirelessAPWINSchoice OBJECT-TYPE + SYNTAX INTEGER { + disAbled(0), + enAbled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Wireless Access Point WINS choice + If it is set to disAbled, then not using WINS." + DEFVAL { 0} + ::= { wirelessAPIfSettingsGroup 13 } + +wirelessAPWINSServerName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "WINS Server Name + If wirelessAPWINSchoice is enAbled, either set this object + If wirelessAPWINSchoice is disAbled, this object value + should be cleared" + ::= { wirelessAPIfSettingsGroup 14 } + + + +wirelessAPCountryDomain OBJECT-TYPE + SYNTAX INTEGER { + none(0), + africa(1), + asia(2), + australia(3), + canada(4), + europe(5), + france(6), + israel(7), + japan(8), + mexico(9), + southAmerica(10), + usa(11) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Wireless Access Point Country Domain" + ::= { wirelessAPWirelessSettingsGroup 1 } + +wirelessAPChannelNo OBJECT-TYPE + SYNTAX INTEGER(0..11) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Wireless Access Point Channel No + Auto(0) default" + DEFVAL { 11 } + ::= { wirelessAPWirelessSettingsGroup 2 } + +wirelessAPSSID OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Wireless Access Point SSID + This object value should be the same as + IEEE 802.11 MIB dot11DesiredSSID" + ::= { wirelessAPWirelessSettingsGroup 3 } + + + +wirelessAPPassphrase OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..32)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Wireless AP Passphrase + + This object won't be allowed to write unless wirelessAPWEPEnabled is enAbled" + ::= { wirelessAPWirelessSettingsGroup 7 } + +wirelessAPGenerateKeysEnabled OBJECT-TYPE + SYNTAX INTEGER { + disAbled(0), + enAbled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Wireless Access Point Generate Keys + + This object won't be allowed to write unless wirelessAPWEPEnabled is enAbled" + DEFVAL { 0 } + ::= { wirelessAPWirelessSettingsGroup 8 } + +wirelessAPKeysSet OBJECT IDENTIFIER ::= { wirelessAPWirelessSettingsGroup 9 } + +wirelessAPKeysSetTable OBJECT-TYPE + SYNTAX SEQUENCE OF WirelessAPKeysSetEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Wireless Access Point Keys Set Table Object + + This object won't be allowed to write unless wirelessAPWEPEnabled is enAbled" + ::= { wirelessAPKeysSet 1 } + +wirelessAPKeysSetEntry OBJECT-TYPE + SYNTAX WirelessAPKeysSetEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry containing information for Wireless Access Point + Keys Set Table" + INDEX { wirelessAPKeysSetEnabled } + ::= { wirelessAPKeysSetTable 1 } + +WirelessAPKeysSetEntry ::= + SEQUENCE { + wirelessAPKeysSetEnabled INTEGER, + wirelessAPKeys DisplayString + } + +wirelessAPKeysSetEnabled OBJECT-TYPE + SYNTAX INTEGER { + disAbled(0), + enAbled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Enabled or Disabled a Wireless Access Point Key + + This object won't be allowed to write unless wirelessAPWEPEnabled is enAbled + + We only allow one key set will be enabled" + DEFVAL { 0 } + ::= { wirelessAPKeysSetEntry 2 } + +wirelessAPKeys OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..13)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Wireless AP Key + This object won't be allowed to write unless wirelessAPWEPEnabled is enAbled" + ::= { wirelessAPKeysSetEntry 3 } + +wirelessAPBasicRateChoice OBJECT-TYPE + SYNTAX INTEGER { + auto(0), + fixed(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Wireless AP Basic Rate selection: auto(0) means + Auto-negotiate and fixed(1) means Fixed rate" + DEFVAL { 0 } + ::= { wirelessAPWirelessSettingsGroup 10 } + + + + +wirelessAPFixedRate OBJECT IDENTIFIER ::= {wirelessAPWirelessSettingsGroup 11} + +wirelessAPFixedRate1 OBJECT-TYPE + SYNTAX INTEGER { + oneM-disabled(0), + oneM-enabled(1) +-- fixedRateNull(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If wirelessAPBasicRateChoice is set to auto(0), then the + value in this object should be empty. + oneM means 1Mbps, + twoM means 2Mbps, + fiveDotfiveM means 5.5Mbps, + elevenM means 11Mbps + + This object won't be allowed to write unless wirelessAPBasicRateChoice is set to fixed(1)" + ::= { wirelessAPFixedRate 1 } + +wirelessAPFixedRate2 OBJECT-TYPE + SYNTAX INTEGER { + twoM-disabled(0), + twoM-enabled(1) +-- fixedRateNull(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If wirelessAPBasicRateChoice is set to auto(0), then the + value in this object should be empty. + oneM means 1Mbps, + twoM means 2Mbps, + fiveDotfiveM means 5.5Mbps, + elevenM means 11Mbps + + This object won't be allowed to write unless wirelessAPBasicRateChoice is set to fixed(1)" + ::= { wirelessAPFixedRate 2 } + +wirelessAPFixedRate5-5 OBJECT-TYPE + SYNTAX INTEGER { + fiveDotFiveM-disabled(0), + fiveDotFiveM-enabled(1) +-- fixedRateNull(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If wirelessAPBasicRateChoice is set to auto(0), then the + value in this object should be empty. + oneM means 1Mbps, + twoM means 2Mbps, + fiveDotfiveM means 5.5Mbps, + elevenM means 11Mbps + + This object won't be allowed to write unless wirelessAPBasicRateChoice is set to fixed(1)" + ::= { wirelessAPFixedRate 3 } + +wirelessAPFixedRate11 OBJECT-TYPE + SYNTAX INTEGER { + elevenM-disabled(0), + elevenM-enabled(1) +-- fixedRateNull(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If wirelessAPBasicRateChoice is set to auto(0), then the + value in this object should be empty. + oneM means 1Mbps, + twoM means 2Mbps, + fiveDotfiveM means 5.5Mbps, + elevenM means 11Mbps + + This object won't be allowed to write unless wirelessAPBasicRateChoice is set to fixed(1)" + ::= { wirelessAPFixedRate 4 } + + + +wirelessAPRTSThreshold OBJECT-TYPE + SYNTAX INTEGER (0..2347) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The value in this object should be the same as IEEE 802.11 + dot11RTSThreshold" + ::= { wirelessAPWirelessSettingsGroup 12 } + +wirelessAPFragmentationThreshold OBJECT-TYPE + SYNTAX INTEGER (256..2346) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The value in this object should be the same as IEEE 802.11 + dot11FragmentationThreshold" + ::= { wirelessAPWirelessSettingsGroup 13 } + +wirelessAPBeaconPeriod OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The value in this object should be the same as IEEE 802.11 + dot11BeaconPeriod" + ::= { wirelessAPWirelessSettingsGroup 14 } + + + +wirelessAPShortPreambleOptionImplemented OBJECT-TYPE + SYNTAX INTEGER + { + short(0), + long(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + " The value of this object is 0 denoting that the short preamble used, + 1 denoting that the long preamble used." + ::= { wirelessAPWirelessSettingsGroup 15 } + +wirelessAPAntennaSelection OBJECT-TYPE + SYNTAX INTEGER { + primary(1), + secondary(2), + diversity(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Antenna Selection" + DEFVAL { 3 } + ::= { wirelessAPWirelessSettingsGroup 16 } + +wirelessAPMaximumTransmitPowerLevel OBJECT-TYPE + SYNTAX INTEGER { + eighteendbm(1), + seventeendbm(2), + fifteendbm(3), + thirteendbm(4), + sevendbm(5), + zerodbm(6) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The value in this object should be the same as IEEE 802.11 + dot11MaximumTransmitPowerLevel. However, our default value + will be 18dbm. + + copy from IEEE 802.11 MIB: + This attribute shall indicate the maximum transmit power, + in dBm, allowed in the subband for the associated domain + country string. The default value of this attribute shall + be zero." + DEFVAL { 1 } + ::= { wirelessAPWirelessSettingsGroup 17 } + +wirelessAPOperatingMode OBJECT-TYPE + SYNTAX INTEGER { + eight0twoDot1xAP(0), + noneight0twoDot1xAP(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Operating Mode" + DEFVAL { 0 } + ::= { wirelessAPWirelessSettingsGroup 18 } + +wirelessAPSSIDEnabled OBJECT-TYPE + SYNTAX INTEGER { + disAbled(0), + enAbled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Enabled or disabled Wireless Access Point Broadcast + Wireless Network Name SSID" + DEFVAL { 1 } + ::= { wirelessAPWirelessSettingsGroup 19 } + + +wirelessAP802dot1xSecurityEnabled OBJECT-TYPE + SYNTAX INTEGER { + enAbled(0), + disAbled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "802.1x Security enabled or disabled" + DEFVAL { 1 } + ::= { wirelessAPSecuritySettingsGroup 1 } + + +wirelessAPEAPauthType OBJECT-TYPE + SYNTAX INTEGER { + notalloweap-md5(0), + alloweap-md5(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Operating Mode + This object won't be allowed to write unless wirelessAP802dot1xSecurityEnabled is enAbled" + DEFVAL { 0 } + ::= { wirelessAPSecuritySettingsGroup 2 } + + +wirelessAPKeyExchange OBJECT-TYPE + SYNTAX INTEGER { + disAbled(0), + enAbled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "AP Key Exchange enabled or disabled" + DEFVAL { 1 } + ::= { wirelessAPSecuritySettingsGroup 16 } + +wirelessAPKeyExchangeKeylife OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "AP exchanged key lifetime" + ::= { wirelessAPSecuritySettingsGroup 17 } + +wirelessAPRadiusServer OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Radius Server Name/IP Address" + ::= { wirelessAPSecuritySettingsGroup 3 } + +wirelessAPRadiusPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Radius Port" + ::= { wirelessAPSecuritySettingsGroup 4 } + +wirelessAPSharedKey OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Radius Server Shared Key" + ::= { wirelessAPSecuritySettingsGroup 5 } + +wirelessAPRadiusServer2 OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Radius Server Name/IP Address" + ::= { wirelessAPSecuritySettingsGroup 7 } + + + +wirelessAPRadAccountPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Radius Accounting Port" + ::= { wirelessAPSecuritySettingsGroup 11 } + + + +wirelessAPRadAccountEnable OBJECT-TYPE + SYNTAX INTEGER { + disAbled(0), + enAbled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "AP Radius Accounting enabled or disabled" + DEFVAL { 1 } + ::= { wirelessAPSecuritySettingsGroup 18 } + + + +wirelessAPMacAuthEnable OBJECT-TYPE + SYNTAX INTEGER { + disAbled(0), + enAbled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "AP Mac Authentication enabled or disabled" + DEFVAL { 1 } + ::= { wirelessAPSecuritySettingsGroup 19 } + + +wirelessAPRadAccountUpdateEnable OBJECT-TYPE + SYNTAX INTEGER { + disAbled(0), + enAbled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "AP Radius Account Update enabled or disabled" + DEFVAL { 1 } + ::= { wirelessAPSecuritySettingsGroup 21 } + + +wirelessAPRadAccountUpdatePeriod OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "AP Radius Account Update Period" + ::= { wirelessAPSecuritySettingsGroup 22 } + + +wirelessAPRadAccountIdlePeriod OBJECT-TYPE + SYNTAX INTEGER (0..99) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Idle timer for AP not receiving any traffic from a wireless station to perform a dissociation" + ::= { wirelessAPSecuritySettingsGroup 23 } + + +wirelessTIOperateMode OBJECT-TYPE + SYNTAX INTEGER { + wirelessaccesspoint(0), + point-to-pointbridge(4), + point-to-multi-pointbridge(5), + clientaccesspoint(3), + repeateraccesspoint(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "AP Operation Mode" + ::= { wirelessAPSecuritySettingsGroup 25 } + + + +wirelessTIDstMac OBJECT-TYPE + SYNTAX PhysAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Destination Address When one operation mode is selected which the remote address necessary." + ::= { wirelessAPSecuritySettingsGroup 26 } + + + +wirelessTIIsolation OBJECT-TYPE + SYNTAX INTEGER { + off(0), + on(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "AP Wireless Separation Setting" + ::= { wirelessAPSecuritySettingsGroup 28 } + + + +wirelessTIEnable80211d OBJECT-TYPE + SYNTAX INTEGER { + off(0), + on(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "AP Worldwide Mode Setting" + ::= { wirelessAPSecuritySettingsGroup 29 } + +--wirelessAPWPARebootLog OBJECT-TYPE +-- SYNTAX INTEGER { +-- Disable(0), +-- Enable(1) +-- } +-- ACCESS read-write +-- STATUS mandatory +-- DESCRIPTION +-- "WPA Reboot Log" +-- ::= { wirelessAPSecuritySettingsGroup 35 } + +--wirelessAPWPAPSK OBJECT-TYPE +-- SYNTAX DisplayString (SIZE(0..32)) +-- ACCESS read-write +-- STATUS mandatory +-- DESCRIPTION +-- "WPA PSK" +-- ::= { wirelessAPSecuritySettingsGroup 36 } + +wirelessAPSecurityMode OBJECT-TYPE + SYNTAX INTEGER { + + open-disable-mode(0), + open-64wep-mode(1), + open-128wep-mode(2), + shared-64wep-mode(3), + shared-128wep-mode(4) +-- wpa-tkip-mode(5), +-- wpa-tkip-64wep-mode(6), +-- wpa-tkip-128wep-mode(7), +-- wpa-psk-tkip-mode(8), +-- wpa-psk-tkip-64wep-mode(9), +-- wpa-psk-tkip-128wep-mode(10) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "AP Security Mode Setting, can take the place of AP Authentication and Encryption Setting Logic Relation." + ::= { wirelessAPSecuritySettingsGroup 37 } + + +END + + + +