From Blush Armadillo, 6 Years ago, written in Plain Text.
Embed
  1. --
  2. -- File Name : A10-AX-MIB.txt
  3. --
  4. -- Copyright(C) 2005-2011, A10 Networks Inc. All rights reserved.
  5. -- Software for all A10 products contain trade secrets and confidential
  6. -- information of A10 Networks and its subsidiaries and may not be disclosed,
  7. -- copied, reproduced or distributed to anyone outside of A10 Networks
  8. -- without prior written consent of A10 Networks, Inc.
  9. --
  10. -- Description:     This is the A10 AX mib file.
  11. --
  12. -- History:
  13. --
  14. --
  15. --
  16.  
  17. A10-AX-MIB DEFINITIONS ::= BEGIN
  18. --================================================================
  19. -- A10-AX-MIB
  20. --      Management MIB for A10 application acceleration appliance
  21. --================================================================
  22.   IMPORTS
  23.  
  24.     DisplayString, PhysAddress
  25.       FROM SNMPv2-TC
  26.  
  27.         InetAddressType
  28.       FROM INET-ADDRESS-MIB
  29.  
  30.     a10Mgmt
  31.       FROM A10-COMMON-MIB
  32.  
  33.     CounterBasedGauge64
  34.       FROM HCNUM-TC
  35.  
  36.     MODULE-IDENTITY, OBJECT-TYPE, Gauge32, Counter32, Integer32, Counter64, OBJECT-IDENTITY, NOTIFICATION-TYPE
  37.       FROM SNMPv2-SMI;
  38.  
  39.     axMgmt MODULE-IDENTITY
  40.                 LAST-UPDATED    "200705071327Z"
  41.                 ORGANIZATION    "A10 Networks, Inc."
  42.                 CONTACT-INFO    "Address: A10 Networks, Inc.
  43.                                           2309 Bering Drive
  44.                                           San Jose, CA 95131
  45.                                  Phone:   +1-888-822-7210 (USA/Canada)
  46.                                           +1-408-325-8676 (International)
  47.                                  E-mail:  support@A10Networks.com"
  48.  
  49.                 DESCRIPTION     "Management root OID for the application acceleration family appliance"
  50.                 ::=  {  a10Mgmt 4  }
  51.  
  52.     axSystem           OBJECT IDENTIFIER ::=  {  axMgmt  1  }
  53.     axLogging          OBJECT IDENTIFIER ::=  {  axMgmt  2  }
  54.     axApp              OBJECT IDENTIFIER ::=  {  axMgmt  3  }
  55.     acosRoot            OBJECT IDENTIFIER ::=  {  axMgmt  100  }
  56. --==================================================================
  57. --  axSystem
  58. --==================================================================
  59.  
  60.     axSysVersion           OBJECT IDENTIFIER ::= { axSystem 1 }
  61.     axSysMemory            OBJECT IDENTIFIER ::= { axSystem 2 }
  62.     axSysCpu               OBJECT IDENTIFIER ::= { axSystem 3 }
  63.     axSysDisk              OBJECT IDENTIFIER ::= { axSystem 4 }
  64.     axSysHwInfo            OBJECT IDENTIFIER ::= { axSystem 5 }
  65.     axSysInfo              OBJECT IDENTIFIER ::= { axSystem 6 }
  66.     axNetwork              OBJECT IDENTIFIER ::= { axSystem 7 }
  67.  
  68. --  axSysVersion
  69.   axSysPrimaryVersionOnDisk  OBJECT-TYPE
  70.     SYNTAX      OCTET STRING ( SIZE(0 .. 255) )
  71.     MAX-ACCESS    read-only
  72.     STATUS      current
  73.     DESCRIPTION   "The primary system image version on hard disk."
  74.     ::=  {  axSysVersion  1  }
  75.  
  76.   axSysSecondaryVersionOnDisk  OBJECT-TYPE
  77.     SYNTAX      OCTET STRING ( SIZE(0 .. 255) )
  78.     MAX-ACCESS    read-only
  79.     STATUS      current
  80.     DESCRIPTION   "The secondary system image version on hard disk."
  81.     ::=  {  axSysVersion  2  }
  82.  
  83.   axSysPrimaryVersionOnCF  OBJECT-TYPE
  84.     SYNTAX      OCTET STRING ( SIZE(0 .. 255) )
  85.     MAX-ACCESS    read-only
  86.     STATUS      current
  87.     DESCRIPTION   "The primary system image version on Compact Flash."
  88.     ::=  {  axSysVersion  3  }
  89.  
  90.   axSysSecondaryVersionOnCF  OBJECT-TYPE
  91.     SYNTAX      OCTET STRING ( SIZE(0 .. 255) )
  92.     MAX-ACCESS    read-only
  93.     STATUS      current
  94.     DESCRIPTION   "The secondary system image version on Compact Flash."
  95.     ::=  {  axSysVersion  4  }
  96.  
  97. --  axSysMemory
  98.  
  99.   axSysMemoryTotal  OBJECT-TYPE
  100.     SYNTAX      Integer32
  101.     MAX-ACCESS    read-only
  102.     STATUS      current
  103.     DESCRIPTION   "The total memory(KB)."
  104.     ::=  {  axSysMemory  1  }
  105.  
  106.   axSysMemoryUsage  OBJECT-TYPE
  107.     SYNTAX      Integer32
  108.     MAX-ACCESS    read-only
  109.     STATUS      current
  110.     DESCRIPTION   "The usage memory(KB)."
  111.     ::=  {  axSysMemory  2  }
  112.  
  113. --  axSysCpu info
  114.  
  115.     axSysCpuNumber OBJECT-TYPE
  116.       SYNTAX Integer32
  117.       MAX-ACCESS read-only
  118.       STATUS current
  119.       DESCRIPTION
  120.         "The cpu number in a10System"
  121.       ::= { axSysCpu 1 }
  122.  
  123.     axSysCpuTable OBJECT-TYPE
  124.       SYNTAX SEQUENCE OF AxSysCpuEntry
  125.       MAX-ACCESS not-accessible
  126.       STATUS current
  127.       DESCRIPTION
  128.         "The cpu information table."
  129.       ::= { axSysCpu 2 }
  130.  
  131.     axSysCpuEntry OBJECT-TYPE
  132.       SYNTAX  AxSysCpuEntry
  133.       MAX-ACCESS not-accessible
  134.       STATUS current
  135.       DESCRIPTION
  136.         "The cpu entry"
  137.       INDEX {
  138.         axSysCpuIndex
  139.       }
  140.       ::= { axSysCpuTable 1 }
  141.  
  142.     AxSysCpuEntry ::=
  143.       SEQUENCE {
  144.               axSysCpuIndex           Integer32,
  145.               axSysCpuUsage           DisplayString,
  146.               axSysCpuUsageValue      Integer32,
  147.               axSysCpuCtrlCpuFlag     Integer32
  148.       }
  149.  
  150.     axSysCpuIndex OBJECT-TYPE
  151.       SYNTAX Integer32
  152.       MAX-ACCESS read-only
  153.       STATUS current
  154.       DESCRIPTION
  155.         "The index of the CPU."
  156.       ::= { axSysCpuEntry 1 }
  157.  
  158.     axSysCpuUsage OBJECT-TYPE
  159.       SYNTAX DisplayString
  160.       MAX-ACCESS read-only
  161.       STATUS current
  162.       DESCRIPTION
  163.         "The CPU Usage."
  164.       ::= { axSysCpuEntry 2 }
  165.  
  166.     axSysCpuUsageValue OBJECT-TYPE
  167.       SYNTAX Integer32
  168.       MAX-ACCESS read-only
  169.       STATUS current
  170.       DESCRIPTION
  171.         "The CPU usage value."
  172.       ::= { axSysCpuEntry 3 }
  173.  
  174.     axSysCpuCtrlCpuFlag OBJECT-TYPE
  175.       SYNTAX Integer32
  176.       MAX-ACCESS read-only
  177.       STATUS current
  178.       DESCRIPTION
  179.         "The control CPU flag: 1 - control CPU, 0 - data CPU."
  180.       ::= { axSysCpuEntry 4 }
  181.  
  182.     axSysAverageCpuUsage OBJECT-TYPE
  183.       SYNTAX Integer32
  184.       MAX-ACCESS read-only
  185.       STATUS current
  186.       DESCRIPTION
  187.         "The average CPU usage in last 5 seconds."
  188.       ::= { axSysCpu 3 }
  189.  
  190.     axSysAverageControlCpuUsage OBJECT-TYPE
  191.       SYNTAX Integer32
  192.       MAX-ACCESS read-only
  193.       STATUS current
  194.       DESCRIPTION
  195.         "The average control CPU usage in last 5 seconds."
  196.       ::= { axSysCpu 4 }
  197.  
  198.     axSysAverageDataCpuUsage OBJECT-TYPE
  199.       SYNTAX Integer32
  200.       MAX-ACCESS read-only
  201.       STATUS current
  202.       DESCRIPTION
  203.         "The average data CPU usage  in last 5 seconds."
  204.       ::= { axSysCpu 5 }
  205.  
  206.     axSysCpuUsageTable OBJECT-TYPE
  207.       SYNTAX SEQUENCE OF AxSysCpuUsageEntry
  208.       MAX-ACCESS not-accessible
  209.       STATUS current
  210.       DESCRIPTION
  211.         "The cpu usage information table."
  212.       ::= { axSysCpu 6 }
  213.  
  214.     axSysCpuUsageEntry OBJECT-TYPE
  215.       SYNTAX  AxSysCpuUsageEntry
  216.       MAX-ACCESS not-accessible
  217.       STATUS current
  218.       DESCRIPTION
  219.         "The CPU Usage entry"
  220.       INDEX {
  221.         axSysCpuIndexInUsage,
  222.         axSysCpuUsagePeriodIndex
  223.       }
  224.       ::= { axSysCpuUsageTable 1 }
  225.  
  226.     AxSysCpuUsageEntry ::=
  227.       SEQUENCE {
  228.               axSysCpuIndexInUsage        Integer32,
  229.               axSysCpuUsagePeriodIndex    Integer32,
  230.               axSysCpuUsageValueAtPeriod  Integer32,
  231.               axSysCpuUsageCtrlCpuFlag    Integer32
  232.       }
  233.  
  234.     axSysCpuIndexInUsage OBJECT-TYPE
  235.       SYNTAX Integer32
  236.       MAX-ACCESS read-only
  237.       STATUS current
  238.       DESCRIPTION
  239.         "The index of the CPU."
  240.       ::= { axSysCpuUsageEntry 1 }
  241.  
  242.     axSysCpuUsagePeriodIndex OBJECT-TYPE
  243.       SYNTAX Integer32 ( 1 .. 5 )
  244.       MAX-ACCESS read-only
  245.       STATUS current
  246.       DESCRIPTION
  247.         "The CPU usage sampling period:
  248.                 1: 1-second sampling,
  249.                 2: 5-second sampling,
  250.                 3: 10-second sampling,
  251.                 4: 30-second sampling,
  252.                 5: 60-second sampling."
  253.       ::= { axSysCpuUsageEntry 2 }
  254.  
  255.     axSysCpuUsageValueAtPeriod OBJECT-TYPE
  256.       SYNTAX Integer32
  257.       MAX-ACCESS read-only
  258.       STATUS current
  259.       DESCRIPTION
  260.         "The CPU usage value at given period, 1-sec, 5-sec, 10-sec, 30-sec, and 60-sec."
  261.       ::= { axSysCpuUsageEntry 3 }
  262.  
  263.     axSysCpuUsageCtrlCpuFlag OBJECT-TYPE
  264.       SYNTAX Integer32
  265.       MAX-ACCESS read-only
  266.       STATUS current
  267.       DESCRIPTION
  268.         "The control CPU flag: 1 - control CPU, 0 - data CPU."
  269.       ::= { axSysCpuUsageEntry 4 }
  270.  
  271.     axSysCpuUsagePerPartitionTable OBJECT-TYPE
  272.       SYNTAX SEQUENCE OF AxSysCpuUsagePerPartitionEntry
  273.       MAX-ACCESS not-accessible
  274.       STATUS current
  275.       DESCRIPTION
  276.         "The cpu usage per partition information table."
  277.       ::= { axSysCpu 7 }
  278.  
  279.     axSysCpuUsagePerPartitionEntry OBJECT-TYPE
  280.       SYNTAX  AxSysCpuUsagePerPartitionEntry
  281.       MAX-ACCESS not-accessible
  282.       STATUS current
  283.       DESCRIPTION
  284.         "The CPU Usage per partition entry"
  285.       INDEX {
  286.         axSysCpuIndexInUsagePerPartition,
  287.         axSysCpuUsagePerPartitionPeriodIndex,
  288.         axSysCpuUsagePartitionName
  289.       }
  290.       ::= { axSysCpuUsagePerPartitionTable 1 }
  291.  
  292.     AxSysCpuUsagePerPartitionEntry ::=
  293.       SEQUENCE {
  294.               axSysCpuIndexInUsagePerPartition        Integer32,
  295.               axSysCpuUsagePerPartitionPeriodIndex    Integer32,
  296.               axSysCpuUsagePartitionName              DisplayString,
  297.               axSysCpuUsagePerPartitionValueAtPeriod  Integer32,
  298.               axSysCpuUsagePerPartitionCtrlCpuFlag    Integer32
  299.       }
  300.  
  301.     axSysCpuIndexInUsagePerPartition OBJECT-TYPE
  302.       SYNTAX Integer32
  303.       MAX-ACCESS read-only
  304.       STATUS current
  305.       DESCRIPTION
  306.         "The index of the CPU. The value, 0, is for the control CPU."
  307.       ::= { axSysCpuUsagePerPartitionEntry 1 }
  308.  
  309.     axSysCpuUsagePerPartitionPeriodIndex OBJECT-TYPE
  310.       SYNTAX Integer32 ( 1 .. 5 )
  311.       MAX-ACCESS read-only
  312.       STATUS current
  313.       DESCRIPTION
  314.         "The CPU usage per partition sampling period:
  315.                 1: 1-second sampling,
  316.                 2: 5-second sampling,
  317.                 3: 10-second sampling,
  318.                 4: 30-second sampling,
  319.                 5: 60-second sampling."
  320.       ::= { axSysCpuUsagePerPartitionEntry 2 }
  321.  
  322.     axSysCpuUsagePartitionName OBJECT-TYPE
  323.       SYNTAX DisplayString
  324.       MAX-ACCESS read-only
  325.       STATUS current
  326.       DESCRIPTION
  327.         "The partition name in the CPU usage per partition table."
  328.       ::= { axSysCpuUsagePerPartitionEntry 3 }
  329.  
  330.     axSysCpuUsagePerPartitionValueAtPeriod OBJECT-TYPE
  331.       SYNTAX Integer32
  332.       MAX-ACCESS read-only
  333.       STATUS current
  334.       DESCRIPTION
  335.         "The CPU usage per partition value at given period, 1-sec, 5-sec, 10-sec, 30-sec, and 60-sec."
  336.       ::= { axSysCpuUsagePerPartitionEntry 4 }
  337.  
  338.     axSysCpuUsagePerPartitionCtrlCpuFlag OBJECT-TYPE
  339.       SYNTAX Integer32
  340.       MAX-ACCESS read-only
  341.       STATUS current
  342.       DESCRIPTION
  343.         "The control CPU flag: 1 - control CPU, 0 - data CPU."
  344.       ::= { axSysCpuUsagePerPartitionEntry 5 }
  345.  
  346. -- axSysDisk info
  347.  
  348.     axSysDiskTotalSpace OBJECT-TYPE
  349.       SYNTAX Integer32
  350.       MAX-ACCESS read-only
  351.       STATUS current
  352.       DESCRIPTION
  353.         "The total space of the disk in MB."
  354.       ::= { axSysDisk 1 }
  355.  
  356.     axSysDiskFreeSpace OBJECT-TYPE
  357.       SYNTAX Integer32
  358.       MAX-ACCESS read-only
  359.       STATUS current
  360.       DESCRIPTION
  361.         "The free space of the disk in MB."
  362.       ::= { axSysDisk 2 }
  363.  
  364. -- axSysHwInfo
  365.  
  366.     axSysHwPhySystemTemp OBJECT-TYPE
  367.       SYNTAX Integer32
  368.       MAX-ACCESS read-only
  369.       STATUS current
  370.       DESCRIPTION
  371.         "The physical system temperature in Celsius."
  372.       ::= { axSysHwInfo 1 }
  373.  
  374.     axSysHwFan1Speed OBJECT-TYPE
  375.       SYNTAX Integer32
  376.       MAX-ACCESS read-only
  377.       STATUS deprecated
  378.       DESCRIPTION
  379.         "The fan1's speed"
  380.       ::= { axSysHwInfo 2 }
  381.  
  382.     axSysHwFan2Speed OBJECT-TYPE
  383.       SYNTAX Integer32
  384.       MAX-ACCESS read-only
  385.       STATUS deprecated
  386.       DESCRIPTION
  387.         "The fan2's speed"
  388.       ::= { axSysHwInfo 3 }
  389.  
  390.     axSysHwFan3Speed OBJECT-TYPE
  391.       SYNTAX Integer32
  392.       MAX-ACCESS read-only
  393.       STATUS deprecated
  394.       DESCRIPTION
  395.         "The fan3's speed"
  396.       ::= { axSysHwInfo 4 }
  397.  
  398.          axSysHwPhySystemTempStatus OBJECT-TYPE
  399.       SYNTAX INTEGER {
  400.         failed(0),
  401.         low-med(1),
  402.         med-med(2),
  403.         med-high(3),
  404.         ok(4)
  405.       }
  406.       MAX-ACCESS read-only
  407.       STATUS current
  408.       DESCRIPTION
  409.         "The system temperature status range"
  410.       ::= { axSysHwInfo 5 }
  411.  
  412.     axSysLowerOrLeftPowerSupplyStatus OBJECT-TYPE
  413.       SYNTAX INTEGER {
  414.                 off(0),
  415.                 on(1),
  416.                 unknown(-1)
  417.       }
  418.       MAX-ACCESS read-only
  419.           STATUS deprecated
  420.       DESCRIPTION
  421.         "The lower power supply status for AX 2000, 2100, 2200, 3100, 3200, 4330, 4430, 5100, 5200, 5330, 5430, 5630, 6430 and 6630; or,
  422.          the left power supply status for AX 2500, 2600, 300, or
  423.          the AX 1000 power supply status."
  424.       ::= { axSysHwInfo 7 }
  425.  
  426.     axSysUpperOrRightPowerSupplyStatus OBJECT-TYPE
  427.       SYNTAX INTEGER {
  428.                 off(0),
  429.                 on(1),
  430.                 unknown(-1)
  431.       }
  432.       MAX-ACCESS read-only
  433.           STATUS deprecated
  434.       DESCRIPTION
  435.          "The upper power supply status for AX 2000, 2100, 2200, 3100, 3200, 4330, 4430, 5100, 5200, 5330, 5430, 5630, 6430 and 6630
  436.          the right power supply status for AX 2500, 2600, 3000.
  437.          Not applied for AX 1000."
  438.       ::= { axSysHwInfo 8 }
  439.  
  440. --  axSysFanStatusTable
  441.  
  442.     axSysFanStatusTable OBJECT-TYPE
  443.         SYNTAX SEQUENCE OF AxSysFanStatusEntry
  444.         MAX-ACCESS not-accessible
  445.         STATUS current
  446.         DESCRIPTION
  447.                 "The table contains system fan status "
  448.         ::= { axSysHwInfo 9 }
  449.  
  450.     axSysFanStatusEntry OBJECT-TYPE
  451.         SYNTAX  AxSysFanStatusEntry
  452.         MAX-ACCESS not-accessible
  453.         STATUS current
  454.         DESCRIPTION
  455.                 "Columns in the axSysFanStatusTable"
  456.         INDEX {
  457.                 axFanIndex
  458.         }
  459.         ::= { axSysFanStatusTable 1 }
  460.  
  461.     AxSysFanStatusEntry ::=
  462.         SEQUENCE {
  463.                 axFanIndex               Integer32,
  464.                 axFanName                DisplayString,
  465.                 axFanStatus              INTEGER,
  466.             axFanSpeed               Integer32
  467.         }
  468.  
  469.     axFanIndex OBJECT-TYPE
  470.         SYNTAX Integer32
  471.         MAX-ACCESS read-only
  472.         STATUS current
  473.         DESCRIPTION
  474.                 "The system fan index."
  475.         ::= { axSysFanStatusEntry 1 }
  476.  
  477.     axFanName OBJECT-TYPE
  478.         SYNTAX DisplayString
  479.         MAX-ACCESS read-only
  480.         STATUS current
  481.         DESCRIPTION
  482.                 "The system fan name."
  483.         ::= { axSysFanStatusEntry 2 }
  484.  
  485.     axFanStatus OBJECT-TYPE
  486.         SYNTAX INTEGER {
  487.                 failed(0),
  488.                 okFixedHigh(4),
  489.                 okLowMed(5),
  490.                 okMedMed(6),
  491.                 okMedHigh(7),
  492.                 notReady(-2),
  493.                 unknown(-1)
  494.         }
  495.         MAX-ACCESS read-only
  496.         STATUS current
  497.         DESCRIPTION
  498.                 "Fan status:
  499.                    0: Failed, 4: OK-fixed/high, 5: OK-low/med, 6: OK-med/med, 7: OK-med/high,
  500.                    -2: not ready, -1: unknown."
  501.         ::= { axSysFanStatusEntry 3 }
  502.  
  503.     axFanSpeed OBJECT-TYPE
  504.         SYNTAX Integer32
  505.         MAX-ACCESS read-only
  506.         STATUS current
  507.         DESCRIPTION
  508.                 "The fan speed."
  509.         ::= { axSysFanStatusEntry 4 }
  510.  
  511. -- axPowerSupplyVoltageTotal
  512.  
  513.     axPowerSupplyVoltageTotal OBJECT-TYPE
  514.         SYNTAX INTEGER
  515.         MAX-ACCESS read-only
  516.         STATUS current
  517.         DESCRIPTION
  518.                 "The total number of axPowerSupplyVoltage entries."
  519.         ::= { axSysHwInfo 10 }
  520.  
  521. -- axPowerSupplyVoltageTable
  522.  
  523.     axPowerSupplyVoltageTable OBJECT-TYPE
  524.         SYNTAX SEQUENCE OF AxPowerSupplyVoltageEntry
  525.         MAX-ACCESS not-accessible
  526.         STATUS current
  527.         DESCRIPTION
  528.                 "A table contains the system power supply voltage status."
  529.         ::= { axSysHwInfo 11 }
  530.  
  531.     axPowerSupplyVoltageEntry OBJECT-TYPE
  532.         SYNTAX  AxPowerSupplyVoltageEntry
  533.         MAX-ACCESS not-accessible
  534.         STATUS current
  535.         DESCRIPTION
  536.                 "Columns in the axPowerSupplyVoltageTable"
  537.         INDEX {
  538.                 axPowerSupplyVoltageIndex
  539.         }
  540.         ::= { axPowerSupplyVoltageTable 1 }
  541.  
  542.     AxPowerSupplyVoltageEntry ::=
  543.         SEQUENCE {
  544.                 axPowerSupplyVoltageIndex         INTEGER,
  545.                 axPowerSupplyVoltageStatus        INTEGER,
  546.                 axPowerSupplyVoltageDescription   DisplayString
  547.         }
  548.  
  549.     axPowerSupplyVoltageIndex OBJECT-TYPE
  550.         SYNTAX INTEGER
  551.         MAX-ACCESS read-only
  552.         STATUS current
  553.         DESCRIPTION
  554.                 "The table index."
  555.         ::= { axPowerSupplyVoltageEntry 1 }
  556.  
  557.     axPowerSupplyVoltageStatus OBJECT-TYPE
  558.         SYNTAX INTEGER {
  559.                 invalid(0),
  560.                 normal(1),
  561.                 unknown(2)
  562.         }
  563.         MAX-ACCESS read-only
  564.         STATUS current
  565.         DESCRIPTION
  566.                 "The status of the indexed system power supply voltage.
  567.                  This is only supported for the platform where the sensor data is available."
  568.         ::= { axPowerSupplyVoltageEntry 2 }
  569.  
  570.     axPowerSupplyVoltageDescription OBJECT-TYPE
  571.         SYNTAX DisplayString
  572.         MAX-ACCESS read-only
  573.         STATUS current
  574.         DESCRIPTION
  575.                 "The description of the system power supply voltage."
  576.         ::= { axPowerSupplyVoltageEntry 3 }
  577.  
  578. -- axSysPowerSupplyStatusTable
  579.  
  580.     axSysPowerSupplyStatusTable OBJECT-TYPE
  581.         SYNTAX SEQUENCE OF AxSysPowerSupplyStatusEntry
  582.         MAX-ACCESS not-accessible
  583.         STATUS current
  584.         DESCRIPTION
  585.                 "The table contains power supply  status."
  586.         ::= { axSysHwInfo 12 }
  587.  
  588.     axSysPowerSupplyStatusEntry OBJECT-TYPE
  589.         SYNTAX  AxSysPowerSupplyStatusEntry
  590.         MAX-ACCESS not-accessible
  591.         STATUS current
  592.         DESCRIPTION
  593.                 "Columns in the axSysPowerSupplyStatusTable"
  594.         INDEX {
  595.                 axPowerSupplyIndex
  596.         }
  597.         ::= { axSysPowerSupplyStatusTable 1 }
  598.  
  599.     AxSysPowerSupplyStatusEntry ::=
  600.         SEQUENCE {
  601.                 axPowerSupplyIndex      Integer32,
  602.             axPowerSupplyName       DisplayString,
  603.                 axPowerSupplyStatus     INTEGER
  604.         }
  605.  
  606.     axPowerSupplyIndex OBJECT-TYPE
  607.         SYNTAX Integer32
  608.         MAX-ACCESS read-only
  609.         STATUS current
  610.         DESCRIPTION
  611.                 "The system power suplly index."
  612.         ::= { axSysPowerSupplyStatusEntry 1 }
  613.  
  614.     axPowerSupplyName OBJECT-TYPE
  615.         SYNTAX DisplayString
  616.         MAX-ACCESS read-only
  617.         STATUS current
  618.         DESCRIPTION
  619.                 "The pwer supply name."
  620.         ::= { axSysPowerSupplyStatusEntry 2 }
  621.  
  622.     axPowerSupplyStatus OBJECT-TYPE
  623.         SYNTAX INTEGER {
  624.         off(0),
  625.         on(1),
  626.         absent(2),
  627.                 unknown(-1)
  628.         }
  629.         MAX-ACCESS read-only
  630.         STATUS current
  631.         DESCRIPTION
  632.                    "The power supply status."
  633.         ::= { axSysPowerSupplyStatusEntry 3 }
  634.  
  635. -- axSysInfo
  636.  
  637.     axSysStartupMode OBJECT-TYPE
  638.       SYNTAX INTEGER {
  639.                 primaryDisk(1),
  640.                 secondaryDisk(2),
  641.                 primaryCF(3),
  642.                 secondaryCF(4),
  643.                 unknown(0)
  644.       }
  645.       MAX-ACCESS read-only
  646.       STATUS current
  647.       DESCRIPTION
  648.         "The startup mode."
  649.       ::= { axSysInfo 1 }
  650.  
  651.     axSysSerialNumber OBJECT-TYPE
  652.       SYNTAX OCTET STRING ( SIZE(0 .. 255) )
  653.       MAX-ACCESS read-only
  654.       STATUS current
  655.       DESCRIPTION
  656.         "The system serial number."
  657.       ::= { axSysInfo 2 }
  658.  
  659.     axSysFirmwareVersion OBJECT-TYPE
  660.       SYNTAX OCTET STRING ( SIZE(0 .. 255) )
  661.       MAX-ACCESS read-only
  662.       STATUS current
  663.       DESCRIPTION
  664.         "The system firmware version."
  665.       ::= { axSysInfo 3 }
  666.  
  667.     axSysAFleXEngineVersion OBJECT-TYPE
  668.       SYNTAX OCTET STRING ( SIZE(0 .. 255) )
  669.       MAX-ACCESS read-only
  670.       STATUS current
  671.       DESCRIPTION
  672.         "The system aFlex engine version."
  673.       ::= { axSysInfo 4 }
  674.  
  675. --==================================================================
  676. --  axNetwork
  677. --==================================================================
  678.  
  679.     axInterfaces           OBJECT IDENTIFIER ::= { axNetwork 1 }
  680.     axVlans                OBJECT IDENTIFIER ::= { axNetwork 2 }
  681.     axTrunks               OBJECT IDENTIFIER ::= { axNetwork 3 }
  682.     axLayer3               OBJECT IDENTIFIER ::= { axNetwork 100 }
  683.  
  684. --==================================================================
  685. --  axInterfaces
  686. --==================================================================
  687.  
  688.     axInterface            OBJECT IDENTIFIER ::= { axInterfaces 1 }
  689.     axInterfaceStat        OBJECT IDENTIFIER ::= { axInterfaces 2 }
  690.  
  691. --  axInterface
  692.  
  693.     axInterfaceCount OBJECT-TYPE
  694.         SYNTAX Integer32
  695.         MAX-ACCESS read-only
  696.         STATUS current
  697.         DESCRIPTION
  698.                 "The number of axInterface entries in the table."
  699.         ::= { axInterface 1 }
  700.  
  701.     axInterfaceTable OBJECT-TYPE
  702.         SYNTAX SEQUENCE OF AxInterfaceEntry
  703.         MAX-ACCESS not-accessible
  704.         STATUS current
  705.         DESCRIPTION
  706.                 "A table containing information of the physical interfaces."
  707.         ::= { axInterface 2 }
  708.  
  709.     axInterfaceEntry OBJECT-TYPE
  710.         SYNTAX  AxInterfaceEntry
  711.         MAX-ACCESS not-accessible
  712.         STATUS current
  713.         DESCRIPTION
  714.                 "Columns in the axInterface Table"
  715.         INDEX {
  716.                 axInterfaceIndex
  717.         }
  718.         ::= { axInterfaceTable 1 }
  719.  
  720.     AxInterfaceEntry ::=
  721.         SEQUENCE {
  722.                 axInterfaceIndex                            Integer32,
  723.                 axInterfaceName                             DisplayString,
  724.                 axInterfaceMediaMaxSpeed                    Integer32,
  725.                 axInterfaceMediaMaxDuplex                   INTEGER,
  726.                 axInterfaceMediaActiveSpeed                 Integer32,
  727.                 axInterfaceMediaActiveDuplex                INTEGER,
  728.                 axInterfaceMacAddr                          PhysAddress,
  729.                 axInterfaceMtu                              Integer32,
  730.                 axInterfaceAdminStatus                      INTEGER,
  731.                 axInterfaceStatus                           INTEGER,
  732.                 axInterfaceAlias                            DisplayString,
  733.                 axInterfaceFlowCtrlAdminStatus              INTEGER,
  734.                 axInterfaceFlowCtrlOperStatus               INTEGER
  735.         }
  736.  
  737.     axInterfaceIndex OBJECT-TYPE
  738.         SYNTAX Integer32
  739.         MAX-ACCESS read-only
  740.         STATUS current
  741.         DESCRIPTION
  742.                 "The index value of the interface."
  743.         ::= { axInterfaceEntry 1 }
  744.  
  745.     axInterfaceName OBJECT-TYPE
  746.         SYNTAX DisplayString
  747.         MAX-ACCESS read-only
  748.         STATUS current
  749.         DESCRIPTION
  750.                 "The name of the interface."
  751.         ::= { axInterfaceEntry 2 }
  752.  
  753.     axInterfaceMediaMaxSpeed OBJECT-TYPE
  754.         SYNTAX Integer32
  755.         MAX-ACCESS read-only
  756.         STATUS current
  757.         DESCRIPTION
  758.                 "The best possible media speed in MBPS for the interface."
  759.         ::= { axInterfaceEntry 3 }
  760.  
  761.     axInterfaceMediaMaxDuplex OBJECT-TYPE
  762.         SYNTAX INTEGER {
  763.                 none(0),
  764.                 half(1),
  765.                 full(2),
  766.                 auto(3)
  767.         }
  768.         MAX-ACCESS read-only
  769.         STATUS current
  770.         DESCRIPTION
  771.                 "The best possible media duplex mode for the interface.
  772.                  half    - Force half duplex;
  773.                  full    - Force full duplex;
  774.                  none    - All media is deselected."
  775.         ::= { axInterfaceEntry 4 }
  776.  
  777.     axInterfaceMediaActiveSpeed OBJECT-TYPE
  778.         SYNTAX Integer32
  779.         MAX-ACCESS read-only
  780.         STATUS current
  781.         DESCRIPTION
  782.                 "The current active media speed for the interface."
  783.         ::= { axInterfaceEntry 5 }
  784.  
  785.     axInterfaceMediaActiveDuplex OBJECT-TYPE
  786.         SYNTAX INTEGER {
  787.                 none(0),
  788.                 half(1),
  789.                 full(2),
  790.                 auto(3)
  791.         }
  792.         MAX-ACCESS read-only
  793.         STATUS current
  794.         DESCRIPTION
  795.                 "The active media duplex mode for the specified interface.
  796.                  half    - Half duplex;
  797.                  full    - Full duplex;
  798.                  auto    - Auto duplex;
  799.                  none    - All media is disabled."
  800.         ::= { axInterfaceEntry 6 }
  801.  
  802.     axInterfaceMacAddr OBJECT-TYPE
  803.         SYNTAX PhysAddress
  804.         MAX-ACCESS read-only
  805.         STATUS current
  806.         DESCRIPTION
  807.                 "The MAC address of the specified interface."
  808.         ::= { axInterfaceEntry 7 }
  809.  
  810.     axInterfaceMtu OBJECT-TYPE
  811.         SYNTAX Integer32
  812.         MAX-ACCESS read-only
  813.         STATUS current
  814.         DESCRIPTION
  815.                 "The maximum transmission unit size of datagram which can be
  816.                 sent/received on the specified interface."
  817.         ::= { axInterfaceEntry 8 }
  818.  
  819.     axInterfaceAdminStatus OBJECT-TYPE
  820.         SYNTAX INTEGER {
  821.                 false(0),
  822.                 true(1)
  823.         }
  824.         MAX-ACCESS read-only
  825.         STATUS current
  826.         DESCRIPTION
  827.                 "The state of this interface, whether it is enabled."
  828.         ::= { axInterfaceEntry 9 }
  829.  
  830.     axInterfaceStatus OBJECT-TYPE
  831.         SYNTAX INTEGER {
  832.                 up(0),
  833.                 down(1),
  834.                 disabled(2)
  835.         }
  836.         MAX-ACCESS read-only
  837.         STATUS current
  838.         DESCRIPTION
  839.                 "The current state of the interface.
  840.                  up            - has link and is initialized;
  841.                  down          - has no link and is initialized;
  842.                  disabled      - has been forced down "
  843.         ::= { axInterfaceEntry 10 }
  844.  
  845.     axInterfaceAlias OBJECT-TYPE
  846.         SYNTAX DisplayString
  847.         MAX-ACCESS read-only
  848.         STATUS current
  849.         DESCRIPTION
  850.                 "The alias name of the interface if defined."
  851.         ::= { axInterfaceEntry 11 }
  852.  
  853.     axInterfaceFlowCtrlAdminStatus OBJECT-TYPE
  854.         SYNTAX INTEGER {
  855.                 disabled(0),
  856.                 enabled(1)
  857.         }
  858.         MAX-ACCESS read-only
  859.         STATUS current
  860.         DESCRIPTION
  861.                 "The control flow of this interface is enabled or disabled."
  862.         ::= { axInterfaceEntry 12 }
  863.  
  864.     axInterfaceFlowCtrlOperStatus OBJECT-TYPE
  865.         SYNTAX INTEGER {
  866.                 false(0),
  867.                 true(1)
  868.         }
  869.         MAX-ACCESS read-only
  870.         STATUS current
  871.         DESCRIPTION
  872.                 "The control flow state of this interface."
  873.         ::= { axInterfaceEntry 13 }
  874.  
  875. --  axInterfaceStat
  876.  
  877.     axInterfaceStatTable OBJECT-TYPE
  878.         SYNTAX SEQUENCE OF AxInterfaceStatEntry
  879.         MAX-ACCESS not-accessible
  880.         STATUS current
  881.         DESCRIPTION
  882.                 "A table containing statistic information of the physical interfacess."
  883.         ::= { axInterfaceStat 1 }
  884.  
  885.     axInterfaceStatEntry OBJECT-TYPE
  886.         SYNTAX  AxInterfaceStatEntry
  887.         MAX-ACCESS not-accessible
  888.         STATUS current
  889.         DESCRIPTION
  890.                 "Columns in the axInterfaceStat Table"
  891.         INDEX {
  892.                 axInterfaceStatIndex
  893.         }
  894.         ::= { axInterfaceStatTable 1 }
  895.  
  896.     AxInterfaceStatEntry ::=
  897.         SEQUENCE {
  898.                 axInterfaceStatIndex              Integer32,
  899.                 axInterfaceStatPktsIn             Counter64,
  900.                 axInterfaceStatBytesIn            Counter64,
  901.                 axInterfaceStatPktsOut            Counter64,
  902.                 axInterfaceStatBytesOut           Counter64,
  903.                 axInterfaceStatMcastIn            Counter64,
  904.                 axInterfaceStatMcastOut           Counter64,
  905.                 axInterfaceStatErrorsIn           Counter64,
  906.                 axInterfaceStatErrorsOut          Counter64,
  907.                 axInterfaceStatDropsIn            Counter64,
  908.                 axInterfaceStatDropsOut           Counter64,
  909.                 axInterfaceStatCollisions         Counter64,
  910.                 axInterfaceStatBitsPerSecIn       Counter64,
  911.                 axInterfaceStatPktsPerSecIn       Counter64,
  912.                 axInterfaceStatUtilPercentIn      Integer32,
  913.                 axInterfaceStatBitsPerSecOut      Counter64,
  914.                 axInterfaceStatPktsPerSecOut      Counter64,
  915.                 axInterfaceStatUtilPercentOut     Integer32
  916.         }
  917.  
  918.     axInterfaceStatIndex OBJECT-TYPE
  919.         SYNTAX Integer32
  920.         MAX-ACCESS read-only
  921.         STATUS current
  922.         DESCRIPTION
  923.                 "The index value of the interface."
  924.         ::= { axInterfaceStatEntry 1 }
  925.  
  926.     axInterfaceStatPktsIn OBJECT-TYPE
  927.         SYNTAX Counter64
  928.         MAX-ACCESS read-only
  929.         STATUS current
  930.         DESCRIPTION
  931.                 "The number of packets received on this interface."
  932.         ::= { axInterfaceStatEntry 2 }
  933.  
  934.     axInterfaceStatBytesIn OBJECT-TYPE
  935.         SYNTAX Counter64
  936.         MAX-ACCESS read-only
  937.         STATUS current
  938.         DESCRIPTION
  939.                 "The number of bytes received on this interface."
  940.         ::= { axInterfaceStatEntry 3 }
  941.  
  942.     axInterfaceStatPktsOut OBJECT-TYPE
  943.         SYNTAX Counter64
  944.         MAX-ACCESS read-only
  945.         STATUS current
  946.         DESCRIPTION
  947.                 "The number of packets transmitted out of this interface."
  948.         ::= { axInterfaceStatEntry 4 }
  949.  
  950.     axInterfaceStatBytesOut OBJECT-TYPE
  951.         SYNTAX Counter64
  952.         MAX-ACCESS read-only
  953.         STATUS current
  954.         DESCRIPTION
  955.                 "The number of bytes transmitted out of this interface."
  956.         ::= { axInterfaceStatEntry 5 }
  957.  
  958.     axInterfaceStatMcastIn OBJECT-TYPE
  959.         SYNTAX Counter64
  960.         MAX-ACCESS read-only
  961.         STATUS current
  962.         DESCRIPTION
  963.                 "The number of multicast packets received on this interface."
  964.         ::= { axInterfaceStatEntry 6 }
  965.  
  966.     axInterfaceStatMcastOut OBJECT-TYPE
  967.         SYNTAX Counter64
  968.         MAX-ACCESS read-only
  969.         STATUS current
  970.         DESCRIPTION
  971.                 "The number of multicast packets transmitted out of this interface."
  972.         ::= { axInterfaceStatEntry 7 }
  973.  
  974.     axInterfaceStatErrorsIn OBJECT-TYPE
  975.         SYNTAX Counter64
  976.         MAX-ACCESS read-only
  977.         STATUS current
  978.         DESCRIPTION
  979.                 "The number of received packets that are either undersized,
  980.                 oversized, or have FCS errors."
  981.         ::= { axInterfaceStatEntry 8 }
  982.  
  983.     axInterfaceStatErrorsOut OBJECT-TYPE
  984.         SYNTAX Counter64
  985.         MAX-ACCESS read-only
  986.         STATUS current
  987.         DESCRIPTION
  988.                 "The number of excessive collisions, incremented for each
  989.                 frame that experienced 16 collisions during transmission and
  990.                 was aborted."
  991.         ::= { axInterfaceStatEntry 9 }
  992.  
  993.     axInterfaceStatDropsIn OBJECT-TYPE
  994.         SYNTAX Counter64
  995.         MAX-ACCESS read-only
  996.         STATUS current
  997.         DESCRIPTION
  998.                 "The number of packets dropped on ingress for various reasons."
  999.         ::= { axInterfaceStatEntry 10 }
  1000.  
  1001.     axInterfaceStatDropsOut OBJECT-TYPE
  1002.         SYNTAX Counter64
  1003.         MAX-ACCESS read-only
  1004.         STATUS current
  1005.         DESCRIPTION
  1006.                 "The number of packets aged out or with excessive transmission
  1007.                 delays due to multiple deferrals."
  1008.         ::= { axInterfaceStatEntry 11 }
  1009.  
  1010.     axInterfaceStatCollisions OBJECT-TYPE
  1011.         SYNTAX Counter64
  1012.         MAX-ACCESS read-only
  1013.         STATUS current
  1014.         DESCRIPTION
  1015.                 "The number of collisions on this interface, incremented by the
  1016.                 number of collisions experienced during transmissions of a frame"
  1017.         ::= { axInterfaceStatEntry 12 }
  1018.  
  1019.     axInterfaceStatBitsPerSecIn OBJECT-TYPE
  1020.         SYNTAX Counter64
  1021.         MAX-ACCESS read-only
  1022.         STATUS current
  1023.         DESCRIPTION
  1024.                 "The input rate in bits per second."
  1025.         ::= { axInterfaceStatEntry 13 }
  1026.  
  1027.     axInterfaceStatPktsPerSecIn OBJECT-TYPE
  1028.         SYNTAX Counter64
  1029.         MAX-ACCESS read-only
  1030.         STATUS current
  1031.         DESCRIPTION
  1032.                 "The input rate in packets per second."
  1033.         ::= { axInterfaceStatEntry 14 }
  1034.  
  1035.     axInterfaceStatUtilPercentIn OBJECT-TYPE
  1036.         SYNTAX Integer32
  1037.         MAX-ACCESS read-only
  1038.         STATUS current
  1039.         DESCRIPTION
  1040.                 "The input utilization in percentage.  For the ve interface, it's 0."
  1041.         ::= { axInterfaceStatEntry 15 }
  1042.  
  1043.     axInterfaceStatBitsPerSecOut OBJECT-TYPE
  1044.         SYNTAX Counter64
  1045.         MAX-ACCESS read-only
  1046.         STATUS current
  1047.         DESCRIPTION
  1048.                 "The output rate in bits per second."
  1049.         ::= { axInterfaceStatEntry 16 }
  1050.  
  1051.     axInterfaceStatPktsPerSecOut OBJECT-TYPE
  1052.         SYNTAX Counter64
  1053.         MAX-ACCESS read-only
  1054.         STATUS current
  1055.         DESCRIPTION
  1056.                 "The output rate in packets per second."
  1057.         ::= { axInterfaceStatEntry 17 }
  1058.  
  1059.     axInterfaceStatUtilPercentOut OBJECT-TYPE
  1060.         SYNTAX Integer32
  1061.         MAX-ACCESS read-only
  1062.         STATUS current
  1063.         DESCRIPTION
  1064.                 "The output utilization in percentage.  For the ve interface, it's 0."
  1065.         ::= { axInterfaceStatEntry 18 }
  1066.  
  1067. --==================================================================
  1068. --  axVlans
  1069. --==================================================================
  1070.  
  1071.     axVlanCfg              OBJECT IDENTIFIER ::= { axVlans 1 }
  1072.  
  1073. --  axVlanCfgTable
  1074.  
  1075.     axVlanCfgTable OBJECT-TYPE
  1076.         SYNTAX SEQUENCE OF AxVlanCfgEntry
  1077.         MAX-ACCESS not-accessible
  1078.         STATUS current
  1079.         DESCRIPTION
  1080.                 "The table contains VLAN configuration."
  1081.         ::= { axVlanCfg 1 }
  1082.  
  1083.     axVlanCfgEntry OBJECT-TYPE
  1084.         SYNTAX  AxVlanCfgEntry
  1085.         MAX-ACCESS not-accessible
  1086.         STATUS current
  1087.         DESCRIPTION
  1088.                 "Columns in the axVlanCfgTable"
  1089.         INDEX {
  1090.                 axVlanId
  1091.         }
  1092.         ::= { axVlanCfgTable 1 }
  1093.  
  1094.     AxVlanCfgEntry ::=
  1095.         SEQUENCE {
  1096.                 axVlanId                            Integer32,
  1097.                 axVlanName                          DisplayString,
  1098.                 axVlanRouterInterface               Integer32
  1099.         }
  1100.  
  1101.     axVlanId OBJECT-TYPE
  1102.         SYNTAX Integer32
  1103.         MAX-ACCESS read-only
  1104.         STATUS current
  1105.         DESCRIPTION
  1106.                 "The VLAN id."
  1107.         ::= { axVlanCfgEntry 1 }
  1108.  
  1109.     axVlanName OBJECT-TYPE
  1110.         SYNTAX DisplayString
  1111.         MAX-ACCESS read-only
  1112.         STATUS current
  1113.         DESCRIPTION
  1114.                 "The VLAN name."
  1115.         ::= { axVlanCfgEntry 2 }
  1116.  
  1117.     axVlanRouterInterface OBJECT-TYPE
  1118.         SYNTAX Integer32
  1119.         MAX-ACCESS read-only
  1120.         STATUS current
  1121.         DESCRIPTION
  1122.                 "VLAN router interface (ve) if configured.  If a SNMP-Get value is zero, that means this object is not configured."
  1123.         ::= { axVlanCfgEntry 3 }
  1124.  
  1125. --  axVlanCfgMemberTable
  1126.  
  1127.     axVlanCfgMemberTable OBJECT-TYPE
  1128.         SYNTAX SEQUENCE OF AxVlanCfgMemberEntry
  1129.         MAX-ACCESS not-accessible
  1130.         STATUS current
  1131.         DESCRIPTION
  1132.                 "The table contains VLAN member configuration."
  1133.         ::= { axVlanCfg 2 }
  1134.  
  1135.     axVlanCfgMemberEntry OBJECT-TYPE
  1136.         SYNTAX  AxVlanCfgMemberEntry
  1137.         MAX-ACCESS not-accessible
  1138.         STATUS current
  1139.         DESCRIPTION
  1140.                 "Columns in the axVlanCfgMemberTable"
  1141.         INDEX {
  1142.                 axVlanMemberVlanId, axVlanMemberIntfId
  1143.         }
  1144.         ::= { axVlanCfgMemberTable 1 }
  1145.  
  1146.     AxVlanCfgMemberEntry ::=
  1147.         SEQUENCE {
  1148.                 axVlanMemberVlanId                  Integer32,
  1149.                 axVlanMemberIntfId                  Integer32,
  1150.                 axVlanMemberTagged                  INTEGER
  1151.         }
  1152.  
  1153.     axVlanMemberVlanId OBJECT-TYPE
  1154.         SYNTAX Integer32
  1155.         MAX-ACCESS read-only
  1156.         STATUS current
  1157.         DESCRIPTION
  1158.                 "The VLAN id."
  1159.         ::= { axVlanCfgMemberEntry 1 }
  1160.  
  1161.     axVlanMemberIntfId OBJECT-TYPE
  1162.         SYNTAX Integer32
  1163.         MAX-ACCESS read-only
  1164.         STATUS current
  1165.         DESCRIPTION
  1166.                 "The interface id configures as the VLAN member."
  1167.         ::= { axVlanCfgMemberEntry 2 }
  1168.  
  1169.     axVlanMemberTagged OBJECT-TYPE
  1170.         SYNTAX INTEGER  {
  1171.                 false(0),
  1172.                 true(1)
  1173.         }
  1174.         MAX-ACCESS read-only
  1175.         STATUS current
  1176.         DESCRIPTION
  1177.                 "The tagged/untagged state of the specific VLAN member."
  1178.         ::= { axVlanCfgMemberEntry 3 }
  1179.  
  1180. --==================================================================
  1181. --  axTrunks
  1182. --==================================================================
  1183.  
  1184.     axTrunk                      OBJECT IDENTIFIER ::= { axTrunks 1 }
  1185.     axTrunkStats                 OBJECT IDENTIFIER ::= { axTrunks 2 }
  1186.     axTrunkCfgMembers            OBJECT IDENTIFIER ::= { axTrunks 3 }
  1187.  
  1188. --  axTrunk
  1189.  
  1190.     axTrunkTotal OBJECT-TYPE
  1191.         SYNTAX INTEGER
  1192.         MAX-ACCESS read-only
  1193.         STATUS current
  1194.         DESCRIPTION
  1195.                 "The total number of axTrunk entries in the table."
  1196.         ::= { axTrunk 1 }
  1197.  
  1198.     axTrunkTable OBJECT-TYPE
  1199.         SYNTAX SEQUENCE OF AxTrunkEntry
  1200.         MAX-ACCESS not-accessible
  1201.         STATUS current
  1202.         DESCRIPTION
  1203.                 "A table contains trunk information."
  1204.         ::= { axTrunk 2 }
  1205.  
  1206.     axTrunkEntry OBJECT-TYPE
  1207.         SYNTAX  AxTrunkEntry
  1208.         MAX-ACCESS not-accessible
  1209.         STATUS current
  1210.         DESCRIPTION
  1211.                 "Columns in the axTrunkTable"
  1212.         INDEX {
  1213.                 axTrunkName
  1214.         }
  1215.         ::= { axTrunkTable 1 }
  1216.  
  1217.     AxTrunkEntry ::=
  1218.         SEQUENCE {
  1219.                 axTrunkName                             DisplayString,
  1220.                 axTrunkStatus                           INTEGER,
  1221.                 axTrunkDescription                      DisplayString,
  1222.                 axTrunkTypeLacpEnabled                  INTEGER,
  1223.                 axTrunkCfgMemberCount                   INTEGER,
  1224.                 axTrunkPortThreshold                    INTEGER,
  1225.                 axTrunkPortThresholdTimer               INTEGER
  1226.         }
  1227.  
  1228.     axTrunkName OBJECT-TYPE
  1229.         SYNTAX DisplayString
  1230.         MAX-ACCESS read-only
  1231.         STATUS current
  1232.         DESCRIPTION
  1233.                 "The trunk name."
  1234.         ::= { axTrunkEntry 1 }
  1235.  
  1236.     axTrunkStatus OBJECT-TYPE
  1237.         SYNTAX INTEGER {
  1238.                 down(0),
  1239.                 up(1)
  1240.         }
  1241.         MAX-ACCESS read-only
  1242.         STATUS current
  1243.         DESCRIPTION
  1244.                 "The trunk status."
  1245.         ::= { axTrunkEntry 2 }
  1246.  
  1247.     axTrunkDescription OBJECT-TYPE
  1248.         SYNTAX DisplayString
  1249.         MAX-ACCESS read-only
  1250.         STATUS current
  1251.         DESCRIPTION
  1252.                 "The trunk description."
  1253.         ::= { axTrunkEntry 3 }
  1254.  
  1255.     axTrunkTypeLacpEnabled OBJECT-TYPE
  1256.         SYNTAX INTEGER {
  1257.                 false(0),
  1258.                 true(1)
  1259.         }
  1260.         MAX-ACCESS read-only
  1261.         STATUS current
  1262.         DESCRIPTION
  1263.                 "The trunk type is dynamic, LACP."
  1264.         ::= { axTrunkEntry 4 }
  1265.  
  1266.     axTrunkCfgMemberCount OBJECT-TYPE
  1267.         SYNTAX INTEGER
  1268.         MAX-ACCESS read-only
  1269.         STATUS current
  1270.         DESCRIPTION
  1271.                 "The total number of configured trunk members."
  1272.         ::= { axTrunkEntry 5 }
  1273.  
  1274.     axTrunkPortThreshold OBJECT-TYPE
  1275.         SYNTAX INTEGER
  1276.         MAX-ACCESS read-only
  1277.         STATUS current
  1278.         DESCRIPTION
  1279.                 "Threshold for minimum number of ports that need to be up."
  1280.         ::= { axTrunkEntry 6 }
  1281.  
  1282.     axTrunkPortThresholdTimer OBJECT-TYPE
  1283.         SYNTAX INTEGER
  1284.         MAX-ACCESS read-only
  1285.         STATUS current
  1286.         DESCRIPTION
  1287.                 "Timer for port-threshold in second."
  1288.         ::= { axTrunkEntry 7 }
  1289.  
  1290. --  axTrunkStats
  1291.  
  1292.     axTrunkStatTotal OBJECT-TYPE
  1293.         SYNTAX INTEGER
  1294.         MAX-ACCESS read-only
  1295.         STATUS current
  1296.         DESCRIPTION
  1297.                 "The total number of axTrunkStat entries in the table."
  1298.         ::= { axTrunkStats 1 }
  1299.  
  1300.     axTrunkStatTable OBJECT-TYPE
  1301.         SYNTAX SEQUENCE OF AxTrunkStatEntry
  1302.         MAX-ACCESS not-accessible
  1303.         STATUS current
  1304.         DESCRIPTION
  1305.                 "A table contains trunk statistic information."
  1306.         ::= { axTrunkStats 2 }
  1307.  
  1308.     axTrunkStatEntry OBJECT-TYPE
  1309.         SYNTAX  AxTrunkStatEntry
  1310.         MAX-ACCESS not-accessible
  1311.         STATUS current
  1312.         DESCRIPTION
  1313.                 "Columns in the axTrunkStatTable"
  1314.         INDEX {
  1315.                 axTrunkStatName
  1316.         }
  1317.         ::= { axTrunkStatTable 1 }
  1318.  
  1319.     AxTrunkStatEntry ::=
  1320.         SEQUENCE {
  1321.                 axTrunkStatName              DisplayString,
  1322.                 axTrunkStatPktsIn            Counter64,
  1323.                 axTrunkStatBytesIn           Counter64,
  1324.                 axTrunkStatPktsOut           Counter64,
  1325.                 axTrunkStatBytesOut          Counter64,
  1326.                 axTrunkStatMcastIn           Counter64,
  1327.                 axTrunkStatMcastOut          Counter64,
  1328.                 axTrunkStatErrorsIn          Counter64,
  1329.                 axTrunkStatErrorsOut         Counter64,
  1330.                 axTrunkStatDropsIn           Counter64,
  1331.                 axTrunkStatDropsOut          Counter64
  1332.         }
  1333.  
  1334.     axTrunkStatName OBJECT-TYPE
  1335.         SYNTAX DisplayString
  1336.         MAX-ACCESS read-only
  1337.         STATUS current
  1338.         DESCRIPTION
  1339.                 "The trunk name."
  1340.         ::= { axTrunkStatEntry 1 }
  1341.  
  1342.     axTrunkStatPktsIn OBJECT-TYPE
  1343.         SYNTAX Counter64
  1344.         MAX-ACCESS read-only
  1345.         STATUS current
  1346.         DESCRIPTION
  1347.                 "The total number of received packets on the given trunk."
  1348.         ::= { axTrunkStatEntry 2 }
  1349.  
  1350.     axTrunkStatBytesIn OBJECT-TYPE
  1351.         SYNTAX Counter64
  1352.         MAX-ACCESS read-only
  1353.         STATUS current
  1354.         DESCRIPTION
  1355.                 "The total number of received bytes on the given trunk."
  1356.         ::= { axTrunkStatEntry 3 }
  1357.  
  1358.     axTrunkStatPktsOut OBJECT-TYPE
  1359.         SYNTAX Counter64
  1360.         MAX-ACCESS read-only
  1361.         STATUS current
  1362.         DESCRIPTION
  1363.                 "The total number of transmitted packets on the given trunk."
  1364.         ::= { axTrunkStatEntry 4 }
  1365.  
  1366.     axTrunkStatBytesOut OBJECT-TYPE
  1367.         SYNTAX Counter64
  1368.         MAX-ACCESS read-only
  1369.         STATUS current
  1370.         DESCRIPTION
  1371.                 "The total number of transmitted bytes on the given trunk."
  1372.         ::= { axTrunkStatEntry 5 }
  1373.  
  1374.     axTrunkStatMcastIn OBJECT-TYPE
  1375.         SYNTAX Counter64
  1376.         MAX-ACCESS read-only
  1377.         STATUS current
  1378.         DESCRIPTION
  1379.                 "The total number of received multicast packets on the given trunk."
  1380.         ::= { axTrunkStatEntry 6 }
  1381.  
  1382.     axTrunkStatMcastOut OBJECT-TYPE
  1383.         SYNTAX Counter64
  1384.         MAX-ACCESS read-only
  1385.         STATUS current
  1386.         DESCRIPTION
  1387.                 "The total number of transmitted multicast packets out of the given trunk."
  1388.         ::= { axTrunkStatEntry 7 }
  1389.  
  1390.     axTrunkStatErrorsIn OBJECT-TYPE
  1391.         SYNTAX Counter64
  1392.         MAX-ACCESS read-only
  1393.         STATUS current
  1394.         DESCRIPTION
  1395.                 "The total number of received packets with errors by the given trunk."
  1396.         ::= { axTrunkStatEntry 8 }
  1397.  
  1398.     axTrunkStatErrorsOut OBJECT-TYPE
  1399.         SYNTAX Counter64
  1400.         MAX-ACCESS read-only
  1401.         STATUS current
  1402.         DESCRIPTION
  1403.                 "The total number of excessive collisions, incremented for each
  1404.                 frame that experienced 16 collisions during transmission and
  1405.                 was aborted on the given trunk."
  1406.         ::= { axTrunkStatEntry 9 }
  1407.  
  1408.     axTrunkStatDropsIn OBJECT-TYPE
  1409.         SYNTAX Counter64
  1410.         MAX-ACCESS read-only
  1411.         STATUS current
  1412.         DESCRIPTION
  1413.                 "The total number of dropped packets on the given trunk."
  1414.         ::= { axTrunkStatEntry 10 }
  1415.  
  1416.     axTrunkStatDropsOut OBJECT-TYPE
  1417.         SYNTAX Counter64
  1418.         MAX-ACCESS read-only
  1419.         STATUS current
  1420.         DESCRIPTION
  1421.                 "The total number of packets aged out or with excessive transmission
  1422.                 delays due to multiple deferrals on the given trunk."
  1423.         ::= { axTrunkStatEntry 11 }
  1424.  
  1425. --  axTrunkCfgMembers
  1426.  
  1427.     axTrunkCfgMemberTotal OBJECT-TYPE
  1428.         SYNTAX INTEGER
  1429.         MAX-ACCESS read-only
  1430.         STATUS current
  1431.         DESCRIPTION
  1432.                 "The total number of axTrunkCfgMember entries."
  1433.         ::= { axTrunkCfgMembers 1 }
  1434.  
  1435.     axTrunkCfgMemberTable OBJECT-TYPE
  1436.         SYNTAX SEQUENCE OF AxTrunkCfgMemberEntry
  1437.         MAX-ACCESS not-accessible
  1438.         STATUS current
  1439.         DESCRIPTION
  1440.                 "A table contains configured trunk member information."
  1441.         ::= { axTrunkCfgMembers 2 }
  1442.  
  1443.     axTrunkCfgMemberEntry OBJECT-TYPE
  1444.         SYNTAX  AxTrunkCfgMemberEntry
  1445.         MAX-ACCESS not-accessible
  1446.         STATUS current
  1447.         DESCRIPTION
  1448.                 "Columns in the sysTrunkCfgMember Table"
  1449.         INDEX {
  1450.                 axTrunkCfgMemberTrunkName,
  1451.                 axTrunkCfgMemberName
  1452.         }
  1453.         ::= { axTrunkCfgMemberTable 1 }
  1454.  
  1455.     AxTrunkCfgMemberEntry ::=
  1456.         SEQUENCE {
  1457.                 axTrunkCfgMemberTrunkName     DisplayString,
  1458.                 axTrunkCfgMemberName          DisplayString,
  1459.                 axTrunkCfgMemberAdminStatus   INTEGER,
  1460.                 axTrunkCfgMemberOperStatus    INTEGER
  1461.         }
  1462.  
  1463.     axTrunkCfgMemberTrunkName OBJECT-TYPE
  1464.         SYNTAX DisplayString
  1465.         MAX-ACCESS read-only
  1466.         STATUS current
  1467.         DESCRIPTION
  1468.                 "The trunk name."
  1469.         ::= { axTrunkCfgMemberEntry 1 }
  1470.  
  1471.     axTrunkCfgMemberName OBJECT-TYPE
  1472.         SYNTAX DisplayString
  1473.         MAX-ACCESS read-only
  1474.         STATUS current
  1475.         DESCRIPTION
  1476.                 "The trunk member name: the physical port belongs to the trunk."
  1477.         ::= { axTrunkCfgMemberEntry 2 }
  1478.  
  1479.     axTrunkCfgMemberAdminStatus OBJECT-TYPE
  1480.         SYNTAX INTEGER {
  1481.                 disabled(0),
  1482.                 enabled(1)
  1483.         }
  1484.         MAX-ACCESS read-only
  1485.         STATUS current
  1486.         DESCRIPTION
  1487.                 "The trunk port member administrative status."
  1488.         ::= { axTrunkCfgMemberEntry 3 }
  1489.  
  1490.     axTrunkCfgMemberOperStatus OBJECT-TYPE
  1491.         SYNTAX INTEGER {
  1492.                 down(0),
  1493.                 up(1)
  1494.         }
  1495.         MAX-ACCESS read-only
  1496.         STATUS current
  1497.         DESCRIPTION
  1498.                 "The trunk port member operational status."
  1499.         ::= { axTrunkCfgMemberEntry 4 }
  1500.  
  1501. --================================================================
  1502. -- axLogging leafs
  1503. --================================================================
  1504.  
  1505.     axLogBufferSize    OBJECT-TYPE
  1506.         SYNTAX          Integer32
  1507.         MAX-ACCESS      read-only
  1508.         STATUS          current
  1509.         DESCRIPTION     "The logging database size."
  1510.         DEFVAL          { 100000 }
  1511.         ::=  {  axLogging  1  }
  1512.  
  1513.     axLogBufferPri OBJECT-TYPE
  1514.         SYNTAX INTEGER {
  1515.                 emergency(0),
  1516.                 alert(1),
  1517.                 critical(2),
  1518.                 error(3),
  1519.                 warning(4),
  1520.                 notice(5),
  1521.                 info(6),
  1522.                 debug(7),
  1523.                 notDefined(-1)
  1524.         }
  1525.         MAX-ACCESS      read-only
  1526.         STATUS          current
  1527.         DESCRIPTION     "The logging buffer priority, logging messages which levels above
  1528.                                 that value must be output to internal database."
  1529.         DEFVAL          { 7 }
  1530.         ::=  {  axLogging  2  }
  1531.  
  1532.     axLogConsolePri    OBJECT-TYPE
  1533.         SYNTAX INTEGER {
  1534.                 emergency(0),
  1535.                 alert(1),
  1536.                 critical(2),
  1537.                 error(3),
  1538.                 warning(4),
  1539.                 notice(5),
  1540.                 info(6),
  1541.                 debug(7),
  1542.                 notDefined(-1)
  1543.         }
  1544.         MAX-ACCESS      read-only
  1545.         STATUS          current
  1546.         DESCRIPTION     "The logging console priority, logging messages which levels above
  1547.                                 that value must be output to console."
  1548.         DEFVAL          { 7 }
  1549.         ::=  {  axLogging  3  }
  1550.  
  1551.     axLogEmailPri  OBJECT-TYPE
  1552.         SYNTAX INTEGER {
  1553.                 emergency(0),
  1554.                 alert(1),
  1555.                 critical(2),
  1556.                 error(3),
  1557.                 warning(4),
  1558.                 notice(5),
  1559.                 info(6),
  1560.                 debug(7),
  1561.                 notDefined(-1)
  1562.         }
  1563.         MAX-ACCESS      read-only
  1564.         STATUS          current
  1565.         DESCRIPTION     "The logging email priority, logging messages which levels above
  1566.                                 that value must be output to email address."
  1567.         DEFVAL          { -1 }
  1568.         ::=  {  axLogging  4  }
  1569.  
  1570.     axLogEmailAddr OBJECT-TYPE
  1571.         SYNTAX          DisplayString
  1572.         MAX-ACCESS      read-only
  1573.         STATUS          current
  1574.         DESCRIPTION     "The email address that receive the logging messages."
  1575.         ::=  {  axLogging  5  }
  1576.  
  1577.     axLogSyslogPri OBJECT-TYPE
  1578.         SYNTAX INTEGER {
  1579.                 emergency(0),
  1580.                 alert(1),
  1581.                 critical(2),
  1582.                 error(3),
  1583.                 warning(4),
  1584.                 notice(5),
  1585.                 info(6),
  1586.                 debug(7),
  1587.                 notDefined(-1)
  1588.         }
  1589.         MAX-ACCESS      read-only
  1590.         STATUS          current
  1591.         DESCRIPTION     "The logging syslog priority, logging messages which levels above
  1592.                                 that value must be output to syslog host."
  1593.         DEFVAL          { -1 }
  1594.         ::=  {  axLogging  8  }
  1595.  
  1596.     axLogSyslogHostTable    OBJECT-TYPE
  1597.         SYNTAX SEQUENCE OF AxLogSyslogHostEntry
  1598.         MAX-ACCESS not-accessible
  1599.         STATUS current
  1600.         DESCRIPTION
  1601.         "The syslog host table."
  1602.         ::= { axLogging  9 }
  1603.  
  1604.     axLogSyslogHostEntry OBJECT-TYPE
  1605.       SYNTAX  AxLogSyslogHostEntry
  1606.       MAX-ACCESS not-accessible
  1607.       STATUS current
  1608.       DESCRIPTION
  1609.         "The syslog host entry"
  1610.       INDEX {
  1611.         axLogSyslogHostIndex
  1612.       }
  1613.       ::= { axLogSyslogHostTable 1 }
  1614.  
  1615.     AxLogSyslogHostEntry ::=
  1616.       SEQUENCE {
  1617.               axLogSyslogHostIndex               Integer32,
  1618.               axLogSyslogHost                    DisplayString
  1619.       }
  1620.  
  1621.     axLogSyslogHostIndex OBJECT-TYPE
  1622.       SYNTAX Integer32
  1623.       MAX-ACCESS read-only
  1624.       STATUS current
  1625.       DESCRIPTION
  1626.         "The index of the syslog host list."
  1627.       ::= { axLogSyslogHostEntry 1 }
  1628.  
  1629.     axLogSyslogHost OBJECT-TYPE
  1630.       SYNTAX DisplayString
  1631.       MAX-ACCESS read-only
  1632.       STATUS current
  1633.       DESCRIPTION
  1634.         "The syslog host IP address or DNS name."
  1635.       ::= { axLogSyslogHostEntry 2 }
  1636.  
  1637.     axLogSyslogPort    OBJECT-TYPE
  1638.         SYNTAX          Integer32  ( 1 .. 32767  )
  1639.         MAX-ACCESS      read-only
  1640.         STATUS          current
  1641.         DESCRIPTION     "The logging syslog host port."
  1642.         DEFVAL          { 514 }
  1643.         ::=  {  axLogging  10  }
  1644.  
  1645.     axLogMonitorPri    OBJECT-TYPE
  1646.         SYNTAX INTEGER {
  1647.                 emergency(0),
  1648.                 alert(1),
  1649.                 critical(2),
  1650.                 error(3),
  1651.                 warning(4),
  1652.                 notice(5),
  1653.                 info(6),
  1654.                 debug(7),
  1655.                 notDefined(-1)
  1656.         }
  1657.         MAX-ACCESS      read-only
  1658.         STATUS          current
  1659.         DESCRIPTION     "The logging monitor priority, logging messages which levels above
  1660.                                 that value must be output to snmp trap host."
  1661.         DEFVAL          { -1 }
  1662.         ::=  {  axLogging  11  }
  1663.  
  1664. --================================================================
  1665. -- axLayer3
  1666. --================================================================
  1667.  
  1668.     axArpInfo          OBJECT IDENTIFIER ::= { axLayer3 1 }
  1669.  
  1670. --================================================================
  1671. -- axArpInfo
  1672. --================================================================
  1673.  
  1674.     axArpEntryTotal OBJECT-TYPE
  1675.         SYNTAX INTEGER
  1676.         MAX-ACCESS read-only
  1677.         STATUS current
  1678.         DESCRIPTION
  1679.                 "The total number of ARP entries in the table."
  1680.         ::= { axArpInfo 1 }
  1681.  
  1682.     axArpInfoTable OBJECT-TYPE
  1683.         SYNTAX SEQUENCE OF AxArpInfoEntry
  1684.         MAX-ACCESS not-accessible
  1685.         STATUS current
  1686.         DESCRIPTION
  1687.                 "A table contains opertional ARP information."
  1688.         ::= { axArpInfo 2 }
  1689.  
  1690.     axArpInfoEntry OBJECT-TYPE
  1691.         SYNTAX  AxArpInfoEntry
  1692.         MAX-ACCESS not-accessible
  1693.         STATUS current
  1694.         DESCRIPTION
  1695.                 "Columns in the axArpInfoTable"
  1696.         INDEX {
  1697.                 axArpIpAddr
  1698.         }
  1699.         ::= { axArpInfoTable 1 }
  1700.  
  1701.     AxArpInfoEntry ::=
  1702.         SEQUENCE {
  1703.                 axArpIpAddr                             DisplayString,
  1704.                 axArpMacAddr                            PhysAddress,
  1705.                 axArpEntryVlan                          INTEGER,
  1706.                 axArpEntrySourceInterface               INTEGER,
  1707.                 axArpEntrySourceIntName                 DisplayString,
  1708.                 axArpEntryType                          INTEGER,
  1709.                 axArpEntryAging                         INTEGER
  1710.         }
  1711.  
  1712.     axArpIpAddr OBJECT-TYPE
  1713.         SYNTAX DisplayString
  1714.         MAX-ACCESS read-only
  1715.         STATUS current
  1716.         DESCRIPTION
  1717.                 "The destination IP address of the ARP entry."
  1718.         ::= { axArpInfoEntry 1 }
  1719.  
  1720.     axArpMacAddr OBJECT-TYPE
  1721.         SYNTAX PhysAddress
  1722.         MAX-ACCESS read-only
  1723.         STATUS current
  1724.         DESCRIPTION
  1725.                 "The MAC address for the ARP entry."
  1726.         ::= { axArpInfoEntry 2 }
  1727.  
  1728.     axArpEntryVlan OBJECT-TYPE
  1729.         SYNTAX INTEGER
  1730.         MAX-ACCESS read-only
  1731.         STATUS current
  1732.         DESCRIPTION
  1733.                 "The VLAN identifier for the ARP entry."
  1734.         ::= { axArpInfoEntry 3 }
  1735.  
  1736.     axArpEntrySourceInterface OBJECT-TYPE
  1737.         SYNTAX INTEGER
  1738.         MAX-ACCESS read-only
  1739.         STATUS current
  1740.         DESCRIPTION
  1741.                 "The port number in ifIndex for the ARP entry taking effective."
  1742.         ::= { axArpInfoEntry 4 }
  1743.  
  1744.     axArpEntrySourceIntName OBJECT-TYPE
  1745.         SYNTAX DisplayString
  1746.         MAX-ACCESS read-only
  1747.         STATUS current
  1748.         DESCRIPTION
  1749.                 "The interface description name for axArpEntrySourceInterface."
  1750.         ::= { axArpInfoEntry 5 }
  1751.  
  1752.     axArpEntryType OBJECT-TYPE
  1753.         SYNTAX INTEGER {
  1754.                 incomplete(0),
  1755.                 static(1),
  1756.                 dynamic(2)
  1757.         }
  1758.         MAX-ACCESS read-only
  1759.         STATUS current
  1760.         DESCRIPTION
  1761.                 "The type of the ARP entry."
  1762.         ::= { axArpInfoEntry 6 }
  1763.  
  1764.     axArpEntryAging OBJECT-TYPE
  1765.         SYNTAX INTEGER
  1766.         MAX-ACCESS read-only
  1767.         STATUS current
  1768.         DESCRIPTION
  1769.                 "The aging time of the ARP entry in seconds."
  1770.         ::= { axArpInfoEntry 7 }
  1771.  
  1772. --==================================================================
  1773. -- axApp
  1774. --==================================================================
  1775.  
  1776.     axAppGlobals            OBJECT IDENTIFIER ::= { axApp 1 }
  1777.     axServers               OBJECT IDENTIFIER ::= { axApp 2 }
  1778.     axServiceGroups         OBJECT IDENTIFIER ::= { axApp 3 }
  1779.     axVirtualServers        OBJECT IDENTIFIER ::= { axApp 4 }
  1780.     axConnReuseStats        OBJECT IDENTIFIER ::= { axApp 5 }
  1781.     axFastHttpProxyStats    OBJECT IDENTIFIER ::= { axApp 6 }
  1782.     axHttpProxyStats        OBJECT IDENTIFIER ::= { axApp 7 }
  1783.     axTcpProxyStats         OBJECT IDENTIFIER ::= { axApp 8 }
  1784.     axSslStats              OBJECT IDENTIFIER ::= { axApp 9 }
  1785.     axFtpStats              OBJECT IDENTIFIER ::= { axApp 10 }
  1786.     axNetStats              OBJECT IDENTIFIER ::= { axApp 11 }
  1787.     axNotification          OBJECT IDENTIFIER ::= { axApp 12 }
  1788.     axSmtpProxyStats        OBJECT IDENTIFIER ::= { axApp 13 }
  1789.     axSslProxyStats         OBJECT IDENTIFIER ::= { axApp 14 }
  1790.     axPersistentStats       OBJECT IDENTIFIER ::= { axApp 15 }
  1791.     axSwitchStats           OBJECT IDENTIFIER ::= { axApp 16 }
  1792.     axHA                    OBJECT IDENTIFIER ::= { axApp 17 }
  1793.     axIpNatStats            OBJECT IDENTIFIER ::= { axApp 18 }
  1794.     axSessionStats          OBJECT IDENTIFIER ::= { axApp 19 }
  1795.     axGslb                  OBJECT IDENTIFIER ::= { axApp 20 }
  1796.         axNetworkingStats       OBJECT IDENTIFIER ::= { axApp 21 }
  1797.  
  1798. -- axGlobals
  1799.     axAppGlobalSetting         OBJECT IDENTIFIER ::= { axAppGlobals 1 }
  1800.     axAppGlobalStats           OBJECT IDENTIFIER ::= { axAppGlobals 2 }
  1801.     axGlobalAppBuffer          OBJECT IDENTIFIER ::= { axAppGlobals 3 }
  1802.         axL3vStats                                 OBJECT IDENTIFIER ::= { axAppGlobals 4 }
  1803.  
  1804. -- axServers
  1805.     axServer                   OBJECT IDENTIFIER ::= { axServers 1 }
  1806.     axServerStat               OBJECT IDENTIFIER ::= { axServers 2 }
  1807.     axServerPort               OBJECT IDENTIFIER ::= { axServers 3 }
  1808.     axServerPortStat           OBJECT IDENTIFIER ::= { axServers 4 }
  1809.  
  1810. -- axServiceGroups
  1811.     axServiceGroup             OBJECT IDENTIFIER ::= { axServiceGroups 1 }
  1812.     axServiceGroupStat         OBJECT IDENTIFIER ::= { axServiceGroups 2 }
  1813.     axServiceGroupMember       OBJECT IDENTIFIER ::= { axServiceGroups 3 }
  1814.     axServiceGroupMemberStat   OBJECT IDENTIFIER ::= { axServiceGroups 4 }
  1815.  
  1816. -- axVirtualServers
  1817.     axVirtualServer            OBJECT IDENTIFIER ::= { axVirtualServers 1 }
  1818.     axVirtualServerStat        OBJECT IDENTIFIER ::= { axVirtualServers 2 }
  1819.     axVirtualServerPort        OBJECT IDENTIFIER ::= { axVirtualServers 3 }
  1820.     axVirtualServerPortStat    OBJECT IDENTIFIER ::= { axVirtualServers 4 }
  1821.     axVirtualServerNameStat        OBJECT IDENTIFIER ::= { axVirtualServers 5 }
  1822.     axVirtualServerNamePortStat    OBJECT IDENTIFIER ::= { axVirtualServers 6 }
  1823.  
  1824. -- axHA
  1825.     axHAGlobalConfig           OBJECT IDENTIFIER ::= { axHA 1 }
  1826.     axHAGroup                  OBJECT IDENTIFIER ::= { axHA 2 }
  1827.     axHAFloatingIP             OBJECT IDENTIFIER ::= { axHA 3 }
  1828.  
  1829. --==================================================================
  1830. -- axAppGlobalSetting
  1831. --==================================================================
  1832.  
  1833.     axAppGlobalSystemResourceUsageTable OBJECT-TYPE
  1834.         SYNTAX SEQUENCE OF AxAppGlobalSystemResourceUsageEntry
  1835.         MAX-ACCESS not-accessible
  1836.         STATUS current
  1837.         DESCRIPTION
  1838.                 "A table has information of the system resource usages,
  1839.                  it should contains the results as the CLI command,
  1840.                  'show system resouce-usage'
  1841.                  Resource                         Current    Default    Minimum    Maximum
  1842.                  --------------------------------------------------------------------------
  1843.                  l4-session-count                 1048576    1048576    131072     8388608
  1844.                  nat-pool-addr-count              500        500        500        4000
  1845.                  real-server-count                1024       1024       512        2048
  1846.                  real-port-count                  2048       2048       512        4096
  1847.                  service-group-count              512        512        512        1024
  1848.                  virtual-port-count               512        512        256        1024
  1849.                  virtual-server-count             512        512        512        1024
  1850.                  http-template-count              256        256        32         1024
  1851.                  proxy-template-count             256        256        32         1024
  1852.                  conn-reuse-template-count        256        256        32         1024
  1853.                  fast-tcp-template-count          256        256        32         1024
  1854.                  fast-udp-template-count          256        256        32         1024
  1855.                  client-ssl-template-count        256        256        32         1024
  1856.                  server-ssl-template-count        256        256        32         1024
  1857.                  stream-template-count            256        256        32         1024
  1858.                  persist-cookie-template-count    256        256        32         1024
  1859.                  persist-srcip-template-count     256        256        32         1024
  1860.                  nalloc-mem-val                   0          0          0          5120
  1861.                 "
  1862.         ::= { axAppGlobalSetting 1 }
  1863.  
  1864.     axAppGlobalSystemResourceUsageEntry OBJECT-TYPE
  1865.         SYNTAX  AxAppGlobalSystemResourceUsageEntry
  1866.         MAX-ACCESS not-accessible
  1867.         STATUS current
  1868.         DESCRIPTION
  1869.                 "Columns in the axAppGlobalSystemResourceUsage Table"
  1870.         INDEX {
  1871.                 axAppGlobalSystemResourceIndex
  1872.         }
  1873.         ::= { axAppGlobalSystemResourceUsageTable 1 }
  1874.  
  1875.     AxAppGlobalSystemResourceUsageEntry ::=
  1876.         SEQUENCE {
  1877.                 axAppGlobalSystemResourceIndex        INTEGER,
  1878.                 axAppGlobalSystemResourceName         DisplayString,
  1879.                 axAppGlobalAllowedCurrentValue        INTEGER,
  1880.                 axAppGlobalAllowedDefaultValue        INTEGER,
  1881.                 axAppGlobalAllowedMinValue            INTEGER,
  1882.                 axAppGlobalAllowedMaxValue            INTEGER
  1883.         }
  1884.  
  1885.     axAppGlobalSystemResourceIndex OBJECT-TYPE
  1886.         SYNTAX INTEGER
  1887.         MAX-ACCESS read-only
  1888.         STATUS current
  1889.         DESCRIPTION
  1890.                 "The system resource usage table index."
  1891.         ::= { axAppGlobalSystemResourceUsageEntry 1 }
  1892.  
  1893.     axAppGlobalSystemResourceName OBJECT-TYPE
  1894.         SYNTAX DisplayString
  1895.         MAX-ACCESS read-only
  1896.         STATUS current
  1897.         DESCRIPTION
  1898.                 "The system resource name."
  1899.         ::= { axAppGlobalSystemResourceUsageEntry 2 }
  1900.  
  1901.     axAppGlobalAllowedCurrentValue OBJECT-TYPE
  1902.         SYNTAX INTEGER
  1903.         MAX-ACCESS read-only
  1904.         STATUS current
  1905.         DESCRIPTION
  1906.                 "The current value for the allowed system resource."
  1907.         ::= { axAppGlobalSystemResourceUsageEntry 3 }
  1908.  
  1909.     axAppGlobalAllowedDefaultValue OBJECT-TYPE
  1910.         SYNTAX INTEGER
  1911.         MAX-ACCESS read-only
  1912.         STATUS current
  1913.         DESCRIPTION
  1914.                 "The default value for the allowed system resource."
  1915.         ::= { axAppGlobalSystemResourceUsageEntry 4 }
  1916.  
  1917.     axAppGlobalAllowedMinValue OBJECT-TYPE
  1918.         SYNTAX INTEGER
  1919.         MAX-ACCESS read-only
  1920.         STATUS current
  1921.         DESCRIPTION
  1922.                 "The minimum value for the allowed system resource."
  1923.         ::= { axAppGlobalSystemResourceUsageEntry 5 }
  1924.  
  1925.     axAppGlobalAllowedMaxValue OBJECT-TYPE
  1926.         SYNTAX INTEGER
  1927.         MAX-ACCESS read-only
  1928.         STATUS current
  1929.         DESCRIPTION
  1930.                 "The maximum value for the allowed system resource."
  1931.         ::= { axAppGlobalSystemResourceUsageEntry 6 }
  1932.  
  1933. --==================================================================
  1934. -- axAppGlobalStats
  1935. --==================================================================
  1936.  
  1937.     axAppGlobalTotalCurrentConnections  OBJECT-TYPE
  1938.         SYNTAX                  CounterBasedGauge64
  1939.         MAX-ACCESS              read-only
  1940.         STATUS                  current
  1941.         DESCRIPTION
  1942.                 "Total current connections"
  1943.         DEFVAL                  { 0 }
  1944.         ::=  {  axAppGlobalStats  1  }
  1945.  
  1946.     axAppGlobalTotalNewConnections      OBJECT-TYPE
  1947.         SYNTAX                  Counter64
  1948.         MAX-ACCESS              read-only
  1949.         STATUS                  current
  1950.         DESCRIPTION
  1951.                 "Total new connections"
  1952.         DEFVAL                  { 0 }
  1953.         ::=  {  axAppGlobalStats  2  }
  1954.  
  1955.     axAppGlobalTotalNewL4Connections    OBJECT-TYPE
  1956.         SYNTAX                  Counter64
  1957.         MAX-ACCESS              read-only
  1958.         STATUS                  current
  1959.         DESCRIPTION
  1960.                 "Total new L4 connections"
  1961.         DEFVAL                  { 0 }
  1962.         ::=  {  axAppGlobalStats  3  }
  1963.  
  1964.     axAppGlobalTotalNewL7Connections    OBJECT-TYPE
  1965.         SYNTAX                  Counter64
  1966.         MAX-ACCESS              read-only
  1967.         STATUS                  current
  1968.         DESCRIPTION
  1969.                 "Total new L7 connections"
  1970.         DEFVAL                  { 0 }
  1971.         ::=  {  axAppGlobalStats  4  }
  1972.  
  1973.     axAppGlobalTotalNewIPNatConnections OBJECT-TYPE
  1974.         SYNTAX                  Counter64
  1975.         MAX-ACCESS              read-only
  1976.         STATUS                  current
  1977.         DESCRIPTION
  1978.                 "Total new IP-NAT connections"
  1979.         DEFVAL                  { 0 }
  1980.         ::=  {  axAppGlobalStats  5  }
  1981.  
  1982.     axAppGlobalTotalSSLConnections      OBJECT-TYPE
  1983.         SYNTAX                  Counter64
  1984.         MAX-ACCESS              read-only
  1985.         STATUS                  current
  1986.         DESCRIPTION
  1987.                 "Total SSL connections"
  1988.         DEFVAL                  { 0 }
  1989.         ::=  {  axAppGlobalStats  6  }
  1990.  
  1991.     axAppGlobalTotalL7Requests  OBJECT-TYPE
  1992.         SYNTAX                  Counter64
  1993.         MAX-ACCESS              read-only
  1994.         STATUS                  current
  1995.         DESCRIPTION
  1996.                 "Total L7 requests"
  1997.         DEFVAL                  { 0 }
  1998.         ::=  {  axAppGlobalStats  7  }
  1999.  
  2000.     axGlobalAppPacketDrop       OBJECT-TYPE
  2001.         SYNTAX                  INTEGER
  2002.         MAX-ACCESS              read-only
  2003.         STATUS                  current
  2004.         DESCRIPTION
  2005.                 "Total number of buffer drops in the last 10 seconds."
  2006.         DEFVAL                  { 0 }
  2007.         ::=  {  axAppGlobalStats  8  }
  2008.  
  2009.     axGlobalTotalAppPacketDrop  OBJECT-TYPE
  2010.         SYNTAX                  Counter64
  2011.         MAX-ACCESS              read-only
  2012.         STATUS                  current
  2013.         DESCRIPTION
  2014.                 "Total number of accumulative buffer drops."
  2015.         DEFVAL                  { 0 }
  2016.         ::=  {  axAppGlobalStats  9  }
  2017.  
  2018.     axGlobalTotalL4Session      OBJECT-TYPE
  2019.         SYNTAX                  Counter64
  2020.         MAX-ACCESS              read-only
  2021.         STATUS                  current
  2022.         DESCRIPTION
  2023.                 "Total number of L4 sessions."
  2024.         DEFVAL                  { 0 }
  2025.         ::=  {  axAppGlobalStats  10  }
  2026.  
  2027.    axGlobalTotalThroughput OBJECT-TYPE
  2028.         SYNTAX                  Counter64
  2029.         MAX-ACCESS              read-only
  2030.         STATUS                  current
  2031.         DESCRIPTION
  2032.         "Total throughput of all the interfaces."
  2033.         DEFVAL { 0 }
  2034.         ::= { axAppGlobalStats 13 }
  2035.  
  2036.     axAppGlobalTotalCurrentConnectionsInteger OBJECT-TYPE
  2037.         SYNTAX                  INTEGER
  2038.         MAX-ACCESS              read-only
  2039.         STATUS                  current
  2040.         DESCRIPTION
  2041.                 "Total current connections"
  2042.         DEFVAL                  { 0 }
  2043.         ::=  {  axAppGlobalStats  11  }
  2044.  
  2045.     axGlobalTotalL4SessionInteger       OBJECT-TYPE
  2046.         SYNTAX                  INTEGER
  2047.         MAX-ACCESS              read-only
  2048.         STATUS                  current
  2049.         DESCRIPTION
  2050.                 "Total number of L4 sessions."
  2051.         DEFVAL                  { 0 }
  2052.         ::=  {  axAppGlobalStats  12  }
  2053.  
  2054. --==================================================================
  2055. -- axGlobalAppBuffer
  2056. --==================================================================
  2057.  
  2058.     axAppGlobalBufferConfigLimit        OBJECT-TYPE
  2059.         SYNTAX                  INTEGER
  2060.         MAX-ACCESS              read-only
  2061.         STATUS                  current
  2062.         DESCRIPTION
  2063.                 "Application buffer configured limit."
  2064.         DEFVAL                  { 0 }
  2065.         ::=  {  axGlobalAppBuffer  1  }
  2066.  
  2067.     axAppGlobalBufferCurrentUsage       OBJECT-TYPE
  2068.         SYNTAX                  INTEGER
  2069.         MAX-ACCESS              read-only
  2070.         STATUS                  current
  2071.         DESCRIPTION
  2072.                 "Application buffer current usage."
  2073.         DEFVAL                  { 0 }
  2074.         ::=  {  axGlobalAppBuffer  2  }
  2075.  
  2076. --==================================================================
  2077. -- axL3vStats
  2078. --==================================================================
  2079.  
  2080.     axL3vGlobalStatsTable OBJECT-TYPE
  2081.         SYNTAX SEQUENCE OF AxL3vGlobalStatsEntry
  2082.         MAX-ACCESS not-accessible
  2083.         STATUS current
  2084.         DESCRIPTION
  2085.                 "The global statitics in a l3v partition."
  2086.         ::= { axL3vStats 1 }
  2087.  
  2088.     axL3vGlobalStatsEntry OBJECT-TYPE
  2089.         SYNTAX  AxL3vGlobalStatsEntry
  2090.         MAX-ACCESS not-accessible
  2091.         STATUS current
  2092.         DESCRIPTION
  2093.                 "Columns in the axL3vGlobalStatsTable"
  2094.         INDEX {
  2095.                 axL3vGlobalStatsPartitionName
  2096.         }
  2097.         ::= { axL3vGlobalStatsTable 1 }
  2098.  
  2099.     AxL3vGlobalStatsEntry ::=
  2100.         SEQUENCE {
  2101.                 axL3vGlobalStatsPartitionName                    DisplayString,
  2102.                 axL3vGlobalStatsTotalThroughput              Counter64,
  2103.                 axL3vGlobalStatsTotalCurrentConnections      Counter64,
  2104.                 axL3vGlobalStatsTotalNewConnections          Counter64,
  2105.                 axL3vGlobalStatsTotalNewL4Connections        Counter64,
  2106.                         axL3vGlobalStatsTotalNewL7Connections            Counter64,
  2107.                         axL3vGlobalStatsTotalSslConnections              Counter64,
  2108.                         axL3vGlobalStatsTotalL7Requests                          Counter64,
  2109.                         axL3vGlobalStatsTotalL4Sessions                          Counter64
  2110.         }
  2111.  
  2112.     axL3vGlobalStatsPartitionName OBJECT-TYPE
  2113.         SYNTAX DisplayString
  2114.         MAX-ACCESS read-only
  2115.         STATUS current
  2116.         DESCRIPTION
  2117.                 "The L3V partition name."
  2118.         ::= { axL3vGlobalStatsEntry 1 }
  2119.  
  2120.    axL3vGlobalStatsTotalThroughput OBJECT-TYPE
  2121.         SYNTAX                  Counter64
  2122.         MAX-ACCESS              read-only
  2123.         STATUS                  current
  2124.         DESCRIPTION
  2125.         "Total throughput of all the interfaces in a L3V partition."
  2126.    ::= { axL3vGlobalStatsEntry 2 }
  2127.  
  2128.    axL3vGlobalStatsTotalCurrentConnections OBJECT-TYPE
  2129.         SYNTAX                  Counter64
  2130.         MAX-ACCESS              read-only
  2131.         STATUS                  current
  2132.         DESCRIPTION
  2133.         "Total current connections in a L3V partition."
  2134.    ::= { axL3vGlobalStatsEntry 3 }
  2135.  
  2136.    axL3vGlobalStatsTotalNewConnections OBJECT-TYPE
  2137.         SYNTAX                  Counter64
  2138.         MAX-ACCESS              read-only
  2139.         STATUS                  current
  2140.         DESCRIPTION
  2141.         "Total new connections in a L3V partition."
  2142.    ::= { axL3vGlobalStatsEntry 4 }
  2143.  
  2144.    axL3vGlobalStatsTotalNewL4Connections OBJECT-TYPE
  2145.         SYNTAX                  Counter64
  2146.         MAX-ACCESS              read-only
  2147.         STATUS                  current
  2148.         DESCRIPTION
  2149.         "Total new layer 4 connections in a L3V partition."
  2150.    ::= { axL3vGlobalStatsEntry 5 }
  2151.  
  2152.    axL3vGlobalStatsTotalNewL7Connections OBJECT-TYPE
  2153.         SYNTAX                  Counter64
  2154.         MAX-ACCESS              read-only
  2155.         STATUS                  current
  2156.         DESCRIPTION
  2157.         "Total new layer 7 connections in a L3V partition."
  2158.    ::= { axL3vGlobalStatsEntry 6 }
  2159.  
  2160.    axL3vGlobalStatsTotalSslConnections OBJECT-TYPE
  2161.         SYNTAX                  Counter64
  2162.         MAX-ACCESS              read-only
  2163.         STATUS                  current
  2164.         DESCRIPTION
  2165.         "Total SSL connections in a L3V partition."
  2166.    ::= { axL3vGlobalStatsEntry 7 }
  2167.  
  2168.    axL3vGlobalStatsTotalL7Requests OBJECT-TYPE
  2169.         SYNTAX                  Counter64
  2170.         MAX-ACCESS              read-only
  2171.         STATUS                  current
  2172.         DESCRIPTION
  2173.         "Total layer 7 requests in a L3V partition."
  2174.    ::= { axL3vGlobalStatsEntry 8 }
  2175.  
  2176.    axL3vGlobalStatsTotalL4Sessions OBJECT-TYPE
  2177.         SYNTAX                  Counter64
  2178.         MAX-ACCESS              read-only
  2179.         STATUS                  current
  2180.         DESCRIPTION
  2181.         "Total layer 7 session in a L3V partition."
  2182.    ::= { axL3vGlobalStatsEntry 9 }
  2183.  
  2184. --==================================================================
  2185. -- axServer
  2186. --==================================================================
  2187.  
  2188.     axServerCount OBJECT-TYPE
  2189.         SYNTAX INTEGER
  2190.         MAX-ACCESS read-only
  2191.         STATUS current
  2192.         DESCRIPTION
  2193.                 "The total count of axServer entries in the table."
  2194.         ::= { axServer 1 }
  2195.  
  2196.     axServerTable OBJECT-TYPE
  2197.         SYNTAX SEQUENCE OF AxServerEntry
  2198.         MAX-ACCESS not-accessible
  2199.         STATUS current
  2200.         DESCRIPTION
  2201.                 "A table has information of the servers."
  2202.         ::= { axServer 2 }
  2203.  
  2204.     axServerEntry OBJECT-TYPE
  2205.         SYNTAX  AxServerEntry
  2206.         MAX-ACCESS not-accessible
  2207.         STATUS current
  2208.         DESCRIPTION
  2209.                 "Columns in the axServer Table"
  2210.         INDEX {
  2211.                 axServerName
  2212.         }
  2213.         ::= { axServerTable 1 }
  2214.  
  2215.     AxServerEntry ::=
  2216.         SEQUENCE {
  2217.                 axServerName                                     DisplayString,
  2218.                 axServerAddress                              DisplayString,
  2219.                 axServerEnabledState                         INTEGER,
  2220.                 axServerHealthMonitor                        DisplayString,
  2221.                 axServerMonitorState                         INTEGER,
  2222.                         axServerAddressType                                      InetAddressType
  2223.         }
  2224.  
  2225.     axServerName OBJECT-TYPE
  2226.         SYNTAX DisplayString
  2227.         MAX-ACCESS read-only
  2228.         STATUS current
  2229.         DESCRIPTION
  2230.                 "The name of the server."
  2231.         ::= { axServerEntry 1 }
  2232.  
  2233.     axServerAddress OBJECT-TYPE
  2234.         SYNTAX DisplayString
  2235.         MAX-ACCESS read-only
  2236.         STATUS current
  2237.         DESCRIPTION
  2238.                 "The IP address or host name of the server."
  2239.         ::= { axServerEntry 2 }
  2240.  
  2241.     axServerEnabledState OBJECT-TYPE
  2242.         SYNTAX INTEGER {
  2243.                 disabled(0),
  2244.                 enabled(1)
  2245.         }
  2246.         MAX-ACCESS read-only
  2247.         STATUS current
  2248.         DESCRIPTION
  2249.                 "The monitor state for this node address."
  2250.         ::= { axServerEntry 3 }
  2251.  
  2252.     axServerHealthMonitor OBJECT-TYPE
  2253.         SYNTAX DisplayString
  2254.         MAX-ACCESS read-only
  2255.         STATUS current
  2256.         DESCRIPTION
  2257.                 "The health monitor name assigned to the server"
  2258.         ::= { axServerEntry 4 }
  2259.  
  2260.     axServerMonitorState OBJECT-TYPE
  2261.         SYNTAX INTEGER {
  2262.                 disabled(0),
  2263.                 up(1),
  2264.                 down(2)
  2265.         }
  2266.         MAX-ACCESS read-only
  2267.         STATUS current
  2268.         DESCRIPTION
  2269.                 "The server monitor status is in
  2270.                         0: Disabled (administrative disabled)
  2271.                         1: Up (administrative enabled)
  2272.                         2: Down (administrative enabled)"
  2273.         ::= { axServerEntry 5 }
  2274.  
  2275.         axServerAddressType OBJECT-TYPE
  2276.     SYNTAX InetAddressType
  2277.     MAX-ACCESS read-only
  2278.     STATUS current
  2279.     DESCRIPTION
  2280.         "The type of axServerAddress:
  2281.             unknown(0), ipv4(1), ipv6(2)..."
  2282.     ::= { axServerEntry 6 }
  2283.  
  2284.  
  2285. --==================================================================
  2286. -- axServerStat
  2287. --==================================================================
  2288.  
  2289.     axServerStatCount OBJECT-TYPE
  2290.         SYNTAX INTEGER
  2291.         MAX-ACCESS read-only
  2292.         STATUS current
  2293.         DESCRIPTION
  2294.                 "The total count of axServerStat entries in the table."
  2295.         ::= { axServerStat 1 }
  2296.  
  2297.     axServerStatTable OBJECT-TYPE
  2298.         SYNTAX SEQUENCE OF AxServerStatEntry
  2299.         MAX-ACCESS not-accessible
  2300.         STATUS current
  2301.         DESCRIPTION
  2302.                 "A table containing statistic information of node addresses."
  2303.         ::= { axServerStat 2 }
  2304.  
  2305.     axServerStatEntry OBJECT-TYPE
  2306.         SYNTAX  AxServerStatEntry
  2307.         MAX-ACCESS not-accessible
  2308.         STATUS current
  2309.         DESCRIPTION
  2310.                 "Columns in the axServerStat Table"
  2311.         INDEX {
  2312.                 axServerStatAddress
  2313.         }
  2314.         ::= { axServerStatTable 1 }
  2315.  
  2316.     AxServerStatEntry ::=
  2317.         SEQUENCE {
  2318.                 axServerStatAddress                       DisplayString,
  2319.                 axServerStatName                          DisplayString,
  2320.                 axServerStatServerPktsIn                  Counter64,
  2321.                 axServerStatServerBytesIn                 Counter64,
  2322.                 axServerStatServerPktsOut                 Counter64,
  2323.                 axServerStatServerBytesOut                Counter64,
  2324.                 axServerStatServerTotalConns              Counter64,
  2325.                 axServerStatServerCurConns                Integer32,
  2326.                 axServerStatServerPersistConns            Integer32,
  2327.                 axServerStatServerStatus                  INTEGER,
  2328.                 axServerStatServerTotalL7Reqs             Counter64,
  2329.                 axServerStatServerTotalCurrL7Reqs         Counter64,
  2330.                 axServerStatServerTotalSuccL7Reqs         Counter64,
  2331.                 axServerStatServerPeakConns               Counter32,
  2332.                         axServerStatAddressType                           InetAddressType
  2333.         }
  2334.  
  2335.     axServerStatAddress OBJECT-TYPE
  2336.         SYNTAX DisplayString
  2337.         MAX-ACCESS read-only
  2338.         STATUS current
  2339.         DESCRIPTION
  2340.                 "The ip address of this server."
  2341.         ::= { axServerStatEntry 1 }
  2342.  
  2343.     axServerStatName OBJECT-TYPE
  2344.         SYNTAX DisplayString
  2345.         MAX-ACCESS read-only
  2346.         STATUS current
  2347.         DESCRIPTION
  2348.                 "The server name."
  2349.         ::= { axServerStatEntry 2 }
  2350.  
  2351.     axServerStatServerPktsIn OBJECT-TYPE
  2352.         SYNTAX Counter64
  2353.         MAX-ACCESS read-only
  2354.         STATUS current
  2355.         DESCRIPTION
  2356.                 "The number of packets received from client to server."
  2357.         ::= { axServerStatEntry 3 }
  2358.  
  2359.     axServerStatServerBytesIn OBJECT-TYPE
  2360.         SYNTAX Counter64
  2361.         MAX-ACCESS read-only
  2362.         STATUS current
  2363.         DESCRIPTION
  2364.                 "The number of bytes received from client to server."
  2365.         ::= { axServerStatEntry 4 }
  2366.  
  2367.     axServerStatServerPktsOut OBJECT-TYPE
  2368.         SYNTAX Counter64
  2369.         MAX-ACCESS read-only
  2370.         STATUS current
  2371.         DESCRIPTION
  2372.                 "The number of packets sent for server to client."
  2373.         ::= { axServerStatEntry 5 }
  2374.  
  2375.     axServerStatServerBytesOut OBJECT-TYPE
  2376.         SYNTAX Counter64
  2377.         MAX-ACCESS read-only
  2378.         STATUS current
  2379.         DESCRIPTION
  2380.                 "The number of bytes sent from server to client."
  2381.         ::= { axServerStatEntry 6 }
  2382.  
  2383.     axServerStatServerTotalConns OBJECT-TYPE
  2384.         SYNTAX Counter64
  2385.         MAX-ACCESS read-only
  2386.         STATUS current
  2387.         DESCRIPTION
  2388.                 "The total connections from server side."
  2389.         ::= { axServerStatEntry 7 }
  2390.  
  2391.     axServerStatServerCurConns OBJECT-TYPE
  2392.         SYNTAX Integer32
  2393.         MAX-ACCESS read-only
  2394.         STATUS current
  2395.         DESCRIPTION
  2396.                 "The current connections from server side."
  2397.         ::= { axServerStatEntry 8 }
  2398.  
  2399.     axServerStatServerPersistConns OBJECT-TYPE
  2400.         SYNTAX Integer32
  2401.         MAX-ACCESS read-only
  2402.         STATUS deprecated
  2403.         DESCRIPTION
  2404.                 "The persistent connections from server side."
  2405.         ::= { axServerStatEntry 9 }
  2406.  
  2407.     axServerStatServerStatus OBJECT-TYPE
  2408.         SYNTAX INTEGER {
  2409.                 disabled(0),
  2410.                 up(1),
  2411.                 down(2)
  2412.         }
  2413.         MAX-ACCESS read-only
  2414.         STATUS current
  2415.         DESCRIPTION
  2416.                 "The server status is in
  2417.                         0: Disabled (administrative disabled)
  2418.                         1: Up (administrative enabled)
  2419.                         2: Down (administrative enabled)"
  2420.         ::= { axServerStatEntry 10 }
  2421.  
  2422.     axServerStatServerTotalL7Reqs OBJECT-TYPE
  2423.         SYNTAX Counter64
  2424.         MAX-ACCESS read-only
  2425.         STATUS current
  2426.         DESCRIPTION
  2427.                 "The total number of L7 requests if applicable"
  2428.         ::= { axServerStatEntry 11 }
  2429.  
  2430.     axServerStatServerTotalCurrL7Reqs OBJECT-TYPE
  2431.         SYNTAX Counter64
  2432.         MAX-ACCESS read-only
  2433.         STATUS current
  2434.         DESCRIPTION
  2435.                 "The number of current L7 requests if applicable"
  2436.         ::= { axServerStatEntry 12 }
  2437.  
  2438.     axServerStatServerTotalSuccL7Reqs OBJECT-TYPE
  2439.         SYNTAX Counter64
  2440.         MAX-ACCESS read-only
  2441.         STATUS current
  2442.         DESCRIPTION
  2443.                 "The number of successful L7 requests if applicable"
  2444.         ::= { axServerStatEntry 13 }
  2445.  
  2446.     axServerStatServerPeakConns OBJECT-TYPE
  2447.         SYNTAX Counter32
  2448.         MAX-ACCESS read-only
  2449.         STATUS current
  2450.         DESCRIPTION
  2451.                 "The number of the peak connections"
  2452.         ::= { axServerStatEntry 14 }
  2453.  
  2454.         axServerStatAddressType OBJECT-TYPE
  2455.     SYNTAX InetAddressType
  2456.     MAX-ACCESS read-only
  2457.     STATUS current
  2458.     DESCRIPTION
  2459.         "The type of axServerStatAddress:
  2460.             unknown(0), ipv4(1), ipv6(2)..."
  2461.     ::= { axServerStatEntry 15 }
  2462.  
  2463.  
  2464. --==================================================================
  2465. -- axServerPort
  2466. --==================================================================
  2467.  
  2468.     axServerPortTable OBJECT-TYPE
  2469.         SYNTAX SEQUENCE OF AxServerPortEntry
  2470.         MAX-ACCESS not-accessible
  2471.         STATUS current
  2472.         DESCRIPTION
  2473.                 "A table has information of real servers."
  2474.         ::= { axServerPort 1 }
  2475.  
  2476.     axServerPortEntry OBJECT-TYPE
  2477.         SYNTAX  AxServerPortEntry
  2478.         MAX-ACCESS not-accessible
  2479.         STATUS current
  2480.         DESCRIPTION
  2481.                 "Columns in the axServer Port Table"
  2482.         INDEX {
  2483.                 axServerNameInPort,
  2484.                 axServerPortType,
  2485.                 axServerPortNum
  2486.         }
  2487.         ::= { axServerPortTable 1 }
  2488.  
  2489.     AxServerPortEntry ::=
  2490.         SEQUENCE {
  2491.                 axServerNameInPort                         DisplayString,
  2492.                 axServerPortType                           INTEGER,
  2493.                 axServerPortNum                            Integer32,
  2494.                 axServerAddressInPort                      DisplayString,
  2495.                 axServerPortEnabledState                   INTEGER,
  2496.                 axServerPortHealthMonitor                  DisplayString,
  2497.                 axServerPortConnLimit                      Integer32,
  2498.                 axServerPortWeight                         Integer32,
  2499.                 axServerPortMonitorState                   INTEGER,
  2500.                         axServerAddressInPortType                          InetAddressType
  2501.         }
  2502.  
  2503.     axServerNameInPort OBJECT-TYPE
  2504.         SYNTAX DisplayString
  2505.         MAX-ACCESS read-only
  2506.         STATUS current
  2507.         DESCRIPTION
  2508.                 "The server name."
  2509.         ::= { axServerPortEntry 1 }
  2510.  
  2511.     axServerPortType OBJECT-TYPE
  2512.         SYNTAX INTEGER {
  2513.                 tcp(2),
  2514.                 udp(3)
  2515.         }
  2516.         MAX-ACCESS read-only
  2517.         STATUS current
  2518.         DESCRIPTION
  2519.                 "The port type of the server port."
  2520.         ::= { axServerPortEntry 2 }
  2521.  
  2522.     axServerPortNum OBJECT-TYPE
  2523.         SYNTAX Integer32
  2524.         MAX-ACCESS read-only
  2525.         STATUS current
  2526.         DESCRIPTION
  2527.                 "The port number of the server."
  2528.         ::= { axServerPortEntry 3 }
  2529.  
  2530.     axServerAddressInPort OBJECT-TYPE
  2531.         SYNTAX DisplayString
  2532.         MAX-ACCESS read-only
  2533.         STATUS current
  2534.         DESCRIPTION
  2535.                 "The IP address or host name of the server."
  2536.         ::= { axServerPortEntry 4 }
  2537.  
  2538.     axServerPortEnabledState OBJECT-TYPE
  2539.         SYNTAX INTEGER {
  2540.                 disabled(0),
  2541.                 enabled(1)
  2542.         }
  2543.         MAX-ACCESS read-only
  2544.         STATUS current
  2545.         DESCRIPTION
  2546.                 "The monitor state for this node address."
  2547.         ::= { axServerPortEntry 5 }
  2548.  
  2549.     axServerPortHealthMonitor OBJECT-TYPE
  2550.         SYNTAX DisplayString
  2551.         MAX-ACCESS read-only
  2552.         STATUS current
  2553.         DESCRIPTION
  2554.                 "The health monitor name assigned to the server"
  2555.         ::= { axServerPortEntry 6 }
  2556.  
  2557.     axServerPortConnLimit OBJECT-TYPE
  2558.         SYNTAX Integer32
  2559.         MAX-ACCESS read-only
  2560.         STATUS current
  2561.         DESCRIPTION
  2562.                 "The connection limit of the server port."
  2563.         ::= { axServerPortEntry 7 }
  2564.  
  2565.     axServerPortWeight OBJECT-TYPE
  2566.         SYNTAX Integer32
  2567.         MAX-ACCESS read-only
  2568.         STATUS current
  2569.         DESCRIPTION
  2570.                 "The weight of the server port."
  2571.         ::= { axServerPortEntry 8 }
  2572.  
  2573.     axServerPortMonitorState OBJECT-TYPE
  2574.         SYNTAX INTEGER {
  2575.                 disabled(0),
  2576.                 up(1),
  2577.                 down(2)
  2578.         }
  2579.         MAX-ACCESS read-only
  2580.         STATUS current
  2581.         DESCRIPTION
  2582.                 "The server port status is in
  2583.                         0: Disabled (administrative disabled)
  2584.                         1: Up (administrative enabled)
  2585.                         2: Down (administrative enabled)"
  2586.         ::= { axServerPortEntry 9 }
  2587.  
  2588.         axServerAddressInPortType OBJECT-TYPE
  2589.     SYNTAX InetAddressType
  2590.     MAX-ACCESS read-only
  2591.     STATUS current
  2592.     DESCRIPTION
  2593.         "The type of axServerAddressInPort:
  2594.             unknown(0), ipv4(1), ipv6(2)..."
  2595.     ::= { axServerPortEntry 10 }
  2596.  
  2597.  
  2598. --==================================================================
  2599. -- axServerPortStat
  2600. --==================================================================
  2601.  
  2602.     axServerPortStatTable OBJECT-TYPE
  2603.         SYNTAX SEQUENCE OF AxServerPortStatEntry
  2604.         MAX-ACCESS not-accessible
  2605.         STATUS current
  2606.         DESCRIPTION
  2607.                 "A table containing statistic information of node addresses."
  2608.         ::= { axServerPortStat 1 }
  2609.  
  2610.     axServerPortStatEntry OBJECT-TYPE
  2611.         SYNTAX  AxServerPortStatEntry
  2612.         MAX-ACCESS not-accessible
  2613.         STATUS current
  2614.         DESCRIPTION
  2615.                 "Columns in the axServerStat Table"
  2616.         INDEX {
  2617.                 axServerStatAddrInPort,
  2618.                 axServerStatPortType,
  2619.                 axServerStatPortNum
  2620.         }
  2621.         ::= { axServerPortStatTable 1 }
  2622.  
  2623.     AxServerPortStatEntry ::=
  2624.         SEQUENCE {
  2625.                 axServerStatAddrInPort                  DisplayString,
  2626.                 axServerStatPortType                    INTEGER,
  2627.                 axServerStatPortNum                     Integer32,
  2628.                 axServerStatNameInPort                  DisplayString,
  2629.                 axServerPortStatPktsIn                  Counter64,
  2630.                 axServerPortStatBytesIn                 Counter64,
  2631.                 axServerPortStatPktsOut                 Counter64,
  2632.                 axServerPortStatBytesOut                Counter64,
  2633.                 axServerPortStatTotalConns              Counter64,
  2634.                 axServerPortStatCurConns                Integer32,
  2635.                 axServerPortStatPersistConns            Integer32,
  2636.                 axServerPortStatStatus                  INTEGER,
  2637.                 axServerPortStatTotalL7Reqs             Counter64,
  2638.                 axServerPortStatTotalCurrL7Reqs         Counter64,
  2639.                 axServerPortStatTotalSuccL7Reqs         Counter64,
  2640.                 axServerPortStatPeakConns               Counter32,
  2641.                         axServerStatAddrInPortType                      InetAddressType
  2642.         }
  2643.  
  2644.     axServerStatAddrInPort OBJECT-TYPE
  2645.         SYNTAX DisplayString
  2646.         MAX-ACCESS read-only
  2647.         STATUS current
  2648.         DESCRIPTION
  2649.                 "The ip address of this server."
  2650.         ::= { axServerPortStatEntry 1 }
  2651.  
  2652.     axServerStatPortType OBJECT-TYPE
  2653.         SYNTAX INTEGER {
  2654.                 tcp(2),
  2655.                 udp(3)
  2656.         }
  2657.         MAX-ACCESS read-only
  2658.         STATUS current
  2659.         DESCRIPTION
  2660.                 "The server port type."
  2661.         ::= { axServerPortStatEntry 2 }
  2662.  
  2663.     axServerStatPortNum OBJECT-TYPE
  2664.         SYNTAX Integer32
  2665.         MAX-ACCESS read-only
  2666.         STATUS current
  2667.         DESCRIPTION
  2668.                 "The server port number."
  2669.         ::= { axServerPortStatEntry 3 }
  2670.  
  2671.     axServerStatNameInPort OBJECT-TYPE
  2672.         SYNTAX DisplayString
  2673.         MAX-ACCESS read-only
  2674.         STATUS current
  2675.         DESCRIPTION
  2676.                 "The ip address of this server."
  2677.         ::= { axServerPortStatEntry 4 }
  2678.  
  2679.     axServerPortStatPktsIn OBJECT-TYPE
  2680.         SYNTAX Counter64
  2681.         MAX-ACCESS read-only
  2682.         STATUS current
  2683.         DESCRIPTION
  2684.                 "The number of packets received from client to server."
  2685.         ::= { axServerPortStatEntry 5 }
  2686.  
  2687.     axServerPortStatBytesIn OBJECT-TYPE
  2688.         SYNTAX Counter64
  2689.         MAX-ACCESS read-only
  2690.         STATUS current
  2691.         DESCRIPTION
  2692.                 "The number of bytes received from client to server."
  2693.         ::= { axServerPortStatEntry 6 }
  2694.  
  2695.     axServerPortStatPktsOut OBJECT-TYPE
  2696.         SYNTAX Counter64
  2697.         MAX-ACCESS read-only
  2698.         STATUS current
  2699.         DESCRIPTION
  2700.                 "The number of packets sent from server to client."
  2701.         ::= { axServerPortStatEntry 7 }
  2702.  
  2703.     axServerPortStatBytesOut OBJECT-TYPE
  2704.         SYNTAX Counter64
  2705.         MAX-ACCESS read-only
  2706.         STATUS current
  2707.         DESCRIPTION
  2708.                 "The number of bytes sent from server to client."
  2709.         ::= { axServerPortStatEntry 8 }
  2710.  
  2711.     axServerPortStatTotalConns OBJECT-TYPE
  2712.         SYNTAX Counter64
  2713.         MAX-ACCESS read-only
  2714.         STATUS current
  2715.         DESCRIPTION
  2716.                 "The maximum connections from server side."
  2717.         ::= { axServerPortStatEntry 9 }
  2718.  
  2719.     axServerPortStatCurConns OBJECT-TYPE
  2720.         SYNTAX Integer32
  2721.         MAX-ACCESS read-only
  2722.         STATUS current
  2723.         DESCRIPTION
  2724.                 "The current connections from server side."
  2725.         ::= { axServerPortStatEntry 10 }
  2726.  
  2727.     axServerPortStatPersistConns OBJECT-TYPE
  2728.         SYNTAX Integer32
  2729.         MAX-ACCESS read-only
  2730.         STATUS deprecated
  2731.         DESCRIPTION
  2732.                 "The persistent connections from server side."
  2733.         ::= { axServerPortStatEntry 11 }
  2734.  
  2735.     axServerPortStatStatus OBJECT-TYPE
  2736.         SYNTAX INTEGER {
  2737.                 disabled(0),
  2738.                 up(1),
  2739.                 down(2)
  2740.         }
  2741.         MAX-ACCESS read-only
  2742.         STATUS current
  2743.         DESCRIPTION
  2744.                 "The server port status is in
  2745.                         0: Disabled (administrative disabled)
  2746.                         1: Up (administrative enabled)
  2747.                         2: Down (administrative enabled)"
  2748.         ::= { axServerPortStatEntry 12 }
  2749.  
  2750.     axServerPortStatTotalL7Reqs OBJECT-TYPE
  2751.         SYNTAX Counter64
  2752.         MAX-ACCESS read-only
  2753.         STATUS current
  2754.         DESCRIPTION
  2755.                 "The total number of L7 requests if applicable"
  2756.         ::= { axServerPortStatEntry 13 }
  2757.  
  2758.     axServerPortStatTotalCurrL7Reqs OBJECT-TYPE
  2759.         SYNTAX Counter64
  2760.         MAX-ACCESS read-only
  2761.         STATUS current
  2762.         DESCRIPTION
  2763.                 "The number of current L7 requests if applicable"
  2764.         ::= { axServerPortStatEntry 14 }
  2765.  
  2766.     axServerPortStatTotalSuccL7Reqs OBJECT-TYPE
  2767.         SYNTAX Counter64
  2768.         MAX-ACCESS read-only
  2769.         STATUS current
  2770.         DESCRIPTION
  2771.                 "The number of successful L7 requests if applicable"
  2772.         ::= { axServerPortStatEntry 15 }
  2773.  
  2774.     axServerPortStatPeakConns OBJECT-TYPE
  2775.         SYNTAX Counter32
  2776.         MAX-ACCESS read-only
  2777.         STATUS current
  2778.         DESCRIPTION
  2779.                 "The number of peak connections"
  2780.         ::= { axServerPortStatEntry 16 }
  2781.  
  2782.         axServerStatAddrInPortType OBJECT-TYPE
  2783.     SYNTAX InetAddressType
  2784.     MAX-ACCESS read-only
  2785.     STATUS current
  2786.     DESCRIPTION
  2787.         "The type of axServerStatAddrInPort:
  2788.             unknown(0), ipv4(1), ipv6(2)..."
  2789.     ::= { axServerPortStatEntry 17 }
  2790.  
  2791. --==================================================================
  2792. -- axServiceGroup
  2793. --==================================================================
  2794.  
  2795.     axServiceGroupCount OBJECT-TYPE
  2796.         SYNTAX Integer32
  2797.         MAX-ACCESS read-only
  2798.         STATUS current
  2799.         DESCRIPTION
  2800.                 "The number of axServiceGroup entries in the table."
  2801.         ::= { axServiceGroup 1 }
  2802.  
  2803.     axServiceGroupTable OBJECT-TYPE
  2804.         SYNTAX SEQUENCE OF AxServiceGroupEntry
  2805.         MAX-ACCESS not-accessible
  2806.         STATUS current
  2807.         DESCRIPTION
  2808.                 "A table containing information of service groups."
  2809.         ::= { axServiceGroup 2 }
  2810.  
  2811.     axServiceGroupEntry OBJECT-TYPE
  2812.         SYNTAX  AxServiceGroupEntry
  2813.         MAX-ACCESS not-accessible
  2814.         STATUS current
  2815.         DESCRIPTION
  2816.                 "Columns in the axServiceGroup Table"
  2817.         INDEX {
  2818.                 axServiceGroupName
  2819.         }
  2820.         ::= { axServiceGroupTable 1 }
  2821.  
  2822.     AxServiceGroupEntry ::=
  2823.         SEQUENCE {
  2824.                 axServiceGroupName               DisplayString,
  2825.                 axServiceGroupType               INTEGER,
  2826.                 axServiceGroupLbAlgorithm        INTEGER,
  2827.                         axServiceGroupDisplayStatus      INTEGER,
  2828.         }
  2829.  
  2830.     axServiceGroupName OBJECT-TYPE
  2831.         SYNTAX DisplayString
  2832.         MAX-ACCESS read-only
  2833.         STATUS current
  2834.         DESCRIPTION
  2835.                 "The service group name."
  2836.         ::= { axServiceGroupEntry 1 }
  2837.  
  2838.     axServiceGroupType OBJECT-TYPE
  2839.         SYNTAX INTEGER {
  2840.                 firewall(1),
  2841.                 tcp(2),
  2842.                 udp(3)
  2843.         }
  2844.         MAX-ACCESS read-only
  2845.         STATUS current
  2846.         DESCRIPTION
  2847.                 "The type of the service group."
  2848.         ::= { axServiceGroupEntry 2 }
  2849.  
  2850.     axServiceGroupLbAlgorithm OBJECT-TYPE
  2851.         SYNTAX INTEGER {
  2852.                 roundRobin(0),
  2853.                 weightRoundRobin(1),
  2854.                 leastConnection(2),
  2855.                 weightLeastConnection(3),
  2856.                 serviceLeastConnection(4),
  2857.                 serviceWeightLeastConnection(5),
  2858.                 fastResponseTime(6),
  2859.                 leastRequest(7),
  2860.                 roundRobinStrict(8),
  2861.                 sourceIpHashBasedStateless(9),
  2862.                 sourceIpOnlyHashBasedStateless(10),
  2863.                 destinationIpHashBasedStateless(11),
  2864.                 sourceDestinationIpHashBasedStateless(12),
  2865.                 perPacketRoundRobinStateless(13),
  2866.                 sourceIpOnlyHash(15),
  2867.                 sourceIpWithPortHash(16),
  2868.                 destinationIpOnlyHash(17),
  2869.                 destinationIpWithPortHash(18)
  2870.         }
  2871.         MAX-ACCESS read-only
  2872.         STATUS current
  2873.         DESCRIPTION
  2874.                 "The load balance method for the service group"
  2875.         ::= { axServiceGroupEntry 3 }
  2876.  
  2877.     axServiceGroupDisplayStatus OBJECT-TYPE
  2878.         SYNTAX INTEGER {
  2879.                 allUp(1),
  2880.                 functionalUp(2),
  2881.                 partialUp(3),
  2882.                 stopped(4)
  2883.         }
  2884.         MAX-ACCESS read-only
  2885.         STATUS current
  2886.         DESCRIPTION
  2887.                 "The display status of the service group:
  2888.                     AllUp(1), FunctionalUp(2), PartialUp(3), Stopped(4)."
  2889.         ::= { axServiceGroupEntry 4 }
  2890.  
  2891.  
  2892.  
  2893. --==================================================================
  2894. -- axServiceGroupStat
  2895. --==================================================================
  2896.  
  2897.     axServiceGroupStatTable OBJECT-TYPE
  2898.         SYNTAX SEQUENCE OF AxServiceGroupStatEntry
  2899.         MAX-ACCESS not-accessible
  2900.         STATUS current
  2901.         DESCRIPTION
  2902.                 "A table containing statistic information of service groups."
  2903.         ::= { axServiceGroupStat 1 }
  2904.  
  2905.     axServiceGroupStatEntry OBJECT-TYPE
  2906.         SYNTAX  AxServiceGroupStatEntry
  2907.         MAX-ACCESS not-accessible
  2908.         STATUS current
  2909.         DESCRIPTION
  2910.                 "Columns in the axServiceGroupStat Table"
  2911.         INDEX {
  2912.                 axServiceGroupStatName
  2913.         }
  2914.         ::= { axServiceGroupStatTable 1 }
  2915.  
  2916.     AxServiceGroupStatEntry ::=
  2917.         SEQUENCE {
  2918.                 axServiceGroupStatName                        DisplayString,
  2919.                 axServiceGroupStatPktsIn                      Counter64,
  2920.                 axServiceGroupStatBytesIn                     Counter64,
  2921.                 axServiceGroupStatPktsOut                     Counter64,
  2922.                 axServiceGroupStatBytesOut                    Counter64,
  2923.                 axServiceGroupStatTotConns                    Counter64,
  2924.                 axServiceGroupStatCurConns                    Integer32,
  2925.                 axServiceGroupStatPersistConns                Integer32,
  2926.                 axServiceGroupStatDisplayStatus               INTEGER,
  2927.                 axServiceGroupStatTotalL7Reqs                 Counter64,
  2928.                 axServiceGroupStatTotalCurrL7Reqs             Counter64,
  2929.                 axServiceGroupStatTotalSuccL7Reqs             Counter64,
  2930.                 axServiceGroupStatPeakConns                   Counter32
  2931.         }
  2932.  
  2933.     axServiceGroupStatName OBJECT-TYPE
  2934.         SYNTAX DisplayString
  2935.         MAX-ACCESS read-only
  2936.         STATUS current
  2937.         DESCRIPTION
  2938.                 "The service group name."
  2939.         ::= { axServiceGroupStatEntry 1 }
  2940.  
  2941.     axServiceGroupStatPktsIn OBJECT-TYPE
  2942.         SYNTAX Counter64
  2943.         MAX-ACCESS read-only
  2944.         STATUS current
  2945.         DESCRIPTION
  2946.                 "The number of packets received from client to server."
  2947.         ::= { axServiceGroupStatEntry 2 }
  2948.  
  2949.     axServiceGroupStatBytesIn OBJECT-TYPE
  2950.         SYNTAX Counter64
  2951.         MAX-ACCESS read-only
  2952.         STATUS current
  2953.         DESCRIPTION
  2954.                 "The number of bytes received from client to server."
  2955.         ::= { axServiceGroupStatEntry 3 }
  2956.  
  2957.     axServiceGroupStatPktsOut OBJECT-TYPE
  2958.         SYNTAX Counter64
  2959.         MAX-ACCESS read-only
  2960.         STATUS current
  2961.         DESCRIPTION
  2962.                 "The number of packets sent from server to client."
  2963.         ::= { axServiceGroupStatEntry 4 }
  2964.  
  2965.     axServiceGroupStatBytesOut OBJECT-TYPE
  2966.         SYNTAX Counter64
  2967.         MAX-ACCESS read-only
  2968.         STATUS current
  2969.         DESCRIPTION
  2970.                 "The number of bytes sent from server to client."
  2971.         ::= { axServiceGroupStatEntry 5 }
  2972.  
  2973.     axServiceGroupStatTotConns OBJECT-TYPE
  2974.         SYNTAX Counter64
  2975.         MAX-ACCESS read-only
  2976.         STATUS current
  2977.         DESCRIPTION
  2978.                 "The total connections from server side."
  2979.         ::= { axServiceGroupStatEntry 6 }
  2980.  
  2981.     axServiceGroupStatCurConns OBJECT-TYPE
  2982.         SYNTAX Integer32
  2983.         MAX-ACCESS read-only
  2984.         STATUS current
  2985.         DESCRIPTION
  2986.                 "The current connections from server side."
  2987.         ::= { axServiceGroupStatEntry 7 }
  2988.  
  2989.     axServiceGroupStatPersistConns OBJECT-TYPE
  2990.         SYNTAX Integer32
  2991.         MAX-ACCESS read-only
  2992.         STATUS deprecated
  2993.         DESCRIPTION
  2994.                 "The persistent connections from server side."
  2995.         ::= { axServiceGroupStatEntry 8 }
  2996.  
  2997.     axServiceGroupStatDisplayStatus OBJECT-TYPE
  2998.         SYNTAX INTEGER {
  2999.                 allUp(1),
  3000.                 functionalUp(2),
  3001.                 partialUp(3),
  3002.                 stopped(4)
  3003.         }
  3004.         MAX-ACCESS read-only
  3005.         STATUS current
  3006.         DESCRIPTION
  3007.                 "The display status of the service group:
  3008.                     AllUp(1), FunctionalUp(2), PartialUp(3), Stopped(4)."
  3009.         ::= { axServiceGroupStatEntry 9 }
  3010.  
  3011.     axServiceGroupStatTotalL7Reqs OBJECT-TYPE
  3012.         SYNTAX Counter64
  3013.         MAX-ACCESS read-only
  3014.         STATUS current
  3015.         DESCRIPTION
  3016.                 "The total number of L7 requests if applicable"
  3017.         ::= { axServiceGroupStatEntry 10 }
  3018.  
  3019.     axServiceGroupStatTotalCurrL7Reqs OBJECT-TYPE
  3020.         SYNTAX Counter64
  3021.         MAX-ACCESS read-only
  3022.         STATUS current
  3023.         DESCRIPTION
  3024.                 "The number of current L7 requests if applicable"
  3025.         ::= { axServiceGroupStatEntry 11 }
  3026.  
  3027.     axServiceGroupStatTotalSuccL7Reqs OBJECT-TYPE
  3028.         SYNTAX Counter64
  3029.         MAX-ACCESS read-only
  3030.         STATUS current
  3031.         DESCRIPTION
  3032.                 "The number of successful L7 requests if applicable"
  3033.         ::= { axServiceGroupStatEntry 12 }
  3034.  
  3035.     axServiceGroupStatPeakConns OBJECT-TYPE
  3036.         SYNTAX Counter32
  3037.         MAX-ACCESS read-only
  3038.         STATUS current
  3039.         DESCRIPTION
  3040.                 "The number of peak connections"
  3041.         ::= { axServiceGroupStatEntry 13 }
  3042.  
  3043. --==================================================================
  3044. -- axServiceGroupMember
  3045. --==================================================================
  3046.  
  3047.     axServiceGroupMemberTable OBJECT-TYPE
  3048.         SYNTAX SEQUENCE OF AxServiceGroupMemberEntry
  3049.         MAX-ACCESS not-accessible
  3050.         STATUS current
  3051.         DESCRIPTION
  3052.                 "A table containing information of service group members."
  3053.         ::= { axServiceGroupMember 1 }
  3054.  
  3055.     axServiceGroupMemberEntry OBJECT-TYPE
  3056.         SYNTAX  AxServiceGroupMemberEntry
  3057.         MAX-ACCESS not-accessible
  3058.         STATUS current
  3059.         DESCRIPTION
  3060.                 "Columns in the axServiceGroupMember Table"
  3061.         INDEX {
  3062.                 axServiceGroupNameInMember,
  3063.                 axServiceGroupMemberAddrType,
  3064.                 axServerNameInServiceGroupMember,
  3065.                 axServerPortNumInServiceGroupMember
  3066.         }
  3067.         ::= { axServiceGroupMemberTable 1 }
  3068.  
  3069.     AxServiceGroupMemberEntry ::=
  3070.         SEQUENCE {
  3071.                 axServiceGroupNameInMember                DisplayString,
  3072.                 axServiceGroupMemberAddrType              INTEGER,
  3073.                 axServerNameInServiceGroupMember          DisplayString,
  3074.                 axServerPortNumInServiceGroupMember       Integer32,
  3075.                 axServerPortPriorityInServiceGroupMember  Integer32,
  3076.                 axServerPortStatusInServiceGroupMember    INTEGER
  3077.         }
  3078.  
  3079.     axServiceGroupNameInMember OBJECT-TYPE
  3080.         SYNTAX DisplayString
  3081.         MAX-ACCESS read-only
  3082.         STATUS current
  3083.         DESCRIPTION
  3084.                 "The name of axServiceGroup."
  3085.         ::= { axServiceGroupMemberEntry 1 }
  3086.  
  3087.     axServiceGroupMemberAddrType OBJECT-TYPE
  3088.         SYNTAX INTEGER {
  3089.                 firewall(1),
  3090.                 tcp(2),
  3091.                 udp(3)
  3092.         }
  3093.         MAX-ACCESS read-only
  3094.         STATUS current
  3095.         DESCRIPTION
  3096.                 "The type of service group"
  3097.         ::= { axServiceGroupMemberEntry 2 }
  3098.  
  3099.     axServerNameInServiceGroupMember OBJECT-TYPE
  3100.         SYNTAX DisplayString
  3101.         MAX-ACCESS read-only
  3102.         STATUS current
  3103.         DESCRIPTION
  3104.                 "The server name in the service group member."
  3105.         ::= { axServiceGroupMemberEntry 3 }
  3106.  
  3107.     axServerPortNumInServiceGroupMember OBJECT-TYPE
  3108.         SYNTAX Integer32
  3109.         MAX-ACCESS read-only
  3110.         STATUS current
  3111.         DESCRIPTION
  3112.                 "The port number of this member."
  3113.         ::= { axServiceGroupMemberEntry 4 }
  3114.  
  3115.     axServerPortPriorityInServiceGroupMember OBJECT-TYPE
  3116.         SYNTAX Integer32
  3117.         MAX-ACCESS read-only
  3118.         STATUS current
  3119.         DESCRIPTION
  3120.                 "The priority value of a service group member."
  3121.         ::= { axServiceGroupMemberEntry 5 }
  3122.  
  3123.     axServerPortStatusInServiceGroupMember OBJECT-TYPE
  3124.         SYNTAX INTEGER {
  3125.                 disabled(0),
  3126.                 up(1),
  3127.                 down(2)
  3128.         }
  3129.         MAX-ACCESS read-only
  3130.         STATUS current
  3131.         DESCRIPTION
  3132.                 "The server port status of the service group member:
  3133.                     Disabled(0), Up(1), Down(2)."
  3134.         ::= { axServiceGroupMemberEntry 6 }
  3135.  
  3136. --==================================================================
  3137. -- axServiceGroupMemberStat
  3138. --==================================================================
  3139.  
  3140.     axServiceGroupMemberStatTable OBJECT-TYPE
  3141.         SYNTAX SEQUENCE OF AxServiceGroupMemberStatEntry
  3142.         MAX-ACCESS not-accessible
  3143.         STATUS current
  3144.         DESCRIPTION
  3145.                 "A table containing statistic information of service group members."
  3146.         ::= { axServiceGroupMemberStat 1 }
  3147.  
  3148.     axServiceGroupMemberStatEntry OBJECT-TYPE
  3149.         SYNTAX  AxServiceGroupMemberStatEntry
  3150.         MAX-ACCESS not-accessible
  3151.         STATUS current
  3152.         DESCRIPTION
  3153.                 "Columns in the axServiceGroupMemberStat Table"
  3154.         INDEX {
  3155.                 axServiceGroupMemberStatName,
  3156.                 axServiceGroupMemberStatAddrType,
  3157.                 axServerNameInServiceGroupMemberStat,
  3158.                 axServerPortNumInServiceGroupMemberStat
  3159.         }
  3160.         ::= { axServiceGroupMemberStatTable 1 }
  3161.  
  3162.     AxServiceGroupMemberStatEntry ::=
  3163.         SEQUENCE {
  3164.                 axServiceGroupMemberStatName                     DisplayString,
  3165.                 axServiceGroupMemberStatAddrType                 INTEGER,
  3166.                 axServerNameInServiceGroupMemberStat             DisplayString,
  3167.                 axServerPortNumInServiceGroupMemberStat          Integer32,
  3168.                 axServiceGroupMemberStatPktsIn                   Counter64,
  3169.                 axServiceGroupMemberStatBytesIn                  Counter64,
  3170.                 axServiceGroupMemberStatPktsOut                  Counter64,
  3171.                 axServiceGroupMemberStatBytesOut                 Counter64,
  3172.                 axServiceGroupMemberStatPersistConns             Integer32,
  3173.                 axServiceGroupMemberStatTotConns                 Counter64,
  3174.                 axServiceGroupMemberStatCurConns                 Integer32,
  3175.                 axServerPortStatusInServiceGroupMemberStat       INTEGER,
  3176.                 axServiceGroupMemberStatTotalL7Reqs              Counter64,
  3177.                 axServiceGroupMemberStatTotalCurrL7Reqs          Counter64,
  3178.                 axServiceGroupMemberStatTotalSuccL7Reqs          Counter64,
  3179.                 axServiceGroupMemberStatResponseTime             Integer32,
  3180.                 axServiceGroupMemberStatPeakConns                Counter32
  3181.         }
  3182.  
  3183.     axServiceGroupMemberStatName OBJECT-TYPE
  3184.         SYNTAX DisplayString
  3185.         MAX-ACCESS read-only
  3186.         STATUS current
  3187.         DESCRIPTION
  3188.                 "The service group name."
  3189.         ::= { axServiceGroupMemberStatEntry 1 }
  3190.  
  3191.     axServiceGroupMemberStatAddrType OBJECT-TYPE
  3192.         SYNTAX INTEGER {
  3193.                 firewall(1),
  3194.                 tcp(2),
  3195.                 udp(3)
  3196.         }
  3197.         MAX-ACCESS read-only
  3198.         STATUS current
  3199.         DESCRIPTION
  3200.                 "The type of service group"
  3201.         ::= { axServiceGroupMemberStatEntry 2 }
  3202.  
  3203.     axServerNameInServiceGroupMemberStat OBJECT-TYPE
  3204.         SYNTAX DisplayString
  3205.         MAX-ACCESS read-only
  3206.         STATUS current
  3207.         DESCRIPTION
  3208.                 "The ip address of this member in the service group."
  3209.         ::= { axServiceGroupMemberStatEntry 3 }
  3210.  
  3211.     axServerPortNumInServiceGroupMemberStat OBJECT-TYPE
  3212.         SYNTAX Integer32
  3213.         MAX-ACCESS read-only
  3214.         STATUS current
  3215.         DESCRIPTION
  3216.                 "The port number of this member."
  3217.         ::= { axServiceGroupMemberStatEntry 4 }
  3218.  
  3219.     axServiceGroupMemberStatPktsIn OBJECT-TYPE
  3220.         SYNTAX Counter64
  3221.         MAX-ACCESS read-only
  3222.         STATUS current
  3223.         DESCRIPTION
  3224.                 "The number of packets received from client to server."
  3225.         ::= { axServiceGroupMemberStatEntry 5 }
  3226.  
  3227.     axServiceGroupMemberStatBytesIn OBJECT-TYPE
  3228.         SYNTAX Counter64
  3229.         MAX-ACCESS read-only
  3230.         STATUS current
  3231.         DESCRIPTION
  3232.                 "The number of bytes received from client to server."
  3233.         ::= { axServiceGroupMemberStatEntry 6 }
  3234.  
  3235.     axServiceGroupMemberStatPktsOut OBJECT-TYPE
  3236.         SYNTAX Counter64
  3237.         MAX-ACCESS read-only
  3238.         STATUS current
  3239.         DESCRIPTION
  3240.                 "The number of packets sent from server to client."
  3241.         ::= { axServiceGroupMemberStatEntry 7 }
  3242.  
  3243.     axServiceGroupMemberStatBytesOut OBJECT-TYPE
  3244.         SYNTAX Counter64
  3245.         MAX-ACCESS read-only
  3246.         STATUS current
  3247.         DESCRIPTION
  3248.                 "The number of bytes sent from server to client."
  3249.         ::= { axServiceGroupMemberStatEntry 8 }
  3250.  
  3251.     axServiceGroupMemberStatPersistConns OBJECT-TYPE
  3252.         SYNTAX Integer32
  3253.         MAX-ACCESS read-only
  3254.         STATUS deprecated
  3255.         DESCRIPTION
  3256.                 "The persistent connections from server side."
  3257.         ::= { axServiceGroupMemberStatEntry 9 }
  3258.  
  3259.     axServiceGroupMemberStatTotConns OBJECT-TYPE
  3260.         SYNTAX Counter64
  3261.         MAX-ACCESS read-only
  3262.         STATUS current
  3263.         DESCRIPTION
  3264.                 "The total connections from server side."
  3265.         ::= { axServiceGroupMemberStatEntry 10 }
  3266.  
  3267.     axServiceGroupMemberStatCurConns OBJECT-TYPE
  3268.         SYNTAX Integer32
  3269.         MAX-ACCESS read-only
  3270.         STATUS current
  3271.         DESCRIPTION
  3272.                 "The current connections from server side."
  3273.         ::= { axServiceGroupMemberStatEntry 11 }
  3274.  
  3275.     axServerPortStatusInServiceGroupMemberStat OBJECT-TYPE
  3276.         SYNTAX INTEGER {
  3277.                 disabled(0),
  3278.                 up(1),
  3279.                 down(2)
  3280.         }
  3281.         MAX-ACCESS read-only
  3282.         STATUS current
  3283.         DESCRIPTION
  3284.                 "The server port status of the service group member:
  3285.                     Disabled(0), Up(1), Down(2)"
  3286.         ::= { axServiceGroupMemberStatEntry 12 }
  3287.  
  3288.     axServiceGroupMemberStatTotalL7Reqs OBJECT-TYPE
  3289.         SYNTAX Counter64
  3290.         MAX-ACCESS read-only
  3291.         STATUS current
  3292.         DESCRIPTION
  3293.                 "The total number of L7 requests if applicable"
  3294.         ::= { axServiceGroupMemberStatEntry 13 }
  3295.  
  3296.     axServiceGroupMemberStatTotalCurrL7Reqs OBJECT-TYPE
  3297.         SYNTAX Counter64
  3298.         MAX-ACCESS read-only
  3299.         STATUS current
  3300.         DESCRIPTION
  3301.                 "The number of current L7 requests if applicable"
  3302.         ::= { axServiceGroupMemberStatEntry 14 }
  3303.  
  3304.     axServiceGroupMemberStatTotalSuccL7Reqs OBJECT-TYPE
  3305.         SYNTAX Counter64
  3306.         MAX-ACCESS read-only
  3307.         STATUS current
  3308.         DESCRIPTION
  3309.                 "The number of successful L7 requests if applicable"
  3310.         ::= { axServiceGroupMemberStatEntry 15 }
  3311.  
  3312.     axServiceGroupMemberStatResponseTime OBJECT-TYPE
  3313.         SYNTAX Integer32
  3314.         MAX-ACCESS read-only
  3315.         STATUS current
  3316.         DESCRIPTION
  3317.                 "The service group member response time in millisecond."
  3318.         ::= { axServiceGroupMemberStatEntry 16 }
  3319.  
  3320.     axServiceGroupMemberStatPeakConns OBJECT-TYPE
  3321.         SYNTAX Counter32
  3322.         MAX-ACCESS read-only
  3323.         STATUS current
  3324.         DESCRIPTION
  3325.                 "The service group member peak connections."
  3326.         ::= { axServiceGroupMemberStatEntry 17 }
  3327.  
  3328. --==================================================================
  3329. -- axVirtualServer
  3330. --==================================================================
  3331.  
  3332.     axVirtualServerCount OBJECT-TYPE
  3333.         SYNTAX INTEGER
  3334.         MAX-ACCESS read-only
  3335.         STATUS current
  3336.         DESCRIPTION
  3337.                 "The number of axVirtualServer entries in the table."
  3338.         ::= { axVirtualServer 1 }
  3339.  
  3340.     axVirtualServerTable OBJECT-TYPE
  3341.         SYNTAX SEQUENCE OF AxVirtualServerEntry
  3342.         MAX-ACCESS not-accessible
  3343.         STATUS current
  3344.         DESCRIPTION
  3345.                 "A table containing information of virtual servers."
  3346.         ::= { axVirtualServer 2 }
  3347.  
  3348.     axVirtualServerEntry OBJECT-TYPE
  3349.         SYNTAX  AxVirtualServerEntry
  3350.         MAX-ACCESS not-accessible
  3351.         STATUS current
  3352.         DESCRIPTION
  3353.                 "Columns in the axVirtualServer Table"
  3354.         INDEX {
  3355.                 axVirtualServerName
  3356.         }
  3357.         ::= { axVirtualServerTable 1 }
  3358.  
  3359.     AxVirtualServerEntry ::=
  3360.         SEQUENCE {
  3361.                 axVirtualServerName                      DisplayString,
  3362.                 axVirtualServerAddress                   DisplayString,
  3363.                 axVirtualServerEnabled                   INTEGER,
  3364.                 axVirtualServerHAGroup                   DisplayString,
  3365.                 axVirtualServerDisplayStatus             INTEGER,
  3366.                         axVirtualServerAddressType                       InetAddressType
  3367.         }
  3368.  
  3369.     axVirtualServerName OBJECT-TYPE
  3370.         SYNTAX DisplayString
  3371.         MAX-ACCESS read-only
  3372.         STATUS current
  3373.         DESCRIPTION
  3374.                 "The name of this virtual server."
  3375.         ::= { axVirtualServerEntry 1 }
  3376.  
  3377.     axVirtualServerAddress OBJECT-TYPE
  3378.         SYNTAX DisplayString
  3379.         MAX-ACCESS read-only
  3380.         STATUS current
  3381.         DESCRIPTION
  3382.                 "The ip address of this virtual server."
  3383.         ::= { axVirtualServerEntry 2 }
  3384.  
  3385.     axVirtualServerEnabled OBJECT-TYPE
  3386.         SYNTAX INTEGER {
  3387.                 disabled(0),
  3388.                 enabled(1)
  3389.         }
  3390.         MAX-ACCESS read-only
  3391.         STATUS current
  3392.         DESCRIPTION
  3393.                 "Whether this virtual server is enabled."
  3394.         ::= { axVirtualServerEntry 3 }
  3395.  
  3396.     axVirtualServerHAGroup OBJECT-TYPE
  3397.         SYNTAX DisplayString
  3398.         MAX-ACCESS read-only
  3399.         STATUS current
  3400.         DESCRIPTION
  3401.                 "HA group name configured for the virtual server."
  3402.         ::= { axVirtualServerEntry 4 }
  3403.  
  3404.     axVirtualServerDisplayStatus OBJECT-TYPE
  3405.         SYNTAX INTEGER {
  3406.                 disabled(0),
  3407.                 allUp(1),
  3408.                 functionalUp(2),
  3409.                 partialUp(3),
  3410.                 stopped(4)
  3411.         }
  3412.         MAX-ACCESS read-only
  3413.         STATUS current
  3414.         DESCRIPTION
  3415.                 "The display status of this virtual server port:
  3416.                     Disabled(0), AllUp(1), FunctionalUp(2), PartialUp(3), Stopped(4)."
  3417.         ::= { axVirtualServerEntry 5 }
  3418.  
  3419.         axVirtualServerAddressType OBJECT-TYPE
  3420.     SYNTAX InetAddressType
  3421.     MAX-ACCESS read-only
  3422.     STATUS current
  3423.     DESCRIPTION
  3424.         "The type of axVirtualServerAddress:
  3425.             unknown(0), ipv4(1), ipv6(2)..."
  3426.     ::= { axVirtualServerEntry 6 }
  3427.  
  3428. --==================================================================
  3429. -- axVirtualServerStat
  3430. --==================================================================
  3431.  
  3432.     axVirtualServerStatTable OBJECT-TYPE
  3433.         SYNTAX SEQUENCE OF AxVirtualServerStatEntry
  3434.         MAX-ACCESS not-accessible
  3435.         STATUS current
  3436.         DESCRIPTION
  3437.                 "A table containing statistic information of virtual servers."
  3438.         ::= { axVirtualServerStat 1 }
  3439.  
  3440.     axVirtualServerStatEntry OBJECT-TYPE
  3441.         SYNTAX  AxVirtualServerStatEntry
  3442.         MAX-ACCESS not-accessible
  3443.         STATUS current
  3444.         DESCRIPTION
  3445.                 "Columns in the axVirtualServerStat Table"
  3446.         INDEX {
  3447.                 axVirtualServerStatAddress
  3448.         }
  3449.         ::= { axVirtualServerStatTable 1 }
  3450.  
  3451.     AxVirtualServerStatEntry ::=
  3452.         SEQUENCE {
  3453.                 axVirtualServerStatAddress              DisplayString,
  3454.                 axVirtualServerStatName                 DisplayString,
  3455.                 axVirtualServerStatPktsIn               Counter64,
  3456.                 axVirtualServerStatBytesIn              Counter64,
  3457.                 axVirtualServerStatPktsOut              Counter64,
  3458.                 axVirtualServerStatBytesOut             Counter64,
  3459.                 axVirtualServerStatPersistConns         Integer32,
  3460.                 axVirtualServerStatTotConns             Counter64,
  3461.                 axVirtualServerStatCurConns             Integer32,
  3462.                 axVirtualServerStatStatus               INTEGER,
  3463.                 axVirtualServerStatDisplayStatus        INTEGER,
  3464.                 axVirtualServerStatTotalL7Reqs          Counter64,
  3465.                 axVirtualServerStatTotalCurrL7Reqs      Counter64,
  3466.                 axVirtualServerStatTotalSuccL7Reqs      Counter64,
  3467.                 axVirtualServerStatPeakConns            Counter32,
  3468.                         axVirtualServerStatAddressType          InetAddressType
  3469.         }
  3470.  
  3471.     axVirtualServerStatAddress OBJECT-TYPE
  3472.         SYNTAX DisplayString
  3473.         MAX-ACCESS read-only
  3474.         STATUS current
  3475.         DESCRIPTION
  3476.                 "The address of this virtual server."
  3477.         ::= { axVirtualServerStatEntry 1 }
  3478.  
  3479.     axVirtualServerStatName OBJECT-TYPE
  3480.         SYNTAX DisplayString
  3481.         MAX-ACCESS read-only
  3482.         STATUS current
  3483.         DESCRIPTION
  3484.                 "The name of this virtual server."
  3485.         ::= { axVirtualServerStatEntry 2 }
  3486.  
  3487.     axVirtualServerStatPktsIn OBJECT-TYPE
  3488.         SYNTAX Counter64
  3489.         MAX-ACCESS read-only
  3490.         STATUS current
  3491.         DESCRIPTION
  3492.                 "The number of packets received from client to server."
  3493.         ::= { axVirtualServerStatEntry 3 }
  3494.  
  3495.     axVirtualServerStatBytesIn OBJECT-TYPE
  3496.         SYNTAX Counter64
  3497.         MAX-ACCESS read-only
  3498.         STATUS current
  3499.         DESCRIPTION
  3500.                 "The number of bytes received from client to server."
  3501.         ::= { axVirtualServerStatEntry 4 }
  3502.  
  3503.     axVirtualServerStatPktsOut OBJECT-TYPE
  3504.         SYNTAX Counter64
  3505.         MAX-ACCESS read-only
  3506.         STATUS current
  3507.         DESCRIPTION
  3508.                 "The number of packets sent from server to client."
  3509.         ::= { axVirtualServerStatEntry 5 }
  3510.  
  3511.     axVirtualServerStatBytesOut OBJECT-TYPE
  3512.         SYNTAX Counter64
  3513.         MAX-ACCESS read-only
  3514.         STATUS current
  3515.         DESCRIPTION
  3516.                 "The number of bytes sent from server to client."
  3517.         ::= { axVirtualServerStatEntry 6 }
  3518.  
  3519.     axVirtualServerStatPersistConns OBJECT-TYPE
  3520.         SYNTAX Integer32
  3521.         MAX-ACCESS read-only
  3522.         STATUS deprecated
  3523.         DESCRIPTION
  3524.                 "The persistent connections from client side."
  3525.         ::= { axVirtualServerStatEntry 7 }
  3526.  
  3527.     axVirtualServerStatTotConns OBJECT-TYPE
  3528.         SYNTAX Counter64
  3529.         MAX-ACCESS read-only
  3530.         STATUS current
  3531.         DESCRIPTION
  3532.                 "The total connections from client side."
  3533.         ::= { axVirtualServerStatEntry 8 }
  3534.  
  3535.     axVirtualServerStatCurConns OBJECT-TYPE
  3536.         SYNTAX Integer32
  3537.         MAX-ACCESS read-only
  3538.         STATUS current
  3539.         DESCRIPTION
  3540.                 "The current connections from client side."
  3541.         ::= { axVirtualServerStatEntry 9 }
  3542.  
  3543.     axVirtualServerStatStatus OBJECT-TYPE
  3544.         SYNTAX INTEGER {
  3545.                 up(1),
  3546.                 down(2),
  3547.                 disabled(3)
  3548.         }
  3549.         MAX-ACCESS read-only
  3550.         STATUS current
  3551.         DESCRIPTION
  3552.                 "The current virtual server status."
  3553.         ::= { axVirtualServerStatEntry 10 }
  3554.  
  3555.     axVirtualServerStatDisplayStatus OBJECT-TYPE
  3556.         SYNTAX INTEGER {
  3557.                 disabled(0),
  3558.                 allUp(1),
  3559.                 functionalUp(2),
  3560.                 partialUp(3),
  3561.                 stopped(4)
  3562.         }
  3563.         MAX-ACCESS read-only
  3564.         STATUS current
  3565.         DESCRIPTION
  3566.                 "The display status of this virtual server:
  3567.                     Disabled(0), AllUp(1), FunctionalUp(2), PartialUp(3), Stopped(4)."
  3568.         ::= { axVirtualServerStatEntry 11 }
  3569.  
  3570.     axVirtualServerStatTotalL7Reqs OBJECT-TYPE
  3571.         SYNTAX Counter64
  3572.         MAX-ACCESS read-only
  3573.         STATUS current
  3574.         DESCRIPTION
  3575.                 "The total number of L7 requests if applicable"
  3576.         ::= { axVirtualServerStatEntry 12 }
  3577.  
  3578.     axVirtualServerStatTotalCurrL7Reqs OBJECT-TYPE
  3579.         SYNTAX Counter64
  3580.         MAX-ACCESS read-only
  3581.         STATUS current
  3582.         DESCRIPTION
  3583.                 "The number of current L7 requests if applicable"
  3584.         ::= { axVirtualServerStatEntry 13 }
  3585.  
  3586.     axVirtualServerStatTotalSuccL7Reqs OBJECT-TYPE
  3587.         SYNTAX Counter64
  3588.         MAX-ACCESS read-only
  3589.         STATUS current
  3590.         DESCRIPTION
  3591.                 "The number of successful L7 requests if applicable"
  3592.         ::= { axVirtualServerStatEntry 14 }
  3593.  
  3594.     axVirtualServerStatPeakConns OBJECT-TYPE
  3595.         SYNTAX Counter32
  3596.         MAX-ACCESS read-only
  3597.         STATUS current
  3598.         DESCRIPTION
  3599.                 "The number of peak connections"
  3600.         ::= { axVirtualServerStatEntry 15 }
  3601.  
  3602.     axVirtualServerStatAddressType OBJECT-TYPE
  3603.     SYNTAX InetAddressType
  3604.     MAX-ACCESS read-only
  3605.     STATUS current
  3606.     DESCRIPTION
  3607.         "The type of axVirtualServerStatAddress:
  3608.             unknown(0), ipv4(1), ipv6(2)..."
  3609.     ::= { axVirtualServerStatEntry 16 }
  3610.  
  3611. --==================================================================
  3612. -- axVirtualServerPort
  3613. --==================================================================
  3614.  
  3615.     axVirtualServerPortTable OBJECT-TYPE
  3616.         SYNTAX SEQUENCE OF AxVirtualServerPortEntry
  3617.         MAX-ACCESS not-accessible
  3618.         STATUS current
  3619.         DESCRIPTION
  3620.                 "A table containing information of virtual server port configuration."
  3621.         ::= { axVirtualServerPort 1 }
  3622.  
  3623.     axVirtualServerPortEntry OBJECT-TYPE
  3624.         SYNTAX  AxVirtualServerPortEntry
  3625.         MAX-ACCESS not-accessible
  3626.         STATUS current
  3627.         DESCRIPTION
  3628.                 "Columns in the axVirtualServerPort Table"
  3629.         INDEX {
  3630.                 axVirtualServerPortName,
  3631.                 axVirtualServerPortType,
  3632.                 axVirtualServerPortNum
  3633.         }
  3634.         ::= { axVirtualServerPortTable 1 }
  3635.  
  3636.     AxVirtualServerPortEntry ::=
  3637.         SEQUENCE {
  3638.                 axVirtualServerPortName                      DisplayString,
  3639.                 axVirtualServerPortType                      INTEGER,
  3640.                 axVirtualServerPortNum                       Integer32,
  3641.                 axVirtualServerPortAddress                   DisplayString,
  3642.                 axVirtualServerPortEnabled                   INTEGER,
  3643.                 axVirtualServerPortServiceGroup              DisplayString,
  3644.                 axVirtualServerPortHaGroupID                 INTEGER,
  3645.                 axVirtualServerPortPersistTemplateType       INTEGER,
  3646.                 axVirtualServerPortPersistTempl              DisplayString,
  3647.                 axVirtualServerPortTemplate                  DisplayString,
  3648.                 axVirtualServerPortPolicyTemplate            DisplayString,
  3649.                 axVirtualServerPortTCPTemplate               DisplayString,
  3650.                 axVirtualServerPortHTTPTemplate              DisplayString,
  3651.                 axVirtualServerPortRamCacheTemplate          DisplayString,
  3652.                 axVirtualServerPortConnReuseTemplate         DisplayString,
  3653.                 axVirtualServerPortTCPProxyTemplate          DisplayString,
  3654.                 axVirtualServerPortClientSSLTemplate         DisplayString,
  3655.                 axVirtualServerPortServerSSLTemplate         DisplayString,
  3656.                 axVirtualServerPortRTSPTemplate              DisplayString,
  3657.                 axVirtualServerPortSMTPTemplate              DisplayString,
  3658.                 axVirtualServerPortSIPTemplate               DisplayString,
  3659.                 axVirtualServerPortUDPTemplate               DisplayString,
  3660.                 axVirtualServerPortDisplayStatus             INTEGER,
  3661.                         xVirtualServerPortAddressType                            InetAddressType,
  3662.                         axVirtualServerPortDiameterTemplate          DisplayString,
  3663.                         axVirtualServerPortAddressType                       InetAddressType
  3664.         }
  3665.  
  3666.     axVirtualServerPortName OBJECT-TYPE
  3667.         SYNTAX DisplayString
  3668.         MAX-ACCESS read-only
  3669.         STATUS current
  3670.         DESCRIPTION
  3671.                 "The name of the virtual server. "
  3672.         ::= { axVirtualServerPortEntry 1 }
  3673.  
  3674.     axVirtualServerPortType OBJECT-TYPE
  3675.         SYNTAX INTEGER {
  3676.                 firewall(1),
  3677.                 tcp(2),
  3678.                 udp(3),
  3679.                 rtsp(8),
  3680.                 ftp(9),
  3681.                 mms(10),
  3682.                 fastHTTP(12),
  3683.                 http(14),
  3684.                 https(15),
  3685.                 sslProxy(16),
  3686.                 smtp(17),
  3687.                 sip(11),
  3688.                 sips(19),
  3689.                 sip-TCP(18),
  3690.                 others(5),
  3691.                 tcpProxy(20),
  3692.                 diameter(21),
  3693.                 dnsUdp(22),
  3694.                 tftp(23),
  3695.                 dnsTcp(24)
  3696.         }
  3697.         MAX-ACCESS read-only
  3698.         STATUS current
  3699.         DESCRIPTION
  3700.                 "The port type of a virtual server port."
  3701.         ::= { axVirtualServerPortEntry 2 }
  3702.  
  3703.     axVirtualServerPortNum OBJECT-TYPE
  3704.         SYNTAX Integer32
  3705.         MAX-ACCESS read-only
  3706.         STATUS current
  3707.         DESCRIPTION
  3708.                 "The virtual server port number."
  3709.         ::= { axVirtualServerPortEntry 3 }
  3710.  
  3711.     axVirtualServerPortAddress OBJECT-TYPE
  3712.         SYNTAX DisplayString
  3713.         MAX-ACCESS read-only
  3714.         STATUS current
  3715.         DESCRIPTION
  3716.                 "The ip address of this virtual server. "
  3717.         ::= { axVirtualServerPortEntry 4 }
  3718.  
  3719.     axVirtualServerPortEnabled OBJECT-TYPE
  3720.         SYNTAX INTEGER {
  3721.                 disabled(0),
  3722.                 enabled(1)
  3723.         }
  3724.         MAX-ACCESS read-only
  3725.         STATUS current
  3726.         DESCRIPTION
  3727.                 "The status of this virtual server port is enabled."
  3728.         ::= { axVirtualServerPortEntry 5 }
  3729.  
  3730.     axVirtualServerPortServiceGroup OBJECT-TYPE
  3731.         SYNTAX DisplayString
  3732.         MAX-ACCESS read-only
  3733.         STATUS current
  3734.         DESCRIPTION
  3735.                 "The service group is assigned to the virtual server port."
  3736.         ::= { axVirtualServerPortEntry 6 }
  3737.  
  3738.     axVirtualServerPortHaGroupID OBJECT-TYPE
  3739.         SYNTAX INTEGER
  3740.         MAX-ACCESS read-only
  3741.         STATUS current
  3742.         DESCRIPTION
  3743.                 "The HA group ID assigned to the virtual service port."
  3744.         ::= { axVirtualServerPortEntry 7 }
  3745.  
  3746.     axVirtualServerPortPersistTemplateType OBJECT-TYPE
  3747.         SYNTAX INTEGER {
  3748.                 cookiePersist(1),
  3749.                 sourcIPPersist(2),
  3750.                 destinationIPPersist(3),
  3751.                 sslIDPersist(4),
  3752.                 unknown(0)
  3753.         }
  3754.         MAX-ACCESS read-only
  3755.         STATUS current
  3756.         DESCRIPTION
  3757.                 "The persistent template type if applicable."
  3758.         ::= { axVirtualServerPortEntry 8 }
  3759.  
  3760.     axVirtualServerPortPersistTempl OBJECT-TYPE
  3761.         SYNTAX DisplayString
  3762.         MAX-ACCESS read-only
  3763.         STATUS current
  3764.         DESCRIPTION
  3765.                 "The persistent template dependent on the axVirtualServerPortPersistTemplateType value."
  3766.         ::= { axVirtualServerPortEntry 9 }
  3767.  
  3768.     axVirtualServerPortTemplate OBJECT-TYPE
  3769.         SYNTAX DisplayString
  3770.         MAX-ACCESS read-only
  3771.         STATUS current
  3772.         DESCRIPTION
  3773.                 "The virtual server port template for all port types except for Firewall."
  3774.         ::= { axVirtualServerPortEntry 10 }
  3775.  
  3776.     axVirtualServerPortPolicyTemplate OBJECT-TYPE
  3777.         SYNTAX DisplayString
  3778.         MAX-ACCESS read-only
  3779.         STATUS current
  3780.         DESCRIPTION
  3781.                 "The policy template for all port types except for Firewall."
  3782.         ::= { axVirtualServerPortEntry 11 }
  3783.  
  3784.     axVirtualServerPortTCPTemplate OBJECT-TYPE
  3785.         SYNTAX DisplayString
  3786.         MAX-ACCESS read-only
  3787.         STATUS current
  3788.         DESCRIPTION
  3789.                 "The TCP template for TPC/FastHTTP/RTSP/FTP/MMS/Others port types."
  3790.         ::= { axVirtualServerPortEntry 12 }
  3791.  
  3792.     axVirtualServerPortHTTPTemplate OBJECT-TYPE
  3793.         SYNTAX DisplayString
  3794.         MAX-ACCESS read-only
  3795.         STATUS current
  3796.         DESCRIPTION
  3797.                 "The HTTP template for HTTP/HTTPS/FastHTTP port types."
  3798.         ::= { axVirtualServerPortEntry 13 }
  3799.  
  3800.     axVirtualServerPortRamCacheTemplate OBJECT-TYPE
  3801.         SYNTAX DisplayString
  3802.         MAX-ACCESS read-only
  3803.         STATUS current
  3804.         DESCRIPTION
  3805.                 "The RAM cache template for HTTP/HTTPS port types."
  3806.         ::= { axVirtualServerPortEntry 14 }
  3807.  
  3808.     axVirtualServerPortConnReuseTemplate OBJECT-TYPE
  3809.         SYNTAX DisplayString
  3810.         MAX-ACCESS read-only
  3811.         STATUS current
  3812.         DESCRIPTION
  3813.                 "The connection reuse template for HTTP/HTTPS/FastHTTP port types."
  3814.         ::= { axVirtualServerPortEntry 15 }
  3815.  
  3816.     axVirtualServerPortTCPProxyTemplate OBJECT-TYPE
  3817.         SYNTAX DisplayString
  3818.         MAX-ACCESS read-only
  3819.         STATUS current
  3820.         DESCRIPTION
  3821.                 "The TCP proxy template for HTTP/HTTPS/SSLProxy/SMTP port types."
  3822.         ::= { axVirtualServerPortEntry 16 }
  3823.  
  3824.     axVirtualServerPortClientSSLTemplate OBJECT-TYPE
  3825.         SYNTAX DisplayString
  3826.         MAX-ACCESS read-only
  3827.         STATUS current
  3828.         DESCRIPTION
  3829.                 "The Client-SSL template for HTTPS/SSLProxy/SMTP port types."
  3830.         ::= { axVirtualServerPortEntry 17 }
  3831.  
  3832.     axVirtualServerPortServerSSLTemplate OBJECT-TYPE
  3833.         SYNTAX DisplayString
  3834.         MAX-ACCESS read-only
  3835.         STATUS current
  3836.         DESCRIPTION
  3837.                 "The Server-SSL template for HTTPS port type only."
  3838.         ::= { axVirtualServerPortEntry 18 }
  3839.  
  3840.     axVirtualServerPortRTSPTemplate OBJECT-TYPE
  3841.         SYNTAX DisplayString
  3842.         MAX-ACCESS read-only
  3843.         STATUS current
  3844.         DESCRIPTION
  3845.                 "The RTSP template for RTSP port type only."
  3846.         ::= { axVirtualServerPortEntry 19 }
  3847.  
  3848.     axVirtualServerPortSMTPTemplate OBJECT-TYPE
  3849.         SYNTAX DisplayString
  3850.         MAX-ACCESS read-only
  3851.         STATUS current
  3852.         DESCRIPTION
  3853.                 "The SMTP template for SMTP port type only."
  3854.         ::= { axVirtualServerPortEntry 20 }
  3855.  
  3856.     axVirtualServerPortSIPTemplate OBJECT-TYPE
  3857.         SYNTAX DisplayString
  3858.         MAX-ACCESS read-only
  3859.         STATUS current
  3860.         DESCRIPTION
  3861.                 "The SIP template for SIP port type only."
  3862.         ::= { axVirtualServerPortEntry 21 }
  3863.  
  3864.     axVirtualServerPortUDPTemplate OBJECT-TYPE
  3865.         SYNTAX DisplayString
  3866.         MAX-ACCESS read-only
  3867.         STATUS current
  3868.         DESCRIPTION
  3869.                 "The UDP template for UDP port type only."
  3870.         ::= { axVirtualServerPortEntry 22 }
  3871.  
  3872.     axVirtualServerPortDisplayStatus OBJECT-TYPE
  3873.         SYNTAX INTEGER {
  3874.                 disabled(0),
  3875.                 allUp(1),
  3876.                 functionalUp(2),
  3877.                 stopped(4)
  3878.         }
  3879.         MAX-ACCESS read-only
  3880.         STATUS current
  3881.         DESCRIPTION
  3882.                 "The display status of this virtual server port:
  3883.                     Disabled(0), AllUp(1), FunctionalUp(2), Stopped(4)."
  3884.         ::= { axVirtualServerPortEntry 23 }
  3885.  
  3886. -- axVirtualServerPortDisplayStatus 24 is used in 266 for axVirtualServerPortAddressType
  3887.  
  3888.         axVirtualServerPortAddressType OBJECT-TYPE
  3889.     SYNTAX InetAddressType
  3890.     MAX-ACCESS read-only
  3891.     STATUS current
  3892.     DESCRIPTION
  3893.         "The type of axVirtualServerPortAddress:
  3894.             unknown(0), ipv4(1), ipv6(2)..."
  3895.     ::= { axVirtualServerPortEntry 24 }
  3896.  
  3897.     axVirtualServerPortDiameterTemplate OBJECT-TYPE
  3898.         SYNTAX DisplayString
  3899.         MAX-ACCESS read-only
  3900.         STATUS current
  3901.         DESCRIPTION
  3902.                 "The Diameter template for diameter type only."
  3903.         ::= { axVirtualServerPortEntry 25 }
  3904.  
  3905. --==================================================================
  3906. -- axVirtualServerPortStat
  3907. --==================================================================
  3908.  
  3909.     axVirtualServerPortStatTable OBJECT-TYPE
  3910.         SYNTAX SEQUENCE OF AxVirtualServerPortStatEntry
  3911.         MAX-ACCESS not-accessible
  3912.         STATUS current
  3913.         DESCRIPTION
  3914.                 "A table containing statistic information of virtual server service ports."
  3915.         ::= { axVirtualServerPortStat 1 }
  3916.  
  3917.     axVirtualServerPortStatEntry OBJECT-TYPE
  3918.         SYNTAX  AxVirtualServerPortStatEntry
  3919.         MAX-ACCESS not-accessible
  3920.         STATUS current
  3921.         DESCRIPTION
  3922.                 "Columns in the axVirtualServerPortStat Table"
  3923.         INDEX {
  3924.                 axVirtualServerPortStatAddress,
  3925.                 axVirtualServerStatPortType,
  3926.                 axVirtualServerStatPortNum
  3927.         }
  3928.         ::= { axVirtualServerPortStatTable 1 }
  3929.  
  3930.     AxVirtualServerPortStatEntry ::=
  3931.         SEQUENCE {
  3932.                 axVirtualServerPortStatAddress              DisplayString,
  3933.                 axVirtualServerStatPortType                 INTEGER,
  3934.                 axVirtualServerStatPortNum                  Integer32,
  3935.                 axVirtualServerPortStatName                 DisplayString,
  3936.                 axVirtualServerStatPortStatus               INTEGER,
  3937.                 axVirtualServerPortStatPktsIn               Counter64,
  3938.                 axVirtualServerPortStatBytesIn              Counter64,
  3939.                 axVirtualServerPortStatPktsOut              Counter64,
  3940.                 axVirtualServerPortStatBytesOut             Counter64,
  3941.                 axVirtualServerPortStatPersistConns         Integer32,
  3942.                 axVirtualServerPortStatTotConns             Counter64,
  3943.                 axVirtualServerPortStatCurConns             Integer32,
  3944.                 axVirtualServerStatPortDisplayStatus        INTEGER,
  3945.                 axVirtualServerPortStatTotalL7Reqs          Counter64,
  3946.                 axVirtualServerPortStatTotalCurrL7Reqs      Counter64,
  3947.                 axVirtualServerPortStatTotalSuccL7Reqs      Counter64,
  3948.                 axVirtualServerPortStatPeakConns            Counter32,
  3949.                         axVirtualServerPortStatAddressType              InetAddressType
  3950.         }
  3951.  
  3952.     axVirtualServerPortStatAddress OBJECT-TYPE
  3953.         SYNTAX DisplayString
  3954.         MAX-ACCESS read-only
  3955.         STATUS current
  3956.         DESCRIPTION
  3957.                 "The ip address of this virtual address."
  3958.         ::= { axVirtualServerPortStatEntry 1 }
  3959.  
  3960.     axVirtualServerStatPortType OBJECT-TYPE
  3961.         SYNTAX INTEGER {
  3962.                 firewall(1),
  3963.                 tcp(2),
  3964.                 udp(3),
  3965.                 rtsp(8),
  3966.                 ftp(9),
  3967.                 mms(10),
  3968.                 fastHTTP(12),
  3969.                 http(14),
  3970.                 https(15),
  3971.                 sslProxy(16),
  3972.                 smtp(17),
  3973.                 sip(11),
  3974.                 sips(19),
  3975.                 sip-tcp(18),
  3976.                 others(5),
  3977.                 tcpProxy(20),
  3978.                 diameter(21),
  3979.                 dnsUdp(22),
  3980.                 tftp(23),
  3981.         dnsTcp(24)
  3982.         }
  3983.         MAX-ACCESS read-only
  3984.         STATUS current
  3985.         DESCRIPTION
  3986.                 "The port type of a virtual server port"
  3987.         ::= { axVirtualServerPortStatEntry 2 }
  3988.  
  3989.     axVirtualServerStatPortNum OBJECT-TYPE
  3990.         SYNTAX Integer32
  3991.         MAX-ACCESS read-only
  3992.         STATUS current
  3993.         DESCRIPTION
  3994.                 "The service port number."
  3995.         ::= { axVirtualServerPortStatEntry 3 }
  3996.  
  3997.     axVirtualServerPortStatName OBJECT-TYPE
  3998.         SYNTAX DisplayString
  3999.         MAX-ACCESS read-only
  4000.         STATUS current
  4001.         DESCRIPTION
  4002.                 "The name of the virtual server"
  4003.         ::= { axVirtualServerPortStatEntry 4 }
  4004.  
  4005.     axVirtualServerStatPortStatus OBJECT-TYPE
  4006.         SYNTAX INTEGER {
  4007.                 up(1),
  4008.                 down(2),
  4009.                 disabled(3)
  4010.         }
  4011.         MAX-ACCESS read-only
  4012.         STATUS current
  4013.         DESCRIPTION
  4014.                 "The status of this virtual server port."
  4015.         ::= { axVirtualServerPortStatEntry 5 }
  4016.  
  4017.     axVirtualServerPortStatPktsIn OBJECT-TYPE
  4018.         SYNTAX Counter64
  4019.         MAX-ACCESS read-only
  4020.         STATUS current
  4021.         DESCRIPTION
  4022.                 "The number of packets received from client to server."
  4023.         ::= { axVirtualServerPortStatEntry 6 }
  4024.  
  4025.     axVirtualServerPortStatBytesIn OBJECT-TYPE
  4026.         SYNTAX Counter64
  4027.         MAX-ACCESS read-only
  4028.         STATUS current
  4029.         DESCRIPTION
  4030.                 "The number of bytes received from client to server."
  4031.         ::= { axVirtualServerPortStatEntry 7 }
  4032.  
  4033.     axVirtualServerPortStatPktsOut OBJECT-TYPE
  4034.         SYNTAX Counter64
  4035.         MAX-ACCESS read-only
  4036.         STATUS current
  4037.         DESCRIPTION
  4038.                 "The number of packets sent from server to client."
  4039.         ::= { axVirtualServerPortStatEntry 8 }
  4040.  
  4041.     axVirtualServerPortStatBytesOut OBJECT-TYPE
  4042.         SYNTAX Counter64
  4043.         MAX-ACCESS read-only
  4044.         STATUS current
  4045.         DESCRIPTION
  4046.                 "The number of bytes sent from server to client."
  4047.         ::= { axVirtualServerPortStatEntry 9 }
  4048.  
  4049.     axVirtualServerPortStatPersistConns OBJECT-TYPE
  4050.         SYNTAX Integer32
  4051.         MAX-ACCESS read-only
  4052.         STATUS deprecated
  4053.         DESCRIPTION
  4054.                 "Persistent connections from client side."
  4055.         ::= { axVirtualServerPortStatEntry 10 }
  4056.  
  4057.     axVirtualServerPortStatTotConns OBJECT-TYPE
  4058.         SYNTAX Counter64
  4059.         MAX-ACCESS read-only
  4060.         STATUS current
  4061.         DESCRIPTION
  4062.                 "Total connections from client side."
  4063.         ::= { axVirtualServerPortStatEntry 11 }
  4064.  
  4065.     axVirtualServerPortStatCurConns OBJECT-TYPE
  4066.         SYNTAX Integer32
  4067.         MAX-ACCESS read-only
  4068.         STATUS current
  4069.         DESCRIPTION
  4070.                 "Current connections from client side."
  4071.         ::= { axVirtualServerPortStatEntry 12 }
  4072.  
  4073.     axVirtualServerStatPortDisplayStatus OBJECT-TYPE
  4074.         SYNTAX INTEGER {
  4075.                 disabled(0),
  4076.                 allUp(1),
  4077.                 functionalUp(2),
  4078.                 stopped(4)
  4079.         }
  4080.         MAX-ACCESS read-only
  4081.         STATUS current
  4082.         DESCRIPTION
  4083.                 "The display status of this virtual server port:
  4084.                     Disabled(0), AllUp(1), FunctionalUp(2), Stopped(4)."
  4085.         ::= { axVirtualServerPortStatEntry 13 }
  4086.  
  4087.     axVirtualServerPortStatTotalL7Reqs OBJECT-TYPE
  4088.         SYNTAX Counter64
  4089.         MAX-ACCESS read-only
  4090.         STATUS current
  4091.         DESCRIPTION
  4092.                 "The total number of L7 requests if applicable"
  4093.         ::= { axVirtualServerPortStatEntry 14 }
  4094.  
  4095.     axVirtualServerPortStatTotalCurrL7Reqs OBJECT-TYPE
  4096.         SYNTAX Counter64
  4097.         MAX-ACCESS read-only
  4098.         STATUS current
  4099.         DESCRIPTION
  4100.                 "The number of current L7 requests if applicable"
  4101.         ::= { axVirtualServerPortStatEntry 15 }
  4102.  
  4103.     axVirtualServerPortStatTotalSuccL7Reqs OBJECT-TYPE
  4104.         SYNTAX Counter64
  4105.         MAX-ACCESS read-only
  4106.         STATUS current
  4107.         DESCRIPTION
  4108.                 "The number of successful L7 requests if applicable"
  4109.         ::= { axVirtualServerPortStatEntry 16 }
  4110.  
  4111.     axVirtualServerPortStatPeakConns OBJECT-TYPE
  4112.         SYNTAX Counter32
  4113.         MAX-ACCESS read-only
  4114.         STATUS current
  4115.         DESCRIPTION
  4116.                 "The number of peak connections"
  4117.         ::= { axVirtualServerPortStatEntry 17 }
  4118.  
  4119.         axVirtualServerPortStatAddressType OBJECT-TYPE
  4120.     SYNTAX InetAddressType
  4121.     MAX-ACCESS read-only
  4122.     STATUS current
  4123.     DESCRIPTION
  4124.         "The type of axVirtualServerPortStatAddress:
  4125.             unknown(0), ipv4(1), ipv6(2)..."
  4126.     ::= { axVirtualServerPortStatEntry 18 }
  4127.  
  4128. --==================================================================
  4129. -- axVirtualServerNameStat
  4130. --==================================================================
  4131.  
  4132.     axVirtualServerNameStatTable OBJECT-TYPE
  4133.         SYNTAX SEQUENCE OF AxVirtualServerNameStatEntry
  4134.         MAX-ACCESS not-accessible
  4135.         STATUS current
  4136.         DESCRIPTION
  4137.                 "A table containing statistic information of virtual servers."
  4138.         ::= { axVirtualServerNameStat 1 }
  4139.  
  4140.     axVirtualServerNameStatEntry OBJECT-TYPE
  4141.         SYNTAX  AxVirtualServerNameStatEntry
  4142.         MAX-ACCESS not-accessible
  4143.         STATUS current
  4144.         DESCRIPTION
  4145.                 "Columns in the axVirtualServerNameStat Table"
  4146.         INDEX {
  4147.                 axVirtualServerStatDisplayName
  4148.         }
  4149.         ::= { axVirtualServerNameStatTable 1 }
  4150.  
  4151.     AxVirtualServerNameStatEntry ::=
  4152.         SEQUENCE {
  4153.                 axVirtualServerStatDisplayName          DisplayString,
  4154.                 axVirtualServerNameStatPktsIn               Counter64,
  4155.                 axVirtualServerNameStatBytesIn              Counter64,
  4156.                 axVirtualServerNameStatPktsOut              Counter64,
  4157.                 axVirtualServerNameStatBytesOut             Counter64,
  4158.                 axVirtualServerNameStatPersistConns         Integer32,
  4159.                 axVirtualServerNameStatTotConns             Counter64,
  4160.                 axVirtualServerNameStatCurConns             Integer32,
  4161.                 axVirtualServerNameStatStatus               INTEGER,
  4162.                 axVirtualServerNameStatDisplayStatus        INTEGER,
  4163.                 axVirtualServerNameStatTotalL7Reqs          Counter64,
  4164.                 axVirtualServerNameStatTotalCurrL7Reqs      Counter64,
  4165.                 axVirtualServerNameStatTotalSuccL7Reqs      Counter64,
  4166.                 axVirtualServerNameStatPeakConns            Counter32
  4167.         }
  4168.  
  4169.     axVirtualServerStatDisplayName OBJECT-TYPE
  4170.         SYNTAX DisplayString
  4171.         MAX-ACCESS read-only
  4172.         STATUS current
  4173.         DESCRIPTION
  4174.                 "The name of this virtual server."
  4175.         ::= { axVirtualServerNameStatEntry 1 }
  4176.  
  4177.     axVirtualServerNameStatPktsIn OBJECT-TYPE
  4178.         SYNTAX Counter64
  4179.         MAX-ACCESS read-only
  4180.         STATUS current
  4181.         DESCRIPTION
  4182.                 "The number of packets received from client to server."
  4183.         ::= { axVirtualServerNameStatEntry 2 }
  4184.  
  4185.     axVirtualServerNameStatBytesIn OBJECT-TYPE
  4186.         SYNTAX Counter64
  4187.         MAX-ACCESS read-only
  4188.         STATUS current
  4189.         DESCRIPTION
  4190.                 "The number of bytes received from client to server."
  4191.         ::= { axVirtualServerNameStatEntry 3 }
  4192.  
  4193.     axVirtualServerNameStatPktsOut OBJECT-TYPE
  4194.         SYNTAX Counter64
  4195.         MAX-ACCESS read-only
  4196.         STATUS current
  4197.         DESCRIPTION
  4198.                 "The number of packets sent from server to client."
  4199.         ::= { axVirtualServerNameStatEntry 4 }
  4200.  
  4201.     axVirtualServerNameStatBytesOut OBJECT-TYPE
  4202.         SYNTAX Counter64
  4203.         MAX-ACCESS read-only
  4204.         STATUS current
  4205.         DESCRIPTION
  4206.                 "The number of bytes sent from server to client."
  4207.         ::= { axVirtualServerNameStatEntry 5 }
  4208.  
  4209.     axVirtualServerNameStatPersistConns OBJECT-TYPE
  4210.         SYNTAX Integer32
  4211.         MAX-ACCESS read-only
  4212.         STATUS deprecated
  4213.         DESCRIPTION
  4214.                 "The persistent connections from client side."
  4215.         ::= { axVirtualServerNameStatEntry 6 }
  4216.  
  4217.     axVirtualServerNameStatTotConns OBJECT-TYPE
  4218.         SYNTAX Counter64
  4219.         MAX-ACCESS read-only
  4220.         STATUS current
  4221.         DESCRIPTION
  4222.                 "The total connections from client side."
  4223.         ::= { axVirtualServerNameStatEntry 7 }
  4224.  
  4225.     axVirtualServerNameStatCurConns OBJECT-TYPE
  4226.         SYNTAX Integer32
  4227.         MAX-ACCESS read-only
  4228.         STATUS current
  4229.         DESCRIPTION
  4230.                 "The current connections from client side."
  4231.         ::= { axVirtualServerNameStatEntry 8 }
  4232.  
  4233.     axVirtualServerNameStatStatus OBJECT-TYPE
  4234.         SYNTAX INTEGER {
  4235.                 up(1),
  4236.                 down(2),
  4237.                 disabled(3)
  4238.         }
  4239.         MAX-ACCESS read-only
  4240.         STATUS current
  4241.         DESCRIPTION
  4242.                 "The current virtual server status."
  4243.         ::= { axVirtualServerNameStatEntry 9 }
  4244.  
  4245.     axVirtualServerNameStatDisplayStatus OBJECT-TYPE
  4246.         SYNTAX INTEGER {
  4247.                 disabled(0),
  4248.                 allUp(1),
  4249.                 functionalUp(2),
  4250.                 partialUp(3),
  4251.                 stopped(4)
  4252.         }
  4253.         MAX-ACCESS read-only
  4254.         STATUS current
  4255.         DESCRIPTION
  4256.                 "The display status of this virtual server:
  4257.                     Disabled(0), AllUp(1), FunctionalUp(2), PartialUp(3), Stopped(4)."
  4258.         ::= { axVirtualServerNameStatEntry 10 }
  4259.  
  4260.     axVirtualServerNameStatTotalL7Reqs OBJECT-TYPE
  4261.         SYNTAX Counter64
  4262.         MAX-ACCESS read-only
  4263.         STATUS current
  4264.         DESCRIPTION
  4265.                 "The total number of L7 requests if applicable"
  4266.         ::= { axVirtualServerNameStatEntry 11 }
  4267.  
  4268.     axVirtualServerNameStatTotalCurrL7Reqs OBJECT-TYPE
  4269.         SYNTAX Counter64
  4270.         MAX-ACCESS read-only
  4271.         STATUS current
  4272.         DESCRIPTION
  4273.                 "The number of current L7 requests if applicable"
  4274.         ::= { axVirtualServerNameStatEntry 12 }
  4275.  
  4276.     axVirtualServerNameStatTotalSuccL7Reqs OBJECT-TYPE
  4277.         SYNTAX Counter64
  4278.         MAX-ACCESS read-only
  4279.         STATUS current
  4280.         DESCRIPTION
  4281.                 "The number of successful L7 requests if applicable"
  4282.         ::= { axVirtualServerNameStatEntry 13 }
  4283.  
  4284.     axVirtualServerNameStatPeakConns OBJECT-TYPE
  4285.         SYNTAX Counter32
  4286.         MAX-ACCESS read-only
  4287.         STATUS current
  4288.         DESCRIPTION
  4289.                 "The number of peak connections"
  4290.         ::= { axVirtualServerNameStatEntry 14 }
  4291.  
  4292. --==================================================================
  4293. -- axVirtualServerNamePortStat
  4294. --==================================================================
  4295.  
  4296.     axVirtualServerNamePortStatTable OBJECT-TYPE
  4297.         SYNTAX SEQUENCE OF AxVirtualServerNamePortStatEntry
  4298.         MAX-ACCESS not-accessible
  4299.         STATUS current
  4300.         DESCRIPTION
  4301.                 "A table containing statistic information of virtual server service ports."
  4302.         ::= { axVirtualServerNamePortStat 1 }
  4303.  
  4304.     axVirtualServerNamePortStatEntry OBJECT-TYPE
  4305.         SYNTAX  AxVirtualServerNamePortStatEntry
  4306.         MAX-ACCESS not-accessible
  4307.         STATUS current
  4308.         DESCRIPTION
  4309.                 "Columns in the axVirtualServerNamePortStat Table"
  4310.         INDEX {
  4311.                 axVirtualServerNamePortStatName,
  4312.                 axVirtualServerNameStatPortType,
  4313.                 axVirtualServerNameStatPortNum
  4314.         }
  4315.         ::= { axVirtualServerNamePortStatTable 1 }
  4316.  
  4317.     AxVirtualServerNamePortStatEntry ::=
  4318.         SEQUENCE {
  4319.                 axVirtualServerNamePortStatName                 DisplayString,
  4320.                 axVirtualServerNameStatPortType                 INTEGER,
  4321.                 axVirtualServerNameStatPortNum                  Integer32,
  4322.                 axVirtualServerNameStatPortStatus               INTEGER,
  4323.                 axVirtualServerNamePortStatPktsIn               Counter64,
  4324.                 axVirtualServerNamePortStatBytesIn              Counter64,
  4325.                 axVirtualServerNamePortStatPktsOut              Counter64,
  4326.                 axVirtualServerNamePortStatBytesOut             Counter64,
  4327.                 axVirtualServerNamePortStatPersistConns         Integer32,
  4328.                 axVirtualServerNamePortStatTotConns             Counter64,
  4329.                 axVirtualServerNamePortStatCurConns             Integer32,
  4330.                 axVirtualServerNameStatPortDisplayStatus        INTEGER,
  4331.                 axVirtualServerNamePortStatTotalL7Reqs          Counter64,
  4332.                 axVirtualServerNamePortStatTotalCurrL7Reqs      Counter64,
  4333.                 axVirtualServerNamePortStatTotalSuccL7Reqs      Counter64,
  4334.                 axVirtualServerNamePortStatPeakConns            Counter32
  4335.         }
  4336.  
  4337.     axVirtualServerNamePortStatName OBJECT-TYPE
  4338.         SYNTAX DisplayString
  4339.         MAX-ACCESS read-only
  4340.         STATUS current
  4341.         DESCRIPTION
  4342.                 "The name of the virtual server"
  4343.         ::= { axVirtualServerNamePortStatEntry 1 }
  4344.  
  4345.     axVirtualServerNameStatPortType OBJECT-TYPE
  4346.         SYNTAX INTEGER {
  4347.                 firewall(1),
  4348.                 tcp(2),
  4349.                 udp(3),
  4350.                 rtsp(8),
  4351.                 ftp(9),
  4352.                 mms(10),
  4353.                 fastHTTP(12),
  4354.                 http(14),
  4355.                 https(15),
  4356.                 sslProxy(16),
  4357.                 smtp(17),
  4358.                 sip(11),
  4359.                 sips(19),
  4360.                 sip-tcp(18),
  4361.                 others(5),
  4362.                 tcpProxy(20),
  4363.                 diameter(21),
  4364.                 dnsUdp(22),
  4365.                 tftp(23),
  4366.         dnsTcp(24)
  4367.         }
  4368.         MAX-ACCESS read-only
  4369.         STATUS current
  4370.         DESCRIPTION
  4371.                 "The port type of a virtual server port"
  4372.         ::= { axVirtualServerNamePortStatEntry 2 }
  4373.  
  4374.     axVirtualServerNameStatPortNum OBJECT-TYPE
  4375.         SYNTAX Integer32
  4376.         MAX-ACCESS read-only
  4377.         STATUS current
  4378.         DESCRIPTION
  4379.                 "The service port number."
  4380.         ::= { axVirtualServerNamePortStatEntry 3 }
  4381.  
  4382.     axVirtualServerNameStatPortStatus OBJECT-TYPE
  4383.         SYNTAX INTEGER {
  4384.                 up(1),
  4385.                 down(2),
  4386.                 disabled(3)
  4387.         }
  4388.         MAX-ACCESS read-only
  4389.         STATUS current
  4390.         DESCRIPTION
  4391.                 "The status of this virtual server port."
  4392.         ::= { axVirtualServerNamePortStatEntry 4 }
  4393.  
  4394.     axVirtualServerNamePortStatPktsIn OBJECT-TYPE
  4395.         SYNTAX Counter64
  4396.         MAX-ACCESS read-only
  4397.         STATUS current
  4398.         DESCRIPTION
  4399.                 "The number of packets received from client to server."
  4400.         ::= { axVirtualServerNamePortStatEntry 5 }
  4401.  
  4402.     axVirtualServerNamePortStatBytesIn OBJECT-TYPE
  4403.         SYNTAX Counter64
  4404.         MAX-ACCESS read-only
  4405.         STATUS current
  4406.         DESCRIPTION
  4407.                 "The number of bytes received from client to server."
  4408.         ::= { axVirtualServerNamePortStatEntry 6 }
  4409.  
  4410.     axVirtualServerNamePortStatPktsOut OBJECT-TYPE
  4411.         SYNTAX Counter64
  4412.         MAX-ACCESS read-only
  4413.         STATUS current
  4414.         DESCRIPTION
  4415.                 "The number of packets sent from server to client."
  4416.         ::= { axVirtualServerNamePortStatEntry 7 }
  4417.  
  4418.     axVirtualServerNamePortStatBytesOut OBJECT-TYPE
  4419.         SYNTAX Counter64
  4420.         MAX-ACCESS read-only
  4421.         STATUS current
  4422.         DESCRIPTION
  4423.                 "The number of bytes sent from server to client."
  4424.         ::= { axVirtualServerNamePortStatEntry 8 }
  4425.  
  4426.     axVirtualServerNamePortStatPersistConns OBJECT-TYPE
  4427.         SYNTAX Integer32
  4428.         MAX-ACCESS read-only
  4429.         STATUS deprecated
  4430.         DESCRIPTION
  4431.                 "Persistent connections from client side."
  4432.         ::= { axVirtualServerNamePortStatEntry 9 }
  4433.  
  4434.     axVirtualServerNamePortStatTotConns OBJECT-TYPE
  4435.         SYNTAX Counter64
  4436.         MAX-ACCESS read-only
  4437.         STATUS current
  4438.         DESCRIPTION
  4439.                 "Total connections from client side."
  4440.         ::= { axVirtualServerNamePortStatEntry 10 }
  4441.  
  4442.     axVirtualServerNamePortStatCurConns OBJECT-TYPE
  4443.         SYNTAX Integer32
  4444.         MAX-ACCESS read-only
  4445.         STATUS current
  4446.         DESCRIPTION
  4447.                 "Current connections from client side."
  4448.         ::= { axVirtualServerNamePortStatEntry 11 }
  4449.  
  4450.     axVirtualServerNameStatPortDisplayStatus OBJECT-TYPE
  4451.         SYNTAX INTEGER {
  4452.                 disabled(0),
  4453.                 allUp(1),
  4454.                 functionalUp(2),
  4455.                 stopped(4)
  4456.         }
  4457.         MAX-ACCESS read-only
  4458.         STATUS current
  4459.         DESCRIPTION
  4460.                 "The display status of this virtual server port:
  4461.                     Disabled(0), AllUp(1), FunctionalUp(2), Stopped(4)."
  4462.         ::= { axVirtualServerNamePortStatEntry 12 }
  4463.  
  4464.     axVirtualServerNamePortStatTotalL7Reqs OBJECT-TYPE
  4465.         SYNTAX Counter64
  4466.         MAX-ACCESS read-only
  4467.         STATUS current
  4468.         DESCRIPTION
  4469.                 "The total number of L7 requests if applicable"
  4470.         ::= { axVirtualServerNamePortStatEntry 13 }
  4471.  
  4472.     axVirtualServerNamePortStatTotalCurrL7Reqs OBJECT-TYPE
  4473.         SYNTAX Counter64
  4474.         MAX-ACCESS read-only
  4475.         STATUS current
  4476.         DESCRIPTION
  4477.                 "The number of current L7 requests if applicable"
  4478.         ::= { axVirtualServerNamePortStatEntry 14 }
  4479.  
  4480.     axVirtualServerNamePortStatTotalSuccL7Reqs OBJECT-TYPE
  4481.         SYNTAX Counter64
  4482.         MAX-ACCESS read-only
  4483.         STATUS current
  4484.         DESCRIPTION
  4485.                 "The number of successful L7 requests if applicable"
  4486.         ::= { axVirtualServerNamePortStatEntry 15 }
  4487.  
  4488.     axVirtualServerNamePortStatPeakConns OBJECT-TYPE
  4489.         SYNTAX Counter32
  4490.         MAX-ACCESS read-only
  4491.         STATUS current
  4492.         DESCRIPTION
  4493.                 "The number of peak connections"
  4494.         ::= { axVirtualServerNamePortStatEntry 16 }
  4495.  
  4496. --==================================================================
  4497. -- axConnReuseStat
  4498. --==================================================================
  4499.         axConnReuseStatTotalOpenPersist OBJECT-TYPE
  4500.                 SYNTAX                  INTEGER
  4501.                 MAX-ACCESS              read-only
  4502.                 STATUS                  current
  4503.                 DESCRIPTION
  4504.                         "The total count of open persistent connection-reuse sessions."
  4505.                 DEFVAL                  { 0 }
  4506.                 ::=  {  axConnReuseStats  1  }
  4507.  
  4508.         axConnReuseStatTotalActivePersist OBJECT-TYPE
  4509.                 SYNTAX                  INTEGER
  4510.                 MAX-ACCESS              read-only
  4511.                 STATUS                  current
  4512.                 DESCRIPTION
  4513.                         "The total count of active persistent connection-reuse sessions."
  4514.                 DEFVAL                  { 0 }
  4515.                 ::=  {  axConnReuseStats  2  }
  4516.  
  4517.         axConnReuseStatTotalEstablished OBJECT-TYPE
  4518.                 SYNTAX                  INTEGER
  4519.                 MAX-ACCESS              read-only
  4520.                 STATUS                  current
  4521.                 DESCRIPTION
  4522.                         "The total count of established connection-reuse sessions."
  4523.                 DEFVAL                  { 0 }
  4524.                 ::=  {  axConnReuseStats  3  }
  4525.  
  4526.         axConnReuseStatTotalTerminated OBJECT-TYPE
  4527.                 SYNTAX                  INTEGER
  4528.                 MAX-ACCESS              read-only
  4529.                 STATUS                  current
  4530.                 DESCRIPTION
  4531.                         "The total count of terminated connection-reuse sessions."
  4532.                 ::=  {  axConnReuseStats  4  }
  4533.  
  4534.         axConnReuseStatTotalBound OBJECT-TYPE
  4535.                 SYNTAX                  INTEGER
  4536.                 MAX-ACCESS              read-only
  4537.                 STATUS                  current
  4538.                 DESCRIPTION
  4539.                         "The total count of bound connection-reuse sessions."
  4540.                 DEFVAL                  { 0 }
  4541.                 ::=  {  axConnReuseStats  5  }
  4542.  
  4543.  
  4544.         axConnReuseStatTotalUNBound OBJECT-TYPE
  4545.                 SYNTAX                  INTEGER
  4546.                 MAX-ACCESS              read-only
  4547.                 STATUS                  current
  4548.                 DESCRIPTION
  4549.                         "The total count of unbound connection-reuse sessions."
  4550.                 DEFVAL                  { 0 }
  4551.                 ::=  {  axConnReuseStats  6  }
  4552.  
  4553.         axConnReuseStatTable    OBJECT-TYPE
  4554.                 SYNTAX          SEQUENCE  OF  AxConnReuseStatEntry
  4555.                 MAX-ACCESS      not-accessible
  4556.                 STATUS          current
  4557.                 DESCRIPTION     "The connection-reuse status table."
  4558.                 ::=  { axConnReuseStats  7 }
  4559.  
  4560.         axConnReuseStatEntry    OBJECT-TYPE
  4561.                 SYNTAX          AxConnReuseStatEntry
  4562.                 MAX-ACCESS      not-accessible
  4563.                 STATUS          current
  4564.                 DESCRIPTION     "The connection-reuse entry."
  4565.                 INDEX           {  axConnReuseStatCpuIndex  }
  4566.                 ::=  { axConnReuseStatTable 1 }
  4567.  
  4568.         AxConnReuseStatEntry  ::=  SEQUENCE {
  4569.                 axConnReuseStatCpuIndex  Integer32,
  4570.                 axConnReuseStatOpenPersist  Counter32,
  4571.                 axConnReuseStatActivePersist  Counter32,
  4572.                 axConnReuseStatTotalEst  Counter32,
  4573.                 axConnReuseStatTotalTerm  Counter32,
  4574.                 axConnReuseStatTotalBind  Counter32,
  4575.                 axConnReuseStatTotalUNBind  Counter32,
  4576.                 axConnReuseStatTotalDelayedUNBind Counter32,
  4577.                 axConnReuseStatTotalLongRes     Counter32,
  4578.                 axConnReuseStatTotalMissedRes Counter32
  4579.                 }
  4580.  
  4581.  
  4582.         axConnReuseStatCpuIndex OBJECT-TYPE
  4583.                 SYNTAX                  Integer32
  4584.                 MAX-ACCESS              read-only
  4585.                 STATUS                  current
  4586.                 DESCRIPTION
  4587.                         "Cpu Index to the connection-reuse STAT."
  4588.                 ::=  {  axConnReuseStatEntry  1  }
  4589.  
  4590.  
  4591.         axConnReuseStatOpenPersist      OBJECT-TYPE
  4592.                 SYNTAX                  Counter32
  4593.                 MAX-ACCESS              read-only
  4594.                 STATUS                  current
  4595.                 DESCRIPTION
  4596.                         "The count of open persistent connection-reuse sessions."
  4597.                 DEFVAL                  { 0 }
  4598.                 ::=  {  axConnReuseStatEntry  2  }
  4599.  
  4600.  
  4601.         axConnReuseStatActivePersist    OBJECT-TYPE
  4602.                 SYNTAX                  Counter32
  4603.                 MAX-ACCESS              read-only
  4604.                 STATUS                  current
  4605.                 DESCRIPTION
  4606.                         "The count of active persistent connection-reuse sessions."
  4607.                 DEFVAL                  { 0 }
  4608.                 ::=  {  axConnReuseStatEntry  3  }
  4609.  
  4610.  
  4611.         axConnReuseStatTotalEst OBJECT-TYPE
  4612.                 SYNTAX                  Counter32
  4613.                 MAX-ACCESS              read-only
  4614.                 STATUS                  current
  4615.                 DESCRIPTION
  4616.                         "The count of established connection-reuse sessions."
  4617.                 DEFVAL                  { 0 }
  4618.                 ::=  {  axConnReuseStatEntry  4  }
  4619.  
  4620.  
  4621.         axConnReuseStatTotalTerm        OBJECT-TYPE
  4622.                 SYNTAX                  Counter32
  4623.                 MAX-ACCESS              read-only
  4624.                 STATUS                  current
  4625.                 DESCRIPTION
  4626.                         "The count of terminated connection-reuse sessions."
  4627.                 DEFVAL                  { 0 }
  4628.                 ::=  {  axConnReuseStatEntry  5  }
  4629.  
  4630.  
  4631.         axConnReuseStatTotalBind        OBJECT-TYPE
  4632.                 SYNTAX                  Counter32
  4633.                 MAX-ACCESS              read-only
  4634.                 STATUS                  current
  4635.                 DESCRIPTION
  4636.                         "The count of bound connection-reuse sessions."
  4637.                 DEFVAL                  { 0 }
  4638.                 ::=  {  axConnReuseStatEntry  6  }
  4639.  
  4640.  
  4641.         axConnReuseStatTotalUNBind      OBJECT-TYPE
  4642.                 SYNTAX                  Counter32
  4643.                 MAX-ACCESS              read-only
  4644.                 STATUS                  current
  4645.                 DESCRIPTION
  4646.                         "The count of unbound connection-reuse sessions"
  4647.                 DEFVAL                  { 0 }
  4648.                 ::=  {  axConnReuseStatEntry  7  }
  4649.  
  4650.         axConnReuseStatTotalDelayedUNBind OBJECT-TYPE
  4651.     SYNTAX                  Counter32
  4652.     MAX-ACCESS              read-only
  4653.     STATUS                  current
  4654.     DESCRIPTION
  4655.                         "Number of connections whose unbinding was delayed."
  4656.     DEFVAL                  { 0 }
  4657.     ::=  {  axConnReuseStatEntry  8  }
  4658.  
  4659.  
  4660.   axConnReuseStatTotalLongRes OBJECT-TYPE
  4661.     SYNTAX                  Counter32
  4662.     MAX-ACCESS              read-only
  4663.     STATUS                  current
  4664.     DESCRIPTION
  4665.                         "Number of responses that took too long."
  4666.     DEFVAL                  { 0 }
  4667.     ::=  {  axConnReuseStatEntry  9  }
  4668.  
  4669.  
  4670.   axConnReuseStatTotalMissedRes OBJECT-TYPE
  4671.     SYNTAX                  Counter32
  4672.     MAX-ACCESS              read-only
  4673.     STATUS                  current
  4674.     DESCRIPTION
  4675.                         "Number of missed responses to HTTP requests."
  4676.     DEFVAL                  { 0 }
  4677.     ::=  {  axConnReuseStatEntry  10  }
  4678.  
  4679.         axConnReuseStatTotalDelayedUNBound OBJECT-TYPE
  4680.     SYNTAX                  INTEGER
  4681.     MAX-ACCESS              read-only
  4682.     STATUS                  current
  4683.     DESCRIPTION
  4684.                         "Number of connections whose unbinding was delayed."
  4685.     DEFVAL                  { 0 }
  4686.     ::=  {  axConnReuseStats  8  }
  4687.  
  4688.  
  4689.    axConnReuseStatTotalLongResponse OBJECT-TYPE
  4690.      SYNTAX                  INTEGER
  4691.      MAX-ACCESS              read-only
  4692.      STATUS                  current
  4693.      DESCRIPTION
  4694.                         "Number of responses that took too long."
  4695.      DEFVAL                  { 0 }
  4696.      ::=  {  axConnReuseStats  9  }
  4697.  
  4698.         axConnReuseStatTotalMissedResponse OBJECT-TYPE
  4699.      SYNTAX                  INTEGER
  4700.      MAX-ACCESS              read-only
  4701.      STATUS                  current
  4702.      DESCRIPTION
  4703.                         "Number of missed responses to HTTP requests."
  4704.      DEFVAL                  { 0 }
  4705.      ::=  {  axConnReuseStats  10  }
  4706.  
  4707. --==================================================================
  4708. -- axFastHttpProxyStat
  4709. --==================================================================
  4710.  
  4711.         axFastHttpProxyStatTotalConn    OBJECT-TYPE
  4712.                 SYNTAX                  INTEGER
  4713.                 MAX-ACCESS              read-only
  4714.                 STATUS                  current
  4715.                 DESCRIPTION
  4716.                         "The total count of proxy connections."
  4717.                 DEFVAL                  { 0 }
  4718.                 ::=  {  axFastHttpProxyStats  1  }
  4719.  
  4720.  
  4721.         axFastHttpProxyStatTotalReq OBJECT-TYPE
  4722.                 SYNTAX                  INTEGER
  4723.                 MAX-ACCESS              read-only
  4724.                 STATUS                  current
  4725.                 DESCRIPTION
  4726.                         "The total count of http requests."
  4727.                 DEFVAL                  { 0 }
  4728.                 ::=  {  axFastHttpProxyStats  2  }
  4729.  
  4730.         axFastHttpProxyStatTotalSuccReq OBJECT-TYPE
  4731.                 SYNTAX                  INTEGER
  4732.                 MAX-ACCESS              read-only
  4733.                 STATUS                  current
  4734.                 DESCRIPTION
  4735.                         "The total count of http requests which connected successful."
  4736.                 DEFVAL                  { 0 }
  4737.                 ::=  {  axFastHttpProxyStats  3  }
  4738.  
  4739.         axFastHttpProxyStatTotalNoProxy OBJECT-TYPE
  4740.                 SYNTAX                  INTEGER
  4741.                 MAX-ACCESS              read-only
  4742.                 STATUS                  current
  4743.                 DESCRIPTION
  4744.                         "The total count of no proxy fail."
  4745.                 DEFVAL                  { 0 }
  4746.                 ::=  {  axFastHttpProxyStats  4  }
  4747.  
  4748.         axFastHttpProxyStatTotalCRst    OBJECT-TYPE
  4749.                 SYNTAX                  INTEGER
  4750.                 MAX-ACCESS              read-only
  4751.                 STATUS                  current
  4752.                 DESCRIPTION
  4753.                         "The total count of http connections reset by client."
  4754.                 DEFVAL                  { 0 }
  4755.                 ::=  {  axFastHttpProxyStats  5  }
  4756.  
  4757.         axFastHttpProxyStatTotalSRst    OBJECT-TYPE
  4758.                 SYNTAX                  INTEGER
  4759.                 MAX-ACCESS              read-only
  4760.                 STATUS                  current
  4761.                 DESCRIPTION
  4762.                         "The total count of http connections reset by server."
  4763.                 DEFVAL                  { 0 }
  4764.                 ::=  {  axFastHttpProxyStats  6  }
  4765.  
  4766.         axFastHttpProxyStatTotalNoTuple OBJECT-TYPE
  4767.                 SYNTAX                  INTEGER
  4768.                 MAX-ACCESS              read-only
  4769.                 STATUS                  current
  4770.                 DESCRIPTION
  4771.                         "The total count of no tuple fail."
  4772.                 DEFVAL                  { 0 }
  4773.                 ::=  {  axFastHttpProxyStats  7  }
  4774.  
  4775.         axFastHttpProxyStatTotalReqErr  OBJECT-TYPE
  4776.                 SYNTAX                  INTEGER
  4777.                 MAX-ACCESS              read-only
  4778.                 STATUS                  current
  4779.                 DESCRIPTION
  4780.                         "The total count of request parse failed."
  4781.                 DEFVAL                  { 0 }
  4782.                 ::=  {  axFastHttpProxyStats  8  }
  4783.  
  4784.         axFastHttpProxyStatTotalSvrSelErr OBJECT-TYPE
  4785.                 SYNTAX                  INTEGER
  4786.                 MAX-ACCESS              read-only
  4787.                 STATUS                  current
  4788.                 DESCRIPTION
  4789.                         "The total count of server select failed."
  4790.                 DEFVAL                  { 0 }
  4791.                 ::=  {  axFastHttpProxyStats  9  }
  4792.  
  4793.         axFastHttpProxyStatTotalFwdReqErr OBJECT-TYPE
  4794.                 SYNTAX                  INTEGER
  4795.                 MAX-ACCESS              read-only
  4796.                 STATUS                  current
  4797.                 DESCRIPTION
  4798.                         "The total count of firewall request fail."
  4799.                 DEFVAL                  { 0 }
  4800.                 ::=  {  axFastHttpProxyStats  10  }
  4801.  
  4802.         axFastHttpProxyStatTotalFwdDataReqErr OBJECT-TYPE
  4803.                 SYNTAX                  INTEGER
  4804.                 MAX-ACCESS              read-only
  4805.                 STATUS                  current
  4806.                 DESCRIPTION
  4807.                         "The total count of firewall data request failed."
  4808.                 DEFVAL                  { 0 }
  4809.                 ::=  {  axFastHttpProxyStats  11 }
  4810.  
  4811.         axFastHttpProxyStatTotalReqReXmit OBJECT-TYPE
  4812.                 SYNTAX                  INTEGER
  4813.                 MAX-ACCESS              read-only
  4814.                 STATUS                  current
  4815.                 DESCRIPTION
  4816.                         "The total count of retransmitted http request."
  4817.                 DEFVAL                  { 0 }
  4818.                 ::=  {  axFastHttpProxyStats  12  }
  4819.  
  4820.         axFastHttpProxyStatTotalReqPktOutOrder OBJECT-TYPE
  4821.                 SYNTAX                  INTEGER
  4822.                 MAX-ACCESS              read-only
  4823.                 STATUS                  current
  4824.                 DESCRIPTION
  4825.                         "The total count of request packet out of order."
  4826.                 DEFVAL                  { 0 }
  4827.                 ::=  {  axFastHttpProxyStats  13  }
  4828.  
  4829.         axFastHttpProxyStatTotalSvrReSel OBJECT-TYPE
  4830.                 SYNTAX                  INTEGER
  4831.                 MAX-ACCESS              read-only
  4832.                 STATUS                  current
  4833.                 DESCRIPTION
  4834.                         "The total count of server reselect."
  4835.                 DEFVAL                  { 0 }
  4836.                 ::=  {  axFastHttpProxyStats  14  }
  4837.  
  4838.         axFastHttpProxyStatTotalPreMatureClose OBJECT-TYPE
  4839.                 SYNTAX                  INTEGER
  4840.                 MAX-ACCESS              read-only
  4841.                 STATUS                  current
  4842.                 DESCRIPTION
  4843.                         "The total count of server premature closed connections."
  4844.                 DEFVAL                  { 0 }
  4845.                 ::=  {  axFastHttpProxyStats  15  }
  4846.  
  4847.         axFastHttpProxyStatTotalSvrConn OBJECT-TYPE
  4848.                 SYNTAX                  INTEGER
  4849.                 MAX-ACCESS              read-only
  4850.                 STATUS                  current
  4851.                 DESCRIPTION
  4852.                         "The total count of server connections made."
  4853.                 DEFVAL                  { 0 }
  4854.                 ::=  {  axFastHttpProxyStats  16  }
  4855.  
  4856.         axFastHttpProxyStatTotalSNATErr OBJECT-TYPE
  4857.                 SYNTAX                  INTEGER
  4858.                 MAX-ACCESS              read-only
  4859.                 STATUS                  current
  4860.                 DESCRIPTION
  4861.                         "The total count of Source NAT failed."
  4862.                 DEFVAL                  { 0 }
  4863.                 ::=  {  axFastHttpProxyStats  17  }
  4864.  
  4865.         axFastHttpProxyStatTable        OBJECT-TYPE
  4866.                 SYNTAX          SEQUENCE  OF  AxFastHttpProxyStatEntry
  4867.                 MAX-ACCESS      not-accessible
  4868.                 STATUS          current
  4869.                 DESCRIPTION
  4870.                         "The fast http proxy status table."
  4871.                 ::=  { axFastHttpProxyStats  18 }
  4872.  
  4873.         axFastHttpProxyStatEntry        OBJECT-TYPE
  4874.                 SYNTAX          AxFastHttpProxyStatEntry
  4875.                 MAX-ACCESS      not-accessible
  4876.                 STATUS          current
  4877.                 DESCRIPTION
  4878.                         "The fast http proxy status entry."
  4879.                 INDEX           {  axFastHttpProxyStatCpuIndex  }
  4880.                 ::=  { axFastHttpProxyStatTable 1 }
  4881.  
  4882.         AxFastHttpProxyStatEntry  ::=  SEQUENCE {
  4883.                 axFastHttpProxyStatCpuIndex  Integer32,
  4884.                 axFastHttpProxyStatCurrProxyConns  Counter32,
  4885.                 axFastHttpProxyStatTotalProxyConns  Counter32,
  4886.                 axFastHttpProxyStatHttpReq  Counter32,
  4887.                 axFastHttpProxyStatHttpReqSucc  Counter32,
  4888.                 axFastHttpProxyStatNoProxyErr  Counter32,
  4889.                 axFastHttpProxyStatClientRst  Counter32,
  4890.                 axFastHttpProxyStatServerRst  Counter32,
  4891.                 axFastHttpProxyStatNoTupleErr  Counter32,
  4892.                 axFastHttpProxyStatParseReqFail  Counter32,
  4893.                 axFastHttpProxyStatServerSelFail  Counter32,
  4894.                 axFastHttpProxyStatFwdReqFail  Counter32,
  4895.                 axFastHttpProxyStatFwdReqDataFail  Counter32,
  4896.                 axFastHttpProxyStatReqReTran  Counter32,
  4897.                 axFastHttpProxyStatReqPktOutOrder  Counter32,
  4898.                 axFastHttpProxyStatServerReSel  Counter32,
  4899.                 axFastHttpProxyStatServerPreMatureClose  Counter32,
  4900.                 axFastHttpProxyStatServerConnMade  Counter32
  4901.                 }
  4902.  
  4903.  
  4904.         axFastHttpProxyStatCpuIndex     OBJECT-TYPE
  4905.                 SYNTAX                  Integer32
  4906.                 MAX-ACCESS              read-only
  4907.                 STATUS                  current
  4908.                 DESCRIPTION
  4909.                         "The cpu index of fast http proxy STAT table"
  4910.                 ::=  {  axFastHttpProxyStatEntry  1  }
  4911.  
  4912.  
  4913.         axFastHttpProxyStatCurrProxyConns       OBJECT-TYPE
  4914.                 SYNTAX                  Counter32
  4915.                 MAX-ACCESS              read-only
  4916.                 STATUS                  current
  4917.                 DESCRIPTION
  4918.                         "The count of current fast http proxy connections"
  4919.                 DEFVAL                  { 0 }
  4920.                 ::=  {  axFastHttpProxyStatEntry  2  }
  4921.  
  4922.  
  4923.         axFastHttpProxyStatTotalProxyConns      OBJECT-TYPE
  4924.                 SYNTAX                  Counter32
  4925.                 MAX-ACCESS              read-only
  4926.                 STATUS                  current
  4927.                 DESCRIPTION
  4928.                         "The total count of fast http proxy connections of current cpu."
  4929.                 ::=  {  axFastHttpProxyStatEntry  3  }
  4930.  
  4931.  
  4932.         axFastHttpProxyStatHttpReq      OBJECT-TYPE
  4933.                 SYNTAX                  Counter32
  4934.                 MAX-ACCESS              read-only
  4935.                 STATUS                  current
  4936.                 DESCRIPTION
  4937.                         "The count of http requests."
  4938.                 DEFVAL                  { 0 }
  4939.                 ::=  {  axFastHttpProxyStatEntry  4  }
  4940.  
  4941.  
  4942.         axFastHttpProxyStatHttpReqSucc  OBJECT-TYPE
  4943.                 SYNTAX                  Counter32
  4944.                 MAX-ACCESS              read-only
  4945.                 STATUS                  current
  4946.                 DESCRIPTION
  4947.                         "The count of http reqests which connected successfully."
  4948.                 DEFVAL                  { 0 }
  4949.                 ::=  {  axFastHttpProxyStatEntry  5  }
  4950.  
  4951.  
  4952.         axFastHttpProxyStatNoProxyErr   OBJECT-TYPE
  4953.                 SYNTAX                  Counter32
  4954.                 MAX-ACCESS              read-only
  4955.                 STATUS                  current
  4956.                 DESCRIPTION
  4957.                         "The count of no proxy error."
  4958.                 DEFVAL                  { 0 }
  4959.                 ::=  {  axFastHttpProxyStatEntry  6  }
  4960.  
  4961.  
  4962.         axFastHttpProxyStatClientRst    OBJECT-TYPE
  4963.                 SYNTAX                  Counter32
  4964.                 MAX-ACCESS              read-only
  4965.                 STATUS                  current
  4966.                 DESCRIPTION
  4967.                         "The count of http connections reset by client."
  4968.                 DEFVAL                  { 0 }
  4969.                 ::=  {  axFastHttpProxyStatEntry  7  }
  4970.  
  4971.  
  4972.         axFastHttpProxyStatServerRst    OBJECT-TYPE
  4973.                 SYNTAX                  Counter32
  4974.                 MAX-ACCESS              read-only
  4975.                 STATUS                  current
  4976.                 DESCRIPTION
  4977.                         "The count of http connections reset by server."
  4978.                 DEFVAL                  { 0 }
  4979.                 ::=  {  axFastHttpProxyStatEntry  8  }
  4980.  
  4981.  
  4982.         axFastHttpProxyStatNoTupleErr   OBJECT-TYPE
  4983.                 SYNTAX                  Counter32
  4984.                 MAX-ACCESS              read-only
  4985.                 STATUS                  current
  4986.                 DESCRIPTION
  4987.                         "The count of no tuple fail."
  4988.                 DEFVAL                  { 0 }
  4989.                 ::=  {  axFastHttpProxyStatEntry  9  }
  4990.  
  4991.  
  4992.         axFastHttpProxyStatParseReqFail OBJECT-TYPE
  4993.                 SYNTAX                  Counter32
  4994.                 MAX-ACCESS              read-only
  4995.                 STATUS                  current
  4996.                 DESCRIPTION
  4997.                         "The count of request parse failed."
  4998.                 DEFVAL                  { 0 }
  4999.                 ::=  {  axFastHttpProxyStatEntry  10  }
  5000.  
  5001.  
  5002.         axFastHttpProxyStatServerSelFail        OBJECT-TYPE
  5003.                 SYNTAX                  Counter32
  5004.                 MAX-ACCESS              read-only
  5005.                 STATUS                  current
  5006.                 DESCRIPTION
  5007.                         "The count of server select failed."
  5008.                 DEFVAL                  { 0 }
  5009.                 ::=  {  axFastHttpProxyStatEntry  11  }
  5010.  
  5011.  
  5012.         axFastHttpProxyStatFwdReqFail   OBJECT-TYPE
  5013.                 SYNTAX                  Counter32
  5014.                 MAX-ACCESS              read-only
  5015.                 STATUS                  current
  5016.                 DESCRIPTION
  5017.                         "The count of firewall request fail."
  5018.                 DEFVAL                  { 0 }
  5019.                 ::=  {  axFastHttpProxyStatEntry  12  }
  5020.  
  5021.  
  5022.         axFastHttpProxyStatFwdReqDataFail       OBJECT-TYPE
  5023.                 SYNTAX                  Counter32
  5024.                 MAX-ACCESS              read-only
  5025.                 STATUS                  current
  5026.                 DESCRIPTION
  5027.                         "The count of firewall data request failed."
  5028.                 DEFVAL                  { 0 }
  5029.                 ::=  {  axFastHttpProxyStatEntry  13  }
  5030.  
  5031.  
  5032.         axFastHttpProxyStatReqReTran    OBJECT-TYPE
  5033.                 SYNTAX                  Counter32
  5034.                 MAX-ACCESS              read-only
  5035.                 STATUS                  current
  5036.                 DESCRIPTION
  5037.                         "The count of retransmitted http request."
  5038.                 DEFVAL                  { 0 }
  5039.                 ::=  {  axFastHttpProxyStatEntry  14  }
  5040.  
  5041.  
  5042.         axFastHttpProxyStatReqPktOutOrder       OBJECT-TYPE
  5043.                 SYNTAX                  Counter32
  5044.                 MAX-ACCESS              read-only
  5045.                 STATUS                  current
  5046.                 DESCRIPTION
  5047.                         "The count of request packet out of order."
  5048.                 DEFVAL                  { 0 }
  5049.                 ::=  {  axFastHttpProxyStatEntry  15  }
  5050.  
  5051.  
  5052.         axFastHttpProxyStatServerReSel  OBJECT-TYPE
  5053.                 SYNTAX                  Counter32
  5054.                 MAX-ACCESS              read-only
  5055.                 STATUS                  current
  5056.                 DESCRIPTION
  5057.                         "The count of server reselect."
  5058.                 DEFVAL                  { 0 }
  5059.                 ::=  {  axFastHttpProxyStatEntry  16  }
  5060.  
  5061.  
  5062.         axFastHttpProxyStatServerPreMatureClose OBJECT-TYPE
  5063.                 SYNTAX                  Counter32
  5064.                 MAX-ACCESS              read-only
  5065.                 STATUS                  current
  5066.                 DESCRIPTION
  5067.                         "The count of server premature closed connections."
  5068.                 DEFVAL                  { 0 }
  5069.                 ::=  {  axFastHttpProxyStatEntry  17  }
  5070.  
  5071.  
  5072.         axFastHttpProxyStatServerConnMade       OBJECT-TYPE
  5073.                 SYNTAX                  Counter32
  5074.                 MAX-ACCESS              read-only
  5075.                 STATUS                  current
  5076.                 DESCRIPTION
  5077.                         "The count of server connections made."
  5078.                 ::=  {  axFastHttpProxyStatEntry  18  }
  5079.  
  5080. --==================================================================
  5081. -- axHttpProxyStat
  5082. --==================================================================
  5083.  
  5084.         axHttpProxyStatTotalConn        OBJECT-TYPE
  5085.                 SYNTAX                  INTEGER
  5086.                 MAX-ACCESS              read-only
  5087.                 STATUS                  current
  5088.                 DESCRIPTION
  5089.                         "The total count of proxy connections."
  5090.                 DEFVAL                  { 0 }
  5091.                 ::=  {  axHttpProxyStats  1  }
  5092.  
  5093.  
  5094.         axHttpProxyStatTotalReq OBJECT-TYPE
  5095.                 SYNTAX                  INTEGER
  5096.                 MAX-ACCESS              read-only
  5097.                 STATUS                  current
  5098.                 DESCRIPTION
  5099.                         "The total count of http requests."
  5100.                 DEFVAL                  { 0 }
  5101.                 ::=  {  axHttpProxyStats  2  }
  5102.  
  5103.         axHttpProxyStatTotalSuccReq OBJECT-TYPE
  5104.                 SYNTAX                  INTEGER
  5105.                 MAX-ACCESS              read-only
  5106.                 STATUS                  current
  5107.                 DESCRIPTION
  5108.                         "The total count of http requests which connected
  5109. successful."
  5110.                 DEFVAL                  { 0 }
  5111.                 ::=  {  axHttpProxyStats  3  }
  5112.  
  5113.         axHttpProxyStatTotalNoProxy OBJECT-TYPE
  5114.                 SYNTAX                  INTEGER
  5115.                 MAX-ACCESS              read-only
  5116.                 STATUS                  current
  5117.                 DESCRIPTION
  5118.                         "The total count of no proxy fail."
  5119.                 DEFVAL                  { 0 }
  5120.                 ::=  {  axHttpProxyStats  4  }
  5121.  
  5122.         axHttpProxyStatTotalCRst    OBJECT-TYPE
  5123.                 SYNTAX                  INTEGER
  5124.                 MAX-ACCESS              read-only
  5125.                 STATUS                  current
  5126.                 DESCRIPTION
  5127.                         "The total count of http connections reset by client."
  5128.                 DEFVAL                  { 0 }
  5129.                 ::=  {  axHttpProxyStats  5  }
  5130.  
  5131.         axHttpProxyStatTotalSRst    OBJECT-TYPE
  5132.                 SYNTAX                  INTEGER
  5133.                 MAX-ACCESS              read-only
  5134.                 STATUS                  current
  5135.                 DESCRIPTION
  5136.                         "The total count of http connections reset by server."
  5137.                 DEFVAL                  { 0 }
  5138.                 ::=  {  axHttpProxyStats  6  }
  5139.  
  5140.         axHttpProxyStatTotalNoTuple OBJECT-TYPE
  5141.                 SYNTAX                  INTEGER
  5142.                 MAX-ACCESS              read-only
  5143.                 STATUS                  current
  5144.                 DESCRIPTION
  5145.                         "The total count of no tuple fail."
  5146.                 DEFVAL                  { 0 }
  5147.                 ::=  {  axHttpProxyStats  7  }
  5148.  
  5149.         axHttpProxyStatTotalReqErr  OBJECT-TYPE
  5150.                 SYNTAX                  INTEGER
  5151.                 MAX-ACCESS              read-only
  5152.                 STATUS                  current
  5153.                 DESCRIPTION
  5154.                         "The total count of request parse failed."
  5155.                 DEFVAL                  { 0 }
  5156.                 ::=  {  axHttpProxyStats  8  }
  5157.  
  5158.         axHttpProxyStatTotalSvrSelErr OBJECT-TYPE
  5159.                 SYNTAX                  INTEGER
  5160.                 MAX-ACCESS              read-only
  5161.                 STATUS                  current
  5162.                 DESCRIPTION
  5163.                         "The total count of server select failed."
  5164.                 DEFVAL                  { 0 }
  5165.                 ::=  {  axHttpProxyStats  9  }
  5166.  
  5167.         axHttpProxyStatTotalFwdReqErr OBJECT-TYPE
  5168.                 SYNTAX                  INTEGER
  5169.                 MAX-ACCESS              read-only
  5170.                 STATUS                  current
  5171.                 DESCRIPTION
  5172.                         "The total count of firewall request fail."
  5173.                 DEFVAL                  { 0 }
  5174.                 ::=  {  axHttpProxyStats  10  }
  5175.  
  5176.         axHttpProxyStatTotalFwdDataReqErr OBJECT-TYPE
  5177.                 SYNTAX                  INTEGER
  5178.                 MAX-ACCESS              read-only
  5179.                 STATUS                  current
  5180.                 DESCRIPTION
  5181.                         "The total count of firewall data request failed."
  5182.                 DEFVAL                  { 0 }
  5183.                 ::=  {  axHttpProxyStats  11 }
  5184.  
  5185.         axHttpProxyStatTotalReqReXmit OBJECT-TYPE
  5186.                 SYNTAX                  INTEGER
  5187.                 MAX-ACCESS              read-only
  5188.                 STATUS                  current
  5189.                 DESCRIPTION
  5190.                         "The total count of retransmitted http request."
  5191.                 DEFVAL                  { 0 }
  5192.                 ::=  {  axHttpProxyStats  12  }
  5193.  
  5194.         axHttpProxyStatTotalReqPktOutOrder OBJECT-TYPE
  5195.                 SYNTAX                  INTEGER
  5196.                 MAX-ACCESS              read-only
  5197.                 STATUS                  current
  5198.                 DESCRIPTION
  5199.                         "The total count of request packet out of order."
  5200.                 DEFVAL                  { 0 }
  5201.                 ::=  {  axHttpProxyStats  13  }
  5202.  
  5203.         axHttpProxyStatTotalSvrReSel OBJECT-TYPE
  5204.                 SYNTAX                  INTEGER
  5205.                 MAX-ACCESS              read-only
  5206.                 STATUS                  current
  5207.                 DESCRIPTION
  5208.                         "The total count of server reselect."
  5209.                 DEFVAL                  { 0 }
  5210.                 ::=  {  axHttpProxyStats  14  }
  5211.  
  5212.         axHttpProxyStatTotalPreMatureClose OBJECT-TYPE
  5213.                 SYNTAX                  INTEGER
  5214.                 MAX-ACCESS              read-only
  5215.                 STATUS                  current
  5216.                 DESCRIPTION
  5217.                         "The total count of server premature closed connections."
  5218.                 DEFVAL                  { 0 }
  5219.                 ::=  {  axHttpProxyStats  15  }
  5220.  
  5221.         axHttpProxyStatTotalSvrConn OBJECT-TYPE
  5222.                 SYNTAX                  INTEGER
  5223.                 MAX-ACCESS              read-only
  5224.                 STATUS                  current
  5225.                 DESCRIPTION
  5226.                         "The total count of server connections made."
  5227.                 DEFVAL                  { 0 }
  5228.                 ::=  {  axHttpProxyStats  16  }
  5229.  
  5230.         axHttpProxyStatTotalSNATErr OBJECT-TYPE
  5231.                 SYNTAX                  INTEGER
  5232.                 MAX-ACCESS              read-only
  5233.                 STATUS                  current
  5234.                 DESCRIPTION
  5235.                         "The total count of Source NAT failed."
  5236.                 DEFVAL                  { 0 }
  5237.                 ::=  {  axHttpProxyStats  17  }
  5238.  
  5239.         axHttpProxyStatTable    OBJECT-TYPE
  5240.                 SYNTAX          SEQUENCE  OF  AxHttpProxyStatEntry
  5241.                 MAX-ACCESS      not-accessible
  5242.                 STATUS          current
  5243.                 DESCRIPTION
  5244.                         "The http proxy STAT table."
  5245.                 ::=  { axHttpProxyStats  18 }
  5246.  
  5247.         axHttpProxyStatEntry    OBJECT-TYPE
  5248.                 SYNTAX          AxHttpProxyStatEntry
  5249.                 MAX-ACCESS      not-accessible
  5250.                 STATUS          current
  5251.                 DESCRIPTION
  5252.                         "The http proxy STAT entry."
  5253.                 INDEX           {  axHttpProxyStatCpuIndex  }
  5254.                 ::=  { axHttpProxyStatTable 1 }
  5255.  
  5256.         AxHttpProxyStatEntry  ::=  SEQUENCE {
  5257.                 axHttpProxyStatCpuIndex  Integer32,
  5258.                 axHttpProxyStatCurrProxyConns  Counter32,
  5259.                 axHttpProxyStatTotalProxyConns  Counter32,
  5260.                 axHttpProxyStatHttpReq  Counter32,
  5261.                 axHttpProxyStatHttpReqSucc  Counter32,
  5262.                 axHttpProxyStatNoProxyErr  Counter32,
  5263.                 axHttpProxyStatClientRst  Counter32,
  5264.                 axHttpProxyStatServerRst  Counter32,
  5265.                 axHttpProxyStatNoTupleErr  Counter32,
  5266.                 axHttpProxyStatParseReqFail  Counter32,
  5267.                 axHttpProxyStatServerSelFail  Counter32,
  5268.                 axHttpProxyStatFwdReqFail  Counter32,
  5269.                 axHttpProxyStatFwdReqDataFail  Counter32,
  5270.                 axHttpProxyStatReqReTran  Counter32,
  5271.                 axHttpProxyStatReqPktOutOrder  Counter32,
  5272.                 axHttpProxyStatServerReSel  Counter32,
  5273.                 axHttpProxyStatServerPreMatureClose  Counter32,
  5274.                 axHttpProxyStatServerConnMade  Counter32
  5275.                 }
  5276.  
  5277.  
  5278.         axHttpProxyStatCpuIndex OBJECT-TYPE
  5279.                 SYNTAX                  Integer32
  5280.                 MAX-ACCESS              read-only
  5281.                 STATUS                  current
  5282.                 DESCRIPTION
  5283.                         "The cpu Index of http proxy STAT table."
  5284.                 ::=  {  axHttpProxyStatEntry  1  }
  5285.  
  5286.  
  5287.         axHttpProxyStatCurrProxyConns   OBJECT-TYPE
  5288.                 SYNTAX                  Counter32
  5289.                 MAX-ACCESS              read-only
  5290.                 STATUS                  current
  5291.                 DESCRIPTION
  5292.                         "The count of current http proxy connections"
  5293.                 DEFVAL                  { 0 }
  5294.                 ::=  {  axHttpProxyStatEntry  2  }
  5295.  
  5296.  
  5297.         axHttpProxyStatTotalProxyConns  OBJECT-TYPE
  5298.                 SYNTAX                  Counter32
  5299.                 MAX-ACCESS              read-only
  5300.                 STATUS                  current
  5301.                 DESCRIPTION
  5302.                         "The total count of http proxy connections of current cpu."
  5303.                 ::=  {  axHttpProxyStatEntry  3  }
  5304.  
  5305.  
  5306.         axHttpProxyStatHttpReq  OBJECT-TYPE
  5307.                 SYNTAX                  Counter32
  5308.                 MAX-ACCESS              read-only
  5309.                 STATUS                  current
  5310.                 DESCRIPTION
  5311.                         "The count of http requests."
  5312.                 DEFVAL                  { 0 }
  5313.                 ::=  {  axHttpProxyStatEntry  4  }
  5314.  
  5315.  
  5316.         axHttpProxyStatHttpReqSucc      OBJECT-TYPE
  5317.                 SYNTAX                  Counter32
  5318.                 MAX-ACCESS              read-only
  5319.                 STATUS                  current
  5320.                 DESCRIPTION
  5321.                         "The count of http reqests which connected successfully."
  5322.                 DEFVAL                  { 0 }
  5323.                 ::=  {  axHttpProxyStatEntry  5  }
  5324.  
  5325.  
  5326.         axHttpProxyStatNoProxyErr       OBJECT-TYPE
  5327.                 SYNTAX                  Counter32
  5328.                 MAX-ACCESS              read-only
  5329.                 STATUS                  current
  5330.                 DESCRIPTION
  5331.                         "The count of no proxy error."
  5332.                 DEFVAL                  { 0 }
  5333.                 ::=  {  axHttpProxyStatEntry  6  }
  5334.  
  5335.  
  5336.         axHttpProxyStatClientRst        OBJECT-TYPE
  5337.                 SYNTAX                  Counter32
  5338.                 MAX-ACCESS              read-only
  5339.                 STATUS                  current
  5340.                 DESCRIPTION
  5341.                         "The count of http connections reset by client."
  5342.                 DEFVAL                  { 0 }
  5343.                 ::=  {  axHttpProxyStatEntry  7  }
  5344.  
  5345.  
  5346.         axHttpProxyStatServerRst        OBJECT-TYPE
  5347.                 SYNTAX                  Counter32
  5348.                 MAX-ACCESS              read-only
  5349.                 STATUS                  current
  5350.                 DESCRIPTION
  5351.                         "The count of http connections reset by server."
  5352.                 DEFVAL                  { 0 }
  5353.                 ::=  {  axHttpProxyStatEntry  8  }
  5354.  
  5355.  
  5356.         axHttpProxyStatNoTupleErr       OBJECT-TYPE
  5357.                 SYNTAX                  Counter32
  5358.                 MAX-ACCESS              read-only
  5359.                 STATUS                  current
  5360.                 DESCRIPTION
  5361.                         "The count of no tuple fail."
  5362.                 DEFVAL                  { 0 }
  5363.                 ::=  {  axHttpProxyStatEntry  9  }
  5364.  
  5365.  
  5366.         axHttpProxyStatParseReqFail     OBJECT-TYPE
  5367.                 SYNTAX                  Counter32
  5368.                 MAX-ACCESS              read-only
  5369.                 STATUS                  current
  5370.                 DESCRIPTION
  5371.                         "The count of request parse failed."
  5372.                 DEFVAL                  { 0 }
  5373.                 ::=  {  axHttpProxyStatEntry  10  }
  5374.  
  5375.  
  5376.         axHttpProxyStatServerSelFail    OBJECT-TYPE
  5377.                 SYNTAX                  Counter32
  5378.                 MAX-ACCESS              read-only
  5379.                 STATUS                  current
  5380.                 DESCRIPTION
  5381.                         "he count of server select failed."
  5382.                 DEFVAL                  { 0 }
  5383.                 ::=  {  axHttpProxyStatEntry  11  }
  5384.  
  5385.  
  5386.         axHttpProxyStatFwdReqFail       OBJECT-TYPE
  5387.                 SYNTAX                  Counter32
  5388.                 MAX-ACCESS              read-only
  5389.                 STATUS                  current
  5390.                 DESCRIPTION
  5391.                         "The count of firewall request fail."
  5392.                 DEFVAL                  { 0 }
  5393.                 ::=  {  axHttpProxyStatEntry  12  }
  5394.  
  5395.  
  5396.         axHttpProxyStatFwdReqDataFail   OBJECT-TYPE
  5397.                 SYNTAX                  Counter32
  5398.                 MAX-ACCESS              read-only
  5399.                 STATUS                  current
  5400.                 DESCRIPTION
  5401.                         "The count of firewall data request failed."
  5402.                 DEFVAL                  { 0 }
  5403.                 ::=  {  axHttpProxyStatEntry  13  }
  5404.  
  5405.  
  5406.         axHttpProxyStatReqReTran        OBJECT-TYPE
  5407.                 SYNTAX                  Counter32
  5408.                 MAX-ACCESS              read-only
  5409.                 STATUS                  current
  5410.                 DESCRIPTION
  5411.                         "The count of retransmitted http request."
  5412.                 DEFVAL                  { 0 }
  5413.                 ::=  {  axHttpProxyStatEntry  14  }
  5414.  
  5415.  
  5416.         axHttpProxyStatReqPktOutOrder   OBJECT-TYPE
  5417.                 SYNTAX                  Counter32
  5418.                 MAX-ACCESS              read-only
  5419.                 STATUS                  current
  5420.                 DESCRIPTION
  5421.                         "The count of request packet out of order."
  5422.                 DEFVAL                  { 0 }
  5423.                 ::=  {  axHttpProxyStatEntry  15  }
  5424.  
  5425.  
  5426.         axHttpProxyStatServerReSel      OBJECT-TYPE
  5427.                 SYNTAX                  Counter32
  5428.                 MAX-ACCESS              read-only
  5429.                 STATUS                  current
  5430.                 DESCRIPTION
  5431.                         "The count of server reselect."
  5432.                 DEFVAL                  { 0 }
  5433.                 ::=  {  axHttpProxyStatEntry  16  }
  5434.  
  5435.  
  5436.         axHttpProxyStatServerPreMatureClose     OBJECT-TYPE
  5437.                 SYNTAX                  Counter32
  5438.                 MAX-ACCESS              read-only
  5439.                 STATUS                  current
  5440.                 DESCRIPTION
  5441.                         "The count of server premature closed connections."
  5442.                 DEFVAL                  { 0 }
  5443.                 ::=  {  axHttpProxyStatEntry  17  }
  5444.  
  5445.  
  5446.         axHttpProxyStatServerConnMade   OBJECT-TYPE
  5447.                 SYNTAX                  Counter32
  5448.                 MAX-ACCESS              read-only
  5449.                 STATUS                  current
  5450.                 DESCRIPTION
  5451.                         "The count of server connections made."
  5452.                 ::=  {  axHttpProxyStatEntry  18  }
  5453.  
  5454.  
  5455. --==================================================================
  5456. -- axTCPProxyStat
  5457. --==================================================================
  5458.  
  5459.         axTcpProxyStatTotalCurrEstConn  OBJECT-TYPE
  5460.                 SYNTAX                  INTEGER
  5461.                 MAX-ACCESS              read-only
  5462.                 STATUS                  current
  5463.                 DESCRIPTION
  5464.                         "The total count of currently established tcp Connections."
  5465.                 DEFVAL                  { 0 }
  5466.                 ::=  {  axTcpProxyStats 1  }
  5467.  
  5468.         axTcpProxyStatTotalActiveOpenConn  OBJECT-TYPE
  5469.                 SYNTAX                  INTEGER
  5470.                 MAX-ACCESS              read-only
  5471.                 STATUS                  current
  5472.                 DESCRIPTION
  5473.                         "The total count of actively opened tcp Connections."
  5474.                 DEFVAL                  { 0 }
  5475.                 ::=  {  axTcpProxyStats 2  }
  5476.  
  5477.         axTcpProxyStatTotalPassiveOpenConn  OBJECT-TYPE
  5478.                 SYNTAX                  INTEGER
  5479.                 MAX-ACCESS              read-only
  5480.                 STATUS                  current
  5481.                 DESCRIPTION
  5482.                         "The total count of passively opened tcp connections."
  5483.                 DEFVAL                  { 0 }
  5484.                 ::=  {  axTcpProxyStats 3  }
  5485.  
  5486.         axTcpProxyStatTotalConnAttemptFail  OBJECT-TYPE
  5487.                 SYNTAX                  INTEGER
  5488.                 MAX-ACCESS              read-only
  5489.                 STATUS                  current
  5490.                 DESCRIPTION
  5491.                         "The total count of connectting attempt fails."
  5492.                 DEFVAL                  { 0 }
  5493.                 ::=  {  axTcpProxyStats 4  }
  5494.  
  5495.         axTcpProxyStatTotalInTCPPacket  OBJECT-TYPE
  5496.                 SYNTAX                  INTEGER
  5497.                 MAX-ACCESS              read-only
  5498.                 STATUS                  current
  5499.                 DESCRIPTION
  5500.                         "The total count of received tcp packets."
  5501.                 DEFVAL                  { 0 }
  5502.                 ::=  {  axTcpProxyStats 5  }
  5503.  
  5504.         axTcpProxyStatTotalOutTCPPkt  OBJECT-TYPE
  5505.                 SYNTAX                  INTEGER
  5506.                 MAX-ACCESS              read-only
  5507.                 STATUS                  current
  5508.                 DESCRIPTION
  5509.                         "The total count of sent tcp packets."
  5510.                 DEFVAL                  { 0 }
  5511.                 ::=  {  axTcpProxyStats 6  }
  5512.  
  5513.         axTcpProxyStatTotalReXmitPkt  OBJECT-TYPE
  5514.                 SYNTAX                  INTEGER
  5515.                 MAX-ACCESS              read-only
  5516.                 STATUS                  current
  5517.                 DESCRIPTION
  5518.                         "The total count of re-transmitted packets."
  5519.                 DEFVAL                  { 0 }
  5520.                 ::=  {  axTcpProxyStats 7  }
  5521.  
  5522.         axTcpProxyStatTotalRstRcvOnEstConn  OBJECT-TYPE
  5523.                 SYNTAX                  INTEGER
  5524.                 MAX-ACCESS              read-only
  5525.                 STATUS                  current
  5526.                 DESCRIPTION
  5527.                         "The total count of reset received on established connection."
  5528.                 DEFVAL                  { 0 }
  5529.                 ::=  {  axTcpProxyStats 8  }
  5530.  
  5531.         axTcpProxyStatTotalRstSent  OBJECT-TYPE
  5532.                 SYNTAX                  INTEGER
  5533.                 MAX-ACCESS              read-only
  5534.                 STATUS                  current
  5535.                 DESCRIPTION
  5536.                         "The total count of reset sent."
  5537.                 DEFVAL                  { 0 }
  5538.                 ::=  {  axTcpProxyStats 9  }
  5539.  
  5540.         axTCPProxyStatTable     OBJECT-TYPE
  5541.                 SYNTAX          SEQUENCE  OF  AxTCPProxyStatEntry
  5542.                 MAX-ACCESS      not-accessible
  5543.                 STATUS          current
  5544.                 DESCRIPTION
  5545.                         "The TCP proxy STAT table."
  5546.                 ::=  { axTcpProxyStats  10 }
  5547.  
  5548.         axTCPProxyStatEntry     OBJECT-TYPE
  5549.                 SYNTAX          AxTCPProxyStatEntry
  5550.                 MAX-ACCESS      not-accessible
  5551.                 STATUS          current
  5552.                 DESCRIPTION
  5553.                         "The TCP proxy STAT entry."
  5554.                 INDEX           {  axTcpProxyStatCpuIndex  }
  5555.                 ::=  { axTCPProxyStatTable 1 }
  5556.  
  5557.         AxTCPProxyStatEntry  ::=  SEQUENCE {
  5558.                 axTcpProxyStatCpuIndex  Integer32,
  5559.                 axTcpProxyStatCurrEstConns  Counter32,
  5560.                 axTcpProxyStatActiveOpenConns  Counter32,
  5561.                 axTcpProxyStatPassiveOpenConns  Counter32,
  5562.                 axTcpProxyStatConnAttempFail  Counter32,
  5563.                 axTcpProxyStatTotalInTCPPkt  Counter32,
  5564.                 axTcpProxyStatTotalOutPkt  Counter32,
  5565.                 axTcpProxyStatReTranPkt  Counter32,
  5566.                 axTcpProxyStatRstRvdEstConn  Counter32,
  5567.                 axTcpProxyStatRstSent  Counter32,
  5568.                 axTcpProxyStatInputErr  Counter32,
  5569.                 axTcpProxyStatSocketAlloc  Counter32,
  5570.                 axTcpProxyStatOrphanSocket  Counter32,
  5571.                 axTcpProxyStatMemAlloc  Counter32,
  5572.                 axTcpProxyStatTotalRxBuf  Counter32,
  5573.                 axTcpProxyStatTotalTxBuf  Counter32,
  5574.                 axTcpProxyStatTCPSYNSNTState  Counter32,
  5575.                 axTcpProxyStatTCPSYNRCVState  Counter32,
  5576.                 axTcpProxyStatTCPFINW1State  Counter32,
  5577.                 axTcpProxyStatTCPFINW2State  Counter32,
  5578.                 axTcpProxyStatTimeWstate  Counter32,
  5579.                 axTcpProxyStatTCPCloseState  Counter32,
  5580.                 axTcpProxyStatTCPCloseWState  Counter32,
  5581.                 axTcpProxyStatTCPLastACKState  Counter32,
  5582.                 axTcpProxyStatTCPListenState  Counter32,
  5583.                 axTcpProxyStatTCPClosingState  Counter32
  5584.                 }
  5585.  
  5586.  
  5587.         axTcpProxyStatCpuIndex  OBJECT-TYPE
  5588.                 SYNTAX                  Integer32
  5589.                 MAX-ACCESS              read-only
  5590.                 STATUS                  current
  5591.                 DESCRIPTION
  5592.                         "The cpu index of TCP proxy STAT table."
  5593.                 ::=  {  axTCPProxyStatEntry  1  }
  5594.  
  5595.  
  5596.         axTcpProxyStatCurrEstConns      OBJECT-TYPE
  5597.                 SYNTAX                  Counter32
  5598.                 MAX-ACCESS              read-only
  5599.                 STATUS                  current
  5600.                 DESCRIPTION
  5601.                         "The count of currently established connections."
  5602.                 DEFVAL                  { 0 }
  5603.                 ::=  {  axTCPProxyStatEntry  2  }
  5604.  
  5605.  
  5606.         axTcpProxyStatActiveOpenConns   OBJECT-TYPE
  5607.                 SYNTAX                  Counter32
  5608.                 MAX-ACCESS              read-only
  5609.                 STATUS                  current
  5610.                 DESCRIPTION
  5611.                         "The count of active open connections."
  5612.                 DEFVAL                  { 0 }
  5613.                 ::=  {  axTCPProxyStatEntry  3  }
  5614.  
  5615.  
  5616.         axTcpProxyStatPassiveOpenConns  OBJECT-TYPE
  5617.                 SYNTAX                  Counter32
  5618.                 MAX-ACCESS              read-only
  5619.                 STATUS                  current
  5620.                 DESCRIPTION
  5621.                         "The count of passive open connections."
  5622.                 DEFVAL                  { 0 }
  5623.                 ::=  {  axTCPProxyStatEntry  4  }
  5624.  
  5625.  
  5626.         axTcpProxyStatConnAttempFail    OBJECT-TYPE
  5627.                 SYNTAX                  Counter32
  5628.                 MAX-ACCESS              read-only
  5629.                 STATUS                  current
  5630.                 DESCRIPTION
  5631.                         "The count of connecting attempt fail."
  5632.                 DEFVAL                  { 0 }
  5633.                 ::=  {  axTCPProxyStatEntry  5  }
  5634.  
  5635.  
  5636.         axTcpProxyStatTotalInTCPPkt     OBJECT-TYPE
  5637.                 SYNTAX                  Counter32
  5638.                 MAX-ACCESS              read-only
  5639.                 STATUS                  current
  5640.                 DESCRIPTION
  5641.                         "The total count of packet received."
  5642.                 DEFVAL                  { 0 }
  5643.                 ::=  {  axTCPProxyStatEntry  6  }
  5644.  
  5645.  
  5646.         axTcpProxyStatTotalOutPkt       OBJECT-TYPE
  5647.                 SYNTAX                  Counter32
  5648.                 MAX-ACCESS              read-only
  5649.                 STATUS                  current
  5650.                 DESCRIPTION
  5651.                         "The total count of packets sent."
  5652.                 DEFVAL                  { 0 }
  5653.                 ::=  {  axTCPProxyStatEntry  7  }
  5654.  
  5655.  
  5656.         axTcpProxyStatReTranPkt OBJECT-TYPE
  5657.                 SYNTAX                  Counter32
  5658.                 MAX-ACCESS              read-only
  5659.                 STATUS                  current
  5660.                 DESCRIPTION
  5661.                         "The count of re-transmit packets."
  5662.                 DEFVAL                  { 0 }
  5663.                 ::=  {  axTCPProxyStatEntry  8  }
  5664.  
  5665.  
  5666.         axTcpProxyStatRstRvdEstConn     OBJECT-TYPE
  5667.                 SYNTAX                  Counter32
  5668.                 MAX-ACCESS              read-only
  5669.                 STATUS                  current
  5670.                 DESCRIPTION
  5671.                         "The count of reset received on established connections."
  5672.                 DEFVAL                  { 0 }
  5673.                 ::=  {  axTCPProxyStatEntry  9  }
  5674.  
  5675.  
  5676.         axTcpProxyStatRstSent   OBJECT-TYPE
  5677.                 SYNTAX                  Counter32
  5678.                 MAX-ACCESS              read-only
  5679.                 STATUS                  current
  5680.                 DESCRIPTION
  5681.                         "The count of Reset Sent."
  5682.                 DEFVAL                  { 0 }
  5683.                 ::=  {  axTCPProxyStatEntry  10  }
  5684.  
  5685.  
  5686.         axTcpProxyStatInputErr  OBJECT-TYPE
  5687.                 SYNTAX                  Counter32
  5688.                 MAX-ACCESS              read-only
  5689.                 STATUS                  current
  5690.                 DESCRIPTION
  5691.                         "The count of Input Error."
  5692.                 DEFVAL                  { 0 }
  5693.                 ::=  {  axTCPProxyStatEntry  11  }
  5694.  
  5695.  
  5696.         axTcpProxyStatSocketAlloc       OBJECT-TYPE
  5697.                 SYNTAX                  Counter32
  5698.                 MAX-ACCESS              read-only
  5699.                 STATUS                  current
  5700.                 DESCRIPTION
  5701.                         "The count of socket allocated."
  5702.                 DEFVAL                  { 0 }
  5703.                 ::=  {  axTCPProxyStatEntry  12  }
  5704.  
  5705.  
  5706.         axTcpProxyStatOrphanSocket      OBJECT-TYPE
  5707.                 SYNTAX                  Counter32
  5708.                 MAX-ACCESS              read-only
  5709.                 STATUS                  current
  5710.                 DESCRIPTION
  5711.                         "The count of orphan sockets."
  5712.                 DEFVAL                  { 0 }
  5713.                 ::=  {  axTCPProxyStatEntry  13  }
  5714.  
  5715.  
  5716.         axTcpProxyStatMemAlloc  OBJECT-TYPE
  5717.                 SYNTAX                  Counter32
  5718.                 MAX-ACCESS              read-only
  5719.                 STATUS                  current
  5720.                 DESCRIPTION
  5721.                         "The size of allocated memory used by tcp proxy."
  5722.                 DEFVAL                  { 0 }
  5723.                 ::=  {  axTCPProxyStatEntry  14  }
  5724.  
  5725.  
  5726.         axTcpProxyStatTotalRxBuf        OBJECT-TYPE
  5727.                 SYNTAX                  Counter32
  5728.                 MAX-ACCESS              read-only
  5729.                 STATUS                  current
  5730.                 DESCRIPTION
  5731.                         "The size of Rx buffer."
  5732.                 DEFVAL                  { 0 }
  5733.                 ::=  {  axTCPProxyStatEntry  15  }
  5734.  
  5735.  
  5736.         axTcpProxyStatTotalTxBuf        OBJECT-TYPE
  5737.                 SYNTAX                  Counter32
  5738.                 MAX-ACCESS              read-only
  5739.                 STATUS                  current
  5740.                 DESCRIPTION
  5741.                         "The size of TX buffer."
  5742.                 DEFVAL                  { 0 }
  5743.                 ::=  {  axTCPProxyStatEntry  16  }
  5744.  
  5745.  
  5746.         axTcpProxyStatTCPSYNSNTState    OBJECT-TYPE
  5747.                 SYNTAX                  Counter32
  5748.                 MAX-ACCESS              read-only
  5749.                 STATUS                  current
  5750.                 DESCRIPTION
  5751.                         "The count of TCP connections in SYN-SNT state."
  5752.                 DEFVAL                  { 0 }
  5753.                 ::=  {  axTCPProxyStatEntry  17  }
  5754.  
  5755.  
  5756.         axTcpProxyStatTCPSYNRCVState    OBJECT-TYPE
  5757.                 SYNTAX                  Counter32
  5758.                 MAX-ACCESS              read-only
  5759.                 STATUS                  current
  5760.                 DESCRIPTION
  5761.                         "The count of TCP connections in SYN-RCV state."
  5762.                 DEFVAL                  { 0 }
  5763.                 ::=  {  axTCPProxyStatEntry  18  }
  5764.  
  5765.  
  5766.         axTcpProxyStatTCPFINW1State     OBJECT-TYPE
  5767.                 SYNTAX                  Counter32
  5768.                 MAX-ACCESS              read-only
  5769.                 STATUS                  current
  5770.                 DESCRIPTION
  5771.                         "The count of TCP connections in FIN-W1 state."
  5772.                 DEFVAL                  { 0 }
  5773.                 ::=  {  axTCPProxyStatEntry  19  }
  5774.  
  5775.  
  5776.         axTcpProxyStatTCPFINW2State     OBJECT-TYPE
  5777.                 SYNTAX                  Counter32
  5778.                 MAX-ACCESS              read-only
  5779.                 STATUS                  current
  5780.                 DESCRIPTION
  5781.                         "The count of TCP connections in FIN-W2 state."
  5782.                 DEFVAL                  { 0 }
  5783.                 ::=  {  axTCPProxyStatEntry  20  }
  5784.  
  5785.  
  5786.         axTcpProxyStatTimeWstate        OBJECT-TYPE
  5787.                 SYNTAX                  Counter32
  5788.                 MAX-ACCESS              read-only
  5789.                 STATUS                  current
  5790.                 DESCRIPTION
  5791.                         "The count of TCP connections in TCP TimeW state."
  5792.                 DEFVAL                  { 0 }
  5793.                 ::=  {  axTCPProxyStatEntry  21  }
  5794.  
  5795.  
  5796.         axTcpProxyStatTCPCloseState     OBJECT-TYPE
  5797.                 SYNTAX                  Counter32
  5798.                 MAX-ACCESS              read-only
  5799.                 STATUS                  current
  5800.                 DESCRIPTION
  5801.                         "The count of TCP connections in close state."
  5802.                 DEFVAL                  { 0 }
  5803.                 ::=  {  axTCPProxyStatEntry  22  }
  5804.  
  5805.  
  5806.         axTcpProxyStatTCPCloseWState    OBJECT-TYPE
  5807.                 SYNTAX                  Counter32
  5808.                 MAX-ACCESS              read-only
  5809.                 STATUS                  current
  5810.                 DESCRIPTION
  5811.                         "The count of TCP connections in closeW state."
  5812.                 DEFVAL                  { 0 }
  5813.                 ::=  {  axTCPProxyStatEntry  23  }
  5814.  
  5815.  
  5816.         axTcpProxyStatTCPLastACKState   OBJECT-TYPE
  5817.                 SYNTAX                  Counter32
  5818.                 MAX-ACCESS              read-only
  5819.                 STATUS                  current
  5820.                 DESCRIPTION
  5821.                         "The count of TCP connections in lastACK state."
  5822.                 DEFVAL                  { 0 }
  5823.                 ::=  {  axTCPProxyStatEntry  24  }
  5824.  
  5825.  
  5826.         axTcpProxyStatTCPListenState    OBJECT-TYPE
  5827.                 SYNTAX                  Counter32
  5828.                 MAX-ACCESS              read-only
  5829.                 STATUS                  current
  5830.                 DESCRIPTION
  5831.                         "The count of TCP connections in listen state."
  5832.                 DEFVAL                  { 0 }
  5833.                 ::=  {  axTCPProxyStatEntry  25  }
  5834.  
  5835.  
  5836.         axTcpProxyStatTCPClosingState   OBJECT-TYPE
  5837.                 SYNTAX                  Counter32
  5838.                 MAX-ACCESS              read-only
  5839.                 STATUS                  current
  5840.                 DESCRIPTION
  5841.                         "The count of TCP connections in closing state."
  5842.                 DEFVAL                  { 0 }
  5843.                 ::=  {  axTCPProxyStatEntry  26  }
  5844.  
  5845. --==================================================================
  5846. -- axSslStat
  5847. --==================================================================
  5848.         axSslStatSSLModNum      OBJECT-TYPE
  5849.                 SYNTAX                  INTEGER
  5850.                 MAX-ACCESS              read-only
  5851.                 STATUS                  current
  5852.                 DESCRIPTION
  5853.                         "The number of SSL modules."
  5854.                 DEFVAL                  { 1 }
  5855.                 ::=  {  axSslStats  1  }
  5856.  
  5857.         axSslStatCurrSSLConn    OBJECT-TYPE
  5858.                 SYNTAX                  Counter64
  5859.                 MAX-ACCESS              read-only
  5860.                 STATUS                  current
  5861.                 DESCRIPTION
  5862.                         "Current SSL Connections."
  5863.                 DEFVAL                  { 0 }
  5864.                 ::=  {  axSslStats  2  }
  5865.  
  5866.         axSslStatTotalSSLConn   OBJECT-TYPE
  5867.                 SYNTAX                  Counter64
  5868.                 MAX-ACCESS              read-only
  5869.                 STATUS                  current
  5870.                 DESCRIPTION
  5871.                         "Total SSL connections."
  5872.                 DEFVAL                  { 0 }
  5873.                 ::=  {  axSslStats  3  }
  5874.  
  5875.         axSslStatFailSSLHandshake       OBJECT-TYPE
  5876.                 SYNTAX                  Counter64
  5877.                 MAX-ACCESS              read-only
  5878.                 STATUS                  current
  5879.                 DESCRIPTION
  5880.                         "Failed SSL handshake."
  5881.                 DEFVAL                  { 0 }
  5882.                 ::=  {  axSslStats  4  }
  5883.  
  5884.         axSslStatSSLMemUsage    OBJECT-TYPE
  5885.                 SYNTAX                  INTEGER
  5886.                 MAX-ACCESS              read-only
  5887.                 STATUS                  current
  5888.                 DESCRIPTION
  5889.                         "The SSL Memory usage(Byte)."
  5890.                 DEFVAL                  { 0 }
  5891.                 ::=  {  axSslStats  5  }
  5892.  
  5893.         axSslStatTable  OBJECT-TYPE
  5894.                 SYNTAX          SEQUENCE  OF  AxSslStatEntry
  5895.                 MAX-ACCESS      not-accessible
  5896.                 STATUS          current
  5897.                 DESCRIPTION
  5898.                         "The SSL STAT table."
  5899.                 ::=  { axSslStats  6 }
  5900.  
  5901.         axSslStatEntry  OBJECT-TYPE
  5902.                 SYNTAX          AxSslStatEntry
  5903.                 MAX-ACCESS      not-accessible
  5904.                 STATUS          current
  5905.                 DESCRIPTION
  5906.                         "The SSL STAT entry."
  5907.                 INDEX           {  axSslStatModuleIndex  }
  5908.                 ::=  { axSslStatTable 1 }
  5909.  
  5910.         AxSslStatEntry  ::=  SEQUENCE {
  5911.                 axSslStatModuleIndex  Integer32,
  5912.                 axSslStatEnableCryptoEngine  Counter32,
  5913.                 axSslStatAvailCryptoEngine  Counter32
  5914.                 }
  5915.  
  5916.         axSslStatModuleIndex    OBJECT-TYPE
  5917.                 SYNTAX                  Integer32
  5918.                 MAX-ACCESS              read-only
  5919.                 STATUS                  current
  5920.                 DESCRIPTION
  5921.                         "The Module Index of SSL STAT table"
  5922.                 ::=  {  axSslStatEntry  1  }
  5923.  
  5924.         axSslStatEnableCryptoEngine     OBJECT-TYPE
  5925.                 SYNTAX                  Counter32
  5926.                 MAX-ACCESS              read-only
  5927.                 STATUS                  current
  5928.                 DESCRIPTION
  5929.                         "The number of enabled crypto engines."
  5930.                 DEFVAL                  { 22 }
  5931.                 ::=  {  axSslStatEntry  2  }
  5932.  
  5933.         axSslStatAvailCryptoEngine      OBJECT-TYPE
  5934.                 SYNTAX                  Counter32
  5935.                 MAX-ACCESS              read-only
  5936.                 STATUS                  current
  5937.                 DESCRIPTION
  5938.                         "The number of available crypto engines."
  5939.                 DEFVAL                  { 22 }
  5940.                 ::=  {  axSslStatEntry  3  }
  5941.  
  5942.         axSslStatSSLFailedCAVfy OBJECT-TYPE
  5943.                 SYNTAX                  INTEGER
  5944.                 MAX-ACCESS              read-only
  5945.                 STATUS                  current
  5946.                 DESCRIPTION
  5947.                         "Number of times an SSL session was terminated due to a certificate verification failure."
  5948.                 DEFVAL                  { 0 }
  5949.                 ::=  {  axSslStats  7  }
  5950.  
  5951.         axSslStatSSLNoHWContextMem      OBJECT-TYPE
  5952.                 SYNTAX                  INTEGER
  5953.                 MAX-ACCESS              read-only
  5954.                 STATUS                  current
  5955.                 DESCRIPTION
  5956.                         "Number of times the encryption processor was unable to allocate memory."
  5957.                 DEFVAL                  { 0 }
  5958.                 ::=  {  axSslStats  8  }
  5959.  
  5960.         axSslStatSSLHWRingFull  OBJECT-TYPE
  5961.                 SYNTAX                  INTEGER
  5962.                 MAX-ACCESS              read-only
  5963.                 STATUS                  current
  5964.                 DESCRIPTION
  5965.                         "Number of times the AX software was unable to enqueue an SSL record to the SSL processor for encryption/decryption.(Number of times the processor reached its performance limit.)"
  5966.                 DEFVAL                  { 0 }
  5967.                 ::=  {  axSslStats  9  }
  5968.  
  5969.         axSslStatSSLFailedCryptoOperation       OBJECT-TYPE
  5970.                 SYNTAX                  INTEGER
  5971.                 MAX-ACCESS              read-only
  5972.                 STATUS                  current
  5973.                 DESCRIPTION
  5974.                         "Number of times when the crypto opertion fails."
  5975.                 DEFVAL                  { 0 }
  5976.                 ::=  {  axSslStats  10  }
  5977.  
  5978. --==================================================================
  5979. -- axFtpStat
  5980. --==================================================================
  5981.  
  5982.         axFtpStatTotalCtrlSession       OBJECT-TYPE
  5983.                 SYNTAX                  INTEGER
  5984.                 MAX-ACCESS              read-only
  5985.                 STATUS                  current
  5986.                 DESCRIPTION
  5987.                         "The total count of control sessions."
  5988.                 DEFVAL                  { 0 }
  5989.                 ::=  {  axFtpStats  1  }
  5990.  
  5991.         axFtpStatTotalALGPkt    OBJECT-TYPE
  5992.                 SYNTAX                  INTEGER
  5993.                 MAX-ACCESS              read-only
  5994.                 STATUS                  current
  5995.                 DESCRIPTION
  5996.                         "The total count of ALG packets."
  5997.                 DEFVAL                  { 0 }
  5998.                 ::=  {  axFtpStats  2  }
  5999.  
  6000.         axFtpStatALGPktReXmit   OBJECT-TYPE
  6001.                 SYNTAX                  INTEGER
  6002.                 MAX-ACCESS              read-only
  6003.                 STATUS                  current
  6004.                 DESCRIPTION
  6005.                         "The count of ALG packets rexmitted."
  6006.                 DEFVAL                  { 0 }
  6007.                 ::=  {  axFtpStats  3  }
  6008.  
  6009.         axFtpStatOutConnCtrl    OBJECT-TYPE
  6010.                 SYNTAX                  INTEGER
  6011.                 MAX-ACCESS              read-only
  6012.                 STATUS                  current
  6013.                 DESCRIPTION
  6014.                         "The count of out of control connections."
  6015.                 DEFVAL                  { 0 }
  6016.                 ::=  {  axFtpStats  4  }
  6017.  
  6018.         axFtpStatTotalDataSession       OBJECT-TYPE
  6019.                 SYNTAX                  INTEGER
  6020.                 MAX-ACCESS              read-only
  6021.                 STATUS                  current
  6022.                 DESCRIPTION
  6023.                         "The total count of data sessions."
  6024.                 DEFVAL                  { 0 }
  6025.                 ::=  {  axFtpStats  5  }
  6026.  
  6027.         axFtpStatOutConnData    OBJECT-TYPE
  6028.                 SYNTAX                  Integer32
  6029.                 MAX-ACCESS              read-only
  6030.                 STATUS                  current
  6031.                 DESCRIPTION
  6032.                         "The total count of out of data connections."
  6033.                 DEFVAL                  { 0 }
  6034.                 ::=  {  axFtpStats  6  }
  6035.  
  6036. --==================================================================
  6037. -- axNetStat
  6038. --==================================================================
  6039.         axNetStatIPOutNoRoute   OBJECT-TYPE
  6040.                 SYNTAX                  Counter32
  6041.                 MAX-ACCESS              read-only
  6042.                 STATUS                  current
  6043.                 DESCRIPTION
  6044.                         "The count of IP out no route."
  6045.                 DEFVAL                  { 0 }
  6046.                 ::=  {  axNetStats  1  }
  6047.  
  6048.         axNetStatTCPOutRst      OBJECT-TYPE
  6049.                 SYNTAX                  Counter32
  6050.                 MAX-ACCESS              read-only
  6051.                 STATUS                  current
  6052.                 DESCRIPTION
  6053.                         "The count of TCP out Reset."
  6054.                 DEFVAL                  { 0 }
  6055.                 ::=  {  axNetStats  2  }
  6056.  
  6057.         axNetStatTCPSynRcv      OBJECT-TYPE
  6058.                 SYNTAX                  Counter32
  6059.                 MAX-ACCESS              read-only
  6060.                 STATUS                  current
  6061.                 DESCRIPTION
  6062.                         "The count of TCP SYN packets received."
  6063.                 DEFVAL                  { 0 }
  6064.                 ::=  {  axNetStats  3  }
  6065.  
  6066.         axNetStatTCPSYNCookieSent       OBJECT-TYPE
  6067.                 SYNTAX                  Counter32
  6068.                 MAX-ACCESS              read-only
  6069.                 STATUS                  current
  6070.                 DESCRIPTION
  6071.                         "The count of TCP SYN cookie sent."
  6072.                 DEFVAL                  { 0 }
  6073.                 ::=  {  axNetStats  4  }
  6074.  
  6075.         axNetStatTCPSYNCookieSentFail   OBJECT-TYPE
  6076.                 SYNTAX                  Counter32
  6077.                 MAX-ACCESS              read-only
  6078.                 STATUS                  current
  6079.                 DESCRIPTION
  6080.                         "The count of TCP SYN cookie sent fail."
  6081.                 DEFVAL                  { 0 }
  6082.                 ::=  {  axNetStats  5  }
  6083.  
  6084.         axNetStatTCPReceive     OBJECT-TYPE
  6085.                 SYNTAX                  Counter32
  6086.                 MAX-ACCESS              read-only
  6087.                 STATUS                  current
  6088.                 DESCRIPTION
  6089.                         "Number of TCP packets received."
  6090.                 DEFVAL                  { 0 }
  6091.                 ::=  {  axNetStats  6  }
  6092.  
  6093.         axNetStatUDPReceive     OBJECT-TYPE
  6094.                 SYNTAX                  Counter32
  6095.                 MAX-ACCESS              read-only
  6096.                 STATUS                  current
  6097.                 DESCRIPTION
  6098.                         "Number of UDP packets received."
  6099.                 DEFVAL                  { 0 }
  6100.                 ::=  {  axNetStats  7  }
  6101.  
  6102.         axNetStatServerSelFail  OBJECT-TYPE
  6103.                 SYNTAX                  Counter32
  6104.                 MAX-ACCESS              read-only
  6105.                 STATUS                  current
  6106.                 DESCRIPTION
  6107.                         "Number of times selection of a real server failed."
  6108.                 DEFVAL                  { 0 }
  6109.                 ::=  {  axNetStats  8  }
  6110.  
  6111.         axNetStatSourceNATFail  OBJECT-TYPE
  6112.                 SYNTAX                  Counter32
  6113.                 MAX-ACCESS              read-only
  6114.                 STATUS                  current
  6115.                 DESCRIPTION
  6116.                         "Number of times a source NAT failure occurred."
  6117.                 DEFVAL                  { 0 }
  6118.                 ::=  {  axNetStats  9  }
  6119.  
  6120.         axNetStatTCPSynCookieFail       OBJECT-TYPE
  6121.                 SYNTAX                  Counter32
  6122.                 MAX-ACCESS              read-only
  6123.                 STATUS                  current
  6124.                 DESCRIPTION
  6125.                         "Number of times a TCP SYN cookie failure occurred."
  6126.                 DEFVAL                  { 0 }
  6127.                 ::=  {  axNetStats  10  }
  6128.  
  6129.         axNetStatNoVportDrop    OBJECT-TYPE
  6130.                 SYNTAX                  Counter32
  6131.                 MAX-ACCESS              read-only
  6132.                 STATUS                  current
  6133.                 DESCRIPTION
  6134.                         "Number of times traffic was dropped because the requested virtual port was not available."
  6135.                 DEFVAL                  { 0 }
  6136.                 ::=  {  axNetStats  11  }
  6137.  
  6138.         axNetStatNoSynPktDrop   OBJECT-TYPE
  6139.                 SYNTAX                  Counter32
  6140.                 MAX-ACCESS              read-only
  6141.                 STATUS                  current
  6142.                 DESCRIPTION
  6143.                         "Number of SYN packets dropped."
  6144.                 DEFVAL                  { 0 }
  6145.                 ::=  {  axNetStats  12  }
  6146.  
  6147.         axNetStatConnLimitDrop  OBJECT-TYPE
  6148.                 SYNTAX                  Counter32
  6149.                 MAX-ACCESS              read-only
  6150.                 STATUS                  current
  6151.                 DESCRIPTION
  6152.                         "Number of packets dropped because the server connection limit had been reached."
  6153.                 DEFVAL                  { 0 }
  6154.                 ::=  {  axNetStats  13  }
  6155.  
  6156.         axNetStatConnLimitReset OBJECT-TYPE
  6157.                 SYNTAX                  Counter32
  6158.                 MAX-ACCESS              read-only
  6159.                 STATUS                  current
  6160.                 DESCRIPTION
  6161.                         "Number of connections reset because the server connection limit had been reached."
  6162.                 DEFVAL                  { 0 }
  6163.                 ::=  {  axNetStats  14  }
  6164.  
  6165.         axNetStatProxyNoSockDrop        OBJECT-TYPE
  6166.                 SYNTAX                  Counter32
  6167.                 MAX-ACCESS              read-only
  6168.                 STATUS                  current
  6169.                 DESCRIPTION
  6170.                         "Number of packets dropped because the proxy did not have an available socket."
  6171.                 DEFVAL                  { 0 }
  6172.                 ::=  {  axNetStats  15  }
  6173.  
  6174.         axNetStataFlexDrop      OBJECT-TYPE
  6175.                 SYNTAX                  Counter32
  6176.                 MAX-ACCESS              read-only
  6177.                 STATUS                  current
  6178.                 DESCRIPTION
  6179.                         "Number of packets dropped due to an aFlex."
  6180.                 DEFVAL                  { 0 }
  6181.                 ::=  {  axNetStats  16  }
  6182.  
  6183.         axNetStatSessionAgingOut        OBJECT-TYPE
  6184.                 SYNTAX                  Counter32
  6185.                 MAX-ACCESS              read-only
  6186.                 STATUS                  current
  6187.                 DESCRIPTION
  6188.                         "Number of sessions that have aged out."
  6189.                 DEFVAL                  { 0 }
  6190.                 ::=  {  axNetStats  17  }
  6191.  
  6192.         axNetStatTCPNoSLB       OBJECT-TYPE
  6193.                 SYNTAX                  Counter32
  6194.                 MAX-ACCESS              read-only
  6195.                 STATUS                  current
  6196.                 DESCRIPTION
  6197.                         "Total number of TCP packets in non SLB processing."
  6198.                 DEFVAL                  { 0 }
  6199.                 ::=  {  axNetStats  18  }
  6200.  
  6201.         axNetStatUDPNoSLB       OBJECT-TYPE
  6202.                 SYNTAX                  Counter32
  6203.                 MAX-ACCESS              read-only
  6204.                 STATUS                  current
  6205.                 DESCRIPTION
  6206.                         "Total number of UDP packets in non SLB processing."
  6207.                 DEFVAL                  { 0 }
  6208.                 ::=  {  axNetStats  19  }
  6209.  
  6210.         axNetStatTCPOutRSTNoSYN OBJECT-TYPE
  6211.                 SYNTAX                  Counter32
  6212.                 MAX-ACCESS              read-only
  6213.                 STATUS                  current
  6214.                 DESCRIPTION
  6215.                         "Total number of TCP out RST no SYN."
  6216.                 DEFVAL                  { 0 }
  6217.                 ::=  {  axNetStats  20  }
  6218.  
  6219.         axNetStatTCPOutRSTL4Proxy       OBJECT-TYPE
  6220.                 SYNTAX                  Counter32
  6221.                 MAX-ACCESS              read-only
  6222.                 STATUS                  current
  6223.                 DESCRIPTION
  6224.                         "Total number of TCP out RST L4 proxy."
  6225.                 DEFVAL                  { 0 }
  6226.                 ::=  {  axNetStats  21  }
  6227.  
  6228.         axNetStatTCPOutRSTACKattack     OBJECT-TYPE
  6229.                 SYNTAX                  Counter32
  6230.                 MAX-ACCESS              read-only
  6231.                 STATUS                  current
  6232.                 DESCRIPTION
  6233.                         "Total number of TCP out RST ACK attack."
  6234.                 DEFVAL                  { 0 }
  6235.                 ::=  {  axNetStats  22  }
  6236.  
  6237.         axNetStatTCPOutRSTAFleX OBJECT-TYPE
  6238.                 SYNTAX                  Counter32
  6239.                 MAX-ACCESS              read-only
  6240.                 STATUS                  current
  6241.                 DESCRIPTION
  6242.                         "Total number of TCP out RST aFlex."
  6243.                 DEFVAL                  { 0 }
  6244.                 ::=  {  axNetStats  23  }
  6245.  
  6246.         axNetStatTCPOutRSTStaleSess     OBJECT-TYPE
  6247.                 SYNTAX                  Counter32
  6248.                 MAX-ACCESS              read-only
  6249.                 STATUS                  current
  6250.                 DESCRIPTION
  6251.                         "Total number of TCP out RST stale session."
  6252.                 DEFVAL                  { 0 }
  6253.                 ::=  {  axNetStats  24  }
  6254.  
  6255.         axNetStatTCPOutRSTProxy         OBJECT-TYPE
  6256.                 SYNTAX                  Counter32
  6257.                 MAX-ACCESS              read-only
  6258.                 STATUS                  current
  6259.                 DESCRIPTION
  6260.                         "Total number of TCP out RST TCP proxy."
  6261.                 DEFVAL                  { 0 }
  6262.                 ::=  {  axNetStats  25  }
  6263.  
  6264.         axNetStatNoSYNPktDropFIN        OBJECT-TYPE
  6265.                 SYNTAX                  Counter32
  6266.                 MAX-ACCESS              read-only
  6267.                 STATUS                  current
  6268.                 DESCRIPTION
  6269.                         "Total number of No SYN pkt drops - FIN."
  6270.                 DEFVAL                  { 0 }
  6271.                 ::=  {  axNetStats  26  }
  6272.  
  6273.         axNetStatNoSYNPktDropRST        OBJECT-TYPE
  6274.                 SYNTAX                  Counter32
  6275.                 MAX-ACCESS              read-only
  6276.                 STATUS                  current
  6277.                 DESCRIPTION
  6278.                         "Total number of No SYN pkt drops - RST."
  6279.                 DEFVAL                  { 0 }
  6280.                 ::=  {  axNetStats  27  }
  6281.  
  6282.         axNetStatNoSYNPktDropACK        OBJECT-TYPE
  6283.                 SYNTAX                  Counter32
  6284.                 MAX-ACCESS              read-only
  6285.                 STATUS                  current
  6286.                 DESCRIPTION
  6287.                         "Total number of No SYN pkt drops - ACK."
  6288.                 DEFVAL                  { 0 }
  6289.                 ::=  {  axNetStats  28  }
  6290.  
  6291.         axNetStatSYNThrotte             OBJECT-TYPE
  6292.                 SYNTAX                  Counter32
  6293.                 MAX-ACCESS              read-only
  6294.                 STATUS                  current
  6295.                 DESCRIPTION
  6296.                         "Total number of SYN Throttle."
  6297.                 DEFVAL                  { 0 }
  6298.                 ::=  {  axNetStats  29  }
  6299.  
  6300.         axNetStatSSLSIDPersistSucc              OBJECT-TYPE
  6301.                 SYNTAX                  Counter32
  6302.                 MAX-ACCESS              read-only
  6303.                 STATUS                  current
  6304.                 DESCRIPTION
  6305.                         "Total number of SSL SID persist successful."
  6306.                 DEFVAL                  { 0 }
  6307.                 ::=  {  axNetStats  30  }
  6308.  
  6309.         axNetStatSSLSIDPersistFail              OBJECT-TYPE
  6310.                 SYNTAX                  Counter32
  6311.                 MAX-ACCESS              read-only
  6312.                 STATUS                  current
  6313.                 DESCRIPTION
  6314.                         "Total number of SSL SID persist failed."
  6315.                 DEFVAL                  { 0 }
  6316.                 ::=  {  axNetStats  31  }
  6317.  
  6318.         axNetStatClientSSLSIDNotFound           OBJECT-TYPE
  6319.                 SYNTAX                  Counter32
  6320.                 MAX-ACCESS              read-only
  6321.                 STATUS                  current
  6322.                 DESCRIPTION
  6323.                         "Total number of Client SSL SID not found."
  6324.                 DEFVAL                  { 0 }
  6325.                 ::=  {  axNetStats  32  }
  6326.  
  6327.         axNetStatClientSSLSIDMatch              OBJECT-TYPE
  6328.                 SYNTAX                  Counter32
  6329.                 MAX-ACCESS              read-only
  6330.                 STATUS                  current
  6331.                 DESCRIPTION
  6332.                         "Total number of Client SSL SID match"
  6333.                 DEFVAL                  { 0 }
  6334.                 ::=  {  axNetStats  33  }
  6335.  
  6336.         axNetStatClientSSLSIDNotMatch           OBJECT-TYPE
  6337.                 SYNTAX                  Counter32
  6338.                 MAX-ACCESS              read-only
  6339.                 STATUS                  current
  6340.                 DESCRIPTION
  6341.                         "Total number of Client SSL SID not match."
  6342.                 DEFVAL                  { 0 }
  6343.                 ::=  {  axNetStats  34  }
  6344.  
  6345.         axNetStatServerSSLSIDNotFound           OBJECT-TYPE
  6346.                 SYNTAX                  Counter32
  6347.                 MAX-ACCESS              read-only
  6348.                 STATUS                  current
  6349.                 DESCRIPTION
  6350.                         "Total number of Server SSL SID not found."
  6351.                 DEFVAL                  { 0 }
  6352.                 ::=  {  axNetStats  35  }
  6353.  
  6354.         axNetStatServerSSLSIDReset              OBJECT-TYPE
  6355.                 SYNTAX                  Counter32
  6356.                 MAX-ACCESS              read-only
  6357.                 STATUS                  current
  6358.                 DESCRIPTION
  6359.                         "Total number of Server SSL SID reset."
  6360.                 DEFVAL                  { 0 }
  6361.                 ::=  {  axNetStats  36  }
  6362.  
  6363.         axNetStatServerSSLSIDMatch              OBJECT-TYPE
  6364.                 SYNTAX                  Counter32
  6365.                 MAX-ACCESS              read-only
  6366.                 STATUS                  current
  6367.                 DESCRIPTION
  6368.                         "Total number of Server SSL SID match."
  6369.                 DEFVAL                  { 0 }
  6370.                 ::=  {  axNetStats  37  }
  6371.  
  6372.         axNetStatServerSSLSIDNotMatch           OBJECT-TYPE
  6373.                 SYNTAX                  Counter32
  6374.                 MAX-ACCESS              read-only
  6375.                 STATUS                  current
  6376.                 DESCRIPTION
  6377.                         "Total number of Server SSL SID not match."
  6378.                 DEFVAL                  { 0 }
  6379.                 ::=  {  axNetStats  38  }
  6380.  
  6381.         axNetStatCreateSSLSIDSucc               OBJECT-TYPE
  6382.                 SYNTAX                  Counter32
  6383.                 MAX-ACCESS              read-only
  6384.                 STATUS                  current
  6385.                 DESCRIPTION
  6386.                         "Total number of Create SSL SID successfully."
  6387.                 DEFVAL                  { 0 }
  6388.                 ::=  {  axNetStats  39  }
  6389.  
  6390.         axNetStatCreateSSLSIDFail               OBJECT-TYPE
  6391.                 SYNTAX                  Counter32
  6392.                 MAX-ACCESS              read-only
  6393.                 STATUS                  current
  6394.                 DESCRIPTION
  6395.                         "Total number of Create SSL SID failed."
  6396.                 DEFVAL                  { 0 }
  6397.                 ::=  {  axNetStats  40  }
  6398.  
  6399.         axNetStatConnRateLimitDrops     OBJECT-TYPE
  6400.                 SYNTAX                  Counter32
  6401.                 MAX-ACCESS              read-only
  6402.                 STATUS                  current
  6403.                 DESCRIPTION
  6404.                         "Total number of Conn rate limit drops."
  6405.                 DEFVAL                  { 0 }
  6406.                 ::=  {  axNetStats  41  }
  6407.  
  6408.         axNetStatConnRateLimitResets    OBJECT-TYPE
  6409.                 SYNTAX                  Counter32
  6410.                 MAX-ACCESS              read-only
  6411.                 STATUS                  current
  6412.                 DESCRIPTION
  6413.                         "Total number of Conn rate limit resets."
  6414.                 DEFVAL                  { 0 }
  6415.                 ::=  {  axNetStats  42  }
  6416.  
  6417.         axNetStatInbandHMRetry          OBJECT-TYPE
  6418.                 SYNTAX                  Counter32
  6419.                 MAX-ACCESS              read-only
  6420.                 STATUS                  current
  6421.                 DESCRIPTION
  6422.                         "Total number of Inband HM retry."
  6423.                 DEFVAL                  { 0 }
  6424.                 ::=  {  axNetStats  43  }
  6425.  
  6426.         axNetStatInbandHMReassign       OBJECT-TYPE
  6427.                 SYNTAX                  Counter32
  6428.                 MAX-ACCESS              read-only
  6429.                 STATUS                  current
  6430.                 DESCRIPTION
  6431.                         "Total number of Inband HM reassign."
  6432.                 DEFVAL                  { 0 }
  6433.                 ::=  {  axNetStats  44  }
  6434.  
  6435.  
  6436.         axNetStat2TCPReceive    OBJECT-TYPE
  6437.                 SYNTAX                  Counter64
  6438.                 MAX-ACCESS              read-only
  6439.                 STATUS                  current
  6440.                 DESCRIPTION
  6441.                         "Number of TCP packets received in the 64-bit counter."
  6442.                 DEFVAL                  { 0 }
  6443.                 ::=  {  axNetStats  45  }
  6444.  
  6445.         axNetStat2UDPReceive    OBJECT-TYPE
  6446.                 SYNTAX                  Counter64
  6447.                 MAX-ACCESS              read-only
  6448.                 STATUS                  current
  6449.                 DESCRIPTION
  6450.                         "Number of UDP packets received in the 64-bit counter."
  6451.                 DEFVAL                  { 0 }
  6452.                 ::=  {  axNetStats  46  }
  6453.  
  6454.         axNetStatL4SynAttack    OBJECT-TYPE
  6455.                 SYNTAX                  Counter32
  6456.                 MAX-ACCESS              read-only
  6457.                 STATUS                  current
  6458.                 DESCRIPTION
  6459.                         "Number of L4 SYN attacks"
  6460.                 DEFVAL                  { 0 }
  6461.                 ::=  {  axNetStats  47  }
  6462.  
  6463.         axNetStatExt    OBJECT IDENTIFIER ::= { axNetStats  90 }
  6464.  
  6465.         axNetStatExtL2Dsr       OBJECT-TYPE
  6466.                 SYNTAX                  Counter32
  6467.                 MAX-ACCESS              read-only
  6468.                 STATUS                  current
  6469.                 DESCRIPTION
  6470.                         "Number of L2 DSR"
  6471.                 DEFVAL                  { 0 }
  6472.                 ::=  {  axNetStatExt  1  }
  6473.  
  6474.         axNetStatExtL3Dsr       OBJECT-TYPE
  6475.                 SYNTAX                  Counter32
  6476.                 MAX-ACCESS              read-only
  6477.                 STATUS                  current
  6478.                 DESCRIPTION
  6479.                         "Number of L3 DSR"
  6480.                 DEFVAL                  { 0 }
  6481.                 ::=  {  axNetStatExt  2  }
  6482.  
  6483.         axNetStatExtNatNoFwdRoute       OBJECT-TYPE
  6484.                 SYNTAX                  Counter32
  6485.                 MAX-ACCESS              read-only
  6486.                 STATUS                  current
  6487.                 DESCRIPTION
  6488.                         "Number of Source NAT no fwd route"
  6489.                 DEFVAL                  { 0 }
  6490.                 ::=  {  axNetStatExt  3  }
  6491.  
  6492.         axNetStatExtNatNoRevRoute       OBJECT-TYPE
  6493.                 SYNTAX                  Counter32
  6494.                 MAX-ACCESS              read-only
  6495.                 STATUS                  current
  6496.                 DESCRIPTION
  6497.                         "Number of Source NAT no rev route"
  6498.                 DEFVAL                  { 0 }
  6499.                 ::=  {  axNetStatExt  4  }
  6500.  
  6501.         axNetStatExtNatIcmpProcess      OBJECT-TYPE
  6502.                 SYNTAX                  Counter32
  6503.                 MAX-ACCESS              read-only
  6504.                 STATUS                  current
  6505.                 DESCRIPTION
  6506.                         "Number of Source NAT ICMP process"
  6507.                 DEFVAL                  { 0 }
  6508.                 ::=  {  axNetStatExt  5  }
  6509.  
  6510.         axNetStatExtNatIcmpNoMatch      OBJECT-TYPE
  6511.                 SYNTAX                  Counter32
  6512.                 MAX-ACCESS              read-only
  6513.                 STATUS                  current
  6514.                 DESCRIPTION
  6515.                         "Number of Source NAT ICMP no match"
  6516.                 DEFVAL                  { 0 }
  6517.                 ::=  {  axNetStatExt  6  }
  6518.  
  6519.         axNetStatExtAutoNatIdMismatch   OBJECT-TYPE
  6520.                 SYNTAX                  Counter32
  6521.                 MAX-ACCESS              read-only
  6522.                 STATUS                  current
  6523.                 DESCRIPTION
  6524.                         "Number of Auto NAT id mismatch"
  6525.                 DEFVAL                  { 0 }
  6526.                 ::=  {  axNetStatExt  7  }
  6527.  
  6528.         axNetStatExtNoVportDrop OBJECT-TYPE
  6529.                 SYNTAX                  Counter32
  6530.                 MAX-ACCESS              read-only
  6531.                 STATUS                  current
  6532.                 DESCRIPTION
  6533.                         "Number of vport not matching drops"
  6534.                 DEFVAL                  { 0 }
  6535.                 ::=  {  axNetStatExt  8  }
  6536.  
  6537.         axNetStatExtTcpSessionAgedOut   OBJECT-TYPE
  6538.                 SYNTAX                  Counter32
  6539.                 MAX-ACCESS              read-only
  6540.                 STATUS                  current
  6541.                 DESCRIPTION
  6542.                         "Number of TCP Session aged out"
  6543.                 DEFVAL                  { 0 }
  6544.                 ::=  {  axNetStatExt  9  }
  6545.  
  6546.         axNetStatExtUdpSessionAgedOut   OBJECT-TYPE
  6547.                 SYNTAX                  Counter32
  6548.                 MAX-ACCESS              read-only
  6549.                 STATUS                  current
  6550.                 DESCRIPTION
  6551.                         "Number of UDP Session aged out"
  6552.                 DEFVAL                  { 0 }
  6553.                 ::=  {  axNetStatExt  10  }
  6554.  
  6555.         axNetStatExtOtherSessionAgedOut OBJECT-TYPE
  6556.                 SYNTAX                  Counter32
  6557.                 MAX-ACCESS              read-only
  6558.                 STATUS                  current
  6559.                 DESCRIPTION
  6560.                         "Number of Other Session aged out"
  6561.                 DEFVAL                  { 0 }
  6562.                 ::=  {  axNetStatExt  11  }
  6563.  
  6564.         axNetStatExtAutoReselectServer  OBJECT-TYPE
  6565.                 SYNTAX                  Counter32
  6566.                 MAX-ACCESS              read-only
  6567.                 STATUS                  current
  6568.                 DESCRIPTION
  6569.                         "Number of Auto-reselect server"
  6570.                 DEFVAL                  { 0 }
  6571.                 ::=  {  axNetStatExt  12  }
  6572.  
  6573.         axNetStatExtFastAgingSet        OBJECT-TYPE
  6574.                 SYNTAX                  Counter32
  6575.                 MAX-ACCESS              read-only
  6576.                 STATUS                  current
  6577.                 DESCRIPTION
  6578.                         "Number of Fast aging set"
  6579.                 DEFVAL                  { 0 }
  6580.                 ::=  {  axNetStatExt  13  }
  6581.  
  6582.         axNetStatExtFastAgingReset      OBJECT-TYPE
  6583.                 SYNTAX                  Counter32
  6584.                 MAX-ACCESS              read-only
  6585.                 STATUS                  current
  6586.                 DESCRIPTION
  6587.                         "Number of Fast aging reset"
  6588.                 DEFVAL                  { 0 }
  6589.                 ::=  {  axNetStatExt  14  }
  6590.  
  6591.         axNetStatExtTcpInvalidDrop      OBJECT-TYPE
  6592.                 SYNTAX                  Counter32
  6593.                 MAX-ACCESS              read-only
  6594.                 STATUS                  current
  6595.                 DESCRIPTION
  6596.                         "Number of TCP invalid drop"
  6597.                 DEFVAL                  { 0 }
  6598.                 ::=  {  axNetStatExt  15  }
  6599.  
  6600.         axNetStatExtOutOfSeqAckDrop     OBJECT-TYPE
  6601.                 SYNTAX                  Counter32
  6602.                 MAX-ACCESS              read-only
  6603.                 STATUS                  current
  6604.                 DESCRIPTION
  6605.                         "Number of Out of sequence ACK drop"
  6606.                 DEFVAL                  { 0 }
  6607.                 ::=  {  axNetStatExt  16  }
  6608.  
  6609.         axNetStatExtTcpSynStaleSessionDrop      OBJECT-TYPE
  6610.                 SYNTAX                  Counter32
  6611.                 MAX-ACCESS              read-only
  6612.                 STATUS                  current
  6613.                 DESCRIPTION
  6614.                         "Number of SYN stale sess drop"
  6615.                 DEFVAL                  { 0 }
  6616.                 ::=  {  axNetStatExt  17  }
  6617.  
  6618.         axNetStatExtAnomalyOutOfSeq     OBJECT-TYPE
  6619.                 SYNTAX                  Counter32
  6620.                 MAX-ACCESS              read-only
  6621.                 STATUS                  current
  6622.                 DESCRIPTION
  6623.                         "Number of Anomaly out of sequence"
  6624.                 DEFVAL                  { 0 }
  6625.                 ::=  {  axNetStatExt  18  }
  6626.  
  6627.         axNetStatExtAnomalyZeroWindow   OBJECT-TYPE
  6628.                 SYNTAX                  Counter32
  6629.                 MAX-ACCESS              read-only
  6630.                 STATUS                  current
  6631.                 DESCRIPTION
  6632.                         "Number of Anomaly zero window"
  6633.                 DEFVAL                  { 0 }
  6634.                 ::=  {  axNetStatExt  19  }
  6635.  
  6636.         axNetStatExtAnomalyBadContent   OBJECT-TYPE
  6637.                 SYNTAX                  Counter32
  6638.                 MAX-ACCESS              read-only
  6639.                 STATUS                  current
  6640.                 DESCRIPTION
  6641.                         "Number of Anomaly bad content"
  6642.                 DEFVAL                  { 0 }
  6643.                 ::=  {  axNetStatExt  20  }
  6644.  
  6645.         axNetStatExtAnomalyPbslbDrop    OBJECT-TYPE
  6646.                 SYNTAX                  Counter32
  6647.                 MAX-ACCESS              read-only
  6648.                 STATUS                  current
  6649.                 DESCRIPTION
  6650.                         "Number of Anomaly pbslb drop"
  6651.                 DEFVAL                  { 0 }
  6652.                 ::=  {  axNetStatExt  21  }
  6653.  
  6654.         axNetStatExtNoResourceDrop      OBJECT-TYPE
  6655.                 SYNTAX                  Counter32
  6656.                 MAX-ACCESS              read-only
  6657.                 STATUS                  current
  6658.                 DESCRIPTION
  6659.                         "Number of No resource drop"
  6660.                 DEFVAL                  { 0 }
  6661.                 ::=  {  axNetStatExt  22  }
  6662.  
  6663.         axNetStatExtResetUnknownConns   OBJECT-TYPE
  6664.                 SYNTAX                  Counter32
  6665.                 MAX-ACCESS              read-only
  6666.                 STATUS                  current
  6667.                 DESCRIPTION
  6668.                         "Number of Reset unknown conn"
  6669.                 DEFVAL                  { 0 }
  6670.                 ::=  {  axNetStatExt  23  }
  6671.  
  6672.         axNetStatExtRstL7OnFailover     OBJECT-TYPE
  6673.                 SYNTAX                  Counter32
  6674.                 MAX-ACCESS              read-only
  6675.                 STATUS                  current
  6676.                 DESCRIPTION
  6677.                         "Number of RST L7 on failover "
  6678.                 DEFVAL                  { 0 }
  6679.                 ::=  {  axNetStatExt  24  }
  6680.  
  6681.         axNetStatExtTcpSynOtherFlagsDrop        OBJECT-TYPE
  6682.                 SYNTAX                  Counter32
  6683.                 MAX-ACCESS              read-only
  6684.                 STATUS                  current
  6685.                 DESCRIPTION
  6686.                         "Number of TCP SYN Other Flags Drop"
  6687.                 DEFVAL                  { 0 }
  6688.                 ::=  {  axNetStatExt  25  }
  6689.  
  6690.         axNetStatExtTcpSynWithDataDrop  OBJECT-TYPE
  6691.                 SYNTAX                  Counter32
  6692.                 MAX-ACCESS              read-only
  6693.                 STATUS                  current
  6694.                 DESCRIPTION
  6695.                         "Number of TCP SYN With Data Drop"
  6696.                 DEFVAL                  { 0 }
  6697.                 ::=  {  axNetStatExt  26  }
  6698.  
  6699.         axNetStatExtIgnoreMsl   OBJECT-TYPE
  6700.                 SYNTAX                  Counter32
  6701.                 MAX-ACCESS              read-only
  6702.                 STATUS                  current
  6703.                 DESCRIPTION
  6704.                         "Number of ignore msl"
  6705.                 DEFVAL                  { 0 }
  6706.                 ::=  {  axNetStatExt  27  }
  6707.  
  6708.         axNetStatExtNatPortPreserveTry  OBJECT-TYPE
  6709.                 SYNTAX                  Counter32
  6710.                 MAX-ACCESS              read-only
  6711.                 STATUS                  current
  6712.                 DESCRIPTION
  6713.                         "Number of NAT Port Preserve Try"
  6714.                 DEFVAL                  { 0 }
  6715.                 ::=  {  axNetStatExt  28  }
  6716.  
  6717.         axNetStatExtNatPortPreserveSucc OBJECT-TYPE
  6718.                 SYNTAX                  Counter32
  6719.                 MAX-ACCESS              read-only
  6720.                 STATUS                  current
  6721.                 DESCRIPTION
  6722.                         "Number of NAT Port Preserve Succ"
  6723.                 DEFVAL                  { 0 }
  6724.                 ::=  {  axNetStatExt  29  }
  6725.  
  6726.         axNetStatExtBwLimitExceedDrop   OBJECT-TYPE
  6727.                 SYNTAX                  Counter32
  6728.                 MAX-ACCESS              read-only
  6729.                 STATUS                  current
  6730.                 DESCRIPTION
  6731.                         "Number of BW-Limit Exceed drop"
  6732.                 DEFVAL                  { 0 }
  6733.                 ::=  {  axNetStatExt  30  }
  6734.  
  6735.         axNetStatExtBwWaterMarkDrop     OBJECT-TYPE
  6736.                 SYNTAX                  Counter32
  6737.                 MAX-ACCESS              read-only
  6738.                 STATUS                  current
  6739.                 DESCRIPTION
  6740.                         "Number of BW-Watermark drop"
  6741.                 DEFVAL                  { 0 }
  6742.                 ::=  {  axNetStatExt  31  }
  6743.  
  6744.         axNetStatExtL4CpsExceedDrop     OBJECT-TYPE
  6745.                 SYNTAX                  Counter32
  6746.                 MAX-ACCESS              read-only
  6747.                 STATUS                  current
  6748.                 DESCRIPTION
  6749.                         "Number of L4 CPS exceed drop"
  6750.                 DEFVAL                  { 0 }
  6751.                 ::=  {  axNetStatExt  32  }
  6752.  
  6753.         axNetStatExtNatCpsExceedDrop    OBJECT-TYPE
  6754.                 SYNTAX                  Counter32
  6755.                 MAX-ACCESS              read-only
  6756.                 STATUS                  current
  6757.                 DESCRIPTION
  6758.                         "Number of NAT CPS exceed drop"
  6759.                 DEFVAL                  { 0 }
  6760.                 ::=  {  axNetStatExt  33  }
  6761.  
  6762.         axNetStatExtL7CpsExceedDrop     OBJECT-TYPE
  6763.                 SYNTAX                  Counter32
  6764.                 MAX-ACCESS              read-only
  6765.                 STATUS                  current
  6766.                 DESCRIPTION
  6767.                         "Number of L7 CPS exceed drop"
  6768.                 DEFVAL                  { 0 }
  6769.                 ::=  {  axNetStatExt  34  }
  6770.  
  6771.         axNetStatExtSslCpsExceedDrop    OBJECT-TYPE
  6772.                 SYNTAX                  Counter32
  6773.                 MAX-ACCESS              read-only
  6774.                 STATUS                  current
  6775.                 DESCRIPTION
  6776.                         "Number of SSL CPS exceed drop"
  6777.                 DEFVAL                  { 0 }
  6778.                 ::=  {  axNetStatExt  35  }
  6779.  
  6780.         axNetStatExtSslTptExceedDrop    OBJECT-TYPE
  6781.                 SYNTAX                  Counter32
  6782.                 MAX-ACCESS              read-only
  6783.                 STATUS                  current
  6784.                 DESCRIPTION
  6785.                         "Number of SSL TPT exceed drop"
  6786.                 DEFVAL                  { 0 }
  6787.                 ::=  {  axNetStatExt  36  }
  6788.  
  6789.         axNetStatExtSslTptWaterMarkDrop OBJECT-TYPE
  6790.                 SYNTAX                  Counter32
  6791.                 MAX-ACCESS              read-only
  6792.                 STATUS                  current
  6793.                 DESCRIPTION
  6794.                         "Number of SSL TPT-Watermark drop"
  6795.                 DEFVAL                  { 0 }
  6796.                 ::=  {  axNetStatExt  37  }
  6797.  
  6798.         axNetStatExtL3vConnLimitDrop    OBJECT-TYPE
  6799.                 SYNTAX                  Counter32
  6800.                 MAX-ACCESS              read-only
  6801.                 STATUS                  current
  6802.                 DESCRIPTION
  6803.                         "Number of L3V Conn Limit Drop"
  6804.                 DEFVAL                  { 0 }
  6805.                 ::=  {  axNetStatExt  38  }
  6806.  
  6807.         axNetStatExtL4ServerHandshakeFail       OBJECT-TYPE
  6808.                 SYNTAX                  Counter32
  6809.                 MAX-ACCESS              read-only
  6810.                 STATUS                  current
  6811.                 DESCRIPTION
  6812.                         "Number of L4 server handshake fail"
  6813.                 DEFVAL                  { 0 }
  6814.                 ::=  {  axNetStatExt  39  }
  6815.  
  6816.         axNetStatExtL4AxReXmitSyn       OBJECT-TYPE
  6817.                 SYNTAX                  Counter32
  6818.                 MAX-ACCESS              read-only
  6819.                 STATUS                  current
  6820.                 DESCRIPTION
  6821.                         "Number of L4 AX re-xmit SYN"
  6822.                 DEFVAL                  { 0 }
  6823.                 ::=  {  axNetStatExt  40  }
  6824.  
  6825.         axNetStatExtL4RcvAckOnSyn       OBJECT-TYPE
  6826.                 SYNTAX                  Counter32
  6827.                 MAX-ACCESS              read-only
  6828.                 STATUS                  current
  6829.                 DESCRIPTION
  6830.                         "Number of L4 rcv ACK on SYN"
  6831.                 DEFVAL                  { 0 }
  6832.                 ::=  {  axNetStatExt  41  }
  6833.  
  6834.         axNetStatExtL4RcvRstOnSyn       OBJECT-TYPE
  6835.                 SYNTAX                  Counter32
  6836.                 MAX-ACCESS              read-only
  6837.                 STATUS                  current
  6838.                 DESCRIPTION
  6839.                         "Number of L4 rcv RST on SYN"
  6840.                 DEFVAL                  { 0 }
  6841.                 ::=  {  axNetStatExt  42  }
  6842.  
  6843.         axNetStatExtTcpNoEstSessionAgedOut      OBJECT-TYPE
  6844.                 SYNTAX                  Counter32
  6845.                 MAX-ACCESS              read-only
  6846.                 STATUS                  current
  6847.                 DESCRIPTION
  6848.                         "Number of TCP no-Est Sess aged out"
  6849.                 DEFVAL                  { 0 }
  6850.                 ::=  {  axNetStatExt  43  }
  6851.  
  6852.         axNetStatExtNoEstCsynRcvAgedOut OBJECT-TYPE
  6853.                 SYNTAX                  Counter32
  6854.                 MAX-ACCESS              read-only
  6855.                 STATUS                  current
  6856.                 DESCRIPTION
  6857.                         "Number of no-Est CSYN rcv aged out"
  6858.                 DEFVAL                  { 0 }
  6859.                 ::=  {  axNetStatExt  44  }
  6860.  
  6861.         axNetStatExtNoEstSsynSntAgedOut OBJECT-TYPE
  6862.                 SYNTAX                  Counter32
  6863.                 MAX-ACCESS              read-only
  6864.                 STATUS                  current
  6865.                 DESCRIPTION
  6866.                         "Number of no-Est SSYN snt aged out"
  6867.                 DEFVAL                  { 0 }
  6868.                 ::=  {  axNetStatExt  45  }
  6869.  
  6870.         axNetStatExtL4RcvReXmitSyn      OBJECT-TYPE
  6871.                 SYNTAX                  Counter32
  6872.                 MAX-ACCESS              read-only
  6873.                 STATUS                  current
  6874.                 DESCRIPTION
  6875.                         "Number of L4 rcv rexmit SYN"
  6876.                 DEFVAL                  { 0 }
  6877.                 ::=  {  axNetStatExt  46  }
  6878.  
  6879.         axNetStatExtL4RcvReXmitSynDelq  OBJECT-TYPE
  6880.                 SYNTAX                  Counter32
  6881.                 MAX-ACCESS              read-only
  6882.                 STATUS                  current
  6883.                 DESCRIPTION
  6884.                         "Number of L4 rcv rexmit SYN (delq)"
  6885.                 DEFVAL                  { 0 }
  6886.                 ::=  {  axNetStatExt  47  }
  6887.  
  6888.         axNetStatExtL4RcvReXmitSynAck   OBJECT-TYPE
  6889.                 SYNTAX                  Counter32
  6890.                 MAX-ACCESS              read-only
  6891.                 STATUS                  current
  6892.                 DESCRIPTION
  6893.                         "Number of L4 rcv rexmit SYN|ACK"
  6894.                 DEFVAL                  { 0 }
  6895.                 ::=  {  axNetStatExt  48  }
  6896.  
  6897.         axNetStatExtL4RcvReXmitSynAckDq OBJECT-TYPE
  6898.                 SYNTAX                  Counter32
  6899.                 MAX-ACCESS              read-only
  6900.                 STATUS                  current
  6901.                 DESCRIPTION
  6902.                         "Number of L4 rcv rexmit SYN|ACK DQ "
  6903.                 DEFVAL                  { 0 }
  6904.                 ::=  {  axNetStatExt  49  }
  6905.  
  6906.         axNetStatExtL4RcvFwdLastAck     OBJECT-TYPE
  6907.                 SYNTAX                  Counter32
  6908.                 MAX-ACCESS              read-only
  6909.                 STATUS                  current
  6910.                 DESCRIPTION
  6911.                         "Number of L4 rcv fwd last ACK"
  6912.                 DEFVAL                  { 0 }
  6913.                 ::=  {  axNetStatExt  50  }
  6914.  
  6915.         axNetStatExtL4RcvRevLastAck     OBJECT-TYPE
  6916.                 SYNTAX                  Counter32
  6917.                 MAX-ACCESS              read-only
  6918.                 STATUS                  current
  6919.                 DESCRIPTION
  6920.                         "Number of L4 rcv rev last ACK"
  6921.                 DEFVAL                  { 0 }
  6922.                 ::=  {  axNetStatExt  51  }
  6923.  
  6924.         axNetStatExtL4RcvFwdFin OBJECT-TYPE
  6925.                 SYNTAX                  Counter32
  6926.                 MAX-ACCESS              read-only
  6927.                 STATUS                  current
  6928.                 DESCRIPTION
  6929.                         "Number of L4 rcv fwd FIN"
  6930.                 DEFVAL                  { 0 }
  6931.                 ::=  {  axNetStatExt  52  }
  6932.  
  6933.         axNetStatExtL4RcvFwdFinDrop     OBJECT-TYPE
  6934.                 SYNTAX                  Counter32
  6935.                 MAX-ACCESS              read-only
  6936.                 STATUS                  current
  6937.                 DESCRIPTION
  6938.                         "Number of L4 rcv fwd FIN dup"
  6939.                 DEFVAL                  { 0 }
  6940.                 ::=  {  axNetStatExt  53  }
  6941.  
  6942.         axNetStatExtL4RcvFwdFinAck      OBJECT-TYPE
  6943.                 SYNTAX                  Counter32
  6944.                 MAX-ACCESS              read-only
  6945.                 STATUS                  current
  6946.                 DESCRIPTION
  6947.                         "Number of L4 rcv fwd FIN|ACK"
  6948.                 DEFVAL                  { 0 }
  6949.                 ::=  {  axNetStatExt  54  }
  6950.  
  6951.         axNetStatExtL4RcvRevFin OBJECT-TYPE
  6952.                 SYNTAX                  Counter32
  6953.                 MAX-ACCESS              read-only
  6954.                 STATUS                  current
  6955.                 DESCRIPTION
  6956.                         "Number of L4 rcv rev FIN"
  6957.                 DEFVAL                  { 0 }
  6958.                 ::=  {  axNetStatExt  55  }
  6959.  
  6960.         axNetStatExtL4RcvRevFinDup      OBJECT-TYPE
  6961.                 SYNTAX                  Counter32
  6962.                 MAX-ACCESS              read-only
  6963.                 STATUS                  current
  6964.                 DESCRIPTION
  6965.                         "Number of L4 rcv rev FIN dup"
  6966.                 DEFVAL                  { 0 }
  6967.                 ::=  {  axNetStatExt  56  }
  6968.  
  6969.         axNetStatExtL4RcvFevFinAck      OBJECT-TYPE
  6970.                 SYNTAX                  Counter32
  6971.                 MAX-ACCESS              read-only
  6972.                 STATUS                  current
  6973.                 DESCRIPTION
  6974.                         "Number of L4 rcv rev FIN|ACK"
  6975.                 DEFVAL                  { 0 }
  6976.                 ::=  {  axNetStatExt  57  }
  6977.  
  6978.         axNetStatExtL4RcvFwdRst OBJECT-TYPE
  6979.                 SYNTAX                  Counter32
  6980.                 MAX-ACCESS              read-only
  6981.                 STATUS                  current
  6982.                 DESCRIPTION
  6983.                         "Number of L4 rcv fwd RST"
  6984.                 DEFVAL                  { 0 }
  6985.                 ::=  {  axNetStatExt  58  }
  6986.  
  6987.         axNetStatExtL4RcfRevRst OBJECT-TYPE
  6988.                 SYNTAX                  Counter32
  6989.                 MAX-ACCESS              read-only
  6990.                 STATUS                  current
  6991.                 DESCRIPTION
  6992.                         "Number of L4 rcv rev RST"
  6993.                 DEFVAL                  { 0 }
  6994.                 ::=  {  axNetStatExt  59  }
  6995.  
  6996.         axNetStatExtL4UdpReqsNoRsp      OBJECT-TYPE
  6997.                 SYNTAX                  Counter32
  6998.                 MAX-ACCESS              read-only
  6999.                 STATUS                  current
  7000.                 DESCRIPTION
  7001.                         "Number of L4 UDP reqs no rsp"
  7002.                 DEFVAL                  { 0 }
  7003.                 ::=  {  axNetStatExt  60  }
  7004.  
  7005.         axNetStatExtL4UdpReqRsps        OBJECT-TYPE
  7006.                 SYNTAX                  Counter32
  7007.                 MAX-ACCESS              read-only
  7008.                 STATUS                  current
  7009.                 DESCRIPTION
  7010.                         "Number of L4 UDP req rsps"
  7011.                 DEFVAL                  { 0 }
  7012.                 ::=  {  axNetStatExt  61  }
  7013.  
  7014.         axNetStatExtL4UdpReqRspNotMatch OBJECT-TYPE
  7015.                 SYNTAX                  Counter32
  7016.                 MAX-ACCESS              read-only
  7017.                 STATUS                  current
  7018.                 DESCRIPTION
  7019.                         "Number of L4 UDP req/rsp not match"
  7020.                 DEFVAL                  { 0 }
  7021.                 ::=  {  axNetStatExt  62  }
  7022.  
  7023.         axNetStatExtL4UdpReqGreaterRsps OBJECT-TYPE
  7024.                 SYNTAX                  Counter32
  7025.                 MAX-ACCESS              read-only
  7026.                 STATUS                  current
  7027.                 DESCRIPTION
  7028.                         "Number of L4 UDP req > rsps"
  7029.                 DEFVAL                  { 0 }
  7030.                 ::=  {  axNetStatExt  63  }
  7031.  
  7032.         axNetStatExtL4UdpRspsGreaterReqs        OBJECT-TYPE
  7033.                 SYNTAX                  Counter32
  7034.                 MAX-ACCESS              read-only
  7035.                 STATUS                  current
  7036.                 DESCRIPTION
  7037.                         "Number of L4 UDP rsps > reqs"
  7038.                 DEFVAL                  { 0 }
  7039.                 ::=  {  axNetStatExt  64  }
  7040.  
  7041.         axNetStatExtL4UdpReqs   OBJECT-TYPE
  7042.                 SYNTAX                  Counter32
  7043.                 MAX-ACCESS              read-only
  7044.                 STATUS                  current
  7045.                 DESCRIPTION
  7046.                         "Number of L4 UDP reqs"
  7047.                 DEFVAL                  { 0 }
  7048.                 ::=  {  axNetStatExt  65  }
  7049.  
  7050.         axNetStatExtL4UdpRsps   OBJECT-TYPE
  7051.                 SYNTAX                  Counter32
  7052.                 MAX-ACCESS              read-only
  7053.                 STATUS                  current
  7054.                 DESCRIPTION
  7055.                         "Number of L4 UDP rsps"
  7056.                 DEFVAL                  { 0 }
  7057.                 ::=  {  axNetStatExt  66  }
  7058.  
  7059.         axNetStatExtL4TcpEst    OBJECT-TYPE
  7060.                 SYNTAX                  Counter32
  7061.                 MAX-ACCESS              read-only
  7062.                 STATUS                  current
  7063.                 DESCRIPTION
  7064.                         "Number of L4 TCP Established"
  7065.                 DEFVAL                  { 0 }
  7066.                 ::=  {  axNetStatExt  67  }
  7067.  
  7068.         axNetStatTable  OBJECT-TYPE
  7069.                 SYNTAX          SEQUENCE  OF  AxNetStatEntry
  7070.                 MAX-ACCESS      not-accessible
  7071.                 STATUS          current
  7072.                 DESCRIPTION
  7073.                         "The Net STAT table."
  7074.                 ::=  { axNetStats  100 }
  7075.  
  7076.         axNetStatEntry  OBJECT-TYPE
  7077.                 SYNTAX          AxNetStatEntry
  7078.                 MAX-ACCESS      not-accessible
  7079.                 STATUS          current
  7080.                 DESCRIPTION
  7081.                         "The Net STAT entry."
  7082.                 INDEX           {  axNetStatCpuIndex  }
  7083.                 ::=  { axNetStatTable 1 }
  7084.  
  7085.         AxNetStatEntry  ::=  SEQUENCE {
  7086.                 axNetStatCpuIndex  Gauge32,
  7087.                 axNetStatIPOutNoRt Counter32,
  7088.                 axNetStatTCPOutReset Counter32,
  7089.                 axNetStatTCPSynRecv Counter32,
  7090.                 axNetStatTCPSYNCookieSnt Counter32,
  7091.                 axNetStatTCPSYNCookieSntFail Counter32,
  7092.                 axNetStatTCPRcv Counter32,
  7093.                 axNetStatUDPRcv Counter32,
  7094.                 axNetStatServerSelFails Counter32,
  7095.                 axNetStatSourceNATFails Counter32,
  7096.                 axNetStatTCPSynCookieFails Counter32,
  7097.                 axNetStatNoVportDrops Counter32,
  7098.                 axNetStatNoSynPktDrops Counter32,
  7099.                 axNetStatConnLimitDrops Counter32,
  7100.                 axNetStatConnLimitResets Counter32,
  7101.                 axNetStatProxyNoSockDrops Counter32,
  7102.                 axNetStataFlexDrops Counter32,
  7103.                 axNetStatSessionsAgingOut Counter32,
  7104.                 axNetStatTCPsNoSLB Counter32,
  7105.                 axNetStatUDPsNoSLB Counter32,
  7106.  
  7107.                 axNetStatEntryTCPOutRSTNoSYN Counter32,
  7108.                 axNetStatEntryTCPOutRSTL4Proxy Counter32,
  7109.                 axNetStatEntryTCPOutRSTACKattack Counter32,
  7110.                 axNetStatEntryTCPOutRSTAFleX Counter32,
  7111.                 axNetStatEntryTCPOutRSTStaleSess Counter32,
  7112.                 axNetStatEntryTCPOutRSTProxy Counter32,
  7113.                 axNetStatEntryNoSYNPktDropFIN Counter32,
  7114.                 axNetStatEntryNoSYNPktDropRST Counter32,
  7115.                 axNetStatEntryNoSYNPktDropACK Counter32,
  7116.                 axNetStatEntrySYNThrotte Counter32,
  7117.                 axNetStatEntrySSLSIDPersistSucc Counter32,
  7118.                 axNetStatEntrySSLSIDPersistFail Counter32,
  7119.                 axNetStatEntryClientSSLSIDNotFound Counter32,
  7120.                 axNetStatEntryClientSSLSIDMatch Counter32,
  7121.                 axNetStatEntryClientSSLSIDNotMatch Counter32,
  7122.                 axNetStatEntryServerSSLSIDNotFound Counter32,
  7123.                 axNetStatEntryServerSSLSIDReset Counter32,
  7124.                 axNetStatEntryServerSSLSIDMatch Counter32,
  7125.                 axNetStatEntryServerSSLSIDNotMatch Counter32,
  7126.                 axNetStatEntryCreateSSLSIDSucc Counter32,
  7127.                 axNetStatEntryCreateSSLSIDFail Counter32,
  7128.                 axNetStatEntryConnRateLimitDrops Counter32,
  7129.                 axNetStatEntryConnRateLimitResets Counter32,
  7130.                 axNetStatEntryInbandHMRetry Counter32,
  7131.                 axNetStatEntryInbandHMReassign Counter32
  7132.                 }
  7133.  
  7134.         axNetStatCpuIndex       OBJECT-TYPE
  7135.                 SYNTAX                  Gauge32
  7136.                 MAX-ACCESS              read-only
  7137.                 STATUS                  current
  7138.                 DESCRIPTION
  7139.                         "The Module Index of Net STAT table"
  7140.                 ::=  {  axNetStatEntry  1  }
  7141.  
  7142.         axNetStatIPOutNoRt      OBJECT-TYPE
  7143.                 SYNTAX                  Counter32
  7144.                 MAX-ACCESS              read-only
  7145.                 STATUS                  current
  7146.                 DESCRIPTION
  7147.                         "Number of IP packets that could not be routed."
  7148.                 DEFVAL                  { 0 }
  7149.                 ::=  {  axNetStatEntry  2  }
  7150.  
  7151.         axNetStatTCPOutReset    OBJECT-TYPE
  7152.                 SYNTAX                  Counter32
  7153.                 MAX-ACCESS              read-only
  7154.                 STATUS                  current
  7155.                 DESCRIPTION
  7156.                         "Number of TCP Resets sent."
  7157.                 DEFVAL                  { 0 }
  7158.                 ::=  {  axNetStatEntry  3  }
  7159.  
  7160.         axNetStatTCPSynRecv     OBJECT-TYPE
  7161.                 SYNTAX                  Counter32
  7162.                 MAX-ACCESS              read-only
  7163.                 STATUS                  current
  7164.                 DESCRIPTION
  7165.                         "Number of TCP SYN packets received."
  7166.                 DEFVAL                  { 0 }
  7167.                 ::=  {  axNetStatEntry  4  }
  7168.  
  7169.         axNetStatTCPSYNCookieSnt        OBJECT-TYPE
  7170.                 SYNTAX                  Counter32
  7171.                 MAX-ACCESS              read-only
  7172.                 STATUS                  current
  7173.                 DESCRIPTION
  7174.                         "Number of TCP SYN cookies sent."
  7175.                 DEFVAL                  { 0 }
  7176.                 ::=  {  axNetStatEntry  5  }
  7177.  
  7178.         axNetStatTCPSYNCookieSntFail    OBJECT-TYPE
  7179.                 SYNTAX                  Counter32
  7180.                 MAX-ACCESS              read-only
  7181.                 STATUS                  current
  7182.                 DESCRIPTION
  7183.                         "Number of TCP SYN cookie send attempts that failed."
  7184.                 DEFVAL                  { 0 }
  7185.                 ::=  {  axNetStatEntry  6  }
  7186.  
  7187.         axNetStatTCPRcv OBJECT-TYPE
  7188.                 SYNTAX                  Counter32
  7189.                 MAX-ACCESS              read-only
  7190.                 STATUS                  current
  7191.                 DESCRIPTION
  7192.                         "Number of TCP packets received."
  7193.                 DEFVAL                  { 0 }
  7194.                 ::=  {  axNetStatEntry  7  }
  7195.  
  7196.         axNetStatUDPRcv OBJECT-TYPE
  7197.                 SYNTAX                  Counter32
  7198.                 MAX-ACCESS              read-only
  7199.                 STATUS                  current
  7200.                 DESCRIPTION
  7201.                         "Number of UDP packets received."
  7202.                 DEFVAL                  { 0 }
  7203.                 ::=  {  axNetStatEntry  8  }
  7204.  
  7205.         axNetStatServerSelFails OBJECT-TYPE
  7206.                 SYNTAX                  Counter32
  7207.                 MAX-ACCESS              read-only
  7208.                 STATUS                  current
  7209.                 DESCRIPTION
  7210.                         "Number of times selection of a real server failed."
  7211.                 DEFVAL                  { 0 }
  7212.                 ::=  {  axNetStatEntry  9  }
  7213.  
  7214.         axNetStatSourceNATFails OBJECT-TYPE
  7215.                 SYNTAX                  Counter32
  7216.                 MAX-ACCESS              read-only
  7217.                 STATUS                  current
  7218.                 DESCRIPTION
  7219.                         "Number of times a source NAT failure occurred."
  7220.                 DEFVAL                  { 0 }
  7221.                 ::=  {  axNetStatEntry  10  }
  7222.  
  7223.         axNetStatTCPSynCookieFails      OBJECT-TYPE
  7224.                 SYNTAX                  Counter32
  7225.                 MAX-ACCESS              read-only
  7226.                 STATUS                  current
  7227.                 DESCRIPTION
  7228.                         "Number of times a TCP SYN cookie failure occurred."
  7229.                 DEFVAL                  { 0 }
  7230.                 ::=  {  axNetStatEntry  11  }
  7231.  
  7232.         axNetStatNoVportDrops   OBJECT-TYPE
  7233.                 SYNTAX                  Counter32
  7234.                 MAX-ACCESS              read-only
  7235.                 STATUS                  current
  7236.                 DESCRIPTION
  7237.                         "Number of times traffic was dropped because the requested virtual port was not available."
  7238.                 DEFVAL                  { 0 }
  7239.                 ::=  {  axNetStatEntry  12  }
  7240.  
  7241.         axNetStatNoSynPktDrops  OBJECT-TYPE
  7242.                 SYNTAX                  Counter32
  7243.                 MAX-ACCESS              read-only
  7244.                 STATUS                  current
  7245.                 DESCRIPTION
  7246.                         "Number of SYN packets dropped."
  7247.                 DEFVAL                  { 0 }
  7248.                 ::=  {  axNetStatEntry  13  }
  7249.  
  7250.         axNetStatConnLimitDrops OBJECT-TYPE
  7251.                 SYNTAX                  Counter32
  7252.                 MAX-ACCESS              read-only
  7253.                 STATUS                  current
  7254.                 DESCRIPTION
  7255.                         "Number of packets dropped because the server connection limit had been reached."
  7256.                 DEFVAL                  { 0 }
  7257.                 ::=  {  axNetStatEntry  14  }
  7258.  
  7259.         axNetStatConnLimitResets        OBJECT-TYPE
  7260.                 SYNTAX                  Counter32
  7261.                 MAX-ACCESS              read-only
  7262.                 STATUS                  current
  7263.                 DESCRIPTION
  7264.                         "Number of connections reset because the server connection limit had been reached."
  7265.                 DEFVAL                  { 0 }
  7266.                 ::=  { axNetStatEntry  15  }
  7267.  
  7268.         axNetStatProxyNoSockDrops       OBJECT-TYPE
  7269.                 SYNTAX                  Counter32
  7270.                 MAX-ACCESS              read-only
  7271.                 STATUS                  current
  7272.                 DESCRIPTION
  7273.                         "Number of packets dropped because the proxy did not have an available socket."
  7274.                 DEFVAL                  { 0 }
  7275.                 ::=  {  axNetStatEntry  16  }
  7276.  
  7277.         axNetStataFlexDrops     OBJECT-TYPE
  7278.                 SYNTAX                  Counter32
  7279.                 MAX-ACCESS              read-only
  7280.                 STATUS                  current
  7281.                 DESCRIPTION
  7282.                         "Number of packets dropped due to an aFlex."
  7283.                 DEFVAL                  { 0 }
  7284.                 ::=  {  axNetStatEntry  17 }
  7285.  
  7286.         axNetStatSessionsAgingOut       OBJECT-TYPE
  7287.                 SYNTAX                  Counter32
  7288.                 MAX-ACCESS              read-only
  7289.                 STATUS                  current
  7290.                 DESCRIPTION
  7291.                         "Number of sessions that have aged out."
  7292.                 DEFVAL                  { 0 }
  7293.                 ::=  {  axNetStatEntry  18  }
  7294.  
  7295.         axNetStatTCPsNoSLB      OBJECT-TYPE
  7296.                 SYNTAX                  Counter32
  7297.                 MAX-ACCESS              read-only
  7298.                 STATUS                  current
  7299.                 DESCRIPTION
  7300.                         "Number of TCP packets in non SLB processing."
  7301.                 DEFVAL                  { 0 }
  7302.                 ::=  {  axNetStatEntry  19  }
  7303.  
  7304.         axNetStatUDPsNoSLB      OBJECT-TYPE
  7305.                 SYNTAX                  Counter32
  7306.                 MAX-ACCESS              read-only
  7307.                 STATUS                  current
  7308.                 DESCRIPTION
  7309.                         "Number of UDP packets in non SLB processing."
  7310.                 DEFVAL                  { 0 }
  7311.                 ::=  {  axNetStatEntry  20  }
  7312.  
  7313.         axNetStatEntryTCPOutRSTNoSYN    OBJECT-TYPE
  7314.                 SYNTAX                  Counter32
  7315.                 MAX-ACCESS              read-only
  7316.                 STATUS                  current
  7317.                 DESCRIPTION
  7318.                         "Number of TCP out RST no SYN."
  7319.                 DEFVAL                  { 0 }
  7320.                 ::=  {  axNetStatEntry  21  }
  7321.  
  7322.         axNetStatEntryTCPOutRSTL4Proxy  OBJECT-TYPE
  7323.                 SYNTAX                  Counter32
  7324.                 MAX-ACCESS              read-only
  7325.                 STATUS                  current
  7326.                 DESCRIPTION
  7327.                         "Number of TCP out RST L4 proxy."
  7328.                 DEFVAL                  { 0 }
  7329.                 ::=  {  axNetStatEntry  22  }
  7330.  
  7331.         axNetStatEntryTCPOutRSTACKattack        OBJECT-TYPE
  7332.                 SYNTAX                  Counter32
  7333.                 MAX-ACCESS              read-only
  7334.                 STATUS                  current
  7335.                 DESCRIPTION
  7336.                         "Number of TCP out RST ACK attack."
  7337.                 DEFVAL                  { 0 }
  7338.                 ::=  {  axNetStatEntry  23  }
  7339.  
  7340.         axNetStatEntryTCPOutRSTAFleX    OBJECT-TYPE
  7341.                 SYNTAX                  Counter32
  7342.                 MAX-ACCESS              read-only
  7343.                 STATUS                  current
  7344.                 DESCRIPTION
  7345.                         "Number of TCP out RST aFlex."
  7346.                 DEFVAL                  { 0 }
  7347.                 ::=  {  axNetStatEntry  24  }
  7348.  
  7349.         axNetStatEntryTCPOutRSTStaleSess        OBJECT-TYPE
  7350.                 SYNTAX                  Counter32
  7351.                 MAX-ACCESS              read-only
  7352.                 STATUS                  current
  7353.                 DESCRIPTION
  7354.                         "Number of TCP out RST stale session."
  7355.                 DEFVAL                  { 0 }
  7356.                 ::=  {  axNetStatEntry  25  }
  7357.  
  7358.         axNetStatEntryTCPOutRSTProxy            OBJECT-TYPE
  7359.                 SYNTAX                  Counter32
  7360.                 MAX-ACCESS              read-only
  7361.                 STATUS                  current
  7362.                 DESCRIPTION
  7363.                         "Number of TCP out RST TCP proxy."
  7364.                 DEFVAL                  { 0 }
  7365.                 ::=  {  axNetStatEntry  26  }
  7366.  
  7367.         axNetStatEntryNoSYNPktDropFIN   OBJECT-TYPE
  7368.                 SYNTAX                  Counter32
  7369.                 MAX-ACCESS              read-only
  7370.                 STATUS                  current
  7371.                 DESCRIPTION
  7372.                         "Number of No SYN pkt drops - FIN."
  7373.                 DEFVAL                  { 0 }
  7374.                 ::=  {  axNetStatEntry  27  }
  7375.  
  7376.         axNetStatEntryNoSYNPktDropRST   OBJECT-TYPE
  7377.                 SYNTAX                  Counter32
  7378.                 MAX-ACCESS              read-only
  7379.                 STATUS                  current
  7380.                 DESCRIPTION
  7381.                         "Number of No SYN pkt drops - RST."
  7382.                 DEFVAL                  { 0 }
  7383.                 ::=  {  axNetStatEntry  28  }
  7384.  
  7385.         axNetStatEntryNoSYNPktDropACK   OBJECT-TYPE
  7386.                 SYNTAX                  Counter32
  7387.                 MAX-ACCESS              read-only
  7388.                 STATUS                  current
  7389.                 DESCRIPTION
  7390.                         "Number of No SYN pkt drops - ACK."
  7391.                 DEFVAL                  { 0 }
  7392.                 ::=  {  axNetStatEntry  29  }
  7393.  
  7394.         axNetStatEntrySYNThrotte                OBJECT-TYPE
  7395.                 SYNTAX                  Counter32
  7396.                 MAX-ACCESS              read-only
  7397.                 STATUS                  current
  7398.                 DESCRIPTION
  7399.                         "Number of SYN Throttle."
  7400.                 DEFVAL                  { 0 }
  7401.                 ::=  {  axNetStatEntry  30  }
  7402.  
  7403.         axNetStatEntrySSLSIDPersistSucc         OBJECT-TYPE
  7404.                 SYNTAX                  Counter32
  7405.                 MAX-ACCESS              read-only
  7406.                 STATUS                  current
  7407.                 DESCRIPTION
  7408.                         "Total number of SSL SID persist successful."
  7409.                 DEFVAL                  { 0 }
  7410.                 ::=  {  axNetStatEntry  31  }
  7411.  
  7412.         axNetStatEntrySSLSIDPersistFail         OBJECT-TYPE
  7413.                 SYNTAX                  Counter32
  7414.                 MAX-ACCESS              read-only
  7415.                 STATUS                  current
  7416.                 DESCRIPTION
  7417.                         "Total number of SSL SID persist failed."
  7418.                 DEFVAL                  { 0 }
  7419.                 ::=  {  axNetStatEntry  32  }
  7420.  
  7421.         axNetStatEntryClientSSLSIDNotFound              OBJECT-TYPE
  7422.                 SYNTAX                  Counter32
  7423.                 MAX-ACCESS              read-only
  7424.                 STATUS                  current
  7425.                 DESCRIPTION
  7426.                         "Total number of Client SSL SID not found."
  7427.                 DEFVAL                  { 0 }
  7428.                 ::=  {  axNetStatEntry  33  }
  7429.  
  7430.         axNetStatEntryClientSSLSIDMatch         OBJECT-TYPE
  7431.                 SYNTAX                  Counter32
  7432.                 MAX-ACCESS              read-only
  7433.                 STATUS                  current
  7434.                 DESCRIPTION
  7435.                         "Total number of Client SSL SID match"
  7436.                 DEFVAL                  { 0 }
  7437.                 ::=  {  axNetStatEntry  34  }
  7438.  
  7439.         axNetStatEntryClientSSLSIDNotMatch              OBJECT-TYPE
  7440.                 SYNTAX                  Counter32
  7441.                 MAX-ACCESS              read-only
  7442.                 STATUS                  current
  7443.                 DESCRIPTION
  7444.                         "Total number of Client SSL SID not match."
  7445.                 DEFVAL                  { 0 }
  7446.                 ::=  {  axNetStatEntry  35  }
  7447.  
  7448.         axNetStatEntryServerSSLSIDNotFound              OBJECT-TYPE
  7449.                 SYNTAX                  Counter32
  7450.                 MAX-ACCESS              read-only
  7451.                 STATUS                  current
  7452.                 DESCRIPTION
  7453.                         "Total number of Server SSL SID not found."
  7454.                 DEFVAL                  { 0 }
  7455.                 ::=  {  axNetStatEntry  36  }
  7456.  
  7457.         axNetStatEntryServerSSLSIDReset         OBJECT-TYPE
  7458.                 SYNTAX                  Counter32
  7459.                 MAX-ACCESS              read-only
  7460.                 STATUS                  current
  7461.                 DESCRIPTION
  7462.                         "Total number of Server SSL SID reset."
  7463.                 DEFVAL                  { 0 }
  7464.                 ::=  {  axNetStatEntry  37  }
  7465.  
  7466.         axNetStatEntryServerSSLSIDMatch         OBJECT-TYPE
  7467.                 SYNTAX                  Counter32
  7468.                 MAX-ACCESS              read-only
  7469.                 STATUS                  current
  7470.                 DESCRIPTION
  7471.                         "Total number of Server SSL SID match."
  7472.                 DEFVAL                  { 0 }
  7473.                 ::=  {  axNetStatEntry  38  }
  7474.  
  7475.         axNetStatEntryServerSSLSIDNotMatch              OBJECT-TYPE
  7476.                 SYNTAX                  Counter32
  7477.                 MAX-ACCESS              read-only
  7478.                 STATUS                  current
  7479.                 DESCRIPTION
  7480.                         "Total number of Server SSL SID not match."
  7481.                 DEFVAL                  { 0 }
  7482.                 ::=  {  axNetStatEntry  39  }
  7483.  
  7484.         axNetStatEntryCreateSSLSIDSucc          OBJECT-TYPE
  7485.                 SYNTAX                  Counter32
  7486.                 MAX-ACCESS              read-only
  7487.                 STATUS                  current
  7488.                 DESCRIPTION
  7489.                         "Total number of Create SSL SID successfully."
  7490.                 DEFVAL                  { 0 }
  7491.                 ::=  {  axNetStatEntry  40  }
  7492.  
  7493.         axNetStatEntryCreateSSLSIDFail          OBJECT-TYPE
  7494.                 SYNTAX                  Counter32
  7495.                 MAX-ACCESS              read-only
  7496.                 STATUS                  current
  7497.                 DESCRIPTION
  7498.                         "Total number of Create SSL SID failed."
  7499.                 DEFVAL                  { 0 }
  7500.                 ::=  {  axNetStatEntry  41  }
  7501.  
  7502.         axNetStatEntryConnRateLimitDrops        OBJECT-TYPE
  7503.                 SYNTAX                  Counter32
  7504.                 MAX-ACCESS              read-only
  7505.                 STATUS                  current
  7506.                 DESCRIPTION
  7507.                         "Number of Conn rate limit drops."
  7508.                 DEFVAL                  { 0 }
  7509.                 ::=  {  axNetStatEntry  42  }
  7510.  
  7511.         axNetStatEntryConnRateLimitResets       OBJECT-TYPE
  7512.                 SYNTAX                  Counter32
  7513.                 MAX-ACCESS              read-only
  7514.                 STATUS                  current
  7515.                 DESCRIPTION
  7516.                         "Number of Conn rate limit resets."
  7517.                 DEFVAL                  { 0 }
  7518.                 ::=  {  axNetStatEntry  43  }
  7519.  
  7520.         axNetStatEntryInbandHMRetry             OBJECT-TYPE
  7521.                 SYNTAX                  Counter32
  7522.                 MAX-ACCESS              read-only
  7523.                 STATUS                  current
  7524.                 DESCRIPTION
  7525.                         "Number of Inband HM retry."
  7526.                 DEFVAL                  { 0 }
  7527.                 ::=  {  axNetStatEntry  44  }
  7528.  
  7529.         axNetStatEntryInbandHMReassign  OBJECT-TYPE
  7530.                 SYNTAX                  Counter32
  7531.                 MAX-ACCESS              read-only
  7532.                 STATUS                  current
  7533.                 DESCRIPTION
  7534.                         "Number of Inband HM reassign."
  7535.                 DEFVAL                  { 0 }
  7536.                 ::=  {  axNetStatEntry  45  }
  7537.  
  7538. --================================================================
  7539. --  axSmtpProxyStats
  7540. --================================================================
  7541.         axSmtpProxyStatsCurrProxyConns  OBJECT-TYPE
  7542.                 SYNTAX                  INTEGER
  7543.                 MAX-ACCESS              read-only
  7544.                 STATUS                  current
  7545.                 DESCRIPTION
  7546.                         "Number of currently active SMTP connections using the AX Series device as an SMTP proxy."
  7547.                 DEFVAL                  { 0 }
  7548.                 ::=  {  axSmtpProxyStats  1  }
  7549.  
  7550.         axSmtpProxyStatsTotalProxyConns OBJECT-TYPE
  7551.                 SYNTAX                  INTEGER
  7552.                 MAX-ACCESS              read-only
  7553.                 STATUS                  current
  7554.                 DESCRIPTION
  7555.                         "Total number of SMTP connections that have used the AX Series device as an SMTP proxy."
  7556.                 DEFVAL                  { 0 }
  7557.                 ::=  {  axSmtpProxyStats  2  }
  7558.  
  7559.         axSmtpProxyStatsSmtpRequests    OBJECT-TYPE
  7560.                 SYNTAX                  INTEGER
  7561.                 MAX-ACCESS              read-only
  7562.                 STATUS                  current
  7563.                 DESCRIPTION
  7564.                         "Total number of SMTP requests received by the SMTP proxy."
  7565.                 DEFVAL                  { 0 }
  7566.                 ::=  {  axSmtpProxyStats  3  }
  7567.  
  7568.         axSmtpProxyStatsSmtpReqSuccs    OBJECT-TYPE
  7569.                 SYNTAX                  INTEGER
  7570.                 MAX-ACCESS              read-only
  7571.                 STATUS                  current
  7572.                 DESCRIPTION
  7573.                         "Number of SMTP requests received by the AX Series device that were successfully fulfilled (by connection to a real server)."
  7574.                 DEFVAL                  { 0 }
  7575.                 ::=  {  axSmtpProxyStats  4  }
  7576.  
  7577.         axSmtpProxyStatsNoProxyError    OBJECT-TYPE
  7578.                 SYNTAX                  INTEGER
  7579.                 MAX-ACCESS              read-only
  7580.                 STATUS                  current
  7581.                 DESCRIPTION
  7582.                         "Number of proxy errors."
  7583.                 DEFVAL                  { 0 }
  7584.                 ::=  {  axSmtpProxyStats  5  }
  7585.  
  7586.         axSmtpProxyStatsClientRST       OBJECT-TYPE
  7587.                 SYNTAX                  INTEGER
  7588.                 MAX-ACCESS              read-only
  7589.                 STATUS                  current
  7590.                 DESCRIPTION
  7591.                         "Number of times TCP connections with clients were reset."
  7592.                 DEFVAL                  { 0 }
  7593.                 ::=  {  axSmtpProxyStats  6  }
  7594.  
  7595.         axSmtpProxyStatsServerRST       OBJECT-TYPE
  7596.                 SYNTAX                  INTEGER
  7597.                 MAX-ACCESS              read-only
  7598.                 STATUS                  current
  7599.                 DESCRIPTION
  7600.                         "Number of times TCP connections with servers were reset."
  7601.                 DEFVAL                  { 0 }
  7602.                 ::=  {  axSmtpProxyStats  7  }
  7603.  
  7604.         axSmtpProxyStatsNoTupleError    OBJECT-TYPE
  7605.                 SYNTAX                  INTEGER
  7606.                 MAX-ACCESS              read-only
  7607.                 STATUS                  current
  7608.                 DESCRIPTION
  7609.                         "Number of tuple errors."
  7610.                 DEFVAL                  { 0 }
  7611.                 ::=  {  axSmtpProxyStats  8  }
  7612.  
  7613.         axSmtpProxyStatsParseReqFail    OBJECT-TYPE
  7614.                 SYNTAX                  INTEGER
  7615.                 MAX-ACCESS              read-only
  7616.                 STATUS                  current
  7617.                 DESCRIPTION
  7618.                         "Number of times parsing of an SMTP request failed."
  7619.                 DEFVAL                  { 0 }
  7620.                 ::=  {  axSmtpProxyStats  9  }
  7621.  
  7622.         axSmtpProxyStatsServerSelFail   OBJECT-TYPE
  7623.                 SYNTAX                  INTEGER
  7624.                 MAX-ACCESS              read-only
  7625.                 STATUS                  current
  7626.                 DESCRIPTION
  7627.                         "Number of times selection of a real server failed."
  7628.                 DEFVAL                  { 0 }
  7629.                 ::=  {  axSmtpProxyStats  10  }
  7630.  
  7631.         axSmtpProxyStatsFwdReqFail      OBJECT-TYPE
  7632.                 SYNTAX                  INTEGER
  7633.                 MAX-ACCESS              read-only
  7634.                 STATUS                  current
  7635.                 DESCRIPTION
  7636.                         "Number of forward request failures."
  7637.                 DEFVAL                  { 0 }
  7638.                 ::=  {  axSmtpProxyStats  11  }
  7639.  
  7640.         axSmtpProxyStatsFwdReqDataFail  OBJECT-TYPE
  7641.                 SYNTAX                  INTEGER
  7642.                 MAX-ACCESS              read-only
  7643.                 STATUS                  current
  7644.                 DESCRIPTION
  7645.                         "Number of forward request data failures."
  7646.                 DEFVAL                  { 0 }
  7647.                 ::=  {  axSmtpProxyStats  12  }
  7648.  
  7649.         axSmtpProxyStatsReqRetrans      OBJECT-TYPE
  7650.                 SYNTAX                  INTEGER
  7651.                 MAX-ACCESS              read-only
  7652.                 STATUS                  current
  7653.                 DESCRIPTION
  7654.                         "Number of retransmitted requests."
  7655.                 DEFVAL                  { 0 }
  7656.                 ::=  {  axSmtpProxyStats  13  }
  7657.  
  7658.         axSmtpProxyStatsReqPktOutOrder  OBJECT-TYPE
  7659.                 SYNTAX                  INTEGER
  7660.                 MAX-ACCESS              read-only
  7661.                 STATUS                  current
  7662.                 DESCRIPTION
  7663.                         "Number of request packets received from clients out of sequence."
  7664.                 DEFVAL                  { 0 }
  7665.                 ::=  {  axSmtpProxyStats  14  }
  7666.  
  7667.         axSmtpProxyStatsServerResel     OBJECT-TYPE
  7668.                 SYNTAX                  INTEGER
  7669.                 MAX-ACCESS              read-only
  7670.                 STATUS                  current
  7671.                 DESCRIPTION
  7672.                         "Number of times a request was forwarded to another server because the current server was failing."
  7673.                 DEFVAL                  { 0 }
  7674.                 ::=  {  axSmtpProxyStats  15  }
  7675.  
  7676.         axSmtpProxyStatsSvrPrematureClose       OBJECT-TYPE
  7677.                 SYNTAX                  INTEGER
  7678.                 MAX-ACCESS              read-only
  7679.                 STATUS                  current
  7680.                 DESCRIPTION
  7681.                         "Number of times the connection with a server closed prematurely."
  7682.                 DEFVAL                  { 0 }
  7683.                 ::=  {  axSmtpProxyStats  16  }
  7684.  
  7685.         axSmtpProxyStatsSvrConnMade     OBJECT-TYPE
  7686.                 SYNTAX                  INTEGER
  7687.                 MAX-ACCESS              read-only
  7688.                 STATUS                  current
  7689.                 DESCRIPTION
  7690.                         "Number of connections made with servers."
  7691.                 DEFVAL                  { 0 }
  7692.                 ::=  {  axSmtpProxyStats  17  }
  7693.  
  7694.         axSmtpProxyStatsSNATFail        OBJECT-TYPE
  7695.                 SYNTAX                  INTEGER
  7696.                 MAX-ACCESS              read-only
  7697.                 STATUS                  current
  7698.                 DESCRIPTION
  7699.                         "Number of source NAT failures."
  7700.                 DEFVAL                  { 0 }
  7701.                 ::=  {  axSmtpProxyStats  18  }
  7702.  
  7703.         axSmtpProxyStatTable    OBJECT-TYPE
  7704.                 SYNTAX          SEQUENCE  OF  AxSmtpProxyStatEntry
  7705.                 MAX-ACCESS      not-accessible
  7706.                 STATUS          current
  7707.                 DESCRIPTION
  7708.                         "The Smtp proxy STAT table."
  7709.                 ::=  { axSmtpProxyStats  19 }
  7710.  
  7711.         axSmtpProxyStatEntry OBJECT-TYPE
  7712.                 SYNTAX          AxSmtpProxyStatEntry
  7713.                 MAX-ACCESS      not-accessible
  7714.                 STATUS  current
  7715.                 DESCRIPTION
  7716.                                                                                                 "The Smtp proxy STAT entry."
  7717.                 INDEX           {               axSmtpProxyStatCpuIndex         }
  7718.                 ::=             {       axSmtpProxyStatTable 1 }
  7719.  
  7720.         AxSmtpProxyStatEntry  ::=  SEQUENCE {
  7721.                 axSmtpProxyStatCpuIndex  Integer32,
  7722.                 axSmtpProxyStatCurrProxyConn Counter32,
  7723.                 axSmtpProxyStatTotalProxyConn Counter32,
  7724.                 axSmtpProxyStatSmtpReq Counter32,
  7725.                 axSmtpProxyStatSmtpReqSucc Counter32,
  7726.                 axSmtpProxyStatNoProxyError Counter32,
  7727.                 axSmtpProxyStatClientRST Counter32,
  7728.                 axSmtpProxyStatServerRST Counter32,
  7729.                 axSmtpProxyStatNoTupleError Counter32,
  7730.                 axSmtpProxyStatParseReqFail Counter32,
  7731.                 axSmtpProxyStatServerSelFail Counter32,
  7732.                 axSmtpProxyStatFwdReqFail Counter32,
  7733.                 axSmtpProxyStatFwdReqDataFail Counter32,
  7734.                 axSmtpProxyStatReqRetrans Counter32,
  7735.                 axSmtpProxyStatReqPktOutOrder Counter32,
  7736.                 axSmtpProxyStatServerResel Counter32,
  7737.                 axSmtpProxyStatSvrPrematureClose Counter32,
  7738.                 axSmtpProxyStatSvrConnMade Counter32,
  7739.                 axSmtpProxyStatSNATFail Counter32
  7740.         }
  7741.  
  7742.         axSmtpProxyStatCpuIndex OBJECT-TYPE
  7743.         SYNTAX                  Integer32
  7744.         MAX-ACCESS              read-only
  7745.         STATUS                  current
  7746.         DESCRIPTION
  7747.                         "The Module Index of Smtp Proxy STAT table"
  7748.         ::=  {  axSmtpProxyStatEntry  1  }
  7749.  
  7750.         axSmtpProxyStatCurrProxyConn    OBJECT-TYPE
  7751.                 SYNTAX                  Counter32
  7752.                 MAX-ACCESS              read-only
  7753.                 STATUS                  current
  7754.                 DESCRIPTION
  7755.                         "Number of currently active SMTP connections using the AX Series device as an SMTP proxy."
  7756.                 DEFVAL                  { 0 }
  7757.                 ::=  {  axSmtpProxyStatEntry  2  }
  7758.  
  7759.         axSmtpProxyStatTotalProxyConn   OBJECT-TYPE
  7760.                 SYNTAX                  Counter32
  7761.                 MAX-ACCESS              read-only
  7762.                 STATUS                  current
  7763.                 DESCRIPTION
  7764.                         "Total number of SMTP connections that have used the AX Series device as an SMTP proxy."
  7765.                 DEFVAL                  { 0 }
  7766.                 ::=  {  axSmtpProxyStatEntry  3  }
  7767.  
  7768.         axSmtpProxyStatSmtpReq  OBJECT-TYPE
  7769.                 SYNTAX                  Counter32
  7770.                 MAX-ACCESS              read-only
  7771.                 STATUS                  current
  7772.                 DESCRIPTION
  7773.                         "Total number of SMTP requests received by the SMTP proxy."
  7774.                 DEFVAL                  { 0 }
  7775.                 ::=  {  axSmtpProxyStatEntry  4  }
  7776.  
  7777.         axSmtpProxyStatSmtpReqSucc      OBJECT-TYPE
  7778.                 SYNTAX                  Counter32
  7779.                 MAX-ACCESS              read-only
  7780.                 STATUS                  current
  7781.                 DESCRIPTION
  7782.                         "Number of SMTP requests received by the AX Series device that were successfully fulfilled (by connection to a real server)."
  7783.                 DEFVAL                  { 0 }
  7784.                 ::=  {  axSmtpProxyStatEntry  5  }
  7785.  
  7786.         axSmtpProxyStatNoProxyError     OBJECT-TYPE
  7787.                 SYNTAX                  Counter32
  7788.                 MAX-ACCESS              read-only
  7789.                 STATUS                  current
  7790.                 DESCRIPTION
  7791.                         "Number of proxy errors."
  7792.                 DEFVAL                  { 0 }
  7793.                 ::=  {  axSmtpProxyStatEntry  6  }
  7794.  
  7795.         axSmtpProxyStatClientRST        OBJECT-TYPE
  7796.                 SYNTAX                  Counter32
  7797.                 MAX-ACCESS              read-only
  7798.                 STATUS                  current
  7799.                 DESCRIPTION
  7800.                         "Number of times TCP connections with clients were reset."
  7801.                 DEFVAL                  { 0 }
  7802.                 ::=  {  axSmtpProxyStatEntry  7  }
  7803.  
  7804.         axSmtpProxyStatServerRST        OBJECT-TYPE
  7805.                 SYNTAX                  Counter32
  7806.                 MAX-ACCESS              read-only
  7807.                 STATUS                  current
  7808.                 DESCRIPTION
  7809.                         "Number of times TCP connections with servers were reset."
  7810.                 DEFVAL                  { 0 }
  7811.                 ::=  {  axSmtpProxyStatEntry  8  }
  7812.  
  7813.         axSmtpProxyStatNoTupleError     OBJECT-TYPE
  7814.                 SYNTAX                  Counter32
  7815.                 MAX-ACCESS              read-only
  7816.                 STATUS                  current
  7817.                 DESCRIPTION
  7818.                         "Number of tuple errors."
  7819.                 DEFVAL                  { 0 }
  7820.                 ::=  {  axSmtpProxyStatEntry  9  }
  7821.  
  7822.         axSmtpProxyStatParseReqFail     OBJECT-TYPE
  7823.                 SYNTAX                  Counter32
  7824.                 MAX-ACCESS              read-only
  7825.                 STATUS                  current
  7826.                 DESCRIPTION
  7827.                         "Number of times parsing of an SMTP request failed."
  7828.                 DEFVAL                  { 0 }
  7829.                 ::=  {  axSmtpProxyStatEntry  10  }
  7830.  
  7831.         axSmtpProxyStatServerSelFail    OBJECT-TYPE
  7832.                 SYNTAX                  Counter32
  7833.                 MAX-ACCESS              read-only
  7834.                 STATUS                  current
  7835.                 DESCRIPTION
  7836.                         "Number of times selection of a real server failed."
  7837.                 DEFVAL                  { 0 }
  7838.                 ::=  {  axSmtpProxyStatEntry  11  }
  7839.  
  7840.         axSmtpProxyStatFwdReqFail       OBJECT-TYPE
  7841.                 SYNTAX                  Counter32
  7842.                 MAX-ACCESS              read-only
  7843.                 STATUS                  current
  7844.                 DESCRIPTION
  7845.                         "Number of forward request failures."
  7846.                 DEFVAL                  { 0 }
  7847.                 ::=  {  axSmtpProxyStatEntry  12  }
  7848.  
  7849.         axSmtpProxyStatFwdReqDataFail   OBJECT-TYPE
  7850.                 SYNTAX                  Counter32
  7851.                 MAX-ACCESS              read-only
  7852.                 STATUS                  current
  7853.                 DESCRIPTION
  7854.                         "Number of forward request data failures."
  7855.                 DEFVAL                  { 0 }
  7856.                 ::=  {  axSmtpProxyStatEntry  13  }
  7857.  
  7858.         axSmtpProxyStatReqRetrans       OBJECT-TYPE
  7859.                 SYNTAX                  Counter32
  7860.                 MAX-ACCESS              read-only
  7861.                 STATUS                  current
  7862.                 DESCRIPTION
  7863.                         "Number of retransmitted requests."
  7864.                 DEFVAL                  { 0 }
  7865.                 ::=  {  axSmtpProxyStatEntry  14  }
  7866.  
  7867.         axSmtpProxyStatReqPktOutOrder   OBJECT-TYPE
  7868.                 SYNTAX                  Counter32
  7869.                 MAX-ACCESS              read-only
  7870.                 STATUS                  current
  7871.                 DESCRIPTION
  7872.                         "Number of request packets received from clients out of sequence."
  7873.                 DEFVAL                  { 0 }
  7874.                 ::=  {  axSmtpProxyStatEntry  15  }
  7875.  
  7876.         axSmtpProxyStatServerResel      OBJECT-TYPE
  7877.                 SYNTAX                  Counter32
  7878.                 MAX-ACCESS              read-only
  7879.                 STATUS                  current
  7880.                 DESCRIPTION
  7881.                         "Number of times a request was forwarded to another server because the current server was failing."
  7882.                 DEFVAL                  { 0 }
  7883.                 ::=  {  axSmtpProxyStatEntry  16  }
  7884.  
  7885.         axSmtpProxyStatSvrPrematureClose        OBJECT-TYPE
  7886.                 SYNTAX                  Counter32
  7887.                 MAX-ACCESS              read-only
  7888.                 STATUS                  current
  7889.                 DESCRIPTION
  7890.                         "TNumber of times the connection with a server closed prematurely."
  7891.                 DEFVAL                  { 0 }
  7892.                 ::=  {  axSmtpProxyStatEntry  17  }
  7893.  
  7894.         axSmtpProxyStatSvrConnMade      OBJECT-TYPE
  7895.                 SYNTAX                  Counter32
  7896.                 MAX-ACCESS              read-only
  7897.                 STATUS                  current
  7898.                 DESCRIPTION
  7899.                         "Number of connections made with servers."
  7900.                 DEFVAL                  { 0 }
  7901.                 ::=  {  axSmtpProxyStatEntry  18  }
  7902.  
  7903.         axSmtpProxyStatSNATFail OBJECT-TYPE
  7904.                 SYNTAX                  Counter32
  7905.                 MAX-ACCESS              read-only
  7906.                 STATUS                  current
  7907.                 DESCRIPTION
  7908.                         "Number of source NAT failures."
  7909.                 DEFVAL                  { 0 }
  7910.                 ::=  {  axSmtpProxyStatEntry  19  }
  7911.  
  7912. --================================================================
  7913. --  axSslProxyStats
  7914. --================================================================
  7915.         axSslProxyStatsCurrProxyConns   OBJECT-TYPE
  7916.                 SYNTAX                  INTEGER
  7917.                 MAX-ACCESS              read-only
  7918.                 STATUS                  current
  7919.                 DESCRIPTION
  7920.                         "Number of currently active connections using the AX device as an SSL proxy."
  7921.                 DEFVAL                  { 0 }
  7922.                 ::=  {  axSslProxyStats  1  }
  7923.  
  7924.         axSslProxyStatsTotalProxyConns  OBJECT-TYPE
  7925.                 SYNTAX                  INTEGER
  7926.                 MAX-ACCESS              read-only
  7927.                 STATUS                  current
  7928.                 DESCRIPTION
  7929.                         "Total number of connections using the AX device as an SSL proxy."
  7930.                 DEFVAL                  { 0 }
  7931.                 ::=  {  axSslProxyStats  2  }
  7932.  
  7933.         axSslProxyStatsClientErr        OBJECT-TYPE
  7934.                 SYNTAX                  INTEGER
  7935.                 MAX-ACCESS              read-only
  7936.                 STATUS                  current
  7937.                 DESCRIPTION
  7938.                         "Number of client errors."
  7939.                 DEFVAL                  { 0 }
  7940.                 ::=  {  axSslProxyStats  3  }
  7941.  
  7942.         axSslProxyStatsServerErr        OBJECT-TYPE
  7943.                 SYNTAX                  INTEGER
  7944.                 MAX-ACCESS              read-only
  7945.                 STATUS                  current
  7946.                 DESCRIPTION
  7947.                         "Number of server errors."
  7948.                 DEFVAL                  { 0 }
  7949.                 ::=  {  axSslProxyStats  4  }
  7950.  
  7951.         axSslProxyStatsSessNotFound     OBJECT-TYPE
  7952.                 SYNTAX                  INTEGER
  7953.                 MAX-ACCESS              read-only
  7954.                 STATUS                  current
  7955.                 DESCRIPTION
  7956.                         "Number of times a session was not found."
  7957.                 DEFVAL                  { 0 }
  7958.                 ::=  {  axSslProxyStats  5  }
  7959.  
  7960.         axSslProxyStatsNoRoute  OBJECT-TYPE
  7961.                 SYNTAX                  INTEGER
  7962.                 MAX-ACCESS              read-only
  7963.                 STATUS                  current
  7964.                 DESCRIPTION
  7965.                         "Number of times no route was available."
  7966.                 DEFVAL                  { 0 }
  7967.                 ::=  {  axSslProxyStats  6  }
  7968.  
  7969.         axSslProxyStatsSvrSelFail       OBJECT-TYPE
  7970.                 SYNTAX                  INTEGER
  7971.                 MAX-ACCESS              read-only
  7972.                 STATUS                  current
  7973.                 DESCRIPTION
  7974.                         "Number of times selection or a real server failed."
  7975.                 DEFVAL                  { 0 }
  7976.                 ::=  {  axSslProxyStats  7  }
  7977.  
  7978.         axSslProxyStatsSNATFail OBJECT-TYPE
  7979.                 SYNTAX                  INTEGER
  7980.                 MAX-ACCESS              read-only
  7981.                 STATUS                  current
  7982.                 DESCRIPTION
  7983.                         "Number of occurrences of source NAT failure."
  7984.                 DEFVAL                  { 0 }
  7985.                 ::=  {  axSslProxyStats  8  }
  7986.  
  7987. --================================================================
  7988. --  axPersistentStats
  7989. --================================================================
  7990.         axPersistentStatsUrlHashPersistOKPri    OBJECT-TYPE
  7991.                 SYNTAX                  INTEGER
  7992.                 MAX-ACCESS              read-only
  7993.                 STATUS                  current
  7994.                 DESCRIPTION
  7995.                         "Number of requests successfully sent to the primary server selected by URL hashing. The primary server is the one that was initially selected and then re-used based on the hash value."
  7996.                 DEFVAL                  { 0 }
  7997.                 ::=  {  axPersistentStats  1  }
  7998.  
  7999.         axPersistentStatsUrlHashPersistOKSec    OBJECT-TYPE
  8000.                 SYNTAX                  INTEGER
  8001.                 MAX-ACCESS              read-only
  8002.                 STATUS                  current
  8003.                 DESCRIPTION
  8004.                         "Number of requests that were sent to another server (a secondary server) because the primary server selected by URL hashing was unavailable."
  8005.                 DEFVAL                  { 0 }
  8006.                 ::=  {  axPersistentStats  2  }
  8007.  
  8008.         axPersistentStatsUrlHashPersistFail     OBJECT-TYPE
  8009.                 SYNTAX                  INTEGER
  8010.                 MAX-ACCESS              read-only
  8011.                 STATUS                  current
  8012.                 DESCRIPTION
  8013.                         "Number of requests that could not be fulfilled using URL hashing."
  8014.                 DEFVAL                  { 0 }
  8015.                 ::=  {  axPersistentStats  3  }
  8016.  
  8017.         axPersistentStatsSIPPersistOK   OBJECT-TYPE
  8018.                 SYNTAX                  INTEGER
  8019.                 MAX-ACCESS              read-only
  8020.                 STATUS                  current
  8021.                 DESCRIPTION
  8022.                         "Number of requests successfully sent to the same server as previous requests from the same client, based on source-IP persistence."
  8023.                 DEFVAL                  { 0 }
  8024.                 ::=  {  axPersistentStats  4  }
  8025.  
  8026.         axPersistentStatsSIPPersistFail OBJECT-TYPE
  8027.                 SYNTAX                  INTEGER
  8028.                 MAX-ACCESS              read-only
  8029.                 STATUS                  current
  8030.                 DESCRIPTION
  8031.                         "Number of requests that could not be fulfilled by the same server as previous requests from the same client, based on source-IP persistence."
  8032.                 DEFVAL                  { 0 }
  8033.                 ::=  {  axPersistentStats  5  }
  8034.  
  8035.         axPersistentStatsSSLSIDPersistOK        OBJECT-TYPE
  8036.                 SYNTAX                  INTEGER
  8037.                 MAX-ACCESS              read-only
  8038.                 STATUS                  current
  8039.                 DESCRIPTION
  8040.                         "Total number of SSL session ID persistent success."
  8041.                 DEFVAL                  { 0 }
  8042.                 ::=  {  axPersistentStats  6  }
  8043.  
  8044.         axPersistentStatsSSLSIDPersistFail      OBJECT-TYPE
  8045.                 SYNTAX                  INTEGER
  8046.                 MAX-ACCESS              read-only
  8047.                 STATUS                  current
  8048.                 DESCRIPTION
  8049.                         "Total number of SSL session ID persistent failure."
  8050.                 DEFVAL                  { 0 }
  8051.                 ::=  {  axPersistentStats  7  }
  8052.  
  8053.         axPersistentStatsCookiePersistOK        OBJECT-TYPE
  8054.                 SYNTAX                  INTEGER
  8055.                 MAX-ACCESS              read-only
  8056.                 STATUS                  current
  8057.                 DESCRIPTION
  8058.                         "Total number of cookie persistent success."
  8059.                 DEFVAL                  { 0 }
  8060.                 ::=  {  axPersistentStats  8  }
  8061.  
  8062.         axPersistentStatsCookiePersistFail      OBJECT-TYPE
  8063.                 SYNTAX                  INTEGER
  8064.                 MAX-ACCESS              read-only
  8065.                 STATUS                  current
  8066.                 DESCRIPTION
  8067.                         "Total number of cookie persistent failure."
  8068.                 DEFVAL                  { 0 }
  8069.                 ::=  {  axPersistentStats  9  }
  8070.  
  8071.         axPersistentStatsPersistCookieNotFound  OBJECT-TYPE
  8072.                 SYNTAX                  INTEGER
  8073.                 MAX-ACCESS              read-only
  8074.                 STATUS                  current
  8075.                 DESCRIPTION
  8076.                         "Total number of cookie persistent failure in not-found cases."
  8077.                 DEFVAL                  { 0 }
  8078.                 ::=  {  axPersistentStats  10  }
  8079.  
  8080.         axPersistentStatTable   OBJECT-TYPE
  8081.                 SYNTAX          SEQUENCE  OF  AxPersistentStatEntry
  8082.                 MAX-ACCESS      not-accessible
  8083.                 STATUS          current
  8084.                 DESCRIPTION
  8085.                         "The Persistent STAT table."
  8086.                 ::=  { axPersistentStats  11 }
  8087.  
  8088.         axPersistentStatEntry OBJECT-TYPE
  8089.                 SYNTAX          AxPersistentStatEntry
  8090.                 MAX-ACCESS      not-accessible
  8091.                 STATUS  current
  8092.                 DESCRIPTION
  8093.                                                                                                 "The Persistent STAT entry."
  8094.                 INDEX           {               axPersistentStatCpuIndex                }
  8095.                 ::=             {       axPersistentStatTable 1 }
  8096.  
  8097.         AxPersistentStatEntry  ::=  SEQUENCE {
  8098.                 axPersistentStatCpuIndex  Integer32,
  8099.                 axPersistentStatUrlHashPersistOKPri Counter32,
  8100.                 axPersistentStatUrlHashPersistOKSec Counter32,
  8101.                 axPersistentStatUrlHashPersistFail Counter32,
  8102.                 axPersistentStatSIPPersistOK Counter32,
  8103.                 axPersistentStatSIPPersistFail Counter32,
  8104.                 axPersistentStatSSLSIDPersistOK Counter32,
  8105.                 axPersistentStatSSLSIDPersistFail Counter32,
  8106.                 axPersistentStatCookiePersistOK Counter32,
  8107.                 axPersistentStatCookiePersistFail Counter32,
  8108.                 axPersistentStatPersistCookieNotFound Counter32
  8109.         }
  8110.  
  8111.         axPersistentStatCpuIndex        OBJECT-TYPE
  8112.                 SYNTAX                  Integer32
  8113.                 MAX-ACCESS              read-only
  8114.                 STATUS                  current
  8115.                 DESCRIPTION
  8116.                         "The cpu index of Persistent STAT table"
  8117.                 ::=  {  axPersistentStatEntry  1  }
  8118.  
  8119.         axPersistentStatUrlHashPersistOKPri     OBJECT-TYPE
  8120.                 SYNTAX                  Counter32
  8121.                 MAX-ACCESS              read-only
  8122.                 STATUS                  current
  8123.                 DESCRIPTION
  8124.                         "Number of requests successfully sent to the primary server selected by URL hashing. The primary server is the one that was initially selected and then re-used based on the hash value."
  8125.                 DEFVAL                  { 0 }
  8126.                 ::=  {  axPersistentStatEntry  2  }
  8127.  
  8128.         axPersistentStatUrlHashPersistOKSec     OBJECT-TYPE
  8129.                 SYNTAX                  Counter32
  8130.                 MAX-ACCESS              read-only
  8131.                 STATUS                  current
  8132.                 DESCRIPTION
  8133.                         "Number of requests that were sent to another server (a secondary server) because the primary server selected by URL hashing was unavailable."
  8134.                 DEFVAL                  { 0 }
  8135.                 ::=  {  axPersistentStatEntry  3 }
  8136.  
  8137.         axPersistentStatUrlHashPersistFail      OBJECT-TYPE
  8138.                 SYNTAX                  Counter32
  8139.                 MAX-ACCESS              read-only
  8140.                 STATUS                  current
  8141.                 DESCRIPTION
  8142.                         "Number of requests that could not be fulfilled using URL hashing."
  8143.                 DEFVAL                  { 0 }
  8144.                 ::=  {  axPersistentStatEntry  4  }
  8145.  
  8146.         axPersistentStatSIPPersistOK    OBJECT-TYPE
  8147.                 SYNTAX                  Counter32
  8148.                 MAX-ACCESS              read-only
  8149.                 STATUS                  current
  8150.                 DESCRIPTION
  8151.                         "Number of requests successfully sent to the same server as previous requests from the same client, based on source-IP persistence."
  8152.                 DEFVAL                  { 0 }
  8153.                 ::=  {  axPersistentStatEntry  5  }
  8154.  
  8155.         axPersistentStatSIPPersistFail  OBJECT-TYPE
  8156.                 SYNTAX                  Counter32
  8157.                 MAX-ACCESS              read-only
  8158.                 STATUS                  current
  8159.                 DESCRIPTION
  8160.                         "Number of requests that could not be fulfilled by the same server as previous requests from the same client, based on source-IP persistence."
  8161.                 DEFVAL                  { 0 }
  8162.                 ::=  {  axPersistentStatEntry  6  }
  8163.  
  8164.         axPersistentStatSSLSIDPersistOK OBJECT-TYPE
  8165.                 SYNTAX                  Counter32
  8166.                 MAX-ACCESS              read-only
  8167.                 STATUS                  current
  8168.                 DESCRIPTION
  8169.                         "Number of SSL session ID persistent success."
  8170.                 DEFVAL                  { 0 }
  8171.                 ::=  {  axPersistentStatEntry  7  }
  8172.  
  8173.         axPersistentStatSSLSIDPersistFail       OBJECT-TYPE
  8174.                 SYNTAX                  Counter32
  8175.                 MAX-ACCESS              read-only
  8176.                 STATUS                  current
  8177.                 DESCRIPTION
  8178.                         "Number of SSL session ID persistent failure."
  8179.                 DEFVAL                  { 0 }
  8180.                 ::=  {  axPersistentStatEntry  8  }
  8181.  
  8182.         axPersistentStatCookiePersistOK OBJECT-TYPE
  8183.                 SYNTAX                  Counter32
  8184.                 MAX-ACCESS              read-only
  8185.                 STATUS                  current
  8186.                 DESCRIPTION
  8187.                         "Number of cookie persistent success."
  8188.                 DEFVAL                  { 0 }
  8189.                 ::=  {  axPersistentStatEntry  9  }
  8190.  
  8191.         axPersistentStatCookiePersistFail       OBJECT-TYPE
  8192.                 SYNTAX                  Counter32
  8193.                 MAX-ACCESS              read-only
  8194.                 STATUS                  current
  8195.                 DESCRIPTION
  8196.                         "Number of cookie persistent failure."
  8197.                 DEFVAL                  { 0 }
  8198.                 ::=  {  axPersistentStatEntry  10  }
  8199.  
  8200.         axPersistentStatPersistCookieNotFound   OBJECT-TYPE
  8201.                 SYNTAX                  Counter32
  8202.                 MAX-ACCESS              read-only
  8203.                 STATUS                  current
  8204.                 DESCRIPTION
  8205.                         "Number of cookie persistent failure in not-found cases."
  8206.                 DEFVAL                  { 0 }
  8207.                 ::=  {  axPersistentStatEntry  11  }
  8208.  
  8209. --================================================================
  8210. --  axSwitchStats
  8211. --================================================================
  8212.         axSwitchStatsL2Forward  OBJECT-TYPE
  8213.                 SYNTAX                  INTEGER
  8214.                 MAX-ACCESS              read-only
  8215.                 STATUS                  current
  8216.                 DESCRIPTION
  8217.                         "Number of packets that have been Layer 2 switched."
  8218.                 DEFVAL                  { 0 }
  8219.                 ::=  {  axSwitchStats  1  }
  8220.  
  8221.         axSwitchStatsL3IPForward        OBJECT-TYPE
  8222.                 SYNTAX                  INTEGER
  8223.                 MAX-ACCESS              read-only
  8224.                 STATUS                  current
  8225.                 DESCRIPTION
  8226.                         "Number of packets that have been Layer 3 routed."
  8227.                 DEFVAL                  { 0 }
  8228.                 ::=  {  axSwitchStats  2  }
  8229.  
  8230.         axSwitchStatsIPv4NoRouteDrop    OBJECT-TYPE
  8231.                 SYNTAX                  INTEGER
  8232.                 MAX-ACCESS              read-only
  8233.                 STATUS                  current
  8234.                 DESCRIPTION
  8235.                         "Number of IPv4 packets that were dropped due to routing failures."
  8236.                 DEFVAL                  { 0 }
  8237.                 ::=  {  axSwitchStats  3  }
  8238.  
  8239.         axSwitchStatsL3IPv6Forward      OBJECT-TYPE
  8240.                 SYNTAX                  INTEGER
  8241.                 MAX-ACCESS              read-only
  8242.                 STATUS                  current
  8243.                 DESCRIPTION
  8244.                         "Number of IPv6 packets that have been Layer 3 routed."
  8245.                 DEFVAL                  { 0 }
  8246.                 ::=  {  axSwitchStats  4  }
  8247.  
  8248.         axSwitchStatsIPv6NoRouteDrop    OBJECT-TYPE
  8249.                 SYNTAX                  INTEGER
  8250.                 MAX-ACCESS              read-only
  8251.                 STATUS                  current
  8252.                 DESCRIPTION
  8253.                         "Number of IPv6 packets that were dropped due to routing failures."
  8254.                 DEFVAL                  { 0 }
  8255.                 ::=  {  axSwitchStats  5  }
  8256.  
  8257.         axSwitchStatsL4Process  OBJECT-TYPE
  8258.                 SYNTAX                  INTEGER
  8259.                 MAX-ACCESS              read-only
  8260.                 STATUS                  current
  8261.                 DESCRIPTION
  8262.                         "Number of packets that went to a VIP or NAT for processing."
  8263.                 DEFVAL                  { 0 }
  8264.                 ::=  {  axSwitchStats  6  }
  8265.  
  8266.         axSwitchStatsIncorrectLenDrop   OBJECT-TYPE
  8267.                 SYNTAX                  INTEGER
  8268.                 MAX-ACCESS              read-only
  8269.                 STATUS                  current
  8270.                 DESCRIPTION
  8271.                         "Number of packets dropped due to incorrect protocol length.A high value for this counter can indicate a packet length attack."
  8272.                 DEFVAL                  { 0 }
  8273.                 ::=  {  axSwitchStats  7  }
  8274.  
  8275.         axSwitchStatsProtoDownDrop      OBJECT-TYPE
  8276.                 SYNTAX                  INTEGER
  8277.                 MAX-ACCESS              read-only
  8278.                 STATUS                  current
  8279.                 DESCRIPTION
  8280.                         "Number of packets dropped because the corresponding protocol was disabled."
  8281.                 DEFVAL                  { 0 }
  8282.                 ::=  {  axSwitchStats  8  }
  8283.  
  8284.         axSwitchStatsUnknownProtoDrop   OBJECT-TYPE
  8285.                 SYNTAX                  INTEGER
  8286.                 MAX-ACCESS              read-only
  8287.                 STATUS                  current
  8288.                 DESCRIPTION
  8289.                         "Number of packets dropped because the protocol was unknown."
  8290.                 DEFVAL                  { 0 }
  8291.                 ::=  {  axSwitchStats  9  }
  8292.  
  8293.         axSwitchStatsTTLExceedDrop      OBJECT-TYPE
  8294.                 SYNTAX                  INTEGER
  8295.                 MAX-ACCESS              read-only
  8296.                 STATUS                  current
  8297.                 DESCRIPTION
  8298.                         "Number of packets dropped due to TTL expiration."
  8299.                 DEFVAL                  { 0 }
  8300.                 ::=  {  axSwitchStats  10  }
  8301.  
  8302.         axSwitchStatsLinkdownDrop       OBJECT-TYPE
  8303.                 SYNTAX                  INTEGER
  8304.                 MAX-ACCESS              read-only
  8305.                 STATUS                  current
  8306.                 DESCRIPTION
  8307.                         "Number of packets dropped because the outgoing link was down."
  8308.                 DEFVAL                  { 0 }
  8309.                 ::=  {  axSwitchStats  11  }
  8310.  
  8311.         axSwitchStatsSRCPortSuppress    OBJECT-TYPE
  8312.                 SYNTAX                  INTEGER
  8313.                 MAX-ACCESS              read-only
  8314.                 STATUS                  current
  8315.                 DESCRIPTION
  8316.                         "Packet drops because of source port suppression."
  8317.                 DEFVAL                  { 0 }
  8318.                 ::=  {  axSwitchStats  12  }
  8319.  
  8320.         axSwitchStatsVLANFlood  OBJECT-TYPE
  8321.                 SYNTAX                  INTEGER
  8322.                 MAX-ACCESS              read-only
  8323.                 STATUS                  current
  8324.                 DESCRIPTION
  8325.                         "Number of packets that have been broadcast to a VLAN."
  8326.                 DEFVAL                  { 0 }
  8327.                 ::=  {  axSwitchStats  13  }
  8328.  
  8329.         axSwitchStatsIPFragRcv  OBJECT-TYPE
  8330.                 SYNTAX                  INTEGER
  8331.                 MAX-ACCESS              read-only
  8332.                 STATUS                  current
  8333.                 DESCRIPTION
  8334.                         "Number of IPv4 fragments that have been received."
  8335.                 DEFVAL                  { 0 }
  8336.                 ::=  {  axSwitchStats  14  }
  8337.  
  8338.         axSwitchStatsARPReqRcv  OBJECT-TYPE
  8339.                 SYNTAX                  INTEGER
  8340.                 MAX-ACCESS              read-only
  8341.                 STATUS                  current
  8342.                 DESCRIPTION
  8343.                         "Number of ARP requests that have been received."
  8344.                 DEFVAL                  { 0 }
  8345.                 ::=  {  axSwitchStats  15  }
  8346.  
  8347.         axSwitchStatsARPRespRcv OBJECT-TYPE
  8348.                 SYNTAX                  INTEGER
  8349.                 MAX-ACCESS              read-only
  8350.                 STATUS                  current
  8351.                 DESCRIPTION
  8352.                         "Number of ARP responses that have been received."
  8353.                 DEFVAL                  { 0 }
  8354.                 ::=  {  axSwitchStats  16  }
  8355.  
  8356.         axSwitchStatsFwdKernel  OBJECT-TYPE
  8357.                 SYNTAX                  INTEGER
  8358.                 MAX-ACCESS              read-only
  8359.                 STATUS                  current
  8360.                 DESCRIPTION
  8361.                         "Number of packets received by the kernel from data interfaces."
  8362.                 DEFVAL                  { 0 }
  8363.                 ::=  {  axSwitchStats  17  }
  8364.  
  8365.         axSwitchStatsIPTCPFragRcv       OBJECT-TYPE
  8366.                 SYNTAX                  INTEGER
  8367.                 MAX-ACCESS              read-only
  8368.                 STATUS                  current
  8369.                 DESCRIPTION
  8370.                         "Number of IP TCP fragments received."
  8371.                 DEFVAL                  { 0 }
  8372.                 ::=  {  axSwitchStats  18  }
  8373.  
  8374.         axSwitchStatsIPFragOverlap      OBJECT-TYPE
  8375.                 SYNTAX                  INTEGER
  8376.                 MAX-ACCESS              read-only
  8377.                 STATUS                  current
  8378.                 DESCRIPTION
  8379.                         "Number of overlapping fragments received."
  8380.                 DEFVAL                  { 0 }
  8381.                 ::=  {  axSwitchStats  19  }
  8382.  
  8383.         axSwitchStatsIPFragOverlapDrop  OBJECT-TYPE
  8384.                 SYNTAX                  INTEGER
  8385.                 MAX-ACCESS              read-only
  8386.                 STATUS                  current
  8387.                 DESCRIPTION
  8388.                         "Number of fragments dropped due to overload."
  8389.                 DEFVAL                  { 0 }
  8390.                 ::=  {  axSwitchStats  20  }
  8391.  
  8392.         axSwitchStatsIPFragReasmOk      OBJECT-TYPE
  8393.                 SYNTAX                  INTEGER
  8394.                 MAX-ACCESS              read-only
  8395.                 STATUS                  current
  8396.                 DESCRIPTION
  8397.                         "Number of successfully reassembled IP fragments."
  8398.                 DEFVAL                  { 0 }
  8399.                 ::=  {  axSwitchStats  21  }
  8400.  
  8401.         axSwitchStatsIPFragReasmFail    OBJECT-TYPE
  8402.                 SYNTAX                  INTEGER
  8403.                 MAX-ACCESS              read-only
  8404.                 STATUS                  current
  8405.                 DESCRIPTION
  8406.                         "Number of fragment reassembly failures."
  8407.                 DEFVAL                  { 0 }
  8408.                 ::=  {  axSwitchStats  22  }
  8409.  
  8410.         axSwitchStatsAnomLanAttackDrop  OBJECT-TYPE
  8411.                 SYNTAX                  INTEGER
  8412.                 MAX-ACCESS              read-only
  8413.                 STATUS                  current
  8414.                 DESCRIPTION
  8415.                         "Number of packets dropped by an IP land attack filter.This statistic and the other Anomaly statistics show how many packets were dropped by DDoS protection filters. For the AX device to drop these packets, the corresponding DDoS protection options must be enabled."
  8416.                 DEFVAL                  { 0 }
  8417.                 ::=  {  axSwitchStats  23  }
  8418.  
  8419.         axSwitchStatsAnomIPOptionDrop   OBJECT-TYPE
  8420.                 SYNTAX                  INTEGER
  8421.                 MAX-ACCESS              read-only
  8422.                 STATUS                  current
  8423.                 DESCRIPTION
  8424.                         "Number of packets dropped by an IP option filter."
  8425.                 DEFVAL                  { 0 }
  8426.                 ::=  {  axSwitchStats  24  }
  8427.  
  8428.         axSwitchStatsAnomPingDeathDrop  OBJECT-TYPE
  8429.                 SYNTAX                  INTEGER
  8430.                 MAX-ACCESS              read-only
  8431.                 STATUS                  current
  8432.                 DESCRIPTION
  8433.                         "Number of packets dropped by a ping-of-death filter."
  8434.                 DEFVAL                  { 0 }
  8435.                 ::=  {  axSwitchStats  25  }
  8436.  
  8437.         axSwitchStatsAnomAllFragDrop    OBJECT-TYPE
  8438.                 SYNTAX                  INTEGER
  8439.                 MAX-ACCESS              read-only
  8440.                 STATUS                  current
  8441.                 DESCRIPTION
  8442.                         "Number of packets dropped by a frag filter."
  8443.                 DEFVAL                  { 0 }
  8444.                 ::=  {  axSwitchStats  26  }
  8445.  
  8446.         axSwitchStatsAnomTCPNoFragDrop  OBJECT-TYPE
  8447.                 SYNTAX                  INTEGER
  8448.                 MAX-ACCESS              read-only
  8449.                 STATUS                  current
  8450.                 DESCRIPTION
  8451.                         "Number of packets dropped by a tcp-no-flag filter."
  8452.                 DEFVAL                  { 0 }
  8453.                 ::=  {  axSwitchStats  27  }
  8454.  
  8455.         axSwitchStatsAnomSYNFragDrop    OBJECT-TYPE
  8456.                 SYNTAX                  INTEGER
  8457.                 MAX-ACCESS              read-only
  8458.                 STATUS                  current
  8459.                 DESCRIPTION
  8460.                         "Number of packets dropped by a tcp-syn-frag filter."
  8461.                 DEFVAL                  { 0 }
  8462.                 ::=  {  axSwitchStats  28  }
  8463.  
  8464.         axSwitchStatsAnomTCPSynFinDrop  OBJECT-TYPE
  8465.                 SYNTAX                  INTEGER
  8466.                 MAX-ACCESS              read-only
  8467.                 STATUS                  current
  8468.                 DESCRIPTION
  8469.                         "Number of packets dropped by a tcp-syn-fin filter."
  8470.                 DEFVAL                  { 0 }
  8471.                 ::=  {  axSwitchStats  29  }
  8472.  
  8473.         axSwitchStatsAnomAnyDrop        OBJECT-TYPE
  8474.                 SYNTAX                  INTEGER
  8475.                 MAX-ACCESS              read-only
  8476.                 STATUS                  current
  8477.                 DESCRIPTION
  8478.                         "Number of packets dropped by any type of hardware-based DDoS protection filter."
  8479.                 DEFVAL                  { 0 }
  8480.                 ::=  {  axSwitchStats  30  }
  8481.  
  8482.         axSwitchStatTable       OBJECT-TYPE
  8483.                 SYNTAX          SEQUENCE  OF  AxSwitchStatEntry
  8484.                 MAX-ACCESS      not-accessible
  8485.                 STATUS          current
  8486.                 DESCRIPTION
  8487.                         "The switch status table."
  8488.                 ::=  { axSwitchStats  31 }
  8489.  
  8490.         axSwitchStatEntry       OBJECT-TYPE
  8491.                 SYNTAX          AxSwitchStatEntry
  8492.                 MAX-ACCESS      not-accessible
  8493.                 STATUS          current
  8494.                 DESCRIPTION
  8495.                         "The Switch status entry."
  8496.                 INDEX           {  axSwitchStatCpuIndex  }
  8497.                 ::=  { axSwitchStatTable 1 }
  8498.  
  8499.         AxSwitchStatEntry  ::=  SEQUENCE {
  8500.                 axSwitchStatCpuIndex  Integer32,
  8501.                 axSwitchStatL2Forward  Counter32,
  8502.                 axSwitchStatL3IPForward  Counter32,
  8503.                 axSwitchStatIPv4NoRouteDrop  Counter32,
  8504.                 axSwitchStatL3IPv6Forward  Counter32,
  8505.                 axSwitchStatIPv6NoRouteDrop  Counter32,
  8506.                 axSwitchStatL4Process  Counter32,
  8507.                 axSwitchStatIncorrectLenDrop  Counter32,
  8508.                 axSwitchStatProtoDownDrop  Counter32,
  8509.                 axSwitchStatUnknownProtoDrop  Counter32,
  8510.                 axSwitchStatTTLExceedDrop  Counter32,
  8511.                 axSwitchStatLinkdownDrop  Counter32,
  8512.                 axSwitchStatSRCPortSuppress  Counter32,
  8513.                 axSwitchStatVLANFlood  Counter32,
  8514.                 axSwitchStatIPFragRcv  Counter32,
  8515.                 axSwitchStatARPReqRcv  Counter32,
  8516.                 axSwitchStatARPRespRcv  Counter32,
  8517.                 axSwitchStatFwdKernel  Counter32,
  8518.                 axSwitchStatIPTCPFragRcv  Counter32,
  8519.                 axSwitchStatIPFragOverlap  Counter32,
  8520.                 axSwitchStatIPFragOverlapDrop  Counter32,
  8521.                 axSwitchStatIPFragReasmOk  Counter32,
  8522.                 axSwitchStatIPFragReasmFail  Counter32,
  8523.                 axSwitchStatAnomLanAttackDrop  Counter32,
  8524.                 axSwitchStatAnomIPOptionDrop  Counter32,
  8525.                 axSwitchStatAnomPingDeathDrop  Counter32,
  8526.                 axSwitchStatAnomAllFragDrop  Counter32,
  8527.                 axSwitchStatAnomTCPNoFragDrop  Counter32,
  8528.                 axSwitchStatAnomSYNFragDrop  Counter32,
  8529.                 axSwitchStatAnomTCPSynFinDrop  Counter32,
  8530.                 axSwitchStatAnomAnyDrop  Counter32
  8531.                 }
  8532.  
  8533.         axSwitchStatCpuIndex    OBJECT-TYPE
  8534.                 SYNTAX                  Integer32
  8535.                 MAX-ACCESS              read-only
  8536.                 STATUS                  current
  8537.                 DESCRIPTION
  8538.                         "The cpu index of Switch STAT table"
  8539.                 ::=  {  axSwitchStatEntry  1  }
  8540.  
  8541.         axSwitchStatL2Forward   OBJECT-TYPE
  8542.                 SYNTAX                  Counter32
  8543.                 MAX-ACCESS              read-only
  8544.                 STATUS                  current
  8545.                 DESCRIPTION
  8546.                         "Number of packets that have been Layer 2 switched."
  8547.                 DEFVAL                  { 0 }
  8548.                 ::=  {  axSwitchStatEntry  2  }
  8549.  
  8550.         axSwitchStatL3IPForward OBJECT-TYPE
  8551.                 SYNTAX                  Counter32
  8552.                 MAX-ACCESS              read-only
  8553.                 STATUS                  current
  8554.                 DESCRIPTION
  8555.                         "Number of packets that have been Layer 3 routed."
  8556.                 DEFVAL                  { 0 }
  8557.                 ::=  {  axSwitchStatEntry  3  }
  8558.  
  8559.         axSwitchStatIPv4NoRouteDrop     OBJECT-TYPE
  8560.                 SYNTAX                  Counter32
  8561.                 MAX-ACCESS              read-only
  8562.                 STATUS                  current
  8563.                 DESCRIPTION
  8564.                         "Number of IPv4 packets that were dropped due to routing failures."
  8565.                 DEFVAL                  { 0 }
  8566.                 ::=  {  axSwitchStatEntry  4  }
  8567.  
  8568.         axSwitchStatL3IPv6Forward       OBJECT-TYPE
  8569.                 SYNTAX                  Counter32
  8570.                 MAX-ACCESS              read-only
  8571.                 STATUS                  current
  8572.                 DESCRIPTION
  8573.                         "Number of IPv6 packets that have been Layer 3 routed."
  8574.                 DEFVAL                  { 0 }
  8575.                 ::=  {  axSwitchStatEntry  5  }
  8576.  
  8577.         axSwitchStatIPv6NoRouteDrop     OBJECT-TYPE
  8578.                 SYNTAX                  Counter32
  8579.                 MAX-ACCESS              read-only
  8580.                 STATUS                  current
  8581.                 DESCRIPTION
  8582.                         "Number of IPv6 packets that were dropped due to routing failures."
  8583.                 DEFVAL                  { 0 }
  8584.                 ::=  {  axSwitchStatEntry  6  }
  8585.  
  8586.         axSwitchStatL4Process   OBJECT-TYPE
  8587.                 SYNTAX                  Counter32
  8588.                 MAX-ACCESS              read-only
  8589.                 STATUS                  current
  8590.                 DESCRIPTION
  8591.                         "Number of packets that went to a VIP or NAT for processing."
  8592.                 DEFVAL                  { 0 }
  8593.                 ::=  {  axSwitchStatEntry  7  }
  8594.  
  8595.         axSwitchStatIncorrectLenDrop    OBJECT-TYPE
  8596.                 SYNTAX                  Counter32
  8597.                 MAX-ACCESS              read-only
  8598.                 STATUS                  current
  8599.                 DESCRIPTION
  8600.                         "Number of packets dropped due to incorrect protocol length.A high value for this counter can indicate a packet length attack."
  8601.                 DEFVAL                  { 0 }
  8602.                 ::=  {  axSwitchStatEntry  8  }
  8603.  
  8604.         axSwitchStatProtoDownDrop       OBJECT-TYPE
  8605.                 SYNTAX                  Counter32
  8606.                 MAX-ACCESS              read-only
  8607.                 STATUS                  current
  8608.                 DESCRIPTION
  8609.                         "Number of packets dropped because the corresponding protocol was disabled."
  8610.                 DEFVAL                  { 0 }
  8611.                 ::=  {  axSwitchStatEntry  9  }
  8612.  
  8613.         axSwitchStatUnknownProtoDrop    OBJECT-TYPE
  8614.                 SYNTAX                  Counter32
  8615.                 MAX-ACCESS              read-only
  8616.                 STATUS                  current
  8617.                 DESCRIPTION
  8618.                         "Number of packets dropped because the protocol was unknown."
  8619.                 DEFVAL                  { 0 }
  8620.                 ::=  {  axSwitchStatEntry  10  }
  8621.  
  8622.         axSwitchStatTTLExceedDrop       OBJECT-TYPE
  8623.                 SYNTAX                  Counter32
  8624.                 MAX-ACCESS              read-only
  8625.                 STATUS                  current
  8626.                 DESCRIPTION
  8627.                         "Number of packets dropped due to TTL expiration."
  8628.                 DEFVAL                  { 0 }
  8629.                 ::=  {  axSwitchStatEntry  11  }
  8630.  
  8631.         axSwitchStatLinkdownDrop        OBJECT-TYPE
  8632.                 SYNTAX                  Counter32
  8633.                 MAX-ACCESS              read-only
  8634.                 STATUS                  current
  8635.                 DESCRIPTION
  8636.                         "Number of packets dropped because the outgoing link was down."
  8637.                 DEFVAL                  { 0 }
  8638.                 ::=  {  axSwitchStatEntry  12  }
  8639.  
  8640.         axSwitchStatSRCPortSuppress     OBJECT-TYPE
  8641.                 SYNTAX                  Counter32
  8642.                 MAX-ACCESS              read-only
  8643.                 STATUS                  current
  8644.                 DESCRIPTION
  8645.                         "Packet drops because of source port suppression."
  8646.                 DEFVAL                  { 0 }
  8647.                 ::=  {  axSwitchStatEntry  13  }
  8648.  
  8649.         axSwitchStatVLANFlood   OBJECT-TYPE
  8650.                 SYNTAX                  Counter32
  8651.                 MAX-ACCESS              read-only
  8652.                 STATUS                  current
  8653.                 DESCRIPTION
  8654.                         "Number of packets that have been broadcast to a VLAN."
  8655.                 DEFVAL                  { 0 }
  8656.                 ::=  {  axSwitchStatEntry  14  }
  8657.  
  8658.         axSwitchStatIPFragRcv   OBJECT-TYPE
  8659.                 SYNTAX                  Counter32
  8660.                 MAX-ACCESS              read-only
  8661.                 STATUS                  current
  8662.                 DESCRIPTION
  8663.                         "Number of IPv4 fragments that have been received."
  8664.                 DEFVAL                  { 0 }
  8665.                 ::=  {  axSwitchStatEntry  15  }
  8666.  
  8667.         axSwitchStatARPReqRcv   OBJECT-TYPE
  8668.                 SYNTAX                  Counter32
  8669.                 MAX-ACCESS              read-only
  8670.                 STATUS                  current
  8671.                 DESCRIPTION
  8672.                         "Number of ARP requests that have been received."
  8673.                 DEFVAL                  { 0 }
  8674.                 ::=  {  axSwitchStatEntry  16  }
  8675.  
  8676.         axSwitchStatARPRespRcv  OBJECT-TYPE
  8677.                 SYNTAX                  Counter32
  8678.                 MAX-ACCESS              read-only
  8679.                 STATUS                  current
  8680.                 DESCRIPTION
  8681.                         "Number of ARP responses that have been received."
  8682.                 DEFVAL                  { 0 }
  8683.                 ::=  {  axSwitchStatEntry  17  }
  8684.  
  8685.         axSwitchStatFwdKernel   OBJECT-TYPE
  8686.                 SYNTAX                  Counter32
  8687.                 MAX-ACCESS              read-only
  8688.                 STATUS                  current
  8689.                 DESCRIPTION
  8690.                         "Number of packets received by the kernel from data interfaces."
  8691.                 DEFVAL                  { 0 }
  8692.                 ::=  {  axSwitchStatEntry  18  }
  8693.  
  8694.         axSwitchStatIPTCPFragRcv        OBJECT-TYPE
  8695.                 SYNTAX                  Counter32
  8696.                 MAX-ACCESS              read-only
  8697.                 STATUS                  current
  8698.                 DESCRIPTION
  8699.                         "Number of IP TCP fragments received."
  8700.                 DEFVAL                  { 0 }
  8701.                 ::=  {  axSwitchStatEntry  19  }
  8702.  
  8703.         axSwitchStatIPFragOverlap       OBJECT-TYPE
  8704.                 SYNTAX                  Counter32
  8705.                 MAX-ACCESS              read-only
  8706.                 STATUS                  current
  8707.                 DESCRIPTION
  8708.                         "Number of overlapping fragments received."
  8709.                 DEFVAL                  { 0 }
  8710.                 ::=  {  axSwitchStatEntry  20  }
  8711.  
  8712.         axSwitchStatIPFragOverlapDrop   OBJECT-TYPE
  8713.                 SYNTAX                  Counter32
  8714.                 MAX-ACCESS              read-only
  8715.                 STATUS                  current
  8716.                 DESCRIPTION
  8717.                         "Number of fragments dropped due to overload."
  8718.                 DEFVAL                  { 0 }
  8719.                 ::=  {  axSwitchStatEntry  21  }
  8720.  
  8721.         axSwitchStatIPFragReasmOk       OBJECT-TYPE
  8722.                 SYNTAX                  Counter32
  8723.                 MAX-ACCESS              read-only
  8724.                 STATUS                  current
  8725.                 DESCRIPTION
  8726.                         "Number of successfully reassembled IP fragments."
  8727.                 DEFVAL                  { 0 }
  8728.                 ::=  {  axSwitchStatEntry  22  }
  8729.  
  8730.         axSwitchStatIPFragReasmFail     OBJECT-TYPE
  8731.                 SYNTAX                  Counter32
  8732.                 MAX-ACCESS              read-only
  8733.                 STATUS                  current
  8734.                 DESCRIPTION
  8735.                         "Number of fragment reassembly failures."
  8736.                 DEFVAL                  { 0 }
  8737.                 ::=  {  axSwitchStatEntry  23  }
  8738.  
  8739.         axSwitchStatAnomLanAttackDrop   OBJECT-TYPE
  8740.                 SYNTAX                  Counter32
  8741.                 MAX-ACCESS              read-only
  8742.                 STATUS                  current
  8743.                 DESCRIPTION
  8744.                         "Number of packets dropped by an IP land attack filter.This statistic and the other Anomaly statistics show how many packets were dropped by DDoS protection filters. For the AX device to drop these packets, the corresponding DDoS protection options must be enabled."
  8745.                 DEFVAL                  { 0 }
  8746.                 ::=  {  axSwitchStatEntry  24  }
  8747.  
  8748.         axSwitchStatAnomIPOptionDrop    OBJECT-TYPE
  8749.                 SYNTAX                  Counter32
  8750.                 MAX-ACCESS              read-only
  8751.                 STATUS                  current
  8752.                 DESCRIPTION
  8753.                         "Number of packets dropped by an IP option filter."
  8754.                 DEFVAL                  { 0 }
  8755.                 ::=  {  axSwitchStatEntry  25  }
  8756.  
  8757.         axSwitchStatAnomPingDeathDrop   OBJECT-TYPE
  8758.                 SYNTAX                  Counter32
  8759.                 MAX-ACCESS              read-only
  8760.                 STATUS                  current
  8761.                 DESCRIPTION
  8762.                         "Number of packets dropped by a ping-of-death filter."
  8763.                 DEFVAL                  { 0 }
  8764.                 ::=  {  axSwitchStatEntry  26  }
  8765.  
  8766.         axSwitchStatAnomAllFragDrop     OBJECT-TYPE
  8767.                 SYNTAX                  Counter32
  8768.                 MAX-ACCESS              read-only
  8769.                 STATUS                  current
  8770.                 DESCRIPTION
  8771.                         "Number of packets dropped by a frag filter."
  8772.                 DEFVAL                  { 0 }
  8773.                 ::=  {  axSwitchStatEntry  27  }
  8774.  
  8775.         axSwitchStatAnomTCPNoFragDrop   OBJECT-TYPE
  8776.                 SYNTAX                  Counter32
  8777.                 MAX-ACCESS              read-only
  8778.                 STATUS                  current
  8779.                 DESCRIPTION
  8780.                         "Number of packets dropped by a tcp-no-flag filter."
  8781.                 DEFVAL                  { 0 }
  8782.                 ::=  {  axSwitchStatEntry  28  }
  8783.  
  8784.         axSwitchStatAnomSYNFragDrop     OBJECT-TYPE
  8785.                 SYNTAX                  Counter32
  8786.                 MAX-ACCESS              read-only
  8787.                 STATUS                  current
  8788.                 DESCRIPTION
  8789.                         "Number of packets dropped by a tcp-syn-frag filter."
  8790.                 DEFVAL                  { 0 }
  8791.                 ::=  {  axSwitchStatEntry  29  }
  8792.  
  8793.         axSwitchStatAnomTCPSynFinDrop   OBJECT-TYPE
  8794.                 SYNTAX                  Counter32
  8795.                 MAX-ACCESS              read-only
  8796.                 STATUS                  current
  8797.                 DESCRIPTION
  8798.                         "Number of packets dropped by a tcp-syn-fin filter."
  8799.                 DEFVAL                  { 0 }
  8800.                 ::=  {  axSwitchStatEntry  30  }
  8801.  
  8802.         axSwitchStatAnomAnyDrop OBJECT-TYPE
  8803.                 SYNTAX                  Counter32
  8804.                 MAX-ACCESS              read-only
  8805.                 STATUS                  current
  8806.                 DESCRIPTION
  8807.                         "Number of packets dropped by any type of hardware-based DDoS protection filter."
  8808.                 DEFVAL                  { 0 }
  8809.                 ::=  { axSwitchStatEntry  31  }
  8810.  
  8811. --==================================================================
  8812. -- axHAGlobalConfig
  8813. --==================================================================
  8814.  
  8815.     axHAConfigEnabled OBJECT-TYPE
  8816.         SYNTAX INTEGER {
  8817.                 disabled(0),
  8818.                 enabled(1)
  8819.         }
  8820.         MAX-ACCESS read-only
  8821.         STATUS current
  8822.         DESCRIPTION
  8823.                 "The HA configuration enabled flag."
  8824.         ::= { axHAGlobalConfig 1 }
  8825.  
  8826.     axHAID OBJECT-TYPE
  8827.         SYNTAX INTEGER
  8828.         MAX-ACCESS read-only
  8829.         STATUS current
  8830.         DESCRIPTION
  8831.                 "Local configured HA group ID."
  8832.         ::= { axHAGlobalConfig 2 }
  8833.  
  8834.     axHASetID OBJECT-TYPE
  8835.         SYNTAX INTEGER
  8836.         MAX-ACCESS read-only
  8837.         STATUS current
  8838.         DESCRIPTION
  8839.                 "Local configured HA group set-id"
  8840.         ::= { axHAGlobalConfig 3 }
  8841.  
  8842.     axHAPreemptStatusEnabled OBJECT-TYPE
  8843.         SYNTAX INTEGER {
  8844.                 disabled(0),
  8845.                 enabled(1)
  8846.         }
  8847.         MAX-ACCESS read-only
  8848.         STATUS current
  8849.         DESCRIPTION
  8850.                 "The HA preempt enabled flag"
  8851.         ::= { axHAGlobalConfig 4 }
  8852.  
  8853.     axHATimeoutInterval OBJECT-TYPE
  8854.         SYNTAX INTEGER
  8855.         MAX-ACCESS read-only
  8856.         STATUS current
  8857.         DESCRIPTION
  8858.                 "The HA time interval."
  8859.         ::= { axHAGlobalConfig 5 }
  8860.  
  8861.     axHATimeoutRetry OBJECT-TYPE
  8862.         SYNTAX INTEGER
  8863.         MAX-ACCESS read-only
  8864.         STATUS current
  8865.         DESCRIPTION
  8866.                 "The HA retries when time out."
  8867.         ::= { axHAGlobalConfig 6 }
  8868.  
  8869.     axHAARPRetry OBJECT-TYPE
  8870.         SYNTAX INTEGER
  8871.         MAX-ACCESS read-only
  8872.         STATUS current
  8873.         DESCRIPTION
  8874.                 "The ARP retries."
  8875.         ::= { axHAGlobalConfig 7 }
  8876.  
  8877. --==================================================================
  8878. -- axHAGroup
  8879. --==================================================================
  8880.  
  8881.     axHAGroupCount OBJECT-TYPE
  8882.         SYNTAX INTEGER
  8883.         MAX-ACCESS read-only
  8884.         STATUS current
  8885.         DESCRIPTION
  8886.                 "The number of valid HA groups."
  8887.         ::= { axHAGroup 1 }
  8888.  
  8889.     axHAGroupStatusTable OBJECT-TYPE
  8890.         SYNTAX SEQUENCE OF AxHAGroupStatusEntry
  8891.         MAX-ACCESS not-accessible
  8892.         STATUS current
  8893.         DESCRIPTION
  8894.                 "A table contains the HA group status information."
  8895.         ::= { axHAGroup 2 }
  8896.  
  8897.     axHAGroupStatusEntry OBJECT-TYPE
  8898.         SYNTAX  AxHAGroupStatusEntry
  8899.         MAX-ACCESS not-accessible
  8900.         STATUS current
  8901.         DESCRIPTION
  8902.                 "Columns in the axHAGroupStatus Table"
  8903.         INDEX {
  8904.                 axHAGroupID
  8905.         }
  8906.         ::= { axHAGroupStatusTable 1 }
  8907.  
  8908.     AxHAGroupStatusEntry ::=
  8909.         SEQUENCE {
  8910.                 axHAGroupID                  Integer32,
  8911.                 axHAGroupLocalStatus         INTEGER,
  8912.                 axHAGroupLocalPriority       Integer32,
  8913.                 axHAGroupPeerStatus          INTEGER,
  8914.                 axHAGroupPeerPriority        Integer32
  8915.         }
  8916.  
  8917.     axHAGroupID OBJECT-TYPE
  8918.         SYNTAX Integer32
  8919.         MAX-ACCESS read-only
  8920.         STATUS current
  8921.         DESCRIPTION
  8922.                 "The HA group ID."
  8923.         ::= { axHAGroupStatusEntry 1 }
  8924.  
  8925.     axHAGroupLocalStatus OBJECT-TYPE
  8926.         SYNTAX INTEGER {
  8927.                 standby(0),
  8928.                 active(1),
  8929.                 notConfigured(9)
  8930.         }
  8931.         MAX-ACCESS read-only
  8932.         STATUS current
  8933.         DESCRIPTION
  8934.                 "The local status of this HA group."
  8935.         ::= { axHAGroupStatusEntry 2 }
  8936.  
  8937.     axHAGroupLocalPriority OBJECT-TYPE
  8938.         SYNTAX Integer32
  8939.         MAX-ACCESS read-only
  8940.         STATUS current
  8941.         DESCRIPTION
  8942.                 "The local priority of this HA group."
  8943.         ::= { axHAGroupStatusEntry 3 }
  8944.  
  8945.     axHAGroupPeerStatus OBJECT-TYPE
  8946.         SYNTAX INTEGER {
  8947.                 standby(0),
  8948.                 active(1),
  8949.                 notConfigured(9)
  8950.         }
  8951.         MAX-ACCESS read-only
  8952.         STATUS current
  8953.         DESCRIPTION
  8954.                 "The peer status of this HA group."
  8955.         ::= { axHAGroupStatusEntry 4 }
  8956.  
  8957.     axHAGroupPeerPriority OBJECT-TYPE
  8958.         SYNTAX Integer32
  8959.         MAX-ACCESS read-only
  8960.         STATUS current
  8961.         DESCRIPTION
  8962.                 "The peer priority of this HA group."
  8963.         ::= { axHAGroupStatusEntry 5 }
  8964.  
  8965. --==================================================================
  8966. -- axHAFloatingIP
  8967. --==================================================================
  8968.  
  8969.     axHAFloatingIPCount OBJECT-TYPE
  8970.         SYNTAX INTEGER
  8971.         MAX-ACCESS read-only
  8972.         STATUS current
  8973.         DESCRIPTION
  8974.                 "The number of HA floating-IP entries."
  8975.         ::= { axHAFloatingIP 1 }
  8976.  
  8977.     axHAFloatingIPTable OBJECT-TYPE
  8978.         SYNTAX SEQUENCE OF AxHAFloatingIPEntry
  8979.         MAX-ACCESS not-accessible
  8980.         STATUS current
  8981.         DESCRIPTION
  8982.                 "A table contains the HA floating-IP information."
  8983.         ::= { axHAFloatingIP 2 }
  8984.  
  8985.     axHAFloatingIPEntry OBJECT-TYPE
  8986.         SYNTAX  AxHAFloatingIPEntry
  8987.         MAX-ACCESS not-accessible
  8988.         STATUS current
  8989.         DESCRIPTION
  8990.                 "The index column in the axHAFloatingIP Table"
  8991.         INDEX {
  8992.                 axHAFloatingIPIndex
  8993.         }
  8994.         ::= { axHAFloatingIPTable 1 }
  8995.  
  8996.     AxHAFloatingIPEntry ::=
  8997.         SEQUENCE {
  8998.                 axHAFloatingIPIndex          INTEGER,
  8999.                 axHAFloatingIPAddress        DisplayString,
  9000.                 axHAFloatingIPHaGroupID      INTEGER
  9001.         }
  9002.  
  9003.     axHAFloatingIPIndex OBJECT-TYPE
  9004.         SYNTAX INTEGER
  9005.         MAX-ACCESS read-only
  9006.         STATUS current
  9007.         DESCRIPTION
  9008.                 "The index column."
  9009.         ::= { axHAFloatingIPEntry 1 }
  9010.  
  9011.     axHAFloatingIPAddress OBJECT-TYPE
  9012.         SYNTAX DisplayString
  9013.         MAX-ACCESS read-only
  9014.         STATUS current
  9015.         DESCRIPTION
  9016.                 "HA floating-IP address (either IPv4 or IPv6)."
  9017.         ::= { axHAFloatingIPEntry 2 }
  9018.  
  9019.     axHAFloatingIPHaGroupID OBJECT-TYPE
  9020.         SYNTAX INTEGER
  9021.         MAX-ACCESS read-only
  9022.         STATUS current
  9023.         DESCRIPTION
  9024.                 "The HA group ID for the HA floating-IP entry."
  9025.         ::= { axHAFloatingIPEntry 3 }
  9026.  
  9027. -- axIpNatStats
  9028.     axIpNatStatsGlobal            OBJECT IDENTIFIER ::= { axIpNatStats 1 }
  9029.     axIpNatStatsIntfInsideOutside OBJECT IDENTIFIER ::= { axIpNatStats 2 }
  9030.     axIpNatStatsDynamicMapping    OBJECT IDENTIFIER ::= { axIpNatStats 3 }
  9031.     axIpNatPoolStats              OBJECT IDENTIFIER ::= { axIpNatStats 100 }
  9032.         axIpNatLoggingStats           OBJECT IDENTIFIER ::= { axIpNatStats 101 }
  9033.     axIpNatLsnStats               OBJECT IDENTIFIER ::= { axIpNatStats 4 }
  9034.     axIpNatNat64Stats             OBJECT IDENTIFIER ::= { axIpNatStats 5 }
  9035.     axIpNatDsliteStats            OBJECT IDENTIFIER ::= { axIpNatStats 6 }
  9036.     axIpNatStatsDynamicMappingAclName    OBJECT IDENTIFIER ::= { axIpNatStats 19 }
  9037.     axFixedNatStats               OBJECT IDENTIFIER ::= { axIpNatStats 120 }
  9038.  
  9039. --==================================================================
  9040. -- axIpNatStatsGlobal
  9041. --==================================================================
  9042.  
  9043.     axIpNatStatsGlobalHits      OBJECT-TYPE
  9044.         SYNTAX                  CounterBasedGauge64
  9045.         MAX-ACCESS              read-only
  9046.         STATUS                  current
  9047.         DESCRIPTION
  9048.                 "Total hits in the IP source NAT."
  9049.         DEFVAL                  { 0 }
  9050.         ::=  {  axIpNatStatsGlobal  1  }
  9051.  
  9052.     axIpNatStatsGlobalMisses    OBJECT-TYPE
  9053.         SYNTAX                  CounterBasedGauge64
  9054.         MAX-ACCESS              read-only
  9055.         STATUS                  current
  9056.         DESCRIPTION
  9057.                 "Total misses in the IP source NAT"
  9058.         DEFVAL                  { 0 }
  9059.         ::=  {  axIpNatStatsGlobal  2  }
  9060.  
  9061. --==================================================================
  9062. -- axIpNatStatsIntfInsideOutside
  9063. --==================================================================
  9064.  
  9065.     axIpNatStatsIntfInsideOutsideTable OBJECT-TYPE
  9066.         SYNTAX SEQUENCE OF AxIpNatStatsIntfInsideOutsideEntry
  9067.         MAX-ACCESS not-accessible
  9068.         STATUS current
  9069.         DESCRIPTION
  9070.                 "A table has information of IP NAT interface inside/outside"
  9071.         ::= { axIpNatStatsIntfInsideOutside 1 }
  9072.  
  9073.     axIpNatStatsIntfInsideOutsideEntry OBJECT-TYPE
  9074.         SYNTAX  AxIpNatStatsIntfInsideOutsideEntry
  9075.         MAX-ACCESS not-accessible
  9076.         STATUS current
  9077.         DESCRIPTION
  9078.                 "Columns in the axIpNatStatsIntfInsideOutside Table"
  9079.         INDEX {
  9080.                 axIpNatStatsInsideOutsideIntfIndex
  9081.         }
  9082.         ::= { axIpNatStatsIntfInsideOutsideTable 1 }
  9083.  
  9084.     AxIpNatStatsIntfInsideOutsideEntry ::=
  9085.         SEQUENCE {
  9086.                 axIpNatStatsInsideOutsideIntfIndex       INTEGER,
  9087.                 axIpNatStatsInsideOutsideIntfName        DisplayString,
  9088.                 axIpNatStatsInsideOutsideIntfDirection   INTEGER
  9089.         }
  9090.  
  9091.     axIpNatStatsInsideOutsideIntfIndex OBJECT-TYPE
  9092.         SYNTAX INTEGER
  9093.         MAX-ACCESS read-only
  9094.         STATUS current
  9095.         DESCRIPTION
  9096.                 "The index of the AxIpNatStatsIntfInsideOutside table."
  9097.         ::= { axIpNatStatsIntfInsideOutsideEntry 1 }
  9098.  
  9099.     axIpNatStatsInsideOutsideIntfName OBJECT-TYPE
  9100.         SYNTAX DisplayString
  9101.         MAX-ACCESS read-only
  9102.         STATUS current
  9103.         DESCRIPTION
  9104.                 "The interface name, such as ethernet1, ethernet2, ve3, ..."
  9105.         ::= { axIpNatStatsIntfInsideOutsideEntry 2 }
  9106.  
  9107.     axIpNatStatsInsideOutsideIntfDirection OBJECT-TYPE
  9108.         SYNTAX INTEGER {
  9109.                 inside(0),
  9110.                 outside(1)
  9111.         }
  9112.         MAX-ACCESS read-only
  9113.         STATUS current
  9114.         DESCRIPTION
  9115.                 "The interface bind direction, inside or outside."
  9116.         ::= { axIpNatStatsIntfInsideOutsideEntry 3 }
  9117.  
  9118. --==================================================================
  9119. -- axIpNatStatsDynamicMapping
  9120. --==================================================================
  9121.  
  9122.     axIpNatStatsDynamicMappingTable OBJECT-TYPE
  9123.         SYNTAX SEQUENCE OF AxIpNatStatsDynamicMappingEntry
  9124.         MAX-ACCESS not-accessible
  9125.         STATUS current
  9126.         DESCRIPTION
  9127.                 "A table has information of IP NAT interface inside/outside"
  9128.         ::= { axIpNatStatsDynamicMapping 1 }
  9129.  
  9130.     axIpNatStatsDynamicMappingEntry OBJECT-TYPE
  9131.         SYNTAX  AxIpNatStatsDynamicMappingEntry
  9132.         MAX-ACCESS not-accessible
  9133.         STATUS current
  9134.         DESCRIPTION
  9135.                 "Columns in the axIpNatStatsDynamicMapping Table"
  9136.         INDEX {
  9137.                 axIpNatStatsDynamicMappingAccessListID
  9138.         }
  9139.         ::= { axIpNatStatsDynamicMappingTable 1 }
  9140.  
  9141.     AxIpNatStatsDynamicMappingEntry ::=
  9142.         SEQUENCE {
  9143.                 axIpNatStatsDynamicMappingAccessListID       INTEGER,
  9144.                 axIpNatStatsDynamicMappingPoolName           DisplayString,
  9145.                 axIpNatStatsDynamicMappingStartAddress       DisplayString,
  9146.                 axIpNatStatsDynamicMappingEndAddress         DisplayString,
  9147.                 axIpNatStatsDynamicMappingTotalAddresses     INTEGER,
  9148.                 axIpNatStatsDynamicMappingAllocAddresses     INTEGER,
  9149.                 axIpNatStatsDynamicMappingMissAddresses      INTEGER,
  9150.                         axIpNatStatsDynamicMappingStartAddressType   InetAddressType,
  9151.                 axIpNatStatsDynamicMappingEndAddressType     InetAddressType
  9152.         }
  9153.  
  9154.     axIpNatStatsDynamicMappingAccessListID OBJECT-TYPE
  9155.         SYNTAX INTEGER
  9156.         MAX-ACCESS read-only
  9157.         STATUS current
  9158.         DESCRIPTION
  9159.                 "The access list id."
  9160.         ::= { axIpNatStatsDynamicMappingEntry 1 }
  9161.  
  9162.     axIpNatStatsDynamicMappingPoolName OBJECT-TYPE
  9163.         SYNTAX DisplayString
  9164.         MAX-ACCESS read-only
  9165.         STATUS current
  9166.         DESCRIPTION
  9167.                 "The IP source NAT pool name"
  9168.         ::= { axIpNatStatsDynamicMappingEntry 2 }
  9169.  
  9170.     axIpNatStatsDynamicMappingStartAddress OBJECT-TYPE
  9171.         SYNTAX DisplayString
  9172.         MAX-ACCESS read-only
  9173.         STATUS current
  9174.         DESCRIPTION
  9175.                 "The start adddress of the pool"
  9176.         ::= { axIpNatStatsDynamicMappingEntry 3 }
  9177.  
  9178.     axIpNatStatsDynamicMappingEndAddress OBJECT-TYPE
  9179.         SYNTAX DisplayString
  9180.         MAX-ACCESS read-only
  9181.         STATUS current
  9182.         DESCRIPTION
  9183.                 "The end address of the pool"
  9184.         ::= { axIpNatStatsDynamicMappingEntry 4 }
  9185.  
  9186.     axIpNatStatsDynamicMappingTotalAddresses OBJECT-TYPE
  9187.         SYNTAX INTEGER
  9188.         MAX-ACCESS read-only
  9189.         STATUS current
  9190.         DESCRIPTION
  9191.                 "The total addresses in the pool."
  9192.         ::= { axIpNatStatsDynamicMappingEntry 5 }
  9193.  
  9194.     axIpNatStatsDynamicMappingAllocAddresses OBJECT-TYPE
  9195.         SYNTAX INTEGER
  9196.         MAX-ACCESS read-only
  9197.         STATUS current
  9198.         DESCRIPTION
  9199.                 "The total allocated addresses in the pool"
  9200.         ::= { axIpNatStatsDynamicMappingEntry 6 }
  9201.  
  9202.  
  9203.     axIpNatStatsDynamicMappingMissAddresses OBJECT-TYPE
  9204.         SYNTAX INTEGER
  9205.         MAX-ACCESS read-only
  9206.         STATUS current
  9207.         DESCRIPTION
  9208.                 "The total misses in the pool"
  9209.         ::= { axIpNatStatsDynamicMappingEntry 7 }
  9210.  
  9211.     axIpNatStatsDynamicMappingStartAddressType OBJECT-TYPE
  9212.     SYNTAX InetAddressType
  9213.     MAX-ACCESS read-only
  9214.     STATUS current
  9215.     DESCRIPTION
  9216.         "The type of axIpNatStatsDynamicMappingStartAddress:
  9217.             unknown(0), ipv4(1), ipv6(2)..."
  9218.     ::= { axIpNatStatsDynamicMappingEntry 8 }
  9219.  
  9220.     axIpNatStatsDynamicMappingEndAddressType OBJECT-TYPE
  9221.     SYNTAX InetAddressType
  9222.     MAX-ACCESS read-only
  9223.     STATUS current
  9224.     DESCRIPTION
  9225.         "The type of axIpNatStatsDynamicMappingEndAddress:
  9226.             unknown(0), ipv4(1), ipv6(2)..."
  9227.     ::= { axIpNatStatsDynamicMappingEntry 9 }
  9228.  
  9229.  
  9230. --==================================================================
  9231. -- axIpNatPoolStats
  9232. --==================================================================
  9233.  
  9234.     axIpNatPoolStatsTable OBJECT-TYPE
  9235.         SYNTAX SEQUENCE OF AxIpNatPoolStatsEntry
  9236.         MAX-ACCESS not-accessible
  9237.         STATUS current
  9238.         DESCRIPTION
  9239.                 "A table has information of IP NAT pool statistics."
  9240.         ::= { axIpNatPoolStats 1 }
  9241.  
  9242.     axIpNatPoolStatsEntry OBJECT-TYPE
  9243.         SYNTAX  AxIpNatPoolStatsEntry
  9244.         MAX-ACCESS not-accessible
  9245.         STATUS current
  9246.         DESCRIPTION
  9247.                 "Columns in the axIpNatPoolStats Table"
  9248.         INDEX {
  9249.                 axIpNatPoolName
  9250.         }
  9251.         ::= { axIpNatPoolStatsTable 1 }
  9252.  
  9253.     AxIpNatPoolStatsEntry ::=
  9254.         SEQUENCE {
  9255.                 axIpNatPoolName          DisplayString,
  9256.                 axIpNatPoolStartAddress  DisplayString,
  9257.                 axIpNatPoolEndAddress    DisplayString,
  9258.                 axIpNatPoolPortUsage     INTEGER,
  9259.                 axIpNatPoolTotalUsed     INTEGER,
  9260.                 axIpNatPoolTotalFree     INTEGER,
  9261.                 axIpNatPoolFailed        INTEGER
  9262.         }
  9263.  
  9264.     axIpNatPoolName OBJECT-TYPE
  9265.         SYNTAX DisplayString
  9266.         MAX-ACCESS read-only
  9267.         STATUS current
  9268.         DESCRIPTION
  9269.                 "The IP NAT pool name"
  9270.         ::= { axIpNatPoolStatsEntry 1 }
  9271.  
  9272.     axIpNatPoolStartAddress OBJECT-TYPE
  9273.         SYNTAX DisplayString
  9274.         MAX-ACCESS read-only
  9275.         STATUS current
  9276.         DESCRIPTION
  9277.                 "The IP NAT pool start address (IPv4 or IPv6)"
  9278.         ::= { axIpNatPoolStatsEntry 2 }
  9279.  
  9280.     axIpNatPoolEndAddress OBJECT-TYPE
  9281.         SYNTAX DisplayString
  9282.         MAX-ACCESS read-only
  9283.         STATUS current
  9284.         DESCRIPTION
  9285.                 "The IP NAT pool end address (IPv4 or IPv6)"
  9286.         ::= { axIpNatPoolStatsEntry 3 }
  9287.  
  9288.     axIpNatPoolPortUsage OBJECT-TYPE
  9289.         SYNTAX INTEGER
  9290.         MAX-ACCESS read-only
  9291.         STATUS current
  9292.         DESCRIPTION
  9293.                "The total port usage in the pool."
  9294.         ::= { axIpNatPoolStatsEntry 4 }
  9295.  
  9296.     axIpNatPoolTotalUsed OBJECT-TYPE
  9297.         SYNTAX INTEGER
  9298.         MAX-ACCESS read-only
  9299.         STATUS current
  9300.         DESCRIPTION
  9301.                 "The total of used addresses in the pool."
  9302.         ::= { axIpNatPoolStatsEntry 5 }
  9303.  
  9304.     axIpNatPoolTotalFree OBJECT-TYPE
  9305.         SYNTAX INTEGER
  9306.         MAX-ACCESS read-only
  9307.         STATUS current
  9308.         DESCRIPTION
  9309.                 "The total of free addresses in the pool"
  9310.         ::= { axIpNatPoolStatsEntry 6 }
  9311.  
  9312.     axIpNatPoolFailed OBJECT-TYPE
  9313.         SYNTAX INTEGER
  9314.         MAX-ACCESS read-only
  9315.         STATUS current
  9316.         DESCRIPTION
  9317.                 "The total misses in the pool"
  9318.         ::= { axIpNatPoolStatsEntry 7 }
  9319.  
  9320. --==================================================================
  9321. -- axSessionStats
  9322.     axSessionStatsGlobal        OBJECT IDENTIFIER ::= { axSessionStats 1 }
  9323.  
  9324. --==================================================================
  9325. -- axSessionStatsGlobal
  9326. --==================================================================
  9327.  
  9328.     axSessionGlobalStatTCPEstablished   OBJECT-TYPE
  9329.         SYNTAX                  Gauge32
  9330.         MAX-ACCESS              read-only
  9331.         STATUS                  current
  9332.         DESCRIPTION
  9333.                 "The count of TCP established."
  9334.         DEFVAL                  { 0 }
  9335.         ::=  {  axSessionStatsGlobal  1  }
  9336.  
  9337.     axSessionGlobalStatTCPHalfOpen      OBJECT-TYPE
  9338.         SYNTAX                  Gauge32
  9339.         MAX-ACCESS              read-only
  9340.         STATUS                  current
  9341.         DESCRIPTION
  9342.                 "The count of TCP half open."
  9343.         DEFVAL                  { 0 }
  9344.         ::=  {  axSessionStatsGlobal  2  }
  9345.  
  9346.     axSessionGlobalStatUDP      OBJECT-TYPE
  9347.         SYNTAX                  Gauge32
  9348.         MAX-ACCESS              read-only
  9349.         STATUS                  current
  9350.         DESCRIPTION
  9351.                 "The count of UDP connections."
  9352.         DEFVAL                  { 0 }
  9353.         ::=  {  axSessionStatsGlobal  3  }
  9354.  
  9355.     axSessionGlobalStatNonTcpUdpIPSession       OBJECT-TYPE
  9356.         SYNTAX                  Gauge32
  9357.         MAX-ACCESS              read-only
  9358.         STATUS                  current
  9359.         DESCRIPTION
  9360.                 "The count of non TCP/UDP IP sessions."
  9361.         DEFVAL                  { 0 }
  9362.         ::=  {  axSessionStatsGlobal  4  }
  9363.  
  9364.     axSessionGlobalStatOther    OBJECT-TYPE
  9365.         SYNTAX                  Gauge32
  9366.         MAX-ACCESS              read-only
  9367.         STATUS                  current
  9368.         DESCRIPTION
  9369.                 "The count of others."
  9370.         DEFVAL                  { 0 }
  9371.         ::=  {  axSessionStatsGlobal  5  }
  9372.  
  9373.     axSessionGlobalStatReverseNATTCP    OBJECT-TYPE
  9374.         SYNTAX                  Gauge32
  9375.         MAX-ACCESS              read-only
  9376.         STATUS                  current
  9377.         DESCRIPTION
  9378.                 "The count of reverse NAT TCP."
  9379.         DEFVAL                  { 0 }
  9380.         ::=  {  axSessionStatsGlobal  6  }
  9381.  
  9382.     axSessionGlobalStatReverseNATUDP    OBJECT-TYPE
  9383.         SYNTAX                  Gauge32
  9384.         MAX-ACCESS              read-only
  9385.         STATUS                  current
  9386.         DESCRIPTION
  9387.                 "The count of reverse NAT UDP."
  9388.         DEFVAL                  { 0 }
  9389.         ::=  {  axSessionStatsGlobal  7  }
  9390.  
  9391.     axSessionGlobalStatFreeBufferCount  OBJECT-TYPE
  9392.         SYNTAX                  Gauge32
  9393.         MAX-ACCESS              read-only
  9394.         STATUS                  current
  9395.         DESCRIPTION
  9396.                 "The count of free buffer."
  9397.         DEFVAL                  { 0 }
  9398.         ::=  {  axSessionStatsGlobal  8  }
  9399.  
  9400.     axSessionGlobalStatFreeCurrentConns OBJECT-TYPE
  9401.         SYNTAX                  Gauge32
  9402.         MAX-ACCESS              read-only
  9403.         STATUS                  current
  9404.         DESCRIPTION
  9405.                 "The count of free current connections."
  9406.         DEFVAL                  { 0 }
  9407.         ::=  {  axSessionStatsGlobal  9  }
  9408.  
  9409.     axSessionGlobalStatConnCount        OBJECT-TYPE
  9410.         SYNTAX                  Gauge32
  9411.         MAX-ACCESS              read-only
  9412.         STATUS                  current
  9413.         DESCRIPTION
  9414.                 "The count of current connections."
  9415.         DEFVAL                  { 0 }
  9416.         ::=  {  axSessionStatsGlobal  10  }
  9417.  
  9418.     axSessionGlobalStatConnFree OBJECT-TYPE
  9419.         SYNTAX                  Gauge32
  9420.         MAX-ACCESS              read-only
  9421.         STATUS                  current
  9422.         DESCRIPTION
  9423.                 "The count of freed connections."
  9424.         DEFVAL                  { 0 }
  9425.         ::=  {  axSessionStatsGlobal  11  }
  9426.  
  9427.     axSessionGlobalStatTCPSynHalfOpen   OBJECT-TYPE
  9428.         SYNTAX                  Gauge32
  9429.         MAX-ACCESS              read-only
  9430.         STATUS                  current
  9431.         DESCRIPTION
  9432.                 "The count of TCP SYN half open."
  9433.         DEFVAL                  { 0 }
  9434.         ::=  {  axSessionStatsGlobal  12 }
  9435.  
  9436.     axSessionGlobalStatConnSMPAllocated OBJECT-TYPE
  9437.         SYNTAX                  Gauge32
  9438.         MAX-ACCESS              read-only
  9439.         STATUS                  current
  9440.         DESCRIPTION
  9441.                 "The count of allocated SMP connections."
  9442.         DEFVAL                  { 0 }
  9443.         ::=  {  axSessionStatsGlobal  13  }
  9444.  
  9445.     axSessionGlobalStatConnSMPFree      OBJECT-TYPE
  9446.         SYNTAX                  Gauge32
  9447.         MAX-ACCESS              read-only
  9448.         STATUS                  current
  9449.         DESCRIPTION
  9450.                 "The count of free SMP connections."
  9451.         DEFVAL                  { 0 }
  9452.         ::=  {  axSessionStatsGlobal  14  }
  9453.  
  9454. --==================================================================
  9455. -- axGslb
  9456. --==================================================================
  9457.  
  9458.     axGslbZones           OBJECT IDENTIFIER ::= { axGslb 1 }
  9459.     axGslbSites           OBJECT IDENTIFIER ::= { axGslb 2 }
  9460.     axGslbServiceIPs      OBJECT IDENTIFIER ::= { axGslb 3 }
  9461.     axGslbServiceIpPorts  OBJECT IDENTIFIER ::= { axGslb 4 }
  9462.     axGslbSiteSlbDevices  OBJECT IDENTIFIER ::= { axGslb 5 }
  9463.     axGslbGroups                  OBJECT IDENTIFIER ::= { axGslb 6 }
  9464.  
  9465. --==================================================================
  9466. -- axGslbZones
  9467. --==================================================================
  9468.  
  9469.     axGslbZoneCount OBJECT-TYPE
  9470.         SYNTAX INTEGER
  9471.         MAX-ACCESS read-only
  9472.         STATUS current
  9473.         DESCRIPTION
  9474.                 "The number of axGslbZoneStatsTable entries in the table."
  9475.         ::= { axGslbZones 1 }
  9476.  
  9477.     axGslbZoneStatsTable OBJECT-TYPE
  9478.         SYNTAX SEQUENCE OF AxGslbZoneStatsEntry
  9479.         MAX-ACCESS not-accessible
  9480.         STATUS current
  9481.         DESCRIPTION
  9482.         "A table has information of GSLB zones"
  9483.         ::= { axGslbZones 2 }
  9484.  
  9485.     axGslbZoneStatsEntry OBJECT-TYPE
  9486.         SYNTAX  AxGslbZoneStatsEntry
  9487.         MAX-ACCESS not-accessible
  9488.         STATUS current
  9489.         DESCRIPTION
  9490.         "Columns in the axGslbStatsZones Table"
  9491.         INDEX {
  9492.         axGslbZoneName
  9493.         }
  9494.         ::= { axGslbZoneStatsTable 1 }
  9495.  
  9496.     AxGslbZoneStatsEntry ::=
  9497.         SEQUENCE {
  9498.          axGslbZoneName                  DisplayString,
  9499.          axGslbZoneAdminState            INTEGER,
  9500.          axGslbZoneOperState             INTEGER,
  9501.          axGslbZoneReceivedQueries       Counter64,
  9502.          axGslbZoneSentResponses         Counter64,
  9503.          axGslbZoneProxyModeCount        Counter64,
  9504.          axGslbZoneCacheModeCount        Counter64,
  9505.          axGslbZoneServerModeCount       Counter64,
  9506.          axGslbZoneStickyModeCount       Counter64,
  9507.          axGslbZoneBackupModeCount       Counter64
  9508.         }
  9509.  
  9510.     axGslbZoneName OBJECT-TYPE
  9511.          SYNTAX DisplayString
  9512.          MAX-ACCESS read-only
  9513.          STATUS current
  9514.          DESCRIPTION
  9515.           "The name of the zone entry."
  9516.          ::= { axGslbZoneStatsEntry 1 }
  9517.  
  9518.     axGslbZoneAdminState OBJECT-TYPE
  9519.         SYNTAX INTEGER {
  9520.                 disabled(0),
  9521.                 enable(1)
  9522.         }
  9523.         MAX-ACCESS read-only
  9524.         STATUS current
  9525.         DESCRIPTION
  9526.                 "The Zone administrative state."
  9527.         ::= { axGslbZoneStatsEntry 2 }
  9528.  
  9529.     axGslbZoneOperState OBJECT-TYPE
  9530.         SYNTAX INTEGER {
  9531.                 up(1),
  9532.                 down(2),
  9533.                 unknown(3)
  9534.         }
  9535.         MAX-ACCESS read-only
  9536.         STATUS current
  9537.         DESCRIPTION
  9538.                 "The Zone operational state."
  9539.         ::= { axGslbZoneStatsEntry 3 }
  9540.  
  9541.     axGslbZoneReceivedQueries OBJECT-TYPE
  9542.          SYNTAX Counter64
  9543.          MAX-ACCESS read-only
  9544.          STATUS current
  9545.          DESCRIPTION
  9546.           "The number of received queries on the zone entry."
  9547.          ::= { axGslbZoneStatsEntry 4 }
  9548.  
  9549.     axGslbZoneSentResponses OBJECT-TYPE
  9550.          SYNTAX Counter64
  9551.          MAX-ACCESS read-only
  9552.          STATUS current
  9553.          DESCRIPTION
  9554.           "The number of sent response on the zone entry."
  9555.          ::= { axGslbZoneStatsEntry 5 }
  9556.  
  9557.     axGslbZoneProxyModeCount OBJECT-TYPE
  9558.          SYNTAX Counter64
  9559.          MAX-ACCESS read-only
  9560.          STATUS current
  9561.          DESCRIPTION
  9562.           "The count in proxy mode."
  9563.          ::= { axGslbZoneStatsEntry 6 }
  9564.  
  9565.     axGslbZoneCacheModeCount OBJECT-TYPE
  9566.          SYNTAX Counter64
  9567.          MAX-ACCESS read-only
  9568.          STATUS current
  9569.          DESCRIPTION
  9570.           "The count in cache mode."
  9571.          ::= { axGslbZoneStatsEntry 7 }
  9572.  
  9573.     axGslbZoneServerModeCount OBJECT-TYPE
  9574.          SYNTAX Counter64
  9575.          MAX-ACCESS read-only
  9576.          STATUS current
  9577.          DESCRIPTION
  9578.           "The count in server mode."
  9579.          ::= { axGslbZoneStatsEntry 8 }
  9580.  
  9581.     axGslbZoneStickyModeCount OBJECT-TYPE
  9582.          SYNTAX Counter64
  9583.          MAX-ACCESS read-only
  9584.          STATUS current
  9585.          DESCRIPTION
  9586.           "The count in sticky mode."
  9587.          ::= { axGslbZoneStatsEntry 9 }
  9588.  
  9589.     axGslbZoneBackupModeCount OBJECT-TYPE
  9590.          SYNTAX Counter64
  9591.          MAX-ACCESS read-only
  9592.          STATUS current
  9593.          DESCRIPTION
  9594.           "The count in backup mode."
  9595.          ::= { axGslbZoneStatsEntry 10 }
  9596.  
  9597.     axGslbZoneServiceStatsTable OBJECT-TYPE
  9598.         SYNTAX SEQUENCE OF AxGslbZoneServiceStatsEntry
  9599.         MAX-ACCESS not-accessible
  9600.         STATUS current
  9601.         DESCRIPTION
  9602.         "A table has information of GSLB zone services"
  9603.         ::= { axGslbZones 3 }
  9604.  
  9605.     axGslbZoneServiceStatsEntry OBJECT-TYPE
  9606.         SYNTAX  AxGslbZoneServiceStatsEntry
  9607.         MAX-ACCESS not-accessible
  9608.         STATUS current
  9609.         DESCRIPTION
  9610.         "Columns in the axGslbZoneServiceStats Table"
  9611.         INDEX {
  9612.     axGslbZoneServiceFqdn
  9613.         }
  9614.         ::= { axGslbZoneServiceStatsTable 1 }
  9615.  
  9616.     AxGslbZoneServiceStatsEntry ::=
  9617.         SEQUENCE {
  9618.          axGslbZoneServiceFqdn          DisplayString,
  9619.          axGslbZoneNameInServiceEntry           DisplayString,
  9620.          axGslbZoneServiceName                  DisplayString,
  9621.          axGslbZoneServicePortNum               INTEGER,
  9622.          axGslbZoneServiceAdminState            INTEGER,
  9623.          axGslbZoneServiceOperState             INTEGER,
  9624.          axGslbZoneServiceReceivedQueries       Counter64,
  9625.          axGslbZoneServiceSentResponses         Counter64,
  9626.          axGslbZoneServiceProxyModeCount        Counter64,
  9627.          axGslbZoneServiceCacheModeCount        Counter64,
  9628.          axGslbZoneServiceServerModeCount       Counter64,
  9629.          axGslbZoneServiceStickyModeCount       Counter64,
  9630.          axGslbZoneServiceBackupModeCount       Counter64
  9631.         }
  9632.  
  9633.     axGslbZoneServiceFqdn OBJECT-TYPE
  9634.      SYNTAX DisplayString
  9635.      MAX-ACCESS read-only
  9636.      STATUS current
  9637.      DESCRIPTION
  9638.       "The Fqdn of Zone Service Entry."
  9639.      ::= { axGslbZoneServiceStatsEntry 1 }
  9640.  
  9641.     axGslbZoneNameInServiceEntry  OBJECT-TYPE
  9642.          SYNTAX DisplayString
  9643.          MAX-ACCESS read-only
  9644.          STATUS current
  9645.          DESCRIPTION
  9646.           "The name of the zone in service entry."
  9647.          ::= { axGslbZoneServiceStatsEntry 2 }
  9648.  
  9649.     axGslbZoneServiceName OBJECT-TYPE
  9650.          SYNTAX DisplayString
  9651.          MAX-ACCESS read-only
  9652.          STATUS current
  9653.          DESCRIPTION
  9654.           "The service name of the zone service entry."
  9655.          ::= { axGslbZoneServiceStatsEntry 3 }
  9656.  
  9657.     axGslbZoneServicePortNum OBJECT-TYPE
  9658.          SYNTAX INTEGER
  9659.          MAX-ACCESS read-only
  9660.          STATUS current
  9661.          DESCRIPTION
  9662.           "The port number of the zone service entry."
  9663.          ::= { axGslbZoneServiceStatsEntry 4 }
  9664.  
  9665.     axGslbZoneServiceAdminState OBJECT-TYPE
  9666.         SYNTAX INTEGER {
  9667.                 disabled(0),
  9668.                 enable(1)
  9669.         }
  9670.         MAX-ACCESS read-only
  9671.         STATUS current
  9672.         DESCRIPTION
  9673.                 "The Zone Service administrative state."
  9674.         ::= { axGslbZoneServiceStatsEntry 5 }
  9675.  
  9676.     axGslbZoneServiceOperState OBJECT-TYPE
  9677.         SYNTAX INTEGER {
  9678.                 up(1),
  9679.                 down(2),
  9680.                 unknown(3)
  9681.         }
  9682.         MAX-ACCESS read-only
  9683.         STATUS current
  9684.         DESCRIPTION
  9685.                 "The Zone Service operational state."
  9686.         ::= { axGslbZoneServiceStatsEntry 6 }
  9687.  
  9688.     axGslbZoneServiceReceivedQueries OBJECT-TYPE
  9689.          SYNTAX Counter64
  9690.          MAX-ACCESS read-only
  9691.          STATUS current
  9692.          DESCRIPTION
  9693.           "The number of received queries on the zone service entry."
  9694.          ::= { axGslbZoneServiceStatsEntry 7 }
  9695.  
  9696.     axGslbZoneServiceSentResponses OBJECT-TYPE
  9697.          SYNTAX Counter64
  9698.          MAX-ACCESS read-only
  9699.          STATUS current
  9700.          DESCRIPTION
  9701.           "The number of sent response on the zone service entry."
  9702.          ::= { axGslbZoneServiceStatsEntry 8 }
  9703.  
  9704.     axGslbZoneServiceProxyModeCount OBJECT-TYPE
  9705.          SYNTAX Counter64
  9706.          MAX-ACCESS read-only
  9707.          STATUS current
  9708.          DESCRIPTION
  9709.           "The count in proxy mode."
  9710.          ::= { axGslbZoneServiceStatsEntry 9 }
  9711.  
  9712.     axGslbZoneServiceCacheModeCount OBJECT-TYPE
  9713.          SYNTAX Counter64
  9714.          MAX-ACCESS read-only
  9715.          STATUS current
  9716.          DESCRIPTION
  9717.           "The count in cache mode."
  9718.          ::= { axGslbZoneServiceStatsEntry 10 }
  9719.  
  9720.     axGslbZoneServiceServerModeCount OBJECT-TYPE
  9721.          SYNTAX Counter64
  9722.          MAX-ACCESS read-only
  9723.          STATUS current
  9724.          DESCRIPTION
  9725.           "The count in server mode."
  9726.          ::= { axGslbZoneServiceStatsEntry 11 }
  9727.  
  9728.     axGslbZoneServiceStickyModeCount OBJECT-TYPE
  9729.          SYNTAX Counter64
  9730.          MAX-ACCESS read-only
  9731.          STATUS current
  9732.          DESCRIPTION
  9733.           "The count in sticky mode."
  9734.          ::= { axGslbZoneServiceStatsEntry 12 }
  9735.  
  9736.     axGslbZoneServiceBackupModeCount OBJECT-TYPE
  9737.          SYNTAX Counter64
  9738.          MAX-ACCESS read-only
  9739.          STATUS current
  9740.          DESCRIPTION
  9741.           "The count in backup mode."
  9742.          ::= { axGslbZoneServiceStatsEntry 13 }
  9743.  
  9744. --==================================================================
  9745. -- axGslbSites
  9746. --==================================================================
  9747.  
  9748.     axGslbSiteCount OBJECT-TYPE
  9749.         SYNTAX INTEGER
  9750.         MAX-ACCESS read-only
  9751.         STATUS current
  9752.         DESCRIPTION
  9753.                 "The total number of sites."
  9754.         ::= { axGslbSites 1 }
  9755.  
  9756.     axGslbSiteStatsTable OBJECT-TYPE
  9757.         SYNTAX SEQUENCE OF AxGslbSiteStatsEntry
  9758.         MAX-ACCESS not-accessible
  9759.         STATUS current
  9760.         DESCRIPTION
  9761.         "A table has information of GSLB sites"
  9762.         ::= { axGslbSites 2 }
  9763.  
  9764.     axGslbSiteStatsEntry OBJECT-TYPE
  9765.         SYNTAX  AxGslbSiteStatsEntry
  9766.         MAX-ACCESS not-accessible
  9767.         STATUS current
  9768.         DESCRIPTION
  9769.         "Columns in the axGslbSiteStats Table"
  9770.         INDEX {
  9771.         axGslbSiteName
  9772.         }
  9773.         ::= { axGslbSiteStatsTable 1 }
  9774.  
  9775.     AxGslbSiteStatsEntry ::=
  9776.         SEQUENCE {
  9777.          axGslbSiteName              DisplayString,
  9778.          axGslbSiteAdminState        INTEGER,
  9779.          axGslbSiteOperState         INTEGER,
  9780.          axGslbSiteHitCount          Counter64
  9781.         }
  9782.  
  9783.     axGslbSiteName OBJECT-TYPE
  9784.         SYNTAX DisplayString
  9785.         MAX-ACCESS read-only
  9786.         STATUS current
  9787.         DESCRIPTION
  9788.         "The name of the site entry."
  9789.         ::= { axGslbSiteStatsEntry 1 }
  9790.  
  9791.     axGslbSiteAdminState OBJECT-TYPE
  9792.         SYNTAX INTEGER {
  9793.                 disabled(0),
  9794.                 enable(1)
  9795.         }
  9796.         MAX-ACCESS read-only
  9797.         STATUS current
  9798.         DESCRIPTION
  9799.                 "The site administrative state."
  9800.         ::= { axGslbSiteStatsEntry 2 }
  9801.  
  9802.     axGslbSiteOperState OBJECT-TYPE
  9803.         SYNTAX INTEGER {
  9804.                 up(1),
  9805.                 down(2),
  9806.                 unknown(3)
  9807.         }
  9808.         MAX-ACCESS read-only
  9809.         STATUS current
  9810.         DESCRIPTION
  9811.                 "The site operational state."
  9812.         ::= { axGslbSiteStatsEntry 3 }
  9813.  
  9814.     axGslbSiteHitCount OBJECT-TYPE
  9815.         SYNTAX Counter64
  9816.         MAX-ACCESS read-only
  9817.         STATUS current
  9818.         DESCRIPTION
  9819.         "The hit count of the site."
  9820.         ::= { axGslbSiteStatsEntry 4 }
  9821.  
  9822.     axGslbSiteDeviceStatsTable OBJECT-TYPE
  9823.         SYNTAX SEQUENCE OF AxGslbSiteDeviceStatsEntry
  9824.         MAX-ACCESS not-accessible
  9825.         STATUS current
  9826.         DESCRIPTION
  9827.         "A table has information of GSLB site devices"
  9828.         ::= { axGslbSites 3 }
  9829.  
  9830.     axGslbSiteDeviceStatsEntry OBJECT-TYPE
  9831.         SYNTAX  AxGslbSiteDeviceStatsEntry
  9832.         MAX-ACCESS not-accessible
  9833.         STATUS current
  9834.         DESCRIPTION
  9835.         "Columns in the axGslbSiteDevicesStats Table"
  9836.         INDEX {
  9837.         axGslbSiteNameInDeviceEntry, axGslbSiteSlbDeviceIpAddr, axGslbSiteServiceIpAddr, axGslbSiteServiceIpPortNum
  9838.         }
  9839.         ::= { axGslbSiteDeviceStatsTable 1 }
  9840.  
  9841.     AxGslbSiteDeviceStatsEntry ::=
  9842.         SEQUENCE {
  9843.          axGslbSiteNameInDeviceEntry          DisplayString,
  9844.          axGslbSiteSlbDeviceIpAddr            DisplayString,
  9845.          axGslbSiteServiceIpAddr              DisplayString,
  9846.          axGslbSiteServiceIpPortNum           INTEGER,
  9847.          axGslbSiteSlbDeviceName              DisplayString,
  9848.          axGslbSiteServiceIpName              DisplayString,
  9849.          axGslbSiteServiceIpAdminState        INTEGER,
  9850.          axGslbSiteServiceIpOperState         INTEGER,
  9851.          axGslbSiteServiceIpHitCount          Counter64
  9852.         }
  9853.  
  9854.     axGslbSiteNameInDeviceEntry  OBJECT-TYPE
  9855.         SYNTAX DisplayString
  9856.         MAX-ACCESS read-only
  9857.         STATUS current
  9858.         DESCRIPTION
  9859.         "The name of the site."
  9860.         ::= { axGslbSiteDeviceStatsEntry 1 }
  9861.  
  9862.     axGslbSiteSlbDeviceIpAddr OBJECT-TYPE
  9863.         SYNTAX DisplayString
  9864.         MAX-ACCESS read-only
  9865.         STATUS current
  9866.         DESCRIPTION
  9867.         "The IP address of the SLB device in the site entry."
  9868.         ::= { axGslbSiteDeviceStatsEntry 2 }
  9869.  
  9870.     axGslbSiteServiceIpAddr OBJECT-TYPE
  9871.         SYNTAX DisplayString
  9872.         MAX-ACCESS read-only
  9873.         STATUS current
  9874.         DESCRIPTION
  9875.         "The IP address of the service-ip in the site device entry."
  9876.         ::= { axGslbSiteDeviceStatsEntry 3 }
  9877.  
  9878.     axGslbSiteServiceIpPortNum OBJECT-TYPE
  9879.         SYNTAX INTEGER
  9880.         MAX-ACCESS read-only
  9881.         STATUS current
  9882.         DESCRIPTION
  9883.         "The port number of the service-ip in the site device entry."
  9884.         ::= { axGslbSiteDeviceStatsEntry 4 }
  9885.  
  9886.     axGslbSiteSlbDeviceName OBJECT-TYPE
  9887.         SYNTAX DisplayString
  9888.         MAX-ACCESS read-only
  9889.         STATUS current
  9890.         DESCRIPTION
  9891.         "The SLB device name in the site device entry."
  9892.         ::= { axGslbSiteDeviceStatsEntry 5 }
  9893.  
  9894.     axGslbSiteServiceIpName OBJECT-TYPE
  9895.         SYNTAX DisplayString
  9896.         MAX-ACCESS read-only
  9897.         STATUS current
  9898.         DESCRIPTION
  9899.         "The service-ip name in the site device entry."
  9900.         ::= { axGslbSiteDeviceStatsEntry 6 }
  9901.  
  9902.     axGslbSiteServiceIpAdminState OBJECT-TYPE
  9903.         SYNTAX INTEGER {
  9904.                 disabled(0),
  9905.                 enable(1)
  9906.         }
  9907.         MAX-ACCESS read-only
  9908.         STATUS current
  9909.         DESCRIPTION
  9910.                 "The service-ip administrative state."
  9911.         ::= { axGslbSiteDeviceStatsEntry 7 }
  9912.  
  9913.     axGslbSiteServiceIpOperState OBJECT-TYPE
  9914.         SYNTAX INTEGER {
  9915.                 up(1),
  9916.                 down(2)
  9917.         }
  9918.         MAX-ACCESS read-only
  9919.         STATUS current
  9920.         DESCRIPTION
  9921.                 "The service-ip operational state."
  9922.  
  9923.         ::= { axGslbSiteDeviceStatsEntry 8 }
  9924.  
  9925.     axGslbSiteServiceIpHitCount OBJECT-TYPE
  9926.         SYNTAX Counter64
  9927.         MAX-ACCESS read-only
  9928.         STATUS current
  9929.         DESCRIPTION
  9930.         "The hit count of the service-ip name in the site device entry."
  9931.         ::= { axGslbSiteDeviceStatsEntry 9 }
  9932.  
  9933. --==================================================================
  9934. -- axGslbServiceIPs
  9935. --==================================================================
  9936.  
  9937.     axGslbServiceIPCount OBJECT-TYPE
  9938.         SYNTAX INTEGER
  9939.         MAX-ACCESS read-only
  9940.         STATUS current
  9941.         DESCRIPTION
  9942.                 "The number of axGslbServiceIPTable entries in the table."
  9943.         ::= { axGslbServiceIPs 1 }
  9944.  
  9945.     axGslbServiceIPTable OBJECT-TYPE
  9946.         SYNTAX SEQUENCE OF AxGslbServiceIPEntry
  9947.         MAX-ACCESS not-accessible
  9948.         STATUS current
  9949.         DESCRIPTION
  9950.         "A table has information of GSLB service IPs"
  9951.         ::= { axGslbServiceIPs 2 }
  9952.  
  9953.     axGslbServiceIPEntry OBJECT-TYPE
  9954.         SYNTAX  AxGslbServiceIPEntry
  9955.         MAX-ACCESS not-accessible
  9956.         STATUS current
  9957.         DESCRIPTION
  9958.         "Columns in the axGslbServiceIPs Table"
  9959.         INDEX {
  9960.            axGslbServiceIpAddr
  9961.         }
  9962.         ::= { axGslbServiceIPTable 1 }
  9963.  
  9964.     AxGslbServiceIPEntry ::=
  9965.         SEQUENCE {
  9966.          axGslbServiceIpAddr                  DisplayString,
  9967.          axGslbServiceIpName                  DisplayString,
  9968.          axGslbServiceIpSiteName              DisplayString,
  9969.          axGslbServiceIpAdminState            INTEGER,
  9970.          axGslbServiceIpOperState             INTEGER,
  9971.          axGslbServiceIpIsVirtualServerFlag   INTEGER,
  9972.          axGslbServiceIpProtocolFlag          INTEGER,
  9973.          axGslbServiceIpServicePortCount      Counter32,
  9974.          axGslbServiceIpHitCount              Counter64
  9975.         }
  9976.  
  9977.     axGslbServiceIpAddr OBJECT-TYPE
  9978.         SYNTAX DisplayString
  9979.         MAX-ACCESS read-only
  9980.         STATUS current
  9981.         DESCRIPTION
  9982.         "The IP address of the service-ip entry."
  9983.         ::= { axGslbServiceIPEntry 1 }
  9984.  
  9985.     axGslbServiceIpName OBJECT-TYPE
  9986.         SYNTAX DisplayString
  9987.         MAX-ACCESS read-only
  9988.         STATUS current
  9989.         DESCRIPTION
  9990.         "The name of the service-ip entry."
  9991.         ::= { axGslbServiceIPEntry 2 }
  9992.  
  9993.     axGslbServiceIpSiteName OBJECT-TYPE
  9994.         SYNTAX DisplayString
  9995.         MAX-ACCESS read-only
  9996.         STATUS current
  9997.         DESCRIPTION
  9998.         "The site name has the service-ip entry."
  9999.         ::= { axGslbServiceIPEntry 3 }
  10000.  
  10001.     axGslbServiceIpAdminState OBJECT-TYPE
  10002.         SYNTAX INTEGER {
  10003.            disabled(0),
  10004.            enable(1)
  10005.         }
  10006.         MAX-ACCESS read-only
  10007.         STATUS current
  10008.         DESCRIPTION
  10009.                 "The service-ip administrative state."
  10010.         ::= { axGslbServiceIPEntry 4 }
  10011.  
  10012.     axGslbServiceIpOperState OBJECT-TYPE
  10013.         SYNTAX INTEGER {
  10014.            up(1),
  10015.            down(2)
  10016.         }
  10017.         MAX-ACCESS read-only
  10018.         STATUS current
  10019.         DESCRIPTION
  10020.                 "The service-ip operational state."
  10021.         ::= { axGslbServiceIPEntry 5 }
  10022.  
  10023.     axGslbServiceIpIsVirtualServerFlag OBJECT-TYPE
  10024.         SYNTAX INTEGER {
  10025.           isVirtualServer(1),
  10026.           other(2)
  10027.         }
  10028.         MAX-ACCESS read-only
  10029.         STATUS current
  10030.         DESCRIPTION
  10031.                 "The flag of virtual server."
  10032.         ::= { axGslbServiceIPEntry 6 }
  10033.  
  10034.     axGslbServiceIpProtocolFlag OBJECT-TYPE
  10035.         SYNTAX INTEGER {
  10036.           gslbProtocol(1),
  10037.           localProtocol(2),
  10038.           unknown(0)
  10039.         }
  10040.         MAX-ACCESS read-only
  10041.         STATUS current
  10042.         DESCRIPTION
  10043.         "The service-ip with the GSLB protocol or local protocol."
  10044.         ::= { axGslbServiceIPEntry 7 }
  10045.  
  10046.     axGslbServiceIpServicePortCount OBJECT-TYPE
  10047.         SYNTAX Counter32
  10048.         MAX-ACCESS read-only
  10049.         STATUS current
  10050.         DESCRIPTION
  10051.         "The number of ports for the service-ip entry."
  10052.         ::= { axGslbServiceIPEntry 8 }
  10053.  
  10054.     axGslbServiceIpHitCount OBJECT-TYPE
  10055.         SYNTAX Counter64
  10056.         MAX-ACCESS read-only
  10057.         STATUS current
  10058.         DESCRIPTION
  10059.         "The hit count of the service-ip entry."
  10060.         ::= { axGslbServiceIPEntry 9 }
  10061.  
  10062. --==================================================================
  10063. -- axGslbServiceIpPorts
  10064. --==================================================================
  10065.  
  10066.     axGslbServiceIpPortTable OBJECT-TYPE
  10067.         SYNTAX SEQUENCE OF AxGslbServiceIpPortEntry
  10068.         MAX-ACCESS not-accessible
  10069.         STATUS current
  10070.         DESCRIPTION
  10071.         "A table has information of GSLB service ports"
  10072.         ::= { axGslbServiceIpPorts 1 }
  10073.  
  10074.     axGslbServiceIpPortEntry OBJECT-TYPE
  10075.         SYNTAX  AxGslbServiceIpPortEntry
  10076.         MAX-ACCESS not-accessible
  10077.         STATUS current
  10078.         DESCRIPTION
  10079.         "Columns in the axGslbServicePorts Table"
  10080.         INDEX {
  10081.         axGslbServiceIpPortAddr, axGslbServiceIpPortNum
  10082.         }
  10083.         ::= { axGslbServiceIpPortTable 1 }
  10084.  
  10085.     AxGslbServiceIpPortEntry ::=
  10086.         SEQUENCE {
  10087.          axGslbServiceIpPortAddr                  DisplayString,
  10088.          axGslbServiceIpPortNum                   INTEGER,
  10089.          axGslbServiceIpPortOperState             INTEGER,
  10090.          axGslbServiceIpPortProtocolFlag          INTEGER,
  10091.          axGslbServiceIpPortActiveServerCount     Counter32,
  10092.          axGslbServiceIpPortCurrConns             Counter64
  10093.         }
  10094.  
  10095.     axGslbServiceIpPortAddr OBJECT-TYPE
  10096.         SYNTAX DisplayString
  10097.         MAX-ACCESS read-only
  10098.         STATUS current
  10099.         DESCRIPTION
  10100.         "The IP address of the service-ip entry."
  10101.         ::= { axGslbServiceIpPortEntry 1 }
  10102.  
  10103.     axGslbServiceIpPortNum OBJECT-TYPE
  10104.         SYNTAX INTEGER
  10105.         MAX-ACCESS read-only
  10106.         STATUS current
  10107.         DESCRIPTION
  10108.         "The port number of the service-ip port entry"
  10109.         ::= { axGslbServiceIpPortEntry 2 }
  10110.  
  10111.     axGslbServiceIpPortOperState OBJECT-TYPE
  10112.         SYNTAX INTEGER {
  10113.                 up(1),
  10114.                 down(2)
  10115.         }
  10116.         MAX-ACCESS read-only
  10117.         STATUS current
  10118.         DESCRIPTION
  10119.         "The service-ip port operational state."
  10120.         ::= { axGslbServiceIpPortEntry 3}
  10121.  
  10122.     axGslbServiceIpPortProtocolFlag OBJECT-TYPE
  10123.         SYNTAX INTEGER {
  10124.                 gslbProtocol(1),
  10125.                 localProtocol(2),
  10126.                 unknown(0)
  10127.         }
  10128.         MAX-ACCESS read-only
  10129.         STATUS current
  10130.         DESCRIPTION
  10131.         "The service-ip port with the GSLB protocol or local protocol."
  10132.         ::= { axGslbServiceIpPortEntry 4 }
  10133.  
  10134.     axGslbServiceIpPortActiveServerCount OBJECT-TYPE
  10135.         SYNTAX Counter32
  10136.         MAX-ACCESS read-only
  10137.         STATUS current
  10138.         DESCRIPTION
  10139.         "The number of the active real servers."
  10140.         ::= { axGslbServiceIpPortEntry 5 }
  10141.  
  10142.     axGslbServiceIpPortCurrConns OBJECT-TYPE
  10143.         SYNTAX Counter64
  10144.         MAX-ACCESS read-only
  10145.         STATUS current
  10146.         DESCRIPTION
  10147.         "The number of the current connections."
  10148.         ::= { axGslbServiceIpPortEntry 6 }
  10149.  
  10150. --==================================================================
  10151. -- axGslbSiteSlbDevices
  10152. --==================================================================
  10153.  
  10154.     axGslbSiteSlbDeviceTable OBJECT-TYPE
  10155.         SYNTAX SEQUENCE OF AxGslbSiteSlbDeviceEntry
  10156.         MAX-ACCESS not-accessible
  10157.         STATUS current
  10158.         DESCRIPTION
  10159.         "A table has information of GSLB service ports"
  10160.         ::= { axGslbSiteSlbDevices 1 }
  10161.  
  10162.     axGslbSiteSlbDeviceEntry OBJECT-TYPE
  10163.         SYNTAX  AxGslbSiteSlbDeviceEntry
  10164.         MAX-ACCESS not-accessible
  10165.         STATUS current
  10166.         DESCRIPTION
  10167.         "Columns in the axGslbSiteSlbDevices Table"
  10168.         INDEX {
  10169.         axGslbSiteSlbDeviceSiteName, axGslbSiteSlbForDeviceIpAddr
  10170.         }
  10171.         ::= { axGslbSiteSlbDeviceTable 1 }
  10172.  
  10173.     AxGslbSiteSlbDeviceEntry ::=
  10174.         SEQUENCE {
  10175.          axGslbSiteSlbDeviceSiteName              DisplayString,
  10176.          axGslbSiteSlbForDeviceIpAddr             DisplayString,
  10177.          axGslbSiteForSlbDeviceName               DisplayString,
  10178.          axGslbSiteSlbDeviceProtocolFlag          INTEGER,
  10179.          axGslbSiteSlbDeviceAdminPreference       INTEGER,
  10180.          axGslbSiteSlbDeviceSessionUtilization    INTEGER,
  10181.          axGslbSiteSlbDeviceAvailSessionCount     Counter32,
  10182.          axGslbSiteSlbDeviceServicIpCount         Counter32
  10183.         }
  10184.  
  10185.     axGslbSiteSlbDeviceSiteName OBJECT-TYPE
  10186.         SYNTAX DisplayString
  10187.         MAX-ACCESS read-only
  10188.         STATUS current
  10189.         DESCRIPTION
  10190.         "The site name of the slb-device entry."
  10191.         ::= { axGslbSiteSlbDeviceEntry 1 }
  10192.  
  10193.     axGslbSiteSlbForDeviceIpAddr OBJECT-TYPE
  10194.         SYNTAX DisplayString
  10195.         MAX-ACCESS read-only
  10196.         STATUS current
  10197.         DESCRIPTION
  10198.         "The IP address of the slb-device entry."
  10199.         ::= { axGslbSiteSlbDeviceEntry 2 }
  10200.  
  10201.     axGslbSiteForSlbDeviceName OBJECT-TYPE
  10202.         SYNTAX DisplayString
  10203.         MAX-ACCESS read-only
  10204.         STATUS current
  10205.         DESCRIPTION
  10206.         "The name of the slb-device entry."
  10207.         ::= { axGslbSiteSlbDeviceEntry 3 }
  10208.  
  10209.     axGslbSiteSlbDeviceProtocolFlag OBJECT-TYPE
  10210.         SYNTAX INTEGER {
  10211.                 gslbProtocol(1),
  10212.                 localProtocol(2),
  10213.                 unknown(0)
  10214.         }
  10215.         MAX-ACCESS read-only
  10216.         STATUS current
  10217.         DESCRIPTION
  10218.         "The SLB device with the GSLB protocol or local protocol."
  10219.         ::= { axGslbSiteSlbDeviceEntry 4 }
  10220.  
  10221.     axGslbSiteSlbDeviceAdminPreference OBJECT-TYPE
  10222.         SYNTAX INTEGER
  10223.         MAX-ACCESS read-only
  10224.         STATUS current
  10225.         DESCRIPTION
  10226.         "The administrative preference of the SLB device entry."
  10227.         ::= { axGslbSiteSlbDeviceEntry 5 }
  10228.  
  10229.     axGslbSiteSlbDeviceSessionUtilization OBJECT-TYPE
  10230.         SYNTAX INTEGER
  10231.         MAX-ACCESS read-only
  10232.         STATUS current
  10233.         DESCRIPTION
  10234.         "The session utilization of the SLB device entry in percentage."
  10235.         ::= { axGslbSiteSlbDeviceEntry 6 }
  10236.  
  10237.     axGslbSiteSlbDeviceAvailSessionCount OBJECT-TYPE
  10238.         SYNTAX Counter32
  10239.         MAX-ACCESS read-only
  10240.         STATUS current
  10241.         DESCRIPTION
  10242.         "The number of the available sessions in the SLB device entry."
  10243.         ::= { axGslbSiteSlbDeviceEntry 7 }
  10244.  
  10245.     axGslbSiteSlbDeviceServicIpCount OBJECT-TYPE
  10246.         SYNTAX Counter32
  10247.         MAX-ACCESS read-only
  10248.         STATUS current
  10249.         DESCRIPTION
  10250.         "The number of the service-ip entries."
  10251.         ::= { axGslbSiteSlbDeviceEntry 8 }
  10252.  
  10253. --==================================================================
  10254. -- axGslbGroups
  10255. --==================================================================
  10256.  
  10257.     axGslbGroupTable OBJECT-TYPE
  10258.         SYNTAX SEQUENCE OF AxGslbGroupEntry
  10259.         MAX-ACCESS not-accessible
  10260.         STATUS current
  10261.         DESCRIPTION
  10262.         "A table has information on GSLB groups."
  10263.         ::= { axGslbGroups 1 }
  10264.  
  10265.     axGslbGroupEntry OBJECT-TYPE
  10266.         SYNTAX  AxGslbGroupEntry
  10267.         MAX-ACCESS not-accessible
  10268.         STATUS current
  10269.         DESCRIPTION
  10270.         "Columns in the axGslbGroup Table"
  10271.         INDEX {
  10272.         axGslbGroupName, axGslbGroupMember, axGslbGroupAddress
  10273.         }
  10274.         ::= { axGslbGroupTable 1 }
  10275.  
  10276.     AxGslbGroupEntry ::=
  10277.         SEQUENCE {
  10278.          axGslbGroupName                  DisplayString,
  10279.                  axGslbGroupMember                                DisplayString,
  10280.          axGslbGroupSysID                 DisplayString,
  10281.          axGslbGroupPriority              INTEGER,
  10282.          axGslbGroupAttribute             BITS,
  10283.          axGslbGroupStatus                            INTEGER,
  10284.          axGslbGroupAddress               DisplayString
  10285.         }
  10286.  
  10287.     axGslbGroupName OBJECT-TYPE
  10288.         SYNTAX DisplayString
  10289.         MAX-ACCESS read-only
  10290.         STATUS current
  10291.         DESCRIPTION
  10292.         "The name of the axGslbGroupTable entry."
  10293.         ::= { axGslbGroupEntry 1 }
  10294.  
  10295.     axGslbGroupMember OBJECT-TYPE
  10296.         SYNTAX DisplayString
  10297.         MAX-ACCESS read-only
  10298.         STATUS current
  10299.         DESCRIPTION
  10300.         "The member of the group in the axGslbGroupTable entry."
  10301.         ::= { axGslbGroupEntry 2 }
  10302.  
  10303.     axGslbGroupSysID OBJECT-TYPE
  10304.         SYNTAX DisplayString
  10305.         MAX-ACCESS read-only
  10306.         STATUS current
  10307.         DESCRIPTION
  10308.         "The sys id of the member in the axGslbGroupTable entry."
  10309.         ::= { axGslbGroupEntry 3 }
  10310.  
  10311.     axGslbGroupPriority OBJECT-TYPE
  10312.         SYNTAX INTEGER
  10313.         MAX-ACCESS read-only
  10314.         STATUS current
  10315.         DESCRIPTION
  10316.         "The priority of the member in the axGslbGroupTable entry."
  10317.         ::= { axGslbGroupEntry 4 }
  10318.  
  10319.     axGslbGroupAttribute OBJECT-TYPE
  10320.         SYNTAX BITS {
  10321.                 master(1),
  10322.                 disabled(2),
  10323.                 learn(3),
  10324.                 passive(4),
  10325.                 bridge(5),
  10326.                 super(6)
  10327.         }
  10328.         MAX-ACCESS read-only
  10329.         STATUS current
  10330.         DESCRIPTION
  10331.         "The attribute of the member in the axGslbGroupTable entry."
  10332.         ::= { axGslbGroupEntry 5 }
  10333.  
  10334.     axGslbGroupStatus OBJECT-TYPE
  10335.         SYNTAX INTEGER {
  10336.                 ok(1),
  10337.                 idle(2),
  10338.                 connect(3),
  10339.                 active(4),
  10340.                 openSent(5),
  10341.                 openConfirm(6),
  10342.                 established(7),
  10343.                 unknown(8),
  10344.                 ready(9),
  10345.             masterSync(10),
  10346.                 fullSync(11),
  10347.                 synced(12),
  10348.                 stopped(13),
  10349.                 waitSync(14),
  10350.                 vcs(15),
  10351.                 ha(16),
  10352.                 auto(17)
  10353.         }
  10354.         MAX-ACCESS read-only
  10355.         STATUS current
  10356.         DESCRIPTION
  10357.         "The status of the member in the axGslbGroupTable entry."
  10358.         ::= { axGslbGroupEntry 6 }
  10359.  
  10360.     axGslbGroupAddress OBJECT-TYPE
  10361.         SYNTAX DisplayString
  10362.         MAX-ACCESS read-only
  10363.         STATUS current
  10364.         DESCRIPTION
  10365.         "The ip address of the member in the axGslbGroupTable entry."
  10366.         ::= { axGslbGroupEntry 7 }
  10367.  
  10368. END