CISCO-SLB-EXT-MIB
- Registered at
- 1.3.6.1.4.1.9.9.254
- Last updated
- 2008-03-13 00:00
- Organization
- Cisco Systems, Inc.
- Revisions
- 2008-03-13 00:00, 2006-01-20 00:00, 2005-02-24 10:00, 2002-08-19 00:00
- Namespace
- cisco
- Source file
CISCO-SLB-EXT-MIB- Digest
sha256:75e350a66bc0590a151fcdf6b35b4eb94195c673dddf7f3f355f0c3289cd1df4
Description
The extended MIB for managing Server Load Balancing Manager(s). This MIB extends the SLB management functionality in the CISCO-SLB-MIB. The Cisco Content Switching Module (CSM) product is the first SLB product to support this MIB. SLB: Server Load Balancing. Server load balancing provides for the balancing of packets and connections arriving at the SLB device across a number of other devices, such as real servers, firewalls, or caches. A system containing an SLB device typically exhibits higher performance, scalability, and reliability than any of the devices being load balanced. An SLB device determines how to handle incoming frames and connections according to the contents of incoming data and various configuration options. In determining how to handle incoming data, an SLB device may examine the data at any OSI layer, including Layer 7. This MIB includes instrumentation for the manager-side implementation of the Dynamic Feedback Protocol (DFP). A DFP manager uses the DFP protocol to communicate with DFP agents in order to obtain information about the current load and available capacity of devices. Acronyms and terms: SLB Server Load Balancing VIP Virtual Server IP address NAT Network Address Translation SF Serverfarm FT Fault Tolerance SSL Secure Sockets Layer TLS Transport Layer Security
Contact
Cisco Systems Customer Service Postal: 170 W. Tasman Drive San Jose, CA 95134 USA Tel: +1 800 553-NETS E-mail: cs-slb@cisco.com
Imports
| From | Symbols |
|---|---|
| CISCO-SLB-MIB | SlbConnectionState, SlbPasswordString, SlbRealServerState, SlbServerString, slbEntity, slbServerFarmName, slbServerFarmTableEntry, slbStatsTableEntry, slbVirtualServerTableEntry |
| CISCO-SMI | ciscoMgmt |
| CISCO-TC | CiscoHTTPResponseStatusCode, CiscoIpProtocol, CiscoPort |
| INET-ADDRESS-MIB | InetAddress, InetAddressType |
| SNMP-FRAMEWORK-MIB | SnmpAdminString |
| SNMPv2-CONF | MODULE-COMPLIANCE, NOTIFICATION-GROUP, OBJECT-GROUP |
| SNMPv2-SMI | Counter32, Counter64, Gauge32, MODULE-IDENTITY, NOTIFICATION-TYPE, OBJECT-IDENTITY, OBJECT-TYPE, Unsigned32, iso |
| SNMPv2-TC | DateAndTime, DisplayString, RowStatus, StorageType, TEXTUAL-CONVENTION, TimeInterval, TimeStamp, TruthValue |
Imported by
2 module(s) in this corpus import this one.
Load order
Every file a consumer needs in order to load this module, dependencies first.
CISCO-SLB-EXT-MIB CISCO-SLB-MIB CISCO-SMI CISCO-TC ENTITY-MIB IANA-ENTITY-MIB INET-ADDRESS-MIB SNMP-FRAMEWORK-MIB SNMPv2-CONF SNMPv2-SMI SNMPv2-TC UUID-TC-MIB
Textual conventions
| Name | OID | Syntax | Access | Status |
|---|---|---|---|---|
| SlbDirectionalMode TEXTUAL-CONVENTION The flow direction type of the traffic destined to a particular Virtual Server. 'unidirectional' : traffic only in one direction. 'bidirectional' : traffic in both directions. 'defdirectional' : UDP traffic is unidirection, TCP and other traffics are bidirectional. | current | |||
| SlbFailAction TEXTUAL-CONVENTION The current action setting for a server farm when a real server has failed. 'noAction' : No additional action besides taking the server out of service. 'purgeConns' : Purge all connections to this real server. 'reassignConns' : Re-assign all connections to another real server. 'undefined' : New action not yet defined. | current | |||
| SlbFtState TEXTUAL-CONVENTION The current Fault Tolerance state of the SLB entity. 'notConfigFT' : Was not configured with FT. 'initializingFT' : Initializing Fault Tolerance. 'activeFT' : Active FT peer. 'standbyFT' : Standby FT peer. | current | |||
| SlbFunctionNameString TEXTUAL-CONVENTION The label name for a section of the executable script. A section of script is a logical container which includes the executable instructions to perform a certain task. The Tool Command Language (Tcl) is one of the well-defined scripting languages. The language is depending on individual implementation of an SLB device. The scripts will be imported into an SLB system as parts of the user's configurations. The purpose of supporting scripting language is to extend the existing functionalities in a particular SLB implementation. The SlbFunctionNameString must only contain these characters: - lowercase character 'a' to 'z'. - uppercase character 'A' to 'Z'. - numeric character '0' to '9'. - the underscore '_' character. | current | |||
| SlbIpAdvertise TEXTUAL-CONVENTION The current advertise option for the virtual server IP address. 'alwaysAdvertise' : Advertise VIP if configured. 'activeAdvertise' : Advertise VIP only if virtual server is active. 'undefined' : New type not yet defined. | current | |||
| SlbMapType TEXTUAL-CONVENTION The current type of the Map group. A Map group contains a list of rules matching information in the connection with the HTTP URL, HTTP Cookie, HTTP Header, or HTTP Return Code criteria. 'notCfgMap' : Map type has not been specified. 'urlMap' : HTTP URL matching group. 'cookieMap' : HTTP Cookie matching group. 'headerMap' : HTTP Header field matching group. 'returnCodeMap' : HTTP return code parsing group. 'undefined' : New matching type not yet defined. | current | |||
| SlbObjectNameString TEXTUAL-CONVENTION The name of an associated SLB object. All SLB object names are in uppercase. | current | |||
| SlbProbeAction TEXTUAL-CONVENTION The current action setting for a probing condition or monitoring condition such as the HTTP return code. 'noAction' : No action. 'logAction' : Logging the event. 'removeAction' : Removing the service. 'countAction' : Counting and logging the event. 'undefined' : New action not yet defined. | current | |||
| SlbRegularExpression TEXTUAL-CONVENTION A regular expression of length 0 to 255. Regular expressions are typically used for matching fields in Layer 7 data streams, such as URLs or Cookies in HTTP. The following syntax is based on the file name matching algorithm commonly employed in UNIX : '*' matches zero or more characters; '?' matches exactly one character; '\' means escaped character, e.g., '\*' matches the character '*'; a bracketed range matches any single character from the range, e.g. [0-9] matches '0', '2', and '9', but not 'a'; a leading ^ in a range means don't match any in the range; '+' matches any sequence of one or more characters; '.' matches any single character; All other characters represent themselves. '\a' matches alert (ASCII 7); '\b' matches backspace (ASCII 8); '\f' matches form-feed (ASCII 12); '\n' matches newline (ASCII 10); '\r' matches carriage return (ASCII 13); '\t' matches tab (ASCII 9); '\v' matches vertical tab (ASCII 11); '\0' matches null (ASCII 0); '\\' matches backslash; '\x##' matches the ASCII character whose hexadecimal representation is ##. | current | |||
| SlbReplicationMode TEXTUAL-CONVENTION The current replicating option for the virtual server. 'replNone' : Do not replicate any information. 'replAll' : Replicate connection and sticky information. 'replConnection' : Replicate only the connection information. 'replStickyData' : Replicate only the sticky information. | current | |||
| SlbStickyType TEXTUAL-CONVENTION The current type of the Sticky Group. A Sticky Group is a list of rules mapping incoming connection parameters, such as source IP address, to specific real servers. If an incoming connection matches a rule in a Sticky Group, the SLB may 'stick' that connection to the real server specified in the matching rule. 'srcIpSticky' : Stick based on source IP address. 'httpCookieSticky' : Stick based on HTTP Cookie name. 'sslSticky' : Stick based on SSL Session ID. 'undefined' : New sticky type not yet defined. 'destIpSticky' : Stick based on the destination IP address. 'srcDestISticky' : Stick based on the Source and Destionation IP Address. 'httpHeaderSticky' : Stick based on the HTTP Header Name. | current | |||
| SlbUrlString TEXTUAL-CONVENTION The octet string containing the Uniform Resource Locator (URL) information. It is in human-readable form. | current | |||
| SlbVlanType TEXTUAL-CONVENTION Each configured SLB VLAN has one of the following types : 'clientVlan' : Client side VLAN interface. 'serverVlan' : Server side VLAN interface. 'ftVlan' : Fault Tolerance VLAN interface. | current |
Objects
| Name | OID | Syntax | Access | Status |
|---|---|---|---|---|
| ciscoSlbExtMIBNotifs OBJECT-IDENTITY | 1.3.6.1.4.1.9.9.254.0 | |||
| ciscoSlbExtMIBObjects OBJECT-IDENTITY | 1.3.6.1.4.1.9.9.254.1 | |||
| cslbxStats OBJECT-IDENTITY | 1.3.6.1.4.1.9.9.254.1.1 | |||
| cslbxStatsTable OBJECT-TYPE A table of global SLB statistics for all local SLB entities. It contains addition information to the slbStatsTable. | 1.3.6.1.4.1.9.9.254.1.1.1 | not-accessible | current | |
| cslbxStatsTableEntry OBJECT-TYPE A list of additional SLB statistics for a particular SLB entity. | 1.3.6.1.4.1.9.9.254.1.1.1.1 | not-accessible | current | |
| cslbxStatsServerInitConns OBJECT-TYPE The total number of connections initiated by the servers. | 1.3.6.1.4.1.9.9.254.1.1.1.1.1 | Counter32 | read-only | current |
| cslbxStatsServerInitHCConns OBJECT-TYPE The total number of connections initiated by the servers. This is the 64-bit version of cslbxStatsServerInitConns. | 1.3.6.1.4.1.9.9.254.1.1.1.1.2 | Counter64 | read-only | current |
| cslbxStatsCurrConnections OBJECT-TYPE The number of connections currently still open. | 1.3.6.1.4.1.9.9.254.1.1.1.1.3 | Gauge32 | read-only | current |
| cslbxStatsCurrServerInitConns OBJECT-TYPE The number of server initiated connections currently still open. | 1.3.6.1.4.1.9.9.254.1.1.1.1.4 | Gauge32 | read-only | current |
| cslbxStatsFailedConns OBJECT-TYPE The number of connections that were load balanced to real servers that then failed to respond. | 1.3.6.1.4.1.9.9.254.1.1.1.1.5 | Counter32 | read-only | current |
| cslbxStatsFailedServerInitConns OBJECT-TYPE The number of server initiated connections that failed. | 1.3.6.1.4.1.9.9.254.1.1.1.1.6 | Counter32 | read-only | current |
| cslbxStatsL4PolicyConns OBJECT-TYPE The number of connections made to the virtual servers with only layer 4 configuration. | 1.3.6.1.4.1.9.9.254.1.1.1.1.7 | Counter32 | read-only | current |
| cslbxStatsL7PolicyConns OBJECT-TYPE The number of connections made to the virtual servers with some layer 7 configuration. | 1.3.6.1.4.1.9.9.254.1.1.1.1.8 | Counter32 | read-only | current |
| cslbxStatsDroppedL4PolicyConns OBJECT-TYPE The number of connections dropped by virtual servers with only layer 4 configuration. | 1.3.6.1.4.1.9.9.254.1.1.1.1.9 | Counter32 | read-only | current |
| cslbxStatsDroppedL7PolicyConns OBJECT-TYPE The number of connections dropped by virtual servers with some layer 7 policy. | 1.3.6.1.4.1.9.9.254.1.1.1.1.10 | Counter32 | read-only | current |
| cslbxStatsFtpConns OBJECT-TYPE The number of connections made to virtual servers with the FTP service. | 1.3.6.1.4.1.9.9.254.1.1.1.1.11 | Counter32 | read-only | current |
| cslbxStatsHttpRedirectConns OBJECT-TYPE The number of connections made to HTTP redirect servers. | 1.3.6.1.4.1.9.9.254.1.1.1.1.12 | Counter32 | read-only | current |
| cslbxStatsDroppedRedirectConns OBJECT-TYPE The number of connections dropped by HTTP redirect servers. | 1.3.6.1.4.1.9.9.254.1.1.1.1.13 | Counter32 | read-only | current |
| cslbxStatsNoMatchPolicyRejects OBJECT-TYPE The number of connections rejected because they failed to match any configured policy. | 1.3.6.1.4.1.9.9.254.1.1.1.1.14 | Counter32 | read-only | current |
| cslbxStatsNoCfgPolicyRejects OBJECT-TYPE The number of connections rejected because the matching virtual server was not configured with any policy. | 1.3.6.1.4.1.9.9.254.1.1.1.1.15 | Counter32 | read-only | current |
| cslbxStatsNoActiveServerRejects OBJECT-TYPE The number of connections rejected because the chosen server farm did not have any active servers. | 1.3.6.1.4.1.9.9.254.1.1.1.1.16 | Counter32 | read-only | current |
| cslbxStatsAclDenyRejects OBJECT-TYPE The number of connections rejected because the the matching client access list was configured to deny access. | 1.3.6.1.4.1.9.9.254.1.1.1.1.17 | Counter32 | read-only | current |
| cslbxStatsMaxParseLenRejects OBJECT-TYPE The number of connections rejected because the length of an HTTP request or response header exceeded the maximum L7 parse length configured for the matching virtual server. | 1.3.6.1.4.1.9.9.254.1.1.1.1.18 | Counter32 | read-only | current |
| cslbxStatsBadSslFormatRejects OBJECT-TYPE The number of connections rejected because some invalid or unrecognized SSL format was detected. | 1.3.6.1.4.1.9.9.254.1.1.1.1.19 | Counter32 | read-only | current |
| cslbxStatsL7ParserErrorRejects OBJECT-TYPE The number of connections rejected because an error occurred while parsing the connection data at Layer 7. | 1.3.6.1.4.1.9.9.254.1.1.1.1.20 | Counter32 | read-only | current |
| cslbxStatsVerMismatchRejects OBJECT-TYPE The number of connections rejected because the Layer 7 configuration was changed while Layer 7 parsing was occurring on the connection. | 1.3.6.1.4.1.9.9.254.1.1.1.1.21 | Counter32 | read-only | current |
| cslbxStatsOutOfMemoryRejects OBJECT-TYPE The number of connections rejected because the SLB module could not allocate the required memory. | 1.3.6.1.4.1.9.9.254.1.1.1.1.22 | Counter32 | read-only | current |
| cslbxStatsTimedOutConnections OBJECT-TYPE The number of connections that were terminated because they were idle longer than the configured idle timeout value. | 1.3.6.1.4.1.9.9.254.1.1.1.1.23 | Counter32 | read-only | current |
| cslbxStatsTcpChecksumErrorPkts OBJECT-TYPE The accumulated number of TCP packets which have checksum error. | 1.3.6.1.4.1.9.9.254.1.1.1.1.24 | Counter32 | read-only | current |
| cslbxStatsIpChecksumErrorPkts OBJECT-TYPE The accumulated number of IP packets which have checksum error. | 1.3.6.1.4.1.9.9.254.1.1.1.1.25 | Counter32 | read-only | current |
| cslbxStatsL4PolicyHCConns OBJECT-TYPE The number of connections made to the virtual servers with only layer 4 configuration. This object is a 64-bit version of cslbxStatsL4PolicyConns. | 1.3.6.1.4.1.9.9.254.1.1.1.1.26 | Counter64 | read-only | current |
| cslbxStatsL7PolicyHCConns OBJECT-TYPE The number of connections made to the virtual servers with some layer 7 configuration. This object is a 64-bit version of cslbxStatsL7PolicyConns. | 1.3.6.1.4.1.9.9.254.1.1.1.1.27 | Counter64 | read-only | current |
| cslbxStatsDroppedL4PolicyHCConns OBJECT-TYPE The number of connections dropped by virtual servers with only layer 4 configuration. This object is a 64-bit version of cslbxStatsDroppedL4PolicyConns. | 1.3.6.1.4.1.9.9.254.1.1.1.1.28 | Counter64 | read-only | current |
| cslbxStatsDroppedL7PolicyHCConns OBJECT-TYPE The number of connections dropped by virtual servers with some layer 7 configuration. This object is a 64-bit version of cslbxStatsDroppedL7PolicyConns. | 1.3.6.1.4.1.9.9.254.1.1.1.1.29 | Counter64 | read-only | current |
| cslbxStatsNoMatchPolicyHCRejects OBJECT-TYPE The number of connections rejected because they failed to match any configured policy. This object is a 64-bit version of cslbxStatsNoMatchPolicyRejects. | 1.3.6.1.4.1.9.9.254.1.1.1.1.30 | Counter64 | read-only | current |
| cslbxStatsNoCfgPolicyHCRejects OBJECT-TYPE The number of connections rejected because the matching virtual server was not configured with any policy. This object is a 64-bit version of cslbxStatsNoCfgPolicyRejects. | 1.3.6.1.4.1.9.9.254.1.1.1.1.31 | Counter64 | read-only | current |
| cslbxStatsAclDenyHCRejects OBJECT-TYPE The number of connections rejected because the the matching client access list was configured to deny access. This object is a 64-bit version of cslbxStatsAclDenyRejects. | 1.3.6.1.4.1.9.9.254.1.1.1.1.32 | Counter64 | read-only | current |
| cslbxStatsVerMismatchHCRejects OBJECT-TYPE The number of connections rejected because the Layer 7 configuration was changed while Layer 7 parsing was occurring on the connection. This object is a 64-bit version of cslbxStatsVerMismatchRejects. | 1.3.6.1.4.1.9.9.254.1.1.1.1.33 | Counter64 | read-only | current |
| cslbxServerFarms OBJECT-IDENTITY | 1.3.6.1.4.1.9.9.254.1.2 | |||
| cslbxServerFarmTable OBJECT-TYPE This is a table of server farms, each of which is a group of real servers to be used by SLB for load balancing. It contains additional configurations to the slbSeverFarmTable. | 1.3.6.1.4.1.9.9.254.1.2.1 | not-accessible | current | |
| cslbxServerFarmTableEntry OBJECT-TYPE Additional configuration parameters about a particular server farm served by a particular local SLB entity. | 1.3.6.1.4.1.9.9.254.1.2.1.1 | not-accessible | current | |
| cslbxServerFarmHashMaskAddrType OBJECT-TYPE The type of address stored in cslbxServerFarmHashMaskAddr. | 1.3.6.1.4.1.9.9.254.1.2.1.1.1 | InetAddressType | read-create | current |
| cslbxServerFarmHashMaskAddr OBJECT-TYPE The mask value applied to the IP address before performing IP hashing operation. | 1.3.6.1.4.1.9.9.254.1.2.1.1.2 | InetAddress (SIZE(0..20)) | read-create | current |
| cslbxServerFarmClientNatPool OBJECT-TYPE The name of the current client NAT pool associated with this server farm. | 1.3.6.1.4.1.9.9.254.1.2.1.1.3 | SlbObjectNameString | read-create | current |
| cslbxServerFarmFailAction OBJECT-TYPE The current action assigned to this server farm when a server has failed ARP or health probe. | 1.3.6.1.4.1.9.9.254.1.2.1.1.4 | SlbFailAction | read-create | current |
| cslbxServerFarmHttpReturnCodeMap OBJECT-TYPE The name of the HTTP return code checking applied to with this server farm. | 1.3.6.1.4.1.9.9.254.1.2.1.1.5 | SlbObjectNameString | read-create | current |
| cslbxServerFarmInFailedThreshold OBJECT-TYPE The threshold of failed connections before the inband health check taking a server in this farm out-of-service. | 1.3.6.1.4.1.9.9.254.1.2.1.1.6 | Unsigned32 | read-create | current |
| cslbxServerFarmInbandResetTimer OBJECT-TYPE The wait time interval before the inband health check reset a failed server to enable state. The value of zero indicates failed state will never reset. | 1.3.6.1.4.1.9.9.254.1.2.1.1.7 | TimeInterval | read-create | current |
| cslbxServerFarmTransparent OBJECT-TYPE This object is used for specifying a transparent server farm. In the transparent mode virtual IP Address to Server IP Address translation does not take place. The value 'true' is used for setting it to transparent mode. | 1.3.6.1.4.1.9.9.254.1.2.1.1.8 | TruthValue | read-create | current |
| cslbxServerFarmSlowStart OBJECT-TYPE This object specifies that the connections to this serverfarm to be in slow start mode. In an environment that uses weighted least connections load balancing, a real server that is placed in service initially has no connections, and could therefore be assigned so many new connections that it becomes overloaded. To prevent such an overload, the slow start feature controls the number of new connections that are directed to a real server that has just been placed in service. This object is applicable if value of slbServerFarmPredictor is 'leastConns'. | 1.3.6.1.4.1.9.9.254.1.2.1.1.9 | Unsigned32 | read-create | current |
| cslbxServerFarmHashHeaderName OBJECT-TYPE This object specifies the HTTP header name. This object is applicable only if the value of slbServerFarmPredictor is 'headerHash'. Following set of Header Name values are supported for this object: Accept Accept-Charset Accept-Encoding Accept-Language Authorization Cache-Control Connection Content-MD5 Expect, From, Host, If-Match Pragma, Referrer, Transfer-Encoding User-Agent, Via. | 1.3.6.1.4.1.9.9.254.1.2.1.1.10 | SnmpAdminString (SIZE(0..255)) | read-create | current |
| cslbxServerFarmHashCookieName OBJECT-TYPE This object is used for configuring the HTTP Cookie Name. This object is applicable only if the value of slbSererFarmPredictor is 'cookieHash'. | 1.3.6.1.4.1.9.9.254.1.2.1.1.11 | SnmpAdminString (SIZE(0..255)) | read-create | current |
| cslbxServerFarmUrlPatternBegin OBJECT-TYPE The sub-string within the URL string at which to start the hashing operation. The hash result will be used in the server farm with predictor 'urlHash'(slbServerFarmPredictor = 'urlHash'). An empty string indicates hashing should start from the beginning of the URL. | 1.3.6.1.4.1.9.9.254.1.2.1.1.12 | SnmpAdminString (SIZE(0..255)) | read-create | current |
| cslbxServerFarmUrlPatternEnd OBJECT-TYPE The sub-string within the URL string at which to end the hashing operation. The hash result will be used in the server farm with predictor 'urlHash'(slbServerFarmPredictor = 'urlHash'). An empty string indicates hashing should stop at the end of the URL. | 1.3.6.1.4.1.9.9.254.1.2.1.1.13 | SnmpAdminString (SIZE(0..64)) | read-create | current |
| cslbxServerFarmDescription OBJECT-TYPE This object is used for configuring the description of the server farm. | 1.3.6.1.4.1.9.9.254.1.2.1.1.14 | SnmpAdminString (SIZE(0..64)) | read-create | current |
| cslbxServerFarmType OBJECT-TYPE This object identifies the type of the serverfarm. The possible values are : redirect(1): Specifies that this server farm is just used for redirecting traffic to new virtual server equivalent. host (2): Specifies typical server farm offering services. This object cannot be changed when the slbServerFarmRowStatus value is 'active'. | 1.3.6.1.4.1.9.9.254.1.2.1.1.15 | INTEGER {redirect(1), host(2)} | read-create | current |
| cslbxServerFarmState OBJECT-TYPE This object identifies the state of the serverfarm. The possible values are : active (1): Specifies that the serverfarm state is active. A serverfarm will be in the active state when atleast one of the realservers configured in this serverfarm is operationaly up and running. inactive(2): Specifies that the serverfarm state is inactive. A serverfarm will be in the inactive state when none of the realservers configured in this serverfarm is operationaly up and running. | 1.3.6.1.4.1.9.9.254.1.2.1.1.16 | INTEGER {active(1), inactive(2)} | read-only | current |
| cslbxRedirectSvrTable OBJECT-TYPE A table of HTTP redirect servers. Entry attributes may be modified regardless of the value of cslbxRedirectSvrState. | 1.3.6.1.4.1.9.9.254.1.2.2 | not-accessible | current | |
| cslbxRedirectSvrTableEntry OBJECT-TYPE Information about a particular HTTP redirect virtual server in a particular server farm served by a particular local SLB entity. | 1.3.6.1.4.1.9.9.254.1.2.2.1 | not-accessible | current | |
| cslbxRedirectSvrFarmName OBJECT-TYPE Redirect Server's server farm name. | 1.3.6.1.4.1.9.9.254.1.2.2.1.1 | SlbServerString | not-accessible | current |
| cslbxRedirectSvrName OBJECT-TYPE The name of the Redirect Server | 1.3.6.1.4.1.9.9.254.1.2.2.1.2 | SlbServerString | not-accessible | current |
| cslbxRedirectSvrRelocationStr OBJECT-TYPE The relocation URL string sent in the reply of the Redirect Server. | 1.3.6.1.4.1.9.9.254.1.2.2.1.3 | SlbUrlString | read-create | current |
| cslbxRedirectSvrBackupString OBJECT-TYPE The backup string sent in the reply of the Redirect Server when the associated real server is disabled. | 1.3.6.1.4.1.9.9.254.1.2.2.1.4 | SlbUrlString | read-create | current |
| cslbxRedirectSvrRedirectCode OBJECT-TYPE The HTTP response code sent in the reply by the Redirect Server. | 1.3.6.1.4.1.9.9.254.1.2.2.1.5 | Unsigned32 | read-create | current |
| cslbxRedirectSvrRedirectPort OBJECT-TYPE The TCP port in the HTTP response sent by the Redirect Server. Instead of the original HTTP port (80), the Redirect Server can tell the client to use a different port (like HTTPS) when connection to the redirected URL destination. | 1.3.6.1.4.1.9.9.254.1.2.2.1.6 | CiscoPort | read-create | current |
| cslbxRedirectSvrState OBJECT-TYPE The current state of the Redirect Server. | 1.3.6.1.4.1.9.9.254.1.2.2.1.7 | SlbRealServerState | read-create | current |
| cslbxRedirectSvrNumberOfConns OBJECT-TYPE The number TCP and UDP connections currently open on this Redirect Server. | 1.3.6.1.4.1.9.9.254.1.2.2.1.8 | Gauge32 | read-only | current |
| cslbxRedirectSvrMaxConns OBJECT-TYPE The maximum number of concurrent open connections the SLB will allow on this Redirect Server. | 1.3.6.1.4.1.9.9.254.1.2.2.1.9 | Unsigned32 | read-create | current |
| cslbxRedirectSvrAdminWeight OBJECT-TYPE The user configured weight of the Redirect Server for the load-balancing algorithms. A weight of zero indicates that no new connections will be assigned to this Redirect Server. Higher weight values indicate to the load-balancing algorithms a higher availability of this Redirect Server to accept more work. | 1.3.6.1.4.1.9.9.254.1.2.2.1.10 | Unsigned32 (0..65535) | read-create | current |
| cslbxRedirectSvrOperWeight OBJECT-TYPE The actual operating weight of the Redirect Server used by the load-balancing algorithms. This can be adjusted dynamically by DFP. A weight of zero indicates that no new connections will be assigned to this Redirect Server. Higher weight values indicate to the load-balancing algorithms a higher availability of this Redirect Server to accept more work. | 1.3.6.1.4.1.9.9.254.1.2.2.1.11 | Gauge32 | read-only | current |
| cslbxRedirectSvrMetric OBJECT-TYPE The value used by the least connections load-balancing algorithm. It is the number of connections divided by the actual operating weight. New connections will be given to the server with the smaller metric. | 1.3.6.1.4.1.9.9.254.1.2.2.1.12 | Unsigned32 | read-only | current |
| cslbxRedirectSvrTotalConns OBJECT-TYPE The total number of connections assigned to this Redirect Server since this server was configured. | 1.3.6.1.4.1.9.9.254.1.2.2.1.13 | Counter32 | read-only | current |
| cslbxRedirectSvrHCTotalConns OBJECT-TYPE The total number of connections assigned to this Redirect Server since this server was configured. This is the 64-bit version of cslbxRedirectSvrTotalConnections. | 1.3.6.1.4.1.9.9.254.1.2.2.1.14 | Counter64 | read-only | current |
| cslbxRedirectSvrRowStatus OBJECT-TYPE The object used by a management station to create or delete the row entry in cslbxRedirectSvrTable following the RowStatus textual convention. | 1.3.6.1.4.1.9.9.254.1.2.2.1.15 | RowStatus | read-create | current |
| cslbxServerFarmProbeTable OBJECT-TYPE This is a table of probes in the server farms. | 1.3.6.1.4.1.9.9.254.1.2.3 | not-accessible | current | |
| cslbxServerFarmProbeTableEntry OBJECT-TYPE Information about a particular probe associated with a particular server farm, served by a particular local SLB entity. | 1.3.6.1.4.1.9.9.254.1.2.3.1 | not-accessible | current | |
| cslbxServerFarmProbeFarmName OBJECT-TYPE The name the server farm. | 1.3.6.1.4.1.9.9.254.1.2.3.1.1 | SlbServerString | not-accessible | current |
| cslbxServerFarmProbeProbeName OBJECT-TYPE The name of probe. | 1.3.6.1.4.1.9.9.254.1.2.3.1.2 | SlbServerString | not-accessible | current |
| cslbxServerFarmProbeRowStatus OBJECT-TYPE The object is used by a management station to create or delete the row entry in cslbxServerFarmProbeTable following the RowStatus textual convention. | 1.3.6.1.4.1.9.9.254.1.2.3.1.3 | RowStatus | read-create | current |
| cslbxSfarmHttpReturnCodeTable OBJECT-TYPE This table contains the objects that are related to HTTP return code checking in a server farm. | 1.3.6.1.4.1.9.9.254.1.2.4 | not-accessible | current | |
| cslbxSfarmHttpReturnCodeEntry OBJECT-TYPE Information about HTTP return code checking for each server farm. The entry contains information on HTTP Retur Code range, Reset Timer and thresholds for taking actions. | 1.3.6.1.4.1.9.9.254.1.2.4.1 | not-accessible | current | |
| cslbxSfarmHttpRetCodeMinValue OBJECT-TYPE This object is used for configuring the minimum value for HTTP return code checking. When HTTP return code checking is configured, the HTTP responses are monitored for all the balanced HTTP connections. By using return code checking, one can ensure that good content is delivered. | 1.3.6.1.4.1.9.9.254.1.2.4.1.1 | CiscoHTTPResponseStatusCode | not-accessible | current |
| cslbxSfarmHttpRetCodeMaxValue OBJECT-TYPE This object is used for configuring the maximum value for HTTP return error code checking. When HTTP return code checking is configured, the HTTP responses are monitored for all the balanced HTTP connections. By using return code checking, one can ensure that good content is delivered. | 1.3.6.1.4.1.9.9.254.1.2.4.1.2 | CiscoHTTPResponseStatusCode | read-create | current |
| cslbxSfarmHttpRetCodeActionType OBJECT-TYPE This object defines what actions will be taken if the HTTP return error code checking is done. The value 'countAction' increments the statistics of the number of occurrences of return codes received. The value 'logAction' specifies where syslog messages are sent when a threshold is reached. The value 'removeAction' specifies where the syslog messages are sent when a threshold is reached and the server is removed from the service. | 1.3.6.1.4.1.9.9.254.1.2.4.1.3 | SlbProbeAction | read-create | current |
| cslbxSfarmHttpRetCodeThreshold OBJECT-TYPE This object is used for configuring the number of return code occurrences before the action specified in cslbxServerFarmRetCodeActionType is taken. This object is applicable only if the value of cslbxServerFarmRetCodeActionType is 'logAction' or 'removeAction'. | 1.3.6.1.4.1.9.9.254.1.2.4.1.4 | Unsigned32 | read-create | current |
| cslbxSfarmHttpRetCodeResetTimer OBJECT-TYPE The wait time interval before the processing can resume. This object is applicable if the value of This object is applicable only if the value of cslbxServerFarmRetCodeActionType is 'logAction' or 'removeAction'. | 1.3.6.1.4.1.9.9.254.1.2.4.1.5 | TimeInterval | read-create | current |
| cslbxSfarmHttpRetCodeStorageType OBJECT-TYPE The storage type for this conceptual row. | 1.3.6.1.4.1.9.9.254.1.2.4.1.6 | StorageType | read-create | current |
| cslbxSfarmHttpRetCodeRowStatus OBJECT-TYPE The object is used for adding/deleting entries in the table. An entry MUST NOT exist in the active state unless all objects in the entry have an appropriate value, as described in the description clause for each writable object. This object may be modified if the associated instance of this object is equal to active(1), notInService(2), or notReady(3). All other writable objects may be modified if the associated instance of this object is equal to notInService(2) or notReady(3). | 1.3.6.1.4.1.9.9.254.1.2.4.1.7 | RowStatus | read-create | current |
| cslbxServerFarmStatsTable OBJECT-TYPE This table contains the statistics of server farms | 1.3.6.1.4.1.9.9.254.1.2.5 | not-accessible | current | |
| cslbxServerFarmStatsEntry OBJECT-TYPE An entry in cslbxServerFarmStatsTable. Each entry contains statistical information such as current connections, total connections etc. | 1.3.6.1.4.1.9.9.254.1.2.5.1 | not-accessible | current | |
| cslbxServerFarmTotalConns OBJECT-TYPE The total number of connections loadbalanced to all the real servers associated with this server farm. | 1.3.6.1.4.1.9.9.254.1.2.5.1.1 | Counter64 | read-only | current |
| cslbxServerFarmCurrConns OBJECT-TYPE The total number of active connections loadbalanced to all the real servers associated with this server farm. | 1.3.6.1.4.1.9.9.254.1.2.5.1.2 | Counter64 | read-only | current |
| cslbxServerFarmFailedConns OBJECT-TYPE The total number of connections failed to all the real servers associated with this server farm. Failure reasons can be Maximum connections reached, Real Server down etc. | 1.3.6.1.4.1.9.9.254.1.2.5.1.3 | Counter64 | read-only | current |
| cslbxServerFarmNumOfTimeFailOvers OBJECT-TYPE This object contains the value of the number of times a serverfarm has failed over. The failed over state is specified by the cslbxServerFarmState object with a value of inactive(2). | 1.3.6.1.4.1.9.9.254.1.2.5.1.4 | Counter32 | read-only | current |
| cslbxServerFarmNumOfTimeBkInServs OBJECT-TYPE This object contains the value of the number of times a serverfarm has returned back to inservice after failing over. The inservice state is specified by the cslbxServerFarmState object with a value of active(1). | 1.3.6.1.4.1.9.9.254.1.2.5.1.5 | Counter32 | read-only | current |
| cslbxClientNatPools OBJECT-IDENTITY | 1.3.6.1.4.1.9.9.254.1.3 | |||
| cslbxNatPoolTable OBJECT-TYPE A table of IP NAT pools. | 1.3.6.1.4.1.9.9.254.1.3.1 | not-accessible | current | |
| cslbxNatPoolEntry OBJECT-TYPE Information about a particular NAT pool served by a particular local SLB entity. | 1.3.6.1.4.1.9.9.254.1.3.1.1 | not-accessible | current | |
| cslbxNatPoolName OBJECT-TYPE The name of the NAT pool. | 1.3.6.1.4.1.9.9.254.1.3.1.1.1 | SlbServerString | not-accessible | current |
| cslbxNatPoolStartAddressType OBJECT-TYPE The type of address stored in cslbxNatPoolStartAddress. | 1.3.6.1.4.1.9.9.254.1.3.1.1.2 | InetAddressType | read-create | current |
| cslbxNatPoolStartAddress OBJECT-TYPE The first IP address in this NAT pool. | 1.3.6.1.4.1.9.9.254.1.3.1.1.3 | InetAddress (SIZE(0..20)) | read-create | current |
| cslbxNatPoolEndAddressType OBJECT-TYPE The type of address stored in cslbxNatPoolEndAddress. | 1.3.6.1.4.1.9.9.254.1.3.1.1.4 | InetAddressType | read-create | current |
| cslbxNatPoolEndAddress OBJECT-TYPE The last IP address in this NAT pool. | 1.3.6.1.4.1.9.9.254.1.3.1.1.5 | InetAddress (SIZE(0..20)) | read-create | current |
| cslbxNatPoolRowStatus OBJECT-TYPE The object is used by a management station to create or delete the row entry in cslbxNatPoolTable following the RowStatus textual convention. | 1.3.6.1.4.1.9.9.254.1.3.1.1.6 | RowStatus | read-create | current |
| cslbxStickyObjects OBJECT-IDENTITY | 1.3.6.1.4.1.9.9.254.1.4 | |||
| cslbxStickyGroupTable OBJECT-TYPE A table of Sticky Groups. | 1.3.6.1.4.1.9.9.254.1.4.1 | not-accessible | current | |
| cslbxStickyGroupEntry OBJECT-TYPE Information about a particular Sticky Group served by a particular local SLB entity. | 1.3.6.1.4.1.9.9.254.1.4.1.1 | not-accessible | current | |
| cslbxStickyGroupId OBJECT-TYPE This Sticky Group's ID. | 1.3.6.1.4.1.9.9.254.1.4.1.1.1 | Unsigned32 | not-accessible | current |
| cslbxStickyGroupType OBJECT-TYPE This Sticky Group's type. | 1.3.6.1.4.1.9.9.254.1.4.1.1.2 | SlbStickyType | read-create | current |
| cslbxStickyGroupMaskAddressType OBJECT-TYPE The type of address stored in cslbxStickyGroupMaskAddress. | 1.3.6.1.4.1.9.9.254.1.4.1.1.3 | InetAddressType | read-create | current |
| cslbxStickyGroupMaskAddress OBJECT-TYPE The network mask used with the ipSticky type. The source IP address will be AND'ed with this mask before inserting into the sticky database. | 1.3.6.1.4.1.9.9.254.1.4.1.1.4 | InetAddress (SIZE(0..20)) | read-create | current |
| cslbxStickyGroupCookieName OBJECT-TYPE The HTTP Cookie name used with httpCookieSticky type. | 1.3.6.1.4.1.9.9.254.1.4.1.1.5 | SnmpAdminString (SIZE(0..64)) | read-create | current |
| cslbxStickyGroupStickyTimer OBJECT-TYPE The length of time a Sticky Group may exist before being automatically removed. | 1.3.6.1.4.1.9.9.254.1.4.1.1.6 | Unsigned32 | read-create | current |
| cslbxStickyGroupRowStatus OBJECT-TYPE The row status is used by a management station to create or delete the row entry in cslbxStickyGroupTable following the RowStatus textual convention. | 1.3.6.1.4.1.9.9.254.1.4.1.1.7 | RowStatus | read-create | current |
| cslbxStickyGroupHeaderName OBJECT-TYPE This object identifies the HTTP Header name. This is applicable only if the value of cslbxStickyGroupType is 'httpHeaderSticky'. | 1.3.6.1.4.1.9.9.254.1.4.1.1.8 | SnmpAdminString (SIZE(0..64)) | read-create | current |
| cslbxStickyGroupTimeoutActiveConn OBJECT-TYPE This object specifies whether the sticky entries to be timed out if active connections exist once the sticky timer expires. If set to 'true', sticky entries will timeout even if connections exist. If set to 'false' sticky entries will not time out if there exist any active connections. | 1.3.6.1.4.1.9.9.254.1.4.1.1.9 | TruthValue | read-create | current |
| cslbxStickyGroupReplicate OBJECT-TYPE This object enables/disables sticky replication in a redundant configuration. | 1.3.6.1.4.1.9.9.254.1.4.1.1.10 | TruthValue | read-create | current |
| cslbxStickyObjectTable OBJECT-TYPE Table of existing sticky entries. Sticky entries allow related connections to be sent to the same real server on a per client basis. This table supports the Content Switching Module (CSM) feature which is not supported by the slbStickyObjectTable in the CISCO-SLB-MIB. | 1.3.6.1.4.1.9.9.254.1.4.2 | not-accessible | current | |
| cslbxStickyObjectTableEntry OBJECT-TYPE Information about a particular sticky entry by a particular local SLB entity. | 1.3.6.1.4.1.9.9.254.1.4.2.1 | not-accessible | current | |
| cslbxStickyObjectIndex OBJECT-TYPE The sticky entry index. | 1.3.6.1.4.1.9.9.254.1.4.2.1.1 | Unsigned32 | not-accessible | current |
| cslbxStickyObjectGroupId OBJECT-TYPE The group ID associated with this sticky entry. | 1.3.6.1.4.1.9.9.254.1.4.2.1.2 | Unsigned32 | read-only | current |
| cslbxStickyObjectType OBJECT-TYPE The sticky type of this sticky entry. | 1.3.6.1.4.1.9.9.254.1.4.2.1.3 | SlbStickyType | read-only | current |
| cslbxStickyObjectSourceInfo OBJECT-TYPE The client IP address or hashed of source data used created this sticky entry. | 1.3.6.1.4.1.9.9.254.1.4.2.1.4 | Unsigned32 | read-only | current |
| cslbxStickyObjectRealAddressType OBJECT-TYPE The type of address stored in cslbxStickyObjectRealAddress. | 1.3.6.1.4.1.9.9.254.1.4.2.1.5 | InetAddressType | read-only | current |
| cslbxStickyObjectRealAddress OBJECT-TYPE The real server IP address selected for all clients matched this sticky entry. | 1.3.6.1.4.1.9.9.254.1.4.2.1.6 | InetAddress (SIZE(0..20)) | read-only | current |
| cslbxStickyObjectRealPort OBJECT-TYPE The port number of the real server associated with this sticky entry. | 1.3.6.1.4.1.9.9.254.1.4.2.1.7 | CiscoPort | read-only | current |
| cslbxStickyGroupExtTable OBJECT-TYPE An extension to cslbxStickyGroupTable. This table contains additional objects related to sticky group. | 1.3.6.1.4.1.9.9.254.1.4.3 | not-accessible | current | |
| cslbxStickyGroupExtEntry OBJECT-TYPE An entry in this table. Each entry contains offset, value, secondary cookie etc. | 1.3.6.1.4.1.9.9.254.1.4.3.1 | not-accessible | current | |
| cslbxStickyOffset OBJECT-TYPE This object represents the offset value to specify portion of the cookie/header/SSL-ID to use to 'stick' connections. This object is applicable to following values of cslbxStickyGroupType: 'httpCookieSticky' 'sslSticky' 'httpHeaderSticky'. | 1.3.6.1.4.1.9.9.254.1.4.3.1.1 | Unsigned32 | read-create | current |
| cslbxStickyLength OBJECT-TYPE This object represents the length of the value specified in cslbxStickyOffset to maintain sticky connections. | 1.3.6.1.4.1.9.9.254.1.4.3.1.2 | Unsigned32 | read-create | current |
| cslbxStickyCookieSecondary OBJECT-TYPE This object is used for configuring the alternate cookie name appearing in URL string to stick a connection. | 1.3.6.1.4.1.9.9.254.1.4.3.1.3 | SnmpAdminString | read-create | current |
| cslbxStickyCookieInsertEnable OBJECT-TYPE This object enables/disables inserting a cookie. The cookie insert feature enables the device to insert a cookie in the 'Set-Cookie' header in the HTTP response. | 1.3.6.1.4.1.9.9.254.1.4.3.1.4 | TruthValue | read-create | current |
| cslbxStickyCookieExpiryDate OBJECT-TYPE This object identifies the valid life time of the cookie. This is the value sent in 'expires=' attribute of 'Set-Cookie' header in the HTTP response. | 1.3.6.1.4.1.9.9.254.1.4.3.1.5 | DateAndTime | read-create | current |
| cslbxMaps OBJECT-IDENTITY | 1.3.6.1.4.1.9.9.254.1.5 | |||
| cslbxMapTable OBJECT-TYPE Table of SLB map groups. A SLB map group contains a list of matching criteria. | 1.3.6.1.4.1.9.9.254.1.5.1 | not-accessible | current | |
| cslbxMapTableEntry OBJECT-TYPE Information about a particular map group, served by a particular local SLB entity. | 1.3.6.1.4.1.9.9.254.1.5.1.1 | not-accessible | current | |
| cslbxMapName OBJECT-TYPE The name of the map group. | 1.3.6.1.4.1.9.9.254.1.5.1.1.1 | SlbServerString | not-accessible | current |
| cslbxMapType OBJECT-TYPE The type of the map group. | 1.3.6.1.4.1.9.9.254.1.5.1.1.2 | SlbMapType | read-create | current |
| cslbxMapRowStatus OBJECT-TYPE The object used by a management station to create or delete the row entry in cslbxMapTable following the RowStatus textual convention. | 1.3.6.1.4.1.9.9.254.1.5.1.1.3 | RowStatus | read-create | current |
| cslbxHttpExpressionTable OBJECT-TYPE Table of HTTP field and regular expressions. | 1.3.6.1.4.1.9.9.254.1.5.2 | not-accessible | current | |
| cslbxHttpExpressionTableEntry OBJECT-TYPE Information about a particular HTTP field and the regular expression in a particular map group, served by a particular local SLB entity. | 1.3.6.1.4.1.9.9.254.1.5.2.1 | not-accessible | current | |
| cslbxHttpExpressionMapName OBJECT-TYPE The name of the Map containing this entry. This entry is only valid for cslbxMapType of: 'urlMap', 'cookieMap', or 'headerMap'. | 1.3.6.1.4.1.9.9.254.1.5.2.1.1 | SlbServerString | not-accessible | current |
| cslbxHttpExpressionIndex OBJECT-TYPE The index of this item within a Map group. | 1.3.6.1.4.1.9.9.254.1.5.2.1.2 | Unsigned32 | not-accessible | current |
| cslbxHttpExpressionFieldName OBJECT-TYPE The HTTP Cookie Name or Header Name. The SLB device will parse the HTTP packets for this field name. This object is not used for the Map type of 'urlMap', since there is only one HTTP URL field in a HTTP request. | 1.3.6.1.4.1.9.9.254.1.5.2.1.3 | SlbRegularExpression | read-create | current |
| cslbxHttpExpressionValue OBJECT-TYPE The regular expression to match against a HTTP URL, Cookie, or Header field. | 1.3.6.1.4.1.9.9.254.1.5.2.1.4 | SlbRegularExpression | read-create | current |
| cslbxHttpExpressionRowStatus OBJECT-TYPE The object used by a management station to create or delete the row entry in cslbxHttpExpressionTable following the RowStatus textual convention. | 1.3.6.1.4.1.9.9.254.1.5.2.1.5 | RowStatus | read-create | current |
| cslbxHttpExpressionRequestMethod OBJECT-TYPE The expression string to match against the HTTP request method type string. Some of the standard request methods are: 'GET', 'HEAD', 'POST', 'PUT', 'DELETE', 'TRACE', 'CONNECT', 'OPTIONS'. | 1.3.6.1.4.1.9.9.254.1.5.2.1.6 | SnmpAdminString | read-create | current |
| cslbxHttpReturnCodeTable OBJECT-TYPE Table of rules associating ReturnCode maps and intervals of HTTP return codes with actions to perform when particular HTTP return codes are seen in the data stream. | 1.3.6.1.4.1.9.9.254.1.5.3 | not-accessible | current | |
| cslbxHttpReturnCodeEntry OBJECT-TYPE Information about the particular action rule in a particular map of type 'returnCodeMap' dealing with a particular range of HTTP return codes, served by a particular local SLB entity. | 1.3.6.1.4.1.9.9.254.1.5.3.1 | not-accessible | current | |
| cslbxHttpReturnCodeMapName OBJECT-TYPE The name of the ReturnCode map containing this action rule. | 1.3.6.1.4.1.9.9.254.1.5.3.1.1 | SlbServerString | not-accessible | current |
| cslbxHttpReturnCodeMinValue OBJECT-TYPE The minimum HTTP return code that this rule matches. | 1.3.6.1.4.1.9.9.254.1.5.3.1.2 | Unsigned32 | not-accessible | current |
| cslbxHttpReturnCodeMaxValue OBJECT-TYPE The maximum HTTP return code that this rule matches. | 1.3.6.1.4.1.9.9.254.1.5.3.1.3 | Unsigned32 | read-create | current |
| cslbxHttpReturnCodeThreshold OBJECT-TYPE The number of times the return code seen before the action taking place. Once HTTP return codes between cslbxHttpReturnCodeMinValue and cslbxHttpReturnCodeMaxValue, inclusive, have been seen at least cslbxHttpReturnCodeThreshold times, the action specified by cslbxHttpReturnCodeType is taken. The value of zero indicates this object has not been set. | 1.3.6.1.4.1.9.9.254.1.5.3.1.4 | Unsigned32 | read-create | current |
| cslbxHttpReturnCodeResetTimer OBJECT-TYPE The time interval before resetting the state of the real server. Once the action associated with this rule is taken, the associated real server state is reset after cslbxHttpReturnCodeResetTimer. The value of zero indicates the state will never reset. | 1.3.6.1.4.1.9.9.254.1.5.3.1.5 | TimeInterval | read-create | current |
| cslbxHttpReturnCodeType OBJECT-TYPE The action associated with this rule. | 1.3.6.1.4.1.9.9.254.1.5.3.1.6 | SlbProbeAction | read-create | current |
| cslbxHttpReturnCodeRowStatus OBJECT-TYPE The object used by a management station to create or delete the row entry in cslbxHttpReturnCodeTable following the RowStatus textual convention. | 1.3.6.1.4.1.9.9.254.1.5.3.1.7 | RowStatus | read-create | current |
| cslbxServerProbes OBJECT-IDENTITY | 1.3.6.1.4.1.9.9.254.1.6 | |||
| cslbxPolicies OBJECT-IDENTITY | 1.3.6.1.4.1.9.9.254.1.7 | |||
| cslbxPolicyTable OBJECT-TYPE Table of load balancing policies. | 1.3.6.1.4.1.9.9.254.1.7.1 | not-accessible | current | |
| cslbxPolicyTableEntry OBJECT-TYPE Information about a particular policy configured on a particular local SLB entity. | 1.3.6.1.4.1.9.9.254.1.7.1.1 | not-accessible | current | |
| cslbxPolicyName OBJECT-TYPE The name of the policy. | 1.3.6.1.4.1.9.9.254.1.7.1.1.1 | SlbServerString | not-accessible | current |
| cslbxPolicyClientGroupNumber OBJECT-TYPE The group number of the associated client access list. | 1.3.6.1.4.1.9.9.254.1.7.1.1.2 | Unsigned32 | read-create | current |
| cslbxPolicyClientGroupName OBJECT-TYPE The group name of the associated client access list. | 1.3.6.1.4.1.9.9.254.1.7.1.1.3 | SlbObjectNameString | read-create | current |
| cslbxPolicyUrlMap OBJECT-TYPE The name of the associated URL map. | 1.3.6.1.4.1.9.9.254.1.7.1.1.4 | SlbObjectNameString | read-create | current |
| cslbxPolicyCookieMap OBJECT-TYPE The name of the associated Cookie map. | 1.3.6.1.4.1.9.9.254.1.7.1.1.5 | SlbObjectNameString | read-create | current |
| cslbxPolicyGenericHeaderMap OBJECT-TYPE The name of the associated generic HTTP header map. | 1.3.6.1.4.1.9.9.254.1.7.1.1.6 | SlbObjectNameString | read-create | current |
| cslbxPolicyStickyGroup OBJECT-TYPE The number of the associated sticky group. The value '0' indicates no sticky group is associated. | 1.3.6.1.4.1.9.9.254.1.7.1.1.7 | Unsigned32 | read-create | current |
| cslbxPolicyDscpEnabled OBJECT-TYPE The current setting for enabling TOS byte stamping. If this is set, the TCP TOS (type-of-service) byte of traffic matching this policy will be stamped with the cslbxPolicyDscpStamping value. | 1.3.6.1.4.1.9.9.254.1.7.1.1.8 | TruthValue | read-create | current |
| cslbxPolicyDscpStamping OBJECT-TYPE The value to be stamped over the TCP TOS (type-of-service) byte. | 1.3.6.1.4.1.9.9.254.1.7.1.1.9 | Unsigned32 | read-create | current |
| cslbxPolicyFarmName OBJECT-TYPE The server farm to which a connection matching this policy may be assigned. | 1.3.6.1.4.1.9.9.254.1.7.1.1.10 | SlbObjectNameString | read-create | current |
| cslbxPolicyRowStatus OBJECT-TYPE The object used by a management station to create or delete the row entry in cslbxPolicyTable following the RowStatus textual convention. | 1.3.6.1.4.1.9.9.254.1.7.1.1.11 | RowStatus | read-create | current |
| cslbxPolicyBackupFarmName OBJECT-TYPE The backup server farm to be used in case the primary server farm has no active server. | 1.3.6.1.4.1.9.9.254.1.7.1.1.12 | SlbObjectNameString | read-create | current |
| cslbxPolicyBkFarmStickyEnabled OBJECT-TYPE The current setting for enabling sticky option on the backup server farm. | 1.3.6.1.4.1.9.9.254.1.7.1.1.13 | TruthValue | read-create | current |
| cslbxPolicyReverseStickyGroup OBJECT-TYPE The group number of the sticky group to be used when inserting reverse sticky entry. The value of zero indicates that reverse sticky is not enabled. | 1.3.6.1.4.1.9.9.254.1.7.1.1.14 | Unsigned32 (0..65535) | read-create | current |
| cslbxVirtualServers OBJECT-IDENTITY | 1.3.6.1.4.1.9.9.254.1.8 | |||
| cslbxVirtualServerTable OBJECT-TYPE Table of virtual servers. It contains additional configurations for the slbVirtualServerTable. | 1.3.6.1.4.1.9.9.254.1.8.1 | not-accessible | current | |
| cslbxVirtualServerTableEntry OBJECT-TYPE Additional configuration information about a particular virtual server served by a particular local SLB entity. | 1.3.6.1.4.1.9.9.254.1.8.1.1 | not-accessible | current | |
| cslbxVirtualAdvertiseOption OBJECT-TYPE The advertise option for the virtual IP address. This value and the cslbxVirtualAdvertise value will determine whether and when to add the virtual IP address into the static route table. | 1.3.6.1.4.1.9.9.254.1.8.1.1.1 | SlbIpAdvertise | read-create | current |
| cslbxVirtualVlanId OBJECT-TYPE The VLAN ID associated with the virtual server. Only traffic from this VLAN may match the virtual server. By default (value of zero), a virtual server may match traffic from any VLAN. | 1.3.6.1.4.1.9.9.254.1.8.1.1.2 | Unsigned32 | read-create | current |
| cslbxVirtualReplicationMode OBJECT-TYPE Specifies which information will be replicated from the active device to a standby device in a fault tolerant configuration. | 1.3.6.1.4.1.9.9.254.1.8.1.1.3 | SlbReplicationMode | read-create | current |
| cslbxVirtualPendingTimer OBJECT-TYPE The length of time before a connection in the pending state gets torn down. | 1.3.6.1.4.1.9.9.254.1.8.1.1.4 | TimeInterval | read-create | current |
| cslbxVirtualL7MaxParseLength OBJECT-TYPE The maximum number of characters to be parsed for Layer 7 (application level) specific information. If HTTP processing is required on an HTTP request or response with HTTP header length greater than cslbxVirtualL7MaxParseLength, the connection will be rejected and reset. | 1.3.6.1.4.1.9.9.254.1.8.1.1.5 | Unsigned32 | read-create | current |
| cslbxVirtualHttpPersistenceSlb OBJECT-TYPE The setting for load balancing each request in a HTTP 1.1 persistence connection. If set to 'true', the SLB device may direct successive HTTP requests in the same TCP connection to different destinations. | 1.3.6.1.4.1.9.9.254.1.8.1.1.6 | TruthValue | read-create | current |
| cslbxVirtualURLHashBeginString OBJECT-TYPE The sub-string within the URL string at which to start the hashing operation. The hash result will be used in the server farm with predictor 'urlHash'. An empty string indicates hashing should begin at the beginning of the URL. | 1.3.6.1.4.1.9.9.254.1.8.1.1.7 | SlbRegularExpression | read-create | current |
| cslbxVirtualURLHashEndString OBJECT-TYPE The sub-string within the URL string at which to end the hashing operation. The hash result will be used in the server farm with predictor 'urlHash'. An empty string indicates hashing should end at the end of the URL. | 1.3.6.1.4.1.9.9.254.1.8.1.1.8 | SlbRegularExpression | read-create | current |
| cslbxVirtualMaxConns OBJECT-TYPE The maximum number of connections can be concurrently opened to this virtual server. The value of zero indicates that there is no upper limit of connections to this virtual server. | 1.3.6.1.4.1.9.9.254.1.8.1.1.9 | Unsigned32 (0..4294967295) | read-create | current |
| cslbxVirtualOwnerName OBJECT-TYPE The name of the associated Owner. | 1.3.6.1.4.1.9.9.254.1.8.1.1.10 | SlbObjectNameString | read-create | current |
| cslbxVirtualFlowMode OBJECT-TYPE The direction of the traffic flowing through the SLB device. | 1.3.6.1.4.1.9.9.254.1.8.1.1.11 | SlbDirectionalMode | read-create | current |
| cslbxVirtualSSLStickyOffset OBJECT-TYPE The number of bytes offset into the SSL session ID where the sticky data started. | 1.3.6.1.4.1.9.9.254.1.8.1.1.12 | Unsigned32 (0..127) | read-create | current |
| cslbxVirtualSSLStickyLength OBJECT-TYPE The number of bytes of SSL session ID to be used as sticky data. | 1.3.6.1.4.1.9.9.254.1.8.1.1.13 | Unsigned32 (0..128) | read-create | current |
| cslbxVirtualReverseStickyGroup OBJECT-TYPE The group number of the sticky group to be used when inserting reverse sticky entry. The value of zero indicates that reverse sticky is not enabled. | 1.3.6.1.4.1.9.9.254.1.8.1.1.14 | Unsigned32 (0..65535) | read-create | current |
| cslbxVirtualBackupFarmName OBJECT-TYPE The backup server farm to be used in case the primary server farm has no active server. | 1.3.6.1.4.1.9.9.254.1.8.1.1.15 | SlbObjectNameString | read-create | current |
| cslbxVirtualBkFarmStickyEnabled OBJECT-TYPE The current setting for enabling sticky option on the backup server farm. | 1.3.6.1.4.1.9.9.254.1.8.1.1.16 | TruthValue | read-create | current |
| cslbxRuleTable OBJECT-TYPE This table provides the function to apply the policies to the virtual servers. Using different policies, the SLB can direct traffic matching different patterns to different server farms. | 1.3.6.1.4.1.9.9.254.1.8.2 | not-accessible | current | |
| cslbxRuleEntry OBJECT-TYPE This entry links one SLB policy to a virtual server. If the status of associated cslbxRuleVirtualServerName or the status of associated cslbxRulePolicyName is not active, the status of this entry cannot be active. | 1.3.6.1.4.1.9.9.254.1.8.2.1 | not-accessible | current | |
| cslbxRuleVirtualServerName OBJECT-TYPE The name of the associated virtual server. | 1.3.6.1.4.1.9.9.254.1.8.2.1.1 | SlbServerString | not-accessible | current |
| cslbxRulePolicyName OBJECT-TYPE The name of the associated SLB policy. | 1.3.6.1.4.1.9.9.254.1.8.2.1.2 | SlbServerString | not-accessible | current |
| cslbxRuleCurrentConnections OBJECT-TYPE The current number of open connections that matched this SLB policy. | 1.3.6.1.4.1.9.9.254.1.8.2.1.3 | Gauge32 | read-only | current |
| cslbxRuleTotalConnections OBJECT-TYPE The total number of connections that ever matched this SLB policy. | 1.3.6.1.4.1.9.9.254.1.8.2.1.4 | Counter32 | read-only | current |
| cslbxRuleHCTotalConnections OBJECT-TYPE The total number of connections that ever matched this SLB policy. This is the 64-bit version of cslbxRuleTotalConnections. | 1.3.6.1.4.1.9.9.254.1.8.2.1.5 | Counter64 | read-only | current |
| cslbxRuleTotalClientPackets OBJECT-TYPE The total number of packets ever sent by the client to the server on a connection that matched this SLB policy. | 1.3.6.1.4.1.9.9.254.1.8.2.1.6 | Counter32 | read-only | current |
| cslbxRuleHCTotalClientPackets OBJECT-TYPE The total number of packets ever sent by the client to the server on a connection that matched this SLB policy. This is the 64-bit version of cslbxRuleTotalClientPackets. | 1.3.6.1.4.1.9.9.254.1.8.2.1.7 | Counter64 | read-only | current |
| cslbxRuleTotalServerPackets OBJECT-TYPE The total number of packets ever sent by the server to the client on a connection that matched this SLB policy. | 1.3.6.1.4.1.9.9.254.1.8.2.1.8 | Counter32 | read-only | current |
| cslbxRuleHCTotalServerPackets OBJECT-TYPE The total number of packets ever sent by the server to the client on a connection that matched this SLB policy. This is the 64-bit version of cslbxRuleTotalServerPackets. | 1.3.6.1.4.1.9.9.254.1.8.2.1.9 | Counter64 | read-only | current |
| cslbxRuleRowStatus OBJECT-TYPE The object used by a management station to create or delete the row entry in cslbxRuleTable following the RowStatus textual convention. | 1.3.6.1.4.1.9.9.254.1.8.2.1.10 | RowStatus | read-create | current |
| cslbxRuleTotalClientOctets OBJECT-TYPE The total number of octets ever sent by the client to the server on a connection that matched this SLB policy. | 1.3.6.1.4.1.9.9.254.1.8.2.1.11 | Counter32 | read-only | current |
| cslbxRuleHCTotalClientOctets OBJECT-TYPE The total number of octets ever sent by the client to the server on a connection that matched this SLB policy. This is the 64-bit version of cslbxRuleTotalClientOctets. | 1.3.6.1.4.1.9.9.254.1.8.2.1.12 | Counter64 | read-only | current |
| cslbxRuleTotalServerOctets OBJECT-TYPE The total number of octets ever sent by the server to the client on a connection that matched this SLB policy. | 1.3.6.1.4.1.9.9.254.1.8.2.1.13 | Counter32 | read-only | current |
| cslbxRuleHCTotalServerOctets OBJECT-TYPE The total number of octets ever sent by the server to the client on a connection that matched this SLB policy. This is the 64-bit version of cslbxRuleTotalServerOctets. | 1.3.6.1.4.1.9.9.254.1.8.2.1.14 | Counter64 | read-only | current |
| cslbxVlans OBJECT-IDENTITY | 1.3.6.1.4.1.9.9.254.1.9 | |||
| cslbxVlanTable OBJECT-TYPE This table provides the configuration of VLANs configured on the SLB. | 1.3.6.1.4.1.9.9.254.1.9.1 | not-accessible | current | |
| cslbxVlanEntry OBJECT-TYPE This entry is for configuring the VLAN on the SLB device. | 1.3.6.1.4.1.9.9.254.1.9.1.1 | not-accessible | current | |
| cslbxVlanId OBJECT-TYPE The 802.1q VLAN ID of this VLAN. | 1.3.6.1.4.1.9.9.254.1.9.1.1.1 | Unsigned32 | not-accessible | current |
| cslbxVlanType OBJECT-TYPE The type of this VLAN. | 1.3.6.1.4.1.9.9.254.1.9.1.1.2 | SlbVlanType | read-create | current |
| cslbxVlanAddressType OBJECT-TYPE The type of address stored in cslbxVlanAddress. | 1.3.6.1.4.1.9.9.254.1.9.1.1.3 | InetAddressType | read-create | current |
| cslbxVlanAddress OBJECT-TYPE The IP address of this VLAN interface. | 1.3.6.1.4.1.9.9.254.1.9.1.1.4 | InetAddress (SIZE(0..20)) | read-create | current |
| cslbxVlanMaskAddressType OBJECT-TYPE The type of address stored in cslbxVlanMaskAddress. | 1.3.6.1.4.1.9.9.254.1.9.1.1.5 | InetAddressType | read-create | current |
| cslbxVlanMaskAddress OBJECT-TYPE The network mask for this VLAN interface. | 1.3.6.1.4.1.9.9.254.1.9.1.1.6 | InetAddress (SIZE(0..20)) | read-create | current |
| cslbxVlanRowStatus OBJECT-TYPE The object is used by a management station to create or delete the row entry in cslbxVlanTable following the RowStatus textual convention. | 1.3.6.1.4.1.9.9.254.1.9.1.1.7 | RowStatus | read-create | current |
| cslbxAliasAddrTable OBJECT-TYPE This table provides the configuration of alias IP addresses on the SLB device. The SLB device will respond to an ARP request for alias IP addresses if the ARP request arrives on the configured VLAN. A given VLAN may be associated with multiple alias IP addresses. | 1.3.6.1.4.1.9.9.254.1.9.2 | not-accessible | current | |
| cslbxAliasAddrEntry OBJECT-TYPE This entry is for configuring an alias IP address on the SLB device. | 1.3.6.1.4.1.9.9.254.1.9.2.1 | not-accessible | current | |
| cslbxAliasAddrVlanId OBJECT-TYPE The VLAN ID associated with this alias address. | 1.3.6.1.4.1.9.9.254.1.9.2.1.1 | Unsigned32 | not-accessible | current |
| cslbxAliasAddrAddressType OBJECT-TYPE The type of address stored in cslbxAliasAddrAddress. | 1.3.6.1.4.1.9.9.254.1.9.2.1.2 | InetAddressType | not-accessible | current |
| cslbxAliasAddrAddress OBJECT-TYPE The alias IP address itself. | 1.3.6.1.4.1.9.9.254.1.9.2.1.3 | InetAddress (SIZE(1..20)) | not-accessible | current |
| cslbxAliasAddrRowStatus OBJECT-TYPE The object is used by a management station to create or delete the row entry in cslbxAliasAddrTable following the RowStatus textual convention. | 1.3.6.1.4.1.9.9.254.1.9.2.1.4 | RowStatus | read-create | current |
| cslbxStaticRouteTable OBJECT-TYPE This table provides the configuration of static routes on the SLB device. | 1.3.6.1.4.1.9.9.254.1.9.3 | not-accessible | current | |
| cslbxStaticRouteEntry OBJECT-TYPE This entry is for configuring the static route used by the SLB device. The SLB device will accept multiple destination gateways for the same route. The SLB should able to pick an active gateway for a given route. In some case, the SLB device can load-balancing among the gateways of the same route. | 1.3.6.1.4.1.9.9.254.1.9.3.1 | not-accessible | current | |
| cslbxStaticRouteVlanId OBJECT-TYPE The VLAN ID associated with this route. | 1.3.6.1.4.1.9.9.254.1.9.3.1.1 | Unsigned32 | not-accessible | current |
| cslbxStaticRouteSubnetAddrType OBJECT-TYPE The type of address stored in cslbxStaticRouteSubnetAddr. | 1.3.6.1.4.1.9.9.254.1.9.3.1.2 | InetAddressType | not-accessible | current |
| cslbxStaticRouteSubnetAddr OBJECT-TYPE The IP subnet of this route. | 1.3.6.1.4.1.9.9.254.1.9.3.1.3 | InetAddress (SIZE(1..20)) | not-accessible | current |
| cslbxStaticRouteMaskAddrType OBJECT-TYPE The type of address stored in cslbxStaticRouteMaskAddr. | 1.3.6.1.4.1.9.9.254.1.9.3.1.4 | InetAddressType | not-accessible | current |
| cslbxStaticRouteMaskAddr OBJECT-TYPE The IP network mask of this route. | 1.3.6.1.4.1.9.9.254.1.9.3.1.5 | InetAddress (SIZE(1..20)) | not-accessible | current |
| cslbxStaticRouteGatewayAddrType OBJECT-TYPE The type of address stored in cslbxStaticRouteGatewayAddr. | 1.3.6.1.4.1.9.9.254.1.9.3.1.6 | InetAddressType | not-accessible | current |
| cslbxStaticRouteGatewayAddr OBJECT-TYPE The IP address of the next hop gateway. | 1.3.6.1.4.1.9.9.254.1.9.3.1.7 | InetAddress (SIZE(1..20)) | not-accessible | current |
| cslbxStaticRouteRowStatus OBJECT-TYPE The object is used by a management station to create or delete the row entry in cslbxStaticRouteTable following the RowStatus textual convention. | 1.3.6.1.4.1.9.9.254.1.9.3.1.8 | RowStatus | read-create | current |
| cslbxFaultTolerance OBJECT-IDENTITY | 1.3.6.1.4.1.9.9.254.1.10 | |||
| cslbxFtTable OBJECT-TYPE Table of Fault Tolerance settings. | 1.3.6.1.4.1.9.9.254.1.10.1 | not-accessible | current | |
| cslbxFtTableEntry OBJECT-TYPE Information about Fault Tolerance settings for a particular local SLB entity. | 1.3.6.1.4.1.9.9.254.1.10.1.1 | not-accessible | current | |
| cslbxFtGroupId OBJECT-TYPE The Fault Tolerance group number. | 1.3.6.1.4.1.9.9.254.1.10.1.1.1 | Unsigned32 | read-create | current |
| cslbxFtVlanId OBJECT-TYPE The VLAN ID used by this Fault Tolerance group. | 1.3.6.1.4.1.9.9.254.1.10.1.1.2 | Unsigned32 | read-create | current |
| cslbxFtPreempt OBJECT-TYPE The preemption setting for this Fault Tolerance group. | 1.3.6.1.4.1.9.9.254.1.10.1.1.3 | TruthValue | read-create | current |
| cslbxFtPriority OBJECT-TYPE The priority value of this SLB device for the Fault Tolerance group. | 1.3.6.1.4.1.9.9.254.1.10.1.1.4 | Unsigned32 | read-create | current |
| cslbxFtHeartBeatTimer OBJECT-TYPE The time interval of sending the keep-alive messages to the peer in the Fault Tolerance group. | 1.3.6.1.4.1.9.9.254.1.10.1.1.5 | TimeInterval | read-create | current |
| cslbxFtFailThreshold OBJECT-TYPE The threshold for failing over to the standby SLB. If a standby SLB device has not received a keep-alive message from an active SLB device within cslbxFtFailThreshold consecutive periods of length cslbxFtHeartBeatTimer, the standby will become active. | 1.3.6.1.4.1.9.9.254.1.10.1.1.6 | Unsigned32 | read-create | current |
| cslbxFtState OBJECT-TYPE The current Fault Tolerance state of this SLB device. | 1.3.6.1.4.1.9.9.254.1.10.1.1.7 | SlbFtState | read-only | current |
| cslbxFtStateChangeTime OBJECT-TYPE The time of the last change in the current Fault Tolerance state of the SLB device. | 1.3.6.1.4.1.9.9.254.1.10.1.1.8 | TimeStamp | read-only | current |
| cslbxFtRxHeartBeatMsgs OBJECT-TYPE The number of the keep-alive messages ever received by this SLB device. | 1.3.6.1.4.1.9.9.254.1.10.1.1.9 | Counter32 | read-only | current |
| cslbxFtTxHeartBeatMsgs OBJECT-TYPE The number of the keep-alive messages ever sent by this SLB device. | 1.3.6.1.4.1.9.9.254.1.10.1.1.10 | Counter32 | read-only | current |
| cslbxFtRxUpdateMsgs OBJECT-TYPE The number of the state update (sticky) messages ever received by this SLB device. | 1.3.6.1.4.1.9.9.254.1.10.1.1.11 | Counter32 | read-only | current |
| cslbxFtTxUpdateMsgs OBJECT-TYPE The number of the state update (sticky) messages ever sent by this SLB device. | 1.3.6.1.4.1.9.9.254.1.10.1.1.12 | Counter32 | read-only | current |
| cslbxFtRxCoupMsgs OBJECT-TYPE The number of master override messages ever received by this SLB device. | 1.3.6.1.4.1.9.9.254.1.10.1.1.13 | Counter32 | read-only | current |
| cslbxFtTxCoupMsgs OBJECT-TYPE The number of master override messages ever sent by this SLB device. | 1.3.6.1.4.1.9.9.254.1.10.1.1.14 | Counter32 | read-only | current |
| cslbxFtRxElectMsgs OBJECT-TYPE The number of the master election messages ever received by this SLB device. | 1.3.6.1.4.1.9.9.254.1.10.1.1.15 | Counter32 | read-only | current |
| cslbxFtTxElectMsgs OBJECT-TYPE The number of the master election messages ever sent by this SLB device. | 1.3.6.1.4.1.9.9.254.1.10.1.1.16 | Counter32 | read-only | current |
| cslbxFtRxConnReplMsgs OBJECT-TYPE The number of the connection replication messages ever received by this SLB device. | 1.3.6.1.4.1.9.9.254.1.10.1.1.17 | Counter32 | read-only | current |
| cslbxFtTxConnReplMsgs OBJECT-TYPE The number of the connection replication messages ever sent by this SLB device. | 1.3.6.1.4.1.9.9.254.1.10.1.1.18 | Counter32 | read-only | current |
| cslbxFtRxPackets OBJECT-TYPE The total number of Fault Tolerance messages ever received by this SLB device. | 1.3.6.1.4.1.9.9.254.1.10.1.1.19 | Counter32 | read-only | current |
| cslbxFtDropPackets OBJECT-TYPE The total number of Fault Tolerance messages ever dropped by this SLB device. | 1.3.6.1.4.1.9.9.254.1.10.1.1.20 | Counter32 | read-only | current |
| cslbxFtDuplPackets OBJECT-TYPE The total number of duplicate Fault Tolerance messages ever received by this SLB device. | 1.3.6.1.4.1.9.9.254.1.10.1.1.21 | Counter32 | read-only | current |
| cslbxFtXsumErrPackets OBJECT-TYPE The total number of Fault Tolerance messages with a checksum error ever received by this SLB device. | 1.3.6.1.4.1.9.9.254.1.10.1.1.22 | Counter32 | read-only | current |
| cslbxFtBuffErrPackets OBJECT-TYPE The total number of Fault Tolerance messages dropped by this SLB device due to insufficient buffer memory. | 1.3.6.1.4.1.9.9.254.1.10.1.1.23 | Counter32 | read-only | current |
| cslbxFtRowStatus OBJECT-TYPE The row status is used by a management station to create or delete the row entry in cslbxFtTable following the RowStatus textual convention. | 1.3.6.1.4.1.9.9.254.1.10.1.1.24 | RowStatus | read-create | current |
| cslbxXmlConfig OBJECT-IDENTITY | 1.3.6.1.4.1.9.9.254.1.11 | |||
| cslbxXmlConfigTable OBJECT-TYPE Table of XML interface settings. | 1.3.6.1.4.1.9.9.254.1.11.1 | not-accessible | current | |
| cslbxXmlConfigTableEntry OBJECT-TYPE Information about XML interface settings for a particular local SLB entity. | 1.3.6.1.4.1.9.9.254.1.11.1.1 | not-accessible | current | |
| cslbxXmlConfigEnabled OBJECT-TYPE The current setting for enabling XML interface. If this is set, the XML configuration is enabled for this SLB instance. | 1.3.6.1.4.1.9.9.254.1.11.1.1.1 | TruthValue | read-create | current |
| cslbxXmlConfigVlanId OBJECT-TYPE The VLAN ID on which to accept requests for configuration via XML. If it set to zero, then connection from any VLAN is acceptable. | 1.3.6.1.4.1.9.9.254.1.11.1.1.2 | Unsigned32 | read-create | current |
| cslbxXmlConfigListeningPort OBJECT-TYPE The TCP port on which this SLB instance listens for XML configuration requests. | 1.3.6.1.4.1.9.9.254.1.11.1.1.3 | CiscoPort | read-create | current |
| cslbxXmlConfigRowStatus OBJECT-TYPE The row status is used by a management station to create or delete the row entry in cslbxXmlConfigTable following the RowStatus textual convention. | 1.3.6.1.4.1.9.9.254.1.11.1.1.4 | RowStatus | read-create | current |
| cslbxXmlConfigUserName OBJECT-TYPE The required username for the purpose of validating the XML request. | 1.3.6.1.4.1.9.9.254.1.11.1.1.5 | SlbObjectNameString | read-create | current |
| cslbxXmlConfigPassword OBJECT-TYPE The required password for the purpose of validating the XML request. | 1.3.6.1.4.1.9.9.254.1.11.1.1.6 | SlbPasswordString | read-create | current |
| cslbxXmlConfigClientGroupNumber OBJECT-TYPE The group number of the associated client access list. | 1.3.6.1.4.1.9.9.254.1.11.1.1.7 | Unsigned32 (0..65535) | read-create | current |
| cslbxXmlConfigClientGroupName OBJECT-TYPE The group name of the associated client access list. | 1.3.6.1.4.1.9.9.254.1.11.1.1.8 | SlbObjectNameString | read-create | current |
| cslbxConnections OBJECT-IDENTITY | 1.3.6.1.4.1.9.9.254.1.12 | |||
| cslbxConnTable OBJECT-TYPE Table of Extended Connections being load-balanced by SLB. This table supports the Content Switching Module (CSM) feature which is not supported by the slbConnectionTable in the CISCO-SLB-MIB. | 1.3.6.1.4.1.9.9.254.1.12.1 | not-accessible | current | |
| cslbxConnTableEntry OBJECT-TYPE A list of Extended Connections for a particular local SLB entity. | 1.3.6.1.4.1.9.9.254.1.12.1.1 | not-accessible | current | |
| cslbxConnIndex OBJECT-TYPE The index to internal structures for the Extended Connection. | 1.3.6.1.4.1.9.9.254.1.12.1.1.1 | Unsigned32 | not-accessible | current |
| cslbxConnInDestAddrType OBJECT-TYPE The type of address stored in cslbxConnInDestAddr. | 1.3.6.1.4.1.9.9.254.1.12.1.1.2 | InetAddressType | read-only | current |
| cslbxConnInDestAddr OBJECT-TYPE The destination IP address of the incoming request. | 1.3.6.1.4.1.9.9.254.1.12.1.1.3 | InetAddress (SIZE(0..20)) | read-only | current |
| cslbxConnInDestPort OBJECT-TYPE The destination port of the incoming request. | 1.3.6.1.4.1.9.9.254.1.12.1.1.4 | CiscoPort | read-only | current |
| cslbxConnInSourceAddrType OBJECT-TYPE The type of address stored in cslbxConnInSourceAddr. | 1.3.6.1.4.1.9.9.254.1.12.1.1.5 | InetAddressType | read-only | current |
| cslbxConnInSourceAddr OBJECT-TYPE The source IP address of the incoming request. | 1.3.6.1.4.1.9.9.254.1.12.1.1.6 | InetAddress (SIZE(0..20)) | read-only | current |
| cslbxConnInSourcePort OBJECT-TYPE The source port of the incoming request. | 1.3.6.1.4.1.9.9.254.1.12.1.1.7 | CiscoPort | read-only | current |
| cslbxConnProtocol OBJECT-TYPE The IP protocol for the Extended Conn. | 1.3.6.1.4.1.9.9.254.1.12.1.1.8 | CiscoIpProtocol | read-only | current |
| cslbxConnOutDestAddrType OBJECT-TYPE The type of address stored in cslbxConnOutDestIpAddr. | 1.3.6.1.4.1.9.9.254.1.12.1.1.9 | InetAddressType | read-only | current |
| cslbxConnOutDestAddr OBJECT-TYPE The destination IP address of the load-balanced Extended Conn. | 1.3.6.1.4.1.9.9.254.1.12.1.1.10 | InetAddress (SIZE(0..20)) | read-only | current |
| cslbxConnOutDestPort OBJECT-TYPE The destination port of the load-balanced Extended Conn. | 1.3.6.1.4.1.9.9.254.1.12.1.1.11 | CiscoPort | read-only | current |
| cslbxConnOutSourceAddrType OBJECT-TYPE The type of address stored in cslbxConnOutSourceAddr. | 1.3.6.1.4.1.9.9.254.1.12.1.1.12 | InetAddressType | read-only | current |
| cslbxConnOutSourceAddr OBJECT-TYPE The source IP address of the load-balanced Extended Conn. | 1.3.6.1.4.1.9.9.254.1.12.1.1.13 | InetAddress (SIZE(0..20)) | read-only | current |
| cslbxConnOutSourcePort OBJECT-TYPE The source port of the load-balanced Extended Conn. | 1.3.6.1.4.1.9.9.254.1.12.1.1.14 | CiscoPort | read-only | current |
| cslbxConnState OBJECT-TYPE The current state of this Extended Conn. | 1.3.6.1.4.1.9.9.254.1.12.1.1.15 | SlbConnectionState | read-only | current |
| cslbxNotifObjects OBJECT-IDENTITY | 1.3.6.1.4.1.9.9.254.1.13 | |||
| cslbxFtStateChangeNotifEnabled OBJECT-TYPE This object controls the generation of cslbxFtStateChange notification. 'true' Indicates that cslbxFtStateChange notification is to be generated when the state changes. That is, notification generation is enabled. 'false' Indicates that cslbxFtStateChange notification generation is disabled. | 1.3.6.1.4.1.9.9.254.1.13.1 | TruthValue | read-write | current |
| cslbxOwnerObjects OBJECT-IDENTITY | 1.3.6.1.4.1.9.9.254.1.14 | |||
| cslbxOwnerTable OBJECT-TYPE Table of Owners of the load balancing objects. | 1.3.6.1.4.1.9.9.254.1.14.1 | not-accessible | current | |
| cslbxOwnerTableEntry OBJECT-TYPE Information about a particular Owner configured on a particular local SLB entity. | 1.3.6.1.4.1.9.9.254.1.14.1.1 | not-accessible | current | |
| cslbxOwnerName OBJECT-TYPE The name of the owner of the configured SLB objects. | 1.3.6.1.4.1.9.9.254.1.14.1.1.1 | SlbObjectNameString | not-accessible | current |
| cslbxOwnerContactInfo OBJECT-TYPE The contact information for this Owner. | 1.3.6.1.4.1.9.9.254.1.14.1.1.2 | SnmpAdminString | read-create | current |
| cslbxOwnerBillingInfo OBJECT-TYPE The billing information for this Owner. | 1.3.6.1.4.1.9.9.254.1.14.1.1.3 | SnmpAdminString | read-create | current |
| cslbxOwnerMaxConns OBJECT-TYPE The maximum of connections can be opened to the virtual servers associated with this Owner. The value of zero indicates that there is no upper limit of connections associated with this Owner. | 1.3.6.1.4.1.9.9.254.1.14.1.1.4 | Unsigned32 (0..4294967295) | read-create | current |
| cslbxOwnerRowStatus OBJECT-TYPE The object used by a management station to create or delete the row entry in cslbxOwnerTable following the RowStatus textual convention. | 1.3.6.1.4.1.9.9.254.1.14.1.1.5 | RowStatus | read-create | current |
| cslbxScriptObjects OBJECT-IDENTITY | 1.3.6.1.4.1.9.9.254.1.15 | |||
| cslbxScriptFileTable OBJECT-TYPE Table of Script files to be downloaded into a particular SLB device. The content of these text files can be excuted by the SLB device to provide additional health check functionality. | 1.3.6.1.4.1.9.9.254.1.15.1 | not-accessible | current | |
| cslbxScriptFileTableEntry OBJECT-TYPE Information about a particular Script file configured on a particular local SLB entity. | 1.3.6.1.4.1.9.9.254.1.15.1.1 | not-accessible | current | |
| cslbxScriptFileIndex OBJECT-TYPE The Script file index. | 1.3.6.1.4.1.9.9.254.1.15.1.1.1 | Unsigned32 (1..65535) | not-accessible | current |
| cslbxScriptFileUrl OBJECT-TYPE The name and location of the Script file. | 1.3.6.1.4.1.9.9.254.1.15.1.1.2 | SnmpAdminString | read-create | current |
| cslbxScriptFileRowStatus OBJECT-TYPE The object used by a management station to create or delete the row entry in cslbxScriptFileTable following the RowStatus textual convention. | 1.3.6.1.4.1.9.9.254.1.15.1.1.3 | RowStatus | read-create | current |
| cslbxScriptTaskTable OBJECT-TYPE Table of Script tasks to be executed by the SLB device when it is online. The scripts from the cslbxScriptFileTable are referenced in this table by the named labels. | 1.3.6.1.4.1.9.9.254.1.15.2 | not-accessible | current | |
| cslbxScriptTaskTableEntry OBJECT-TYPE Information about a particular Script task configured on a particular local SLB entity. | 1.3.6.1.4.1.9.9.254.1.15.2.1 | not-accessible | current | |
| cslbxScriptTaskIndex OBJECT-TYPE The Script task index. | 1.3.6.1.4.1.9.9.254.1.15.2.1.1 | Unsigned32 (1..65535) | not-accessible | current |
| cslbxScriptTaskScriptName OBJECT-TYPE The name of the function to be executed. | 1.3.6.1.4.1.9.9.254.1.15.2.1.2 | SlbFunctionNameString | read-create | current |
| cslbxScriptTaskScriptArguments OBJECT-TYPE The argument parameters passed into the executable Script. | 1.3.6.1.4.1.9.9.254.1.15.2.1.3 | SnmpAdminString | read-create | current |
| cslbxScriptTaskRowStatus OBJECT-TYPE The object used by a management station to create or delete the row entry in cslbxScriptTaskTable following the RowStatus textual convention. | 1.3.6.1.4.1.9.9.254.1.15.2.1.4 | RowStatus | read-create | current |
| ciscoSlbExtMIBConform OBJECT-IDENTITY | 1.3.6.1.4.1.9.9.254.2 | |||
| cslbxMIBCompliances OBJECT-IDENTITY | 1.3.6.1.4.1.9.9.254.2.1 | |||
| cslbxMIBGroups OBJECT-IDENTITY | 1.3.6.1.4.1.9.9.254.2.2 |
Notifications
| Name | OID | Status |
|---|---|---|
| cslbxFtStateChange NOTIFICATION-TYPE The notification generated when the Fault Tolerance process changes to a new state. The value of cslbxFtState indicates the new state. | 1.3.6.1.4.1.9.9.254.0.1 | current |
Conformance
| Name | OID | Status |
|---|---|---|
| cslbxMIBCompliance MODULE-COMPLIANCE The compliance statement for entities which implement the Cisco SLB EXT MIB. The Content Switching Module (CSM) product supports this revision. | 1.3.6.1.4.1.9.9.254.2.1.1 | deprecated |
| cslbxMIBComplianceRev1 MODULE-COMPLIANCE The compliance statement for entities which implement the Cisco SLB EXT MIB. The Content Switching Module (CSM) product supports this revision. | 1.3.6.1.4.1.9.9.254.2.1.2 | deprecated |
| cslbxMIBComplianceRev2 MODULE-COMPLIANCE The compliance statement for entities which implement the Cisco SLB EXT MIB. | 1.3.6.1.4.1.9.9.254.2.1.3 | deprecated |
| cslbxMIBComplianceRev3 MODULE-COMPLIANCE The compliance statement for entities which implement the Cisco SLB EXT MIB. | 1.3.6.1.4.1.9.9.254.2.1.4 | current |
| cslbxStatsGroup OBJECT-GROUP A collection of additional global statistics objects for the SLB entity. | 1.3.6.1.4.1.9.9.254.2.2.1 | current |
| cslbxServerFarmsGroup OBJECT-GROUP A collection of cslbxServerFarmTable and cslbxRedirectSvrTable objects used to further define an SLB server farm. | 1.3.6.1.4.1.9.9.254.2.2.2 | current |
| cslbxClientNatPoolsGroup OBJECT-GROUP The SLB client NAT pool objects. | 1.3.6.1.4.1.9.9.254.2.2.3 | current |
| cslbxStickyGroupsGroup OBJECT-GROUP The SLB sticky group objects. | 1.3.6.1.4.1.9.9.254.2.2.4 | deprecated |
| cslbxStickyObjectsGroup OBJECT-GROUP The SLB Extended sticky objects. | 1.3.6.1.4.1.9.9.254.2.2.5 | current |
| cslbxMapsGroup OBJECT-GROUP The SLB map objects. | 1.3.6.1.4.1.9.9.254.2.2.6 | current |
| cslbxPoliciesGroup OBJECT-GROUP The SLB policy objects. | 1.3.6.1.4.1.9.9.254.2.2.8 | current |
| cslbxVirtualServersGroup OBJECT-GROUP A collection of virtual server and rule objects used to further define layer 7 parameters for the SLB virtual server. | 1.3.6.1.4.1.9.9.254.2.2.9 | current |
| cslbxVlansGroup OBJECT-GROUP The SLB VLAN configuration objects. | 1.3.6.1.4.1.9.9.254.2.2.10 | current |
| cslbxFaultToleranceGroup OBJECT-GROUP The SLB Fault Tolerance objects. | 1.3.6.1.4.1.9.9.254.2.2.11 | current |
| cslbxConnsGroup OBJECT-GROUP The SLB Extended Conn objects. | 1.3.6.1.4.1.9.9.254.2.2.12 | current |
| cslbxXmlConfigGroup OBJECT-GROUP The SLB XML configuration objects. | 1.3.6.1.4.1.9.9.254.2.2.13 | current |
| cslbxNotifControlGroup OBJECT-GROUP The collection of objects to control the notifications for state changed in a SLB device. | 1.3.6.1.4.1.9.9.254.2.2.14 | current |
| cslbxNotifGroup NOTIFICATION-GROUP The collection of notifications of CISCO-SLB-EXT-MIB entity that are required to support. | 1.3.6.1.4.1.9.9.254.2.2.15 | current |
| cslbxXmlUserAccessGroup OBJECT-GROUP The collection of additional objects used to further control the access to the SLB XML management interface. | 1.3.6.1.4.1.9.9.254.2.2.16 | current |
| cslbxOwnerGroup OBJECT-GROUP The collection of objects used to define the Owner information of an SLB Virtual Server object. | 1.3.6.1.4.1.9.9.254.2.2.17 | current |
| cslbxBackupServerGroup OBJECT-GROUP The collection of objects used to define the SLB Backup Server Farm option. | 1.3.6.1.4.1.9.9.254.2.2.18 | current |
| cslbxScriptedProbeGroup OBJECT-GROUP The collection of objects to configure executable Script in an SLB device. | 1.3.6.1.4.1.9.9.254.2.2.19 | current |
| cslbxReverseStickyGroup OBJECT-GROUP The collection of objects used to configure the Reverse Sticky option. | 1.3.6.1.4.1.9.9.254.2.2.20 | current |
| cslbxVirtualServersExtGroup OBJECT-GROUP The collection of additional objects used to define SSL sticky option, packet counters and flow control for a SLB Virtual Server. | 1.3.6.1.4.1.9.9.254.2.2.22 | current |
| cslbxMapsRev2Group OBJECT-GROUP The second revision of collection of objects used to define a SLB matching criteria. | 1.3.6.1.4.1.9.9.254.2.2.23 | current |
| cslbxServerFarmsExtGroup OBJECT-GROUP A collection of objects related to server farm. | 1.3.6.1.4.1.9.9.254.2.2.24 | deprecated |
| cslbxServerFarmsHttpRetCodeGroup OBJECT-GROUP A collection of objects related to HTTP Return Codes in server farm. | 1.3.6.1.4.1.9.9.254.2.2.25 | current |
| cslbxStickyGroupsGroupRev2 OBJECT-GROUP The collection of objects for sticky features. | 1.3.6.1.4.1.9.9.254.2.2.26 | current |
| cslbxCookieStickyGroup OBJECT-GROUP This group contains objects related to static Cookie. | 1.3.6.1.4.1.9.9.254.2.2.27 | current |
| cslbxStatsHCGroup OBJECT-GROUP A collection of objects providing information specific to counter64 objects for SLB statistics. | 1.3.6.1.4.1.9.9.254.2.2.35 | current |
| cslbxServerFarmStatsGroup OBJECT-GROUP This group contains objects related to server farm statistics. | 1.3.6.1.4.1.9.9.254.2.2.36 | current |
| cslbxServerFarmsExtGroupRev1 OBJECT-GROUP A collection of objects related to server farm. | 1.3.6.1.4.1.9.9.254.2.2.37 | current |