diff --git a/.github/workflows/check-version.yml b/.github/workflows/check-version.yml
new file mode 100644
index 0000000..137d86a
--- /dev/null
+++ b/.github/workflows/check-version.yml
@@ -0,0 +1,10 @@
+name: check version
+on:
+ pull_request:
+ paths-ignore:
+ - README.md
+ branches:
+ - master
+jobs:
+ check-version:
+ uses: QualiSystems/.github/.github/workflows/package-check-version.yml@master
diff --git a/.github/workflows/deploy-package.yml b/.github/workflows/deploy-package.yml
new file mode 100644
index 0000000..025eb4c
--- /dev/null
+++ b/.github/workflows/deploy-package.yml
@@ -0,0 +1,11 @@
+name: deploy package
+on:
+ release:
+ types: [ published ]
+jobs:
+ tox-ci:
+ uses: QualiSystems/.github/.github/workflows/package-tox-py-39.yml@master
+ pypi-deploy:
+ needs: tox-ci
+ uses: QualiSystems/.github/.github/workflows/package-deploy-pypi.yml@master
+ secrets: inherit
diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml
new file mode 100644
index 0000000..7c05337
--- /dev/null
+++ b/.github/workflows/github-release.yml
@@ -0,0 +1,13 @@
+name: github release
+on:
+ push:
+ paths-ignore:
+ - README.md
+ branches:
+ - master
+jobs:
+ tox-ci:
+ uses: QualiSystems/.github/.github/workflows/package-tox-py-39.yml@master
+ pypi-deploy:
+ needs: tox-ci
+ uses: QualiSystems/.github/.github/workflows/package-github-release.yml@master
diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml
new file mode 100644
index 0000000..955503b
--- /dev/null
+++ b/.github/workflows/package.yml
@@ -0,0 +1,10 @@
+name: package CI
+on:
+ push:
+ paths-ignore:
+ - README.md
+ branches-ignore:
+ - master
+jobs:
+ tox-ci:
+ uses: QualiSystems/.github/.github/workflows/package-tox-py-39.yml@master
diff --git a/.github/workflows/py3-packages-ci.yml b/.github/workflows/py3-packages-ci.yml
deleted file mode 100644
index 22d0af6..0000000
--- a/.github/workflows/py3-packages-ci.yml
+++ /dev/null
@@ -1,189 +0,0 @@
-name: CI
-
-on:
- push:
- branches:
- - "*"
- pull_request:
- branches:
- - "*"
- release:
- types: [published]
-
-jobs:
- tests:
- name: Run unit tests
- runs-on: ubuntu-latest
- strategy:
- matrix:
- python-version: [3.7]
- steps:
- - name: Checkout code
- uses: actions/checkout@v2
- - name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v2
- with:
- python-version: ${{ matrix.python-version }}
- - name: Install dependencies
- run: |
- python -m pip install pip -U
- pip install tox codecov
- - name: Set TOXENV
- run: |
- python_version="${{ matrix.python-version }}"
- py_version="${python_version/./}"
- target_branch=${{ github.base_ref || github.ref }}
- target_branch=(`[[ ${target_branch::10} == 'refs/heads' ]] && echo ${target_branch:11} || echo $target_branch`)
- echo "target_branch =" $target_branch
- is_master=(`[[ $target_branch == 'master' ]] && echo 'true' || echo 'false'`)
- is_tag=${{ startsWith(github.ref, 'refs/tags') }}
- echo "is_master =" $is_master
- echo "is_tag =" $is_tag
- branch=(`[[ $is_master == 'true' || $is_tag == 'true' ]] && echo 'master' || echo 'dev'`)
- TOXENV="py$py_version-$branch"
- echo $TOXENV
- echo "TOXENV=$TOXENV" >> $GITHUB_ENV
- - name: Run tox
- run: tox
- - name: Upload coverage report
- uses: codecov/codecov-action@v1
- with:
- fail_ci_if_error: true
- verbose: true
- pre-commit:
- name: Run pre-commit
- runs-on: ubuntu-latest
- steps:
- - name: Checkout code
- uses: actions/checkout@v2
- - name: Set up Python 3.7
- uses: actions/setup-python@v2
- with:
- python-version: 3.7
- - name: Install dependencies
- run: |
- python -m pip install pip -U
- pip install tox
- - name: Run pre-commit
- env:
- TOXENV: pre-commit
- run: tox
- build:
- name: Build package
- runs-on: ubuntu-latest
- steps:
- - name: Checkout code
- uses: actions/checkout@v2
- - name: Set up Python 3.7
- uses: actions/setup-python@v2
- with:
- python-version: 3.7
- - name: Install dependencies
- run: |
- python -m pip install pip -U
- pip install tox
- - name: Build
- env:
- TOXENV: build
- run: tox
- check-version:
- name: Check version
- # only for PRs in master
- if: ${{ github.base_ref == 'master' }}
- runs-on: ubuntu-latest
- steps:
- - name: Checkout code
- uses: actions/checkout@v2
- - name: Check version
- run: |
- git clone https://github.com/${{ github.repository }}.git ${{ github.repository }}
- cd ${{ github.repository }}
- git checkout -qf ${{ github.head_ref }}
- ! git diff --exit-code --quiet origin/master version.txt
- deploy-to-test-pypi:
- needs: [tests, pre-commit, build]
- if: ${{ github.ref == 'refs/heads/dev' && github.event_name == 'push' }}
- runs-on: ubuntu-latest
- steps:
- - name: Checkout code
- uses: actions/checkout@v2
- - name: Set up Python 3.7
- uses: actions/setup-python@v2
- with:
- python-version: 3.7
- - name: Install dependencies
- run: |
- python -m pip install pip -U
- pip install tox
- - name: Add id to a package version
- run: sed -i -E "s/^([0-9]+\.[0-9]+\.[0-9]+)$/\1.${{ github.run_number }}/" version.txt
- - name: Build
- env:
- TOXENV: build
- run: tox
- - name: Publish
- uses: pypa/gh-action-pypi-publish@v1.4.1
- with:
- user: __token__
- password: ${{ secrets.TEST_PYPI_TOKEN }}
- repository_url: https://test.pypi.org/legacy/
- create-gh-release:
- needs: [tests, pre-commit, build]
- if: ${{ github.ref == 'refs/heads/master' && github.event_name == 'push' }}
- runs-on: ubuntu-latest
- steps:
- - name: Checkout code
- uses: actions/checkout@v2
- - name: Set up Python 3.7
- uses: actions/setup-python@v2
- with:
- python-version: 3.7
- - name: Install dependencies
- run: |
- python -m pip install pip -U
- pip install tox
- - name: Build
- env:
- TOXENV: build
- run: tox
- - name: Set envs
- run: |
- version="$(cat version.txt | tr -d ' \t\n\r')"
- repo_owner=${{ github.repository }}
- index=`expr index "$repo_owner" /`
- repo=${repo_owner:index}
- echo "TAG=$version" >> $GITHUB_ENV
- echo "REPO=$repo" >> $GITHUB_ENV
- - name: Create GitHub release
- uses: ncipollo/release-action@v1
- with:
- token: ${{ secrets.GITHUB_TOKEN }}
- artifacts: "dist/*"
- draft: true
- name: ${{ env.REPO }} ${{ env.TAG }}
- tag: ${{ env.TAG }}
- commit: master
- deploy-to-pypi:
- needs: [tests, pre-commit, build]
- if: startsWith(github.ref, 'refs/tags/')
- runs-on: ubuntu-latest
- steps:
- - name: Checkout code
- uses: actions/checkout@v2
- - name: Set up Python 3.7
- uses: actions/setup-python@v2
- with:
- python-version: 3.7
- - name: Install dependencies
- run: |
- python -m pip install pip -U
- pip install tox
- - name: Build
- env:
- TOXENV: build
- run: tox
- - name: Publish
- uses: pypa/gh-action-pypi-publish@v1.4.1
- with:
- user: __token__
- password: ${{ secrets.PYPI_TOKEN }}
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index d30c9ee..95d056b 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -1,19 +1,22 @@
-
repos:
+ - repo: https://github.com/asottile/pyupgrade
+ rev: v3.3.1
+ hooks:
+ - id: pyupgrade
+ args:
+ - "--py39-plus"
- repo: https://github.com/timothycrosley/isort
- rev: 5.6.4
+ rev: 5.12.0
hooks:
- id: isort
- language_version: python3.7
exclude: '/mibs'
- repo: https://github.com/python/black
- rev: 20.8b1
+ rev: 22.12.0
hooks:
- id: black
- language_version: python3.7
exclude: '/mibs'
- - repo: https://gitlab.com/pycqa/flake8
- rev: 3.8.4
+ - repo: https://github.com/pycqa/flake8
+ rev: 5.0.4
hooks:
- id: flake8
additional_dependencies: [
@@ -22,6 +25,6 @@ repos:
flake8-comprehensions,
flake8-print,
flake8-eradicate,
+ flake8-requirements,
]
- language_version: python3.7
- exclude: '/mibs'
\ No newline at end of file
+ exclude: '/mibs'
diff --git a/MANIFEST.in b/MANIFEST.in
index 048e252..9b1e748 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,2 +1,3 @@
include *.txt
-global-include *.ini
\ No newline at end of file
+global-include *.ini
+global-include *.json
diff --git a/cloudshell/checkpoint/gaia/__init__.py b/cloudshell/checkpoint/autoload/__init__.py
similarity index 100%
rename from cloudshell/checkpoint/gaia/__init__.py
rename to cloudshell/checkpoint/autoload/__init__.py
diff --git a/cloudshell/checkpoint/autoload/checkpoint_generic_snmp_autoload.py b/cloudshell/checkpoint/autoload/checkpoint_generic_snmp_autoload.py
new file mode 100644
index 0000000..8f2ad1e
--- /dev/null
+++ b/cloudshell/checkpoint/autoload/checkpoint_generic_snmp_autoload.py
@@ -0,0 +1,40 @@
+from __future__ import annotations
+
+import logging
+import os
+from functools import cached_property
+from typing import TYPE_CHECKING
+
+from cloudshell.snmp.autoload.generic_snmp_autoload import GenericSNMPAutoload
+
+from cloudshell.checkpoint.autoload.checkpoint_snmp_port_table import (
+ CheckpointPortsTable,
+)
+from cloudshell.checkpoint.autoload.checkpoint_snmp_system_info import (
+ CheckpointSNMPSystemInfo,
+)
+
+if TYPE_CHECKING:
+ from cloudshell.snmp.autoload.services.system_info_table import SnmpSystemInfo
+
+logger = logging.getLogger(__name__)
+
+
+class CheckpointGenericSNMPAutoload(GenericSNMPAutoload):
+ def __init__(self, snmp_handler, resource_model):
+ super().__init__(snmp_handler, logger, resource_model)
+ self.load_mibs(os.path.abspath(os.path.join(os.path.dirname(__file__), "mibs")))
+
+ @cached_property
+ def system_info_service(self) -> SnmpSystemInfo:
+ return CheckpointSNMPSystemInfo(self.snmp_handler, logger)
+
+ @property
+ def port_table_service(self) -> CheckpointPortsTable:
+ if not self._port_table_service:
+ self._port_table_service = CheckpointPortsTable(
+ resource_model=self._resource_model,
+ ports_snmp_table=self.port_snmp_table,
+ logger=self.logger,
+ )
+ return self._port_table_service
diff --git a/cloudshell/checkpoint/autoload/checkpoint_snmp_port_table.py b/cloudshell/checkpoint/autoload/checkpoint_snmp_port_table.py
new file mode 100644
index 0000000..d23dd0a
--- /dev/null
+++ b/cloudshell/checkpoint/autoload/checkpoint_snmp_port_table.py
@@ -0,0 +1,8 @@
+from __future__ import annotations
+
+from cloudshell.snmp.autoload.services.port_table import PortsTable
+
+
+class CheckpointPortsTable(PortsTable):
+ PORT_EXCLUDE_LIST = PortsTable.PORT_EXCLUDE_LIST + ["lo", "sync", "loopback"]
+ PORT_CHANNEL_NAME_LIST = PortsTable.PORT_CHANNEL_NAME_LIST + ["bond"]
diff --git a/cloudshell/checkpoint/autoload/checkpoint_snmp_system_info.py b/cloudshell/checkpoint/autoload/checkpoint_snmp_system_info.py
new file mode 100644
index 0000000..60dec8f
--- /dev/null
+++ b/cloudshell/checkpoint/autoload/checkpoint_snmp_system_info.py
@@ -0,0 +1,47 @@
+from __future__ import annotations
+
+from cloudshell.snmp.autoload.services.system_info_table import SnmpSystemInfo
+from cloudshell.snmp.core.domain.snmp_oid import SnmpMibObject
+
+
+class CheckpointSNMPSystemInfo(SnmpSystemInfo):
+ def _get_device_model(self):
+ """Get device model from the SNMPv2 mib."""
+ result = self._get_val(
+ self._snmp_handler.get_property(
+ SnmpMibObject("CHECKPOINT-MIB", "svnApplianceProductName", "0")
+ )
+ )
+
+ return result
+
+ def _get_vendor(self):
+ """Get device model from the SNMPv2 mib."""
+ if not self._vendor:
+ sys_obj_id = self._snmp_v2_obj.get_system_object_id()
+ sys_obj_id_oid = str(sys_obj_id.raw_value)
+ oid_match = self.VENDOR_OID_PATTERN.search(sys_obj_id_oid)
+ if oid_match:
+ self._vendor = self._snmp_handler.translate_oid(
+ oid_match.group()
+ ).capitalize()
+
+ return self._vendor or "Checkpoint"
+
+ def _get_device_os_version(self) -> str:
+ """Get device OS Version form snmp SNMPv2 mib."""
+ result = self._get_val(
+ self._snmp_handler.get_property(
+ SnmpMibObject("CHECKPOINT-MIB", "svnVersion", "0")
+ )
+ )
+
+ return result
+
+ def is_valid_device_os(self, supported_os: list[str]) -> bool:
+ """Validate device OS using snmp."""
+ if not SnmpSystemInfo.is_valid_device_os(self, supported_os=supported_os):
+ # Check is vendor equal Checkpoint
+ return self._get_vendor().lower() == "checkpoint"
+
+ return True
diff --git a/cloudshell/checkpoint/autoload/mibs/CHECKPOINT-MIB.json b/cloudshell/checkpoint/autoload/mibs/CHECKPOINT-MIB.json
new file mode 100644
index 0000000..19b5538
--- /dev/null
+++ b/cloudshell/checkpoint/autoload/mibs/CHECKPOINT-MIB.json
@@ -0,0 +1,40034 @@
+{
+ "imports": {
+ "class": "imports",
+ "SNMPv2-CONF": [
+ "MODULE-COMPLIANCE",
+ "OBJECT-GROUP",
+ "NOTIFICATION-GROUP"
+ ],
+ "SNMPv2-SMI": [
+ "Unsigned32",
+ "Counter64",
+ "iso",
+ "MibIdentifier",
+ "Gauge32",
+ "OBJECT-IDENTITY",
+ "MODULE-IDENTITY",
+ "NOTIFICATION-TYPE",
+ "OBJECT-TYPE",
+ "IpAddress",
+ "Counter32",
+ "Bits",
+ "enterprises",
+ "Integer32",
+ "TimeTicks"
+ ],
+ "SNMPv2-TC": [
+ "TEXTUAL-CONVENTION",
+ "DisplayString"
+ ]
+ },
+ "checkpoint": {
+ "name": "checkpoint",
+ "oid": "1.3.6.1.4.1.2620",
+ "class": "moduleidentity",
+ "revisions": [
+ {
+ "revision": "2021-01-31 00:00",
+ "description": "Fix MIB errors and warnings based on RFC"
+ },
+ {
+ "revision": "2013-12-26 13:09",
+ "description": "Update the SMIv1 MIB to SMIv2"
+ }
+ ]
+ },
+ "products": {
+ "name": "products",
+ "oid": "1.3.6.1.4.1.2620.1",
+ "class": "objectidentity"
+ },
+ "tables": {
+ "name": "tables",
+ "oid": "1.3.6.1.4.1.2620.500",
+ "class": "objectidentity"
+ },
+ "fw": {
+ "name": "fw",
+ "oid": "1.3.6.1.4.1.2620.1.1",
+ "class": "objectidentity"
+ },
+ "vpn": {
+ "name": "vpn",
+ "oid": "1.3.6.1.4.1.2620.1.2",
+ "class": "objectidentity"
+ },
+ "fg": {
+ "name": "fg",
+ "oid": "1.3.6.1.4.1.2620.1.3",
+ "class": "objectidentity"
+ },
+ "ha": {
+ "name": "ha",
+ "oid": "1.3.6.1.4.1.2620.1.5",
+ "class": "objectidentity"
+ },
+ "svn": {
+ "name": "svn",
+ "oid": "1.3.6.1.4.1.2620.1.6",
+ "class": "objectidentity"
+ },
+ "mngmt": {
+ "name": "mngmt",
+ "oid": "1.3.6.1.4.1.2620.1.7",
+ "class": "objectidentity"
+ },
+ "wam": {
+ "name": "wam",
+ "oid": "1.3.6.1.4.1.2620.1.8",
+ "class": "objectidentity"
+ },
+ "dtps": {
+ "name": "dtps",
+ "oid": "1.3.6.1.4.1.2620.1.9",
+ "class": "objectidentity"
+ },
+ "ls": {
+ "name": "ls",
+ "oid": "1.3.6.1.4.1.2620.1.11",
+ "class": "objectidentity"
+ },
+ "vsx": {
+ "name": "vsx",
+ "oid": "1.3.6.1.4.1.2620.1.16",
+ "class": "objectidentity"
+ },
+ "smartDefense": {
+ "name": "smartDefense",
+ "oid": "1.3.6.1.4.1.2620.1.17",
+ "class": "objectidentity"
+ },
+ "gx": {
+ "name": "gx",
+ "oid": "1.3.6.1.4.1.2620.1.20",
+ "class": "objectidentity"
+ },
+ "avi": {
+ "name": "avi",
+ "oid": "1.3.6.1.4.1.2620.1.24",
+ "class": "objectidentity"
+ },
+ "eventiaAnalyzer": {
+ "name": "eventiaAnalyzer",
+ "oid": "1.3.6.1.4.1.2620.1.25",
+ "class": "objectidentity"
+ },
+ "uf": {
+ "name": "uf",
+ "oid": "1.3.6.1.4.1.2620.1.29",
+ "class": "objectidentity"
+ },
+ "ms": {
+ "name": "ms",
+ "oid": "1.3.6.1.4.1.2620.1.30",
+ "class": "objectidentity"
+ },
+ "voip": {
+ "name": "voip",
+ "oid": "1.3.6.1.4.1.2620.1.31",
+ "class": "objectidentity"
+ },
+ "identityAwareness": {
+ "name": "identityAwareness",
+ "oid": "1.3.6.1.4.1.2620.1.38",
+ "class": "objectidentity"
+ },
+ "applicationControl": {
+ "name": "applicationControl",
+ "oid": "1.3.6.1.4.1.2620.1.39",
+ "class": "objectidentity"
+ },
+ "thresholds": {
+ "name": "thresholds",
+ "oid": "1.3.6.1.4.1.2620.1.42",
+ "class": "objectidentity"
+ },
+ "advancedUrlFiltering": {
+ "name": "advancedUrlFiltering",
+ "oid": "1.3.6.1.4.1.2620.1.43",
+ "class": "objectidentity"
+ },
+ "dlp": {
+ "name": "dlp",
+ "oid": "1.3.6.1.4.1.2620.1.44",
+ "class": "objectidentity"
+ },
+ "amw": {
+ "name": "amw",
+ "oid": "1.3.6.1.4.1.2620.1.46",
+ "class": "objectidentity"
+ },
+ "asg": {
+ "name": "asg",
+ "oid": "1.3.6.1.4.1.2620.1.48",
+ "class": "objectidentity"
+ },
+ "te": {
+ "name": "te",
+ "oid": "1.3.6.1.4.1.2620.1.49",
+ "class": "objectidentity"
+ },
+ "threatExtraction": {
+ "name": "threatExtraction",
+ "oid": "1.3.6.1.4.1.2620.1.50",
+ "class": "objectidentity"
+ },
+ "sxl": {
+ "name": "sxl",
+ "oid": "1.3.6.1.4.1.2620.1.36",
+ "class": "objectidentity"
+ },
+ "vsecController": {
+ "name": "vsecController",
+ "oid": "1.3.6.1.4.1.2620.1.52",
+ "class": "objectidentity"
+ },
+ "ips": {
+ "name": "ips",
+ "oid": "1.3.6.1.4.1.2620.1.53",
+ "class": "objectidentity"
+ },
+ "httpsInspection": {
+ "name": "httpsInspection",
+ "oid": "1.3.6.1.4.1.2620.1.54",
+ "class": "objectidentity"
+ },
+ "mho": {
+ "name": "mho",
+ "oid": "1.3.6.1.4.1.2620.1.55",
+ "class": "objectidentity"
+ },
+ "zph": {
+ "name": "zph",
+ "oid": "1.3.6.1.4.1.2620.1.60",
+ "class": "objectidentity"
+ },
+ "chkpntMIBConformance": {
+ "name": "chkpntMIBConformance",
+ "oid": "1.3.6.1.4.1.2620.2",
+ "class": "objectidentity"
+ },
+ "chkpntMIBCompliances": {
+ "name": "chkpntMIBCompliances",
+ "oid": "1.3.6.1.4.1.2620.2.1",
+ "class": "objectidentity"
+ },
+ "chkpntMIBGroups": {
+ "name": "chkpntMIBGroups",
+ "oid": "1.3.6.1.4.1.2620.2.2",
+ "class": "objectidentity"
+ },
+ "chkpntMIBNotifGroups": {
+ "name": "chkpntMIBNotifGroups",
+ "oid": "1.3.6.1.4.1.2620.2.3",
+ "class": "objectidentity"
+ },
+ "chkpntBasicCompliance": {
+ "name": "chkpntBasicCompliance",
+ "oid": "1.3.6.1.4.1.2620.2.1.1",
+ "class": "modulecompliance",
+ "modulecompliance": [
+ {
+ "object": "fwProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "vpnProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "fgProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "haProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "svnProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "mngmtProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "wamProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "dtpsProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "lsProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "vsxProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "smartDefenseProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "gxProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "aviProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "eventiaAnalyzerProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "ufProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "msProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "voipProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "identityAwarenessProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "applicationControlProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "thresholdsProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "advancedUrlFilteringProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "dlpProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "amwProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "asgProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "teProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "threatExtractionProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "sxlProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "vsecControllerProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "ipsProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "httpsInspectionProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "mhoProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ },
+ {
+ "object": "zphProductsGroup",
+ "module": "CHECKPOINT-MIB"
+ }
+ ],
+ "status": "current"
+ },
+ "fwProductsGroup": {
+ "name": "fwProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.1",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwPolicyName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwInstallTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwNumConn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwPeakNumConn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwIspName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwIspStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwIspRole"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "unknown"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwIfName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwAcceptPcktsIn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwAcceptPcktsOut"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwAcceptBytesIn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwAcceptBytesOut"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwDropPcktsIn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwDropPcktsOut"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwRejectPcktsIn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwRejectPcktsOut"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwLogIn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwLogOut"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwConnTableLimit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwAcceptedTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwDroppedTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwRejectedTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwLoggedTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwAcceptedBytesTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwDroppedBytesTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwRejectedBytesTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwAcceptedBytesRates"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwAcceptedPcktsRates"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwConnsRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwIfName64"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwAcceptPcktsIn64"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwAcceptPcktsOut64"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwAcceptBytesIn64"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwAcceptBytesOut64"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwDropPcktsIn64"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwDropPcktsOut64"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwRejectPcktsIn64"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwRejectPcktsOut64"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwLogIn64"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwLogOut64"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwFullyUtilizedDrops"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem_block_size"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem_requested_bytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem_initial_allocated_bytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem_initial_allocated_blocks"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem_initial_allocated_pools"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem_current_allocated_bytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem_current_allocated_blocks"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem_current_allocated_pools"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem_maximum_bytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem_maximum_pools"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem_bytes_used"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem_blocks_used"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem_bytes_unused"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem_blocks_unused"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem_bytes_peak"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem_blocks_peak"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem_bytes_internal_use"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem_number_of_items"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem_alloc_operations"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem_free_operations"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem_failed_alloc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem_failed_free"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwKmem_system_physical_mem"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwKmem_available_physical_mem"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwKmem_aix_heap_size"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwKmem_bytes_used"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwKmem_blocking_bytes_used"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwKmem_non_blocking_bytes_used"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwKmem_bytes_unused"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwKmem_bytes_peak"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwKmem_blocking_bytes_peak"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwKmem_non_blocking_bytes_peak"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwKmem_bytes_internal_use"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwKmem_number_of_items"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwKmem_alloc_operations"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwKmem_free_operations"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwKmem_failed_alloc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwKmem_failed_free"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwInspect_packets"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwInspect_operations"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwInspect_lookups"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwInspect_record"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwInspect_extract"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwCookies_total"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwCookies_allocfwCookies_total"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwCookies_freefwCookies_total"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwCookies_dupfwCookies_total"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwCookies_getfwCookies_total"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwCookies_putfwCookies_total"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwCookies_lenfwCookies_total"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwChains_alloc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwChains_free"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwFrag_fragments"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwFrag_expired"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwFrag_packets"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwUfpHitRatio"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwUfpInspected"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwUfpHits"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_pid"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_proto"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_port"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_logical_port"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_max_avail_socket"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_socket_in_use_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_socket_in_use_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_socket_in_use_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_sess_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_sess_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_sess_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_auth_sess_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_auth_sess_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_auth_sess_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_accepted_sess"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_rejected_sess"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_auth_failures"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_ops_cvp_sess_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_ops_cvp_sess_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_ops_cvp_sess_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_ops_cvp_rej_sess"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_ssl_encryp_sess_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_ssl_encryp_sess_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_ssl_encryp_sess_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_transp_sess_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_transp_sess_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_transp_sess_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_proxied_sess_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_proxied_sess_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_proxied_sess_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_tunneled_sess_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_tunneled_sess_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_tunneled_sess_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_ftp_sess_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_ftp_sess_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_ftp_sess_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_time_stamp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_is_alive"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_blocked_cnt"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_blocked_total"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_scanned_total"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_blocked_by_file_type"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_blocked_by_size_limit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_blocked_by_archive_limit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_blocked_by_internal_error"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_passed_cnt"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_passed_by_file_type"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_passed_by_size_limit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_passed_by_archive_limit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_passed_by_internal_error"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_passed_total"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_blocked_by_AV_settings"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_passed_by_AV_settings"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_blocked_by_URL_filter_category"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_blocked_by_URL_block_list"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_passed_by_URL_allow_list"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_http_passed_by_URL_filter_category"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_pid"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_proto"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_port"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_logical_port"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_max_avail_socket"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_socket_in_use_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_socket_in_use_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_socket_in_use_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_sess_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_sess_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_sess_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_auth_sess_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_auth_sess_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_auth_sess_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_accepted_sess"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_rejected_sess"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_auth_failures"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_ops_cvp_sess_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_ops_cvp_sess_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_ops_cvp_sess_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_ops_cvp_rej_sess"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_time_stamp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_is_alive"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_blocked_cnt"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_blocked_total"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_scanned_total"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_blocked_by_file_type"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_blocked_by_size_limit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_blocked_by_archive_limit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_blocked_by_internal_error"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_passed_cnt"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_passed_by_file_type"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_passed_by_size_limit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_passed_by_archive_limit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_passed_by_internal_error"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_passed_total"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_blocked_by_AV_settings"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ftp_passed_by_AV_settings"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_telnet_pid"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_telnet_proto"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_telnet_port"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_telnet_logical_port"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_telnet_max_avail_socket"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_telnet_socket_in_use_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_telnet_socket_in_use_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_telnet_socket_in_use_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_telnet_sess_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_telnet_sess_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_telnet_sess_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_telnet_auth_sess_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_telnet_auth_sess_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_telnet_auth_sess_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_telnet_accepted_sess"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_telnet_rejected_sess"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_telnet_auth_failures"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_telnet_time_stamp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_telnet_is_alive"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_rlogin_pid"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_rlogin_proto"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_rlogin_port"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_rlogin_logical_port"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_rlogin_max_avail_socket"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_rlogin_socket_in_use_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_rlogin_socket_in_use_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_rlogin_socket_in_use_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_rlogin_sess_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_rlogin_sess_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_rlogin_sess_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_rlogin_auth_sess_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_rlogin_auth_sess_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_rlogin_auth_sess_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_rlogin_accepted_sess"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_rlogin_rejected_sess"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_rlogin_auth_failures"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_rlogin_time_stamp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_rlogin_is_alive"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ufp_ops_ufp_sess_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ufp_ops_ufp_sess_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ufp_ops_ufp_sess_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ufp_ops_ufp_rej_sess"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ufp_time_stamp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_ufp_is_alive"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_pid"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_proto"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_port"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_logical_port"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_max_avail_socket"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_socket_in_use_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_socket_in_use_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_socket_in_use_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_sess_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_sess_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_sess_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_auth_sess_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_auth_sess_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_auth_sess_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_accepted_sess"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_rejected_sess"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_auth_failures"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_mail_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_mail_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_mail_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_outgoing_mail_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_outgoing_mail_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_outgoing_mail_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_max_mail_on_conn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_total_mails"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_time_stamp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_is_alive"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_blocked_cnt"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_blocked_total"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_scanned_total"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_blocked_by_file_type"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_blocked_by_size_limit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_blocked_by_archive_limit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_blocked_by_internal_error"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_passed_cnt"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_passed_by_file_type"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_passed_by_size_limit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_passed_by_archive_limit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_passed_by_internal_error"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_passed_total"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_blocked_by_AV_settings"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_smtp_passed_by_AV_settings"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_pid"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_proto"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_port"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_logical_port"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_max_avail_socket"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_socket_in_use_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_socket_in_use_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_socket_in_use_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_sess_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_sess_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_sess_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_auth_sess_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_auth_sess_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_auth_sess_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_accepted_sess"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_rejected_sess"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_auth_failures"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_mail_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_mail_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_mail_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_outgoing_mail_max"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_outgoing_mail_curr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_outgoing_mail_count"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_max_mail_on_conn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_total_mails"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_time_stamp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_is_alive"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_blocked_cnt"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_blocked_total"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_scanned_total"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_blocked_by_file_type"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_blocked_by_size_limit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_blocked_by_archive_limit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_blocked_by_internal_error"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_passed_cnt"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_passed_by_file_type"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_passed_by_size_limit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_passed_by_archive_limit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_passed_by_internal_error"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_passed_total"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_blocked_by_AV_settings"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_POP3_passed_by_AV_settings"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_total_blocked_by_av"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_total_blocked"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_total_scanned"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_total_blocked_by_file_type"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_total_blocked_by_size_limit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_total_blocked_by_archive_limit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_total_blocked_by_interal_error"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_total_passed_by_av"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_total_passed_by_file_type"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_total_passed_by_size_limit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_total_passed_by_archive_limit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_total_passed_by_interal_error"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_total_passed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_total_blocked_by_av_settings"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSS_total_passed_by_av_settings"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwConnectionsStatConnectionsTcp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwConnectionsStatConnectionsUdp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwConnectionsStatConnectionsIcmp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwConnectionsStatConnectionsOther"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwConnectionsStatConnections"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwConnectionsStatConnectionRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem64_block_size"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem64_requested_bytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem64_initial_allocated_bytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem64_initial_allocated_blocks"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem64_initial_allocated_pools"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem64_current_allocated_bytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem64_current_allocated_blocks"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem64_current_allocated_pools"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem64_maximum_bytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem64_maximum_pools"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem64_bytes_used"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem64_blocks_used"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem64_bytes_unused"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem64_blocks_unused"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem64_bytes_peak"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem64_blocks_peak"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem64_bytes_internal_use"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem64_number_of_items"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem64_alloc_operations"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem64_free_operations"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem64_failed_alloc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwHmem64_failed_free"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwModuleState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwFilterName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwFilterDate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwAccepted"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwRejected"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwDropped"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwLogged"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwMajor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwMinor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwProduct"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSICTrustState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwProdName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwVerMajor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwVerMinor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwKernelBuild"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwNetIfName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwNetIfIPAddr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwNetIfNetmask"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwNetIfFlags"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwNetIfPeerName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwNetIfRemoteIp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwNetIfTopology"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwNetIfProxyName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwNetIfSlaves"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwNetIfPorts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwNetIfIPV6Addr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwNetIfIPV6AddrLen"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwLSConnOverall"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwLSConnOverallDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwLSConnName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwLSConnState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwLSConnStateDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwLSConnSendRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwLocalLoggingDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwLocalLoggingStat"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwLocalLoggingWriteRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwLoggingHandlingRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwInstancesCPUInstanceName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwInstancesCPUUsage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwInstancesCPUTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwEvent"
+ }
+ ],
+ "status": "current"
+ },
+ "vpnProductsGroup": {
+ "name": "vpnProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.2",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvEncPackets"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvDecPackets"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvErrOut"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvErrIn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvErrIke"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvErrPolicy"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvCurrEspSAsIn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvTotalEspSAsIn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvCurrEspSAsOut"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvTotalEspSAsOut"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvCurrAhSAsIn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvTotalAhSAsIn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvCurrAhSAsOut"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvTotalAhSAsOut"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvMaxConncurEspSAsIn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvMaxConncurEspSAsOut"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvMaxConncurAhSAsIn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvMaxConncurAhSAsOut"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvSaDecrErr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvSaAuthErr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvSaReplayErr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvSaPolicyErr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvSaOtherErrIn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvSaOtherErrOut"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvSaUnknownSpiErr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIpsecUdpEspEncPkts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIpsecUdpEspDecPkts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIpsecAhEncPkts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIpsecAhDecPkts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIpsecEspEncPkts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIpsecEspDecPkts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIpsecDecomprBytesBefore"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIpsecDecomprBytesAfter"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIpsecDecomprOverhead"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIpsecDecomprPkts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIpsecDecomprErr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIpsecComprBytesBefore"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIpsecComprBytesAfter"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIpsecComprOverhead"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIpsecNonCompressibleBytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIpsecCompressiblePkts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIpsecNonCompressiblePkts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIpsecComprErrors"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIpsecEspEncBytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIpsecEspDecBytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvFwzEncapsEncPkts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvFwzEncapsDecPkts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvFwzEncPkts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvFwzDecPkts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvFwzEncapsEncErrs"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvFwzEncapsDecErrs"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvFwzEncErrs"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvFwzDecErrs"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvHwAccelVendor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvHwAccelStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvHwAccelDriverMajorVer"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvHwAccelDriverMinorVer"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvHwAccelEspEncPkts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvHwAccelEspDecPkts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvHwAccelEspEncBytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvHwAccelEspDecBytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvHwAccelAhEncPkts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvHwAccelAhDecPkts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvHwAccelAhEncBytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvHwAccelAhDecBytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIKECurrSAs"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIKECurrInitSAs"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIKECurrRespSAs"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIKETotalSAs"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIKETotalInitSAs"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIKETotalRespSAs"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIKETotalSAsAttempts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIKETotalSAsInitAttempts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIKETotalSAsRespAttempts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIKEMaxConncurSAs"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIKEMaxConncurInitSAs"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIKEMaxConncurRespSAs"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIKETotalFailuresInit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIKENoResp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIKETotalFailuresResp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIPsecNICsNum"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIPsecNICTotalDownLoadedSAs"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIPsecNICCurrDownLoadedSAs"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIPsecNICDecrBytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIPsecNICEncrBytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIPsecNICDecrPackets"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvIPsecNICEncrPackets"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvProdName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvVerMajor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpvVerMinor"
+ }
+ ],
+ "status": "current"
+ },
+ "fgProductsGroup": {
+ "name": "fgProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.3",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fgProdName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fgVerMajor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fgVerMinor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fgVersionString"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fgModuleKernelBuild"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fgStrPolicyName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fgInstallTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fgNumInterfaces"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fgIfName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fgPolicyName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fgRateLimitIn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fgRateLimitOut"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fgAvrRateIn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fgAvrRateOut"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fgRetransPcktsIn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fgRetransPcktsOut"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fgPendPcktsIn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fgPendPcktsOut"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fgPendBytesIn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fgPendBytesOut"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fgNumConnIn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fgNumConnOut"
+ }
+ ],
+ "status": "current"
+ },
+ "haProductsGroup": {
+ "name": "haProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.4",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haProdName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haInstalled"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haVerMajor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haVerMinor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haStarted"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haBlockState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haIdentifier"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haProtoVersion"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haWorkMode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haVersionSting"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haClusterXLFailover"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haStatCode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haStatShort"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haStatLong"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haServicePack"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haIfName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haIP"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haVerified"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haTrusted"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haShared"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haProblemIndex"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haProblemName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haProblemStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haProblemPriority"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haProblemVerified"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haProblemDescr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haClusterIpIfName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haClusterIpAddr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haClusterIpNetMask"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haClusterIpMemberNet"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haClusterIpMemberNetMask"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haClusterSyncName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haClusterSyncAddr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haClusterSyncNetMask"
+ }
+ ],
+ "status": "current"
+ },
+ "svnProductsGroup": {
+ "name": "svnProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.5",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnVersion"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnBuild"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "osName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "osMajorVer"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "osMinorVer"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "osBuildNum"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "osSPmajor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "osSPminor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "osVersionLevel"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "memTotalVirtual"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "memActiveVirtual"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "memTotalReal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "memActiveReal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "memFreeReal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "memSwapsSec"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "memDiskTransfers"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "procUsrTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "procSysTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "procIdleTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "procUsage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "procQueue"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "procInterrupts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "procNum"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "diskTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "diskQueue"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "diskPercent"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "diskFreeTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "diskFreeAvail"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "diskTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "memTotalVirtual64"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "memActiveVirtual64"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "memTotalReal64"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "memActiveReal64"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "memFreeReal64"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "memSwapsSec64"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "memDiskTransfers64"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "multiProcUserTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "multiProcSystemTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "multiProcIdleTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "multiProcUsage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "multiProcRunQueue"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "multiProcInterrupts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "multiDiskName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "multiDiskSize"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "multiDiskUsed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "multiDiskFreeTotalBytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "multiDiskFreeTotalPercent"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "multiDiskFreeAvailableBytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "multiDiskFreeAvailablePercent"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raidVolumeID"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raidVolumeType"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "numOfDisksOnRaid"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raidVolumeMaxLBA"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raidVolumeState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raidVolumeFlags"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raidVolumeSize"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raidDiskVolumeID"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raidDiskID"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raidDiskNumber"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raidDiskVendor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raidDiskProductID"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raidDiskRevision"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raidDiskMaxLBA"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raidDiskState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raidDiskFlags"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raidDiskSyncState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raidDiskSize"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "tempertureSensorName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "tempertureSensorValue"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "tempertureSensorUnit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "tempertureSensorType"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "tempertureSensorStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fanSpeedSensorName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fanSpeedSensorValue"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fanSpeedSensorUnit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fanSpeedSensorType"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fanSpeedSensorStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voltageSensorName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voltageSensorValue"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voltageSensorUnit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voltageSensorType"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voltageSensorStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "powerSupplyStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnApplianceSerialNumber"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnApplianceManufacturer"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnApplianceProductName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnApplianceSeriesString"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnRouteModDest"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnRouteModMask"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnRouteModIfIndex"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnRouteModGateway"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnRouteModIfName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnRouteModAction"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnLogDStat"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnUpdatesInfoBuild"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnUpdatesInfoStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnUpdatesInfoConnection"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnUpdatesInfoAvailablePackages"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnUpdatesInfoAvailableRecommended"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnUpdatesInfoAvailableHotfixes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "updatesInstalledName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "updatesInstalledType"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "updatesRecommendedName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "updatesRecommendedType"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "updatesRecommendedStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vdName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vdType"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ctxId"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnProdName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnProdVerMajor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnProdVerMinor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "routingDest"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "routingMask"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "routingGatweway"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "routingIntrfName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnSysTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnUTCTimeOffset"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnSysStartTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnSysUniqId"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnWebUIPort"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "arpTableSize"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "sysDescr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "sysObjectID"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointUTM_1450"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointUTM_11050"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointUTM_12050"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointUTM_1130"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointUTM_1270"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointUTM_1570"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointUTM_11070"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointUTM_12070"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointUTM_13070"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointPower_15070"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointPower_19070"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointPower_111000"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSmart_15"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSmart_125"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSmart_150"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSmart_1150"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointIP150"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointIP280"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointIP290"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointIP390"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointIP560"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointIP690"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointIP1280"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointIP2450"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointUNIVERGEUnifiedWall1000"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointUNIVERGEUnifiedWall2000"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointUNIVERGEUnifiedWall4000"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointUNIVERGEUnifiedWall100"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointDLP_19571"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointDLP_12571"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointIPS_12076"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointIPS_15076"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointIPS_19076"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint2200"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint4200"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint4400"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint4600"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint4800"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointTE250"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint12200"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint12400"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint12600"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointTE1000"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint13500"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint21400"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint21600"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint21700"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointVMware"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointOpenServer"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSmart_1205"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSmart_1210"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSmart_1225"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSmart_13050"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSmart_13150"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint13800"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint21800"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointTE250X"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointTE1000X"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointTE2000X"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointTE100X"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint23500"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint23800"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint15400"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint15600"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint3200"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint5200"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint5400"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint5600"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint5800"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint5900"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint3100"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint5100"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSmart_1405"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSmart_1410"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSmart_5050"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSmart_525"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSmart_5150"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint23900"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint6500"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint6800"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint16000T"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint26000"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSmart_625"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint16000"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint26000T"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint61000"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint64000"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint41000"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint44000"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint3600"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint3600T"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint6200B"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint6200P"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint6200T"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint6600"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint6900"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint16600HS"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint28600HS"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint6700"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint7000"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint16200"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint28000"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint6400"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPoint3800"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointMHO140"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointMHO170"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointMHO175"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "licensingID"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "licensingBladeGUIOrder"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "licensingBladeName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "licensingState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "licensingExpirationDate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "licensingImpact"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "licensingBladeActive"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "licensingTotalQuota"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "licensingUsedQuota"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "licensingAssetAccountId"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "licensingAssetPackageDescription"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "licensingAssetContainerCK"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "licensingAssetCKSignature"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "licensingAssetContainerSKU"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "licensingAssetSupportLevel"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "licensingAssetSupportExpiration"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "licensingAssetActivationStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnConnectivity"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnNetIfVsid"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnNetIfName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnNetIfAddress"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnNetIfMask"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnNetIfMTU"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnNetIfState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnNetIfMAC"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnNetIfDescription"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnNetIfOperState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnNetIfRXBytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnNetIfRXDrops"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnNetIfRXErrors"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnNetIfRXPackets"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnNetIfTXBytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnNetIfTXDrops"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnNetIfTXErrors"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnNetIfTXPackets"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsRoutingDest"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsRoutingMask"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsRoutingGateway"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsRoutingIntrfName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsRoutingVsId"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnStatCode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnStatShortDescr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnStatLongDescr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnServicePack"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSmart_6000_L"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSmart_6000_XL"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSmart_600_S"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSmart_600_M"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointTE2000XN"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointQLS250"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointQLS450"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointQLS650"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointQLS800"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointMLS200"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointMLS400"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSMB_1530"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSMB_1550"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSMB_1570"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSMB_1570R"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSMB_1590"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSMB_1600"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "checkPointSMB_1800"
+ }
+ ],
+ "status": "current"
+ },
+ "mngmtProductsGroup": {
+ "name": "mngmtProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.6",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mgProdName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mgVerMajor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mgVerMinor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mgBuildNumber"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mgActiveStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mgFwmIsAlive"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mgICAStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mgClientName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mgClientHost"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mgClientDbLock"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mgApplicationType"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mgMgmtHAJournals"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mgIsLicenseViolation"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mgLicenseViolationMsg"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mglsGWIP"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mglsGWState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mglsGWLastLoginTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mglsGWLogReceiveRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mgStatCode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mgStatShortDescr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mgStatLongDescr"
+ }
+ ],
+ "status": "current"
+ },
+ "wamProductsGroup": {
+ "name": "wamProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.7",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "wamAcceptReq"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "wamRejectReq"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "wamPolicyName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "wamPolicyUpdate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "wamUagHost"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "wamUagIp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "wamUagPort"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "wamUagNoQueries"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "wamUagLastQuery"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "wamOpenSessions"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "wamLastSession"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "wamProdName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "wamVerMajor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "wamVerMinor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "wamState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "wamName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "wamStatCode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "wamStatShortDescr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "wamStatLongDescr"
+ }
+ ],
+ "status": "current"
+ },
+ "dtpsProductsGroup": {
+ "name": "dtpsProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.8",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dtpsProdName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dtpsVerMajor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dtpsVerMinor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dtpsLicensedUsers"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dtpsConnectedUsers"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dtpsStatCode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dtpsStatShortDescr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dtpsStatLongDescr"
+ }
+ ],
+ "status": "current"
+ },
+ "lsProductsGroup": {
+ "name": "lsProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.9",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "lsProdName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "lsVerMajor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "lsVerMinor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "lsBuildNumber"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "lsFwmIsAlive"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "lsGWIP"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "lsGWState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "lsGWLastLoginTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "lsGWLogReceiveRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "lsStatCode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "lsStatShortDescr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "lsStatLongDescr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "lsClientName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "lsClientHost"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "lsClientDbLock"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "lsApplicationType"
+ }
+ ],
+ "status": "current"
+ },
+ "vsxProductsGroup": {
+ "name": "vsxProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.10",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxVsSupported"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxVsConfigured"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxVsInstalled"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxVsidConfigured"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxAllVSsConnsSum"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusVRId"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusVsName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusVsType"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusMainIP"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusPolicyName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusVsPolicyType"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusSicTrustState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusHAState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusVSWeight"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusMemoryUsageVSName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusMemoryUsage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusMemoryUsageVSMaxMem"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusInterfaceVSName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusInterfaceIfName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusInterfaceAdminState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusInterfaceOperState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusInterfaceRxBytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusInterfaceTxBytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusInterfaceOverallBytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusInterfaceRxErrors"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusInterfaceTxErrors"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxCountersVSId"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxCountersConnNum"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxCountersConnPeakNum"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxCountersConnTableLimit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxCountersPackets"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxCountersDroppedTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxCountersAcceptedTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxCountersRejectedTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxCountersBytesAcceptedTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxCountersBytesDroppedTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxCountersBytesRejectedTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxCountersLoggedTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxCountersIsDataValid"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxCountersDropVSID"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxCountersDropVsName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxCountersDropCount"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raExternalIpAddr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raUserState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raOfficeMode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raIkeOverTCP"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raUseUDPEncap"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raVisitorMode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raRouteTraffic"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raCommunity"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raTunnelEncAlgorithm"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raTunnelAuthMethod"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raLogonTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "tunnelPeerObjName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "tunnelState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "tunnelCommunity"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "tunnelNextHop"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "tunnelInterface"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "tunnelSourceIpAddr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "tunnelLinkPriority"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "tunnelProbState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "tunnelPeerType"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "tunnelType"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "permanentTunnelPeerObjName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "permanentTunnelState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "permanentTunnelCommunity"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "permanentTunnelNextHop"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "permanentTunnelInterface"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "permanentTunnelSourceIpAddr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "permanentTunnelLinkPriority"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "permanentTunnelProbState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "permanentTunnelPeerType"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxTunnelsVSidName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxS2SIpsecTunnelsCounter"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxVSStateChangedVSIdName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxVSStateChangedChangeOccurred"
+ }
+ ],
+ "status": "current"
+ },
+ "smartDefenseProductsGroup": {
+ "name": "smartDefenseProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.11",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asmSynatkSynAckTimeout"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asmSynatkSynAckReset"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asmSynatkModeChange"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asmSynatkCurrentMode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asmSynatkNumberofunAckedSyns"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "smallPMTUNumberOfAttacks"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "smallPMTUValueOfMinimalMTUsize"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "sequenceVerifierInvalidAck"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "sequenceVerifierInvalidSequence"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "sequenceVerifierInvalidretransmit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "numOfhostPortScan"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "numOfIpSweep"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "httpWorms"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "httpURLLengthViolation"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "httpHeaderLengthViolations"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "httpMaxHeaderReached"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "numOfHttpASCIIViolations"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "numOfHttpP2PHeaders"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "numOfCIFSworms"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "numOfCIFSNullSessions"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "numOfCIFSBlockedPopUps"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "numOfCIFSBlockedCommands"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "numOfCIFSPasswordLengthViolations"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "numOfP2POtherConAttempts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "numOfP2PKazaaConAttempts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "numOfP2PeMuleConAttempts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "numOfGnutellaConAttempts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "numOfP2PSkypeCon"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "numOfBitTorrentCon"
+ }
+ ],
+ "status": "current"
+ },
+ "gxProductsGroup": {
+ "name": "gxProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.12",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxProdName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxProdVersion"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxCreateSinceInstall"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxActContxt"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxDropPlicyCreate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxDropMalformedReqCreate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxDropMalformedRespCreate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxExpiredCreate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxBadCauseCreate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxSecondaryNsapiEntries"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxActv0v1PdnConns"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxTunnelApnsEntries"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxTunnelsEntries"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxDeleteSinceInstall"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxDropOutOfContxtDelete"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxDropMalformedReqDelete"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxDropMalformedRespDelete"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxExpiredDelete"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxBadCauseDelete"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxUpdateSinceInstall"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxDropOutOfContxtUpdate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxDropMalformedReqUpdate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxDropMalformedRespUpdate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxExpiredUpdate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxBadCauseUpdate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxEchoSinceInstall"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxVnspSinceInstall"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxDropPolicyEcho"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxDropMalformedReqEcho"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxDropMalformedRespEcho"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxExpiredEcho"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxDropVnsp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGtpPathEntries"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGpdu1MinAvgRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxDropOutOfContxtGpdu"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxDropAnti_spoofingGpdu"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxDropMs_MsGpdu"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxDropBadSeqGpdu"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxDropBadGpdu"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGpduExpiredTunnel"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxInitiateSinceInstall"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxDropInitiationReq"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxDropInitiationResp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxExpiredInitiateAct"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2CreateSessionSinceInstall"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2CreateBearerSinceInstall"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2ExpiredCreateSession"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2ExpiredCreateBearer"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DropMalformedCreateSessionReq"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DropMalformedCreateSessionResp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DropMalformedCreateBearerReq"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DropMalformedCreateBearerResp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DropPolicyCreateSession"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DropPolicyCreateBearer"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2ActPDN"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2ActDataBearers"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DeleteSessionSinceInstall"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DeleteBearerSinceInstall"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2ExpiredDeleteSession"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2ExpiredDeleteBearer"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DropMalformedDeleteSessionReq"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DropMalformedDeleteSessionResp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DropMalformedDeleteBearerReq"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DropMalformedDeleteBearerResp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DropPolicyDeleteSession"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DropPolicyDeleteBearer"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2UpdateBearerSinceInstall"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2ExpiredUpdateBearer"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2ModifyBearerSinceInstall"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2ExpiredModifyBearer"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DropMalformedUpdateBearerReq"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DropMalformedUpdateBearerResp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DropMalformedModifyBearerReq"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DropMalformedModifyBearerResp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DropPolicyUpdateBearer"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DropPolicyModifyBearer"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2EchoSinceInstall"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2VnspSinceInstall"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2ExpiredEcho"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DropMalformedEchoReq"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DropMalformedEchoResp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DropPolicyEcho"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2ModifyBearerCmdSinceInstall"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2ModifyBearerFailIndSinceInstall"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DeleteBearerCmdSinceInstall"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2DeleteBearerFailIndSinceInstall"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2BearerResourceCmdSinceInstall"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxGTPv2BearerResourceFailIndSinceInstall"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxProdVerMajor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxProdVerMinor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "gxBuild"
+ }
+ ],
+ "status": "current"
+ },
+ "aviProductsGroup": {
+ "name": "aviProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.13",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviEngineName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviEngineVer"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviEngineDate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviSignatureName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviSignatureVer"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviSignatureDate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviLastSigCheckTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviLastSigLocation"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviLastLicExp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviTopVirusesName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviTopVirusesCnt"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviTopEverVirusesName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviTopEverVirusesCnt"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviHTTPState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviHTTPLastVirusName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviHTTPLastVirusTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviHTTPTopVirusesName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviHTTPTopVirusesCnt"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviFTPState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviFTPLastVirusName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviFTPLastVirusTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviFTPTopVirusesName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviFTPTopVirusesCnt"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviSMTPState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviSMTPLastVirusName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviSMTPLastVirusTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviSMTPTopVirusesName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviSMTPTopVirusesCnt"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviPOP3State"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviPOP3LastVirusName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviPOP3LastVirusTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviPOP3TopVirusesName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviPOP3TopVirusesCnt"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviStatCode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviStatShortDescr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviStatLongDescr"
+ }
+ ],
+ "status": "current"
+ },
+ "eventiaAnalyzerProductsGroup": {
+ "name": "eventiaAnalyzerProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.14",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpsemdStatCode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpsemdStatShortDescr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpsemdStatLongDescr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpsemdProcAlive"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpsemdNewEventsHandled"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpsemdUpdatesHandled"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpsemdLastEventTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpsemdCurrentDBSize"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpsemdDBCapacity"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpsemdNumEvents"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpsemdDBDiskSpace"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpsemdCorrelationUnitIP"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpsemdCorrelationUnitLastRcvdTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpsemdCorrelationUnitNumEventsRcvd"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpsemdConnectionDuration"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpsemdDBIsFull"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpseadStatCode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpseadStatShortDescr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpseadStatLongDescr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpseadProcAlive"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpseadConnectedToSem"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpseadNumProcessedLogs"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpseadJobID"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpseadJobName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpseadJobState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpseadJobIsOnline"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpseadJobLogServer"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpseadJobDataType"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpseadConnectedToLogServer"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpseadNumAnalyzedLogs"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpseadFileName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpseadFileCurrentPosition"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpseadStateDescriptionCode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpseadStateDescription"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpseadNoFreeDiskSpace"
+ }
+ ],
+ "status": "current"
+ },
+ "ufProductsGroup": {
+ "name": "ufProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.15",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ufEngineName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ufEngineVer"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ufEngineDate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ufSignatureDate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ufSignatureVer"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ufLastSigCheckTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ufLastSigLocation"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ufLastLicExp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ufIsMonitor"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ufScannedCnt"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ufBlockedCnt"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ufTopBlockedCatName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ufTopBlockedCatCnt"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ufTopBlockedSiteName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ufTopBlockedSiteCnt"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ufTopBlockedUserName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ufTopBlockedUserCnt"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ufStatCode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ufStatShortDescr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ufStatLongDescr"
+ }
+ ],
+ "status": "current"
+ },
+ "msProductsGroup": {
+ "name": "msProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.16",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "msProductName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "msMajorVersion"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "msMinorVersion"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "msBuildNumber"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "msVersionStr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "msSpamNumScannedEmails"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "msSpamNumSpamEmails"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "msSpamNumHandledSpamEmails"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "msSpamControlsSpamEngine"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "msSpamControlsIpRepuatation"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "msSpamControlsSPF"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "msSpamControlsDomainKeys"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "msSpamControlsRDNS"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "msSpamControlsRBL"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "msExpirationDate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "msEngineVer"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "msEngineDate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "msStatCode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "msStatShortDescr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "msStatLongDescr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "msServicePack"
+ }
+ ],
+ "status": "current"
+ },
+ "voipProductsGroup": {
+ "name": "voipProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.17",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipProductName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipMajorVersion"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipMinorVersion"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipBuildNumber"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipVersionStr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipDOSSipNetworkReqInterval"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipDOSSipNetworkReqConfThreshold"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipDOSSipNetworkReqCurrentVal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipDOSSipNetworkRegInterval"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipDOSSipNetworkRegConfThreshold"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipDOSSipNetworkRegCurrentVal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipDOSSipNetworkCallInitInterval"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipDOSSipNetworkCallInitConfThreshold"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipDOSSipNetworkCallInitICurrentVal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipDOSSipRateLimitingTableIpAddress"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipDOSSipRateLimitingTableInterval"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipDOSSipRateLimitingTableConfThreshold"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipDOSSipRateLimitingTableNumDOSSipRequests"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipDOSSipRateLimitingTableNumTrustedRequests"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipDOSSipRateLimitingTableNumNonTrustedRequests"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipDOSSipRateLimitingTableNumRequestsfromServers"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipCACConcurrentCallsConfThreshold"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipCACConcurrentCallsCurrentVal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipStatCode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipStatShortDescr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipStatLongDescr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipServicePack"
+ }
+ ],
+ "status": "current"
+ },
+ "identityAwarenessProductsGroup": {
+ "name": "identityAwarenessProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.18",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessProductName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessAuthUsers"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessUnAuthUsers"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessAuthUsersKerberos"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessAuthMachKerberos"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessAuthUsersPass"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessAuthUsersADQuery"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessAuthMachADQuery"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessLoggedInAgent"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessLoggedInCaptivePortal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessLoggedInADQuery"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessAntiSpoffProtection"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessSuccUserLoginKerberos"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessSuccMachLoginKerberos"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessSuccUserLoginPass"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessSuccUserLoginADQuery"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessSuccMachLoginADQuery"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessUnSuccUserLoginKerberos"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessUnSuccMachLoginKerberos"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessUnSuccUserLoginPass"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessSuccUserLDAP"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessUnSuccUserLDAP"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessDataTrans"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessDistributedEnvTableGwName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessDistributedEnvTableDisconnections"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessDistributedEnvTableBruteForceAtt"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessDistributedEnvTableStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessDistributedEnvTableIsLocal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessADQueryStatusCurrStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessADQueryStatusDomainName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessADQueryStatusDomainIP"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessADQueryStatusEvents"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessRADIUSAccounting"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessIdentityCollectorActiveDirectory"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessIdentityCollectorCiscoISE"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessTerminalServer"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessRemoteAccess"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessIdentityWebAPI"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessStatusShortDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessStatusLongDesc"
+ }
+ ],
+ "status": "current"
+ },
+ "applicationControlProductsGroup": {
+ "name": "applicationControlProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.19",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "applicationControlSubscriptionStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "applicationControlSubscriptionExpDate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "applicationControlSubscriptionDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "applicationControlUpdateStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "applicationControlUpdateDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "applicationControlNextUpdate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "applicationControlVersion"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "applicationControlStatusCode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "applicationControlStatusShortDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "applicationControlStatusLongDesc"
+ }
+ ],
+ "status": "current"
+ },
+ "thresholdsProductsGroup": {
+ "name": "thresholdsProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.20",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdPolicy"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdStateDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdEnabled"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdActive"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdEventsSinceStartup"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdActiveEventName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdActiveEventCategory"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdActiveEventSeverity"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdActiveEventSubject"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdActiveEventSubjectValue"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdActiveEventActivationTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdActiveEventState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdDestinationName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdDestinationType"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdSendingState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdSendingStateDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdAlertCount"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdThresholdOID"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdErrorDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdErrorTime"
+ }
+ ],
+ "status": "current"
+ },
+ "advancedUrlFilteringProductsGroup": {
+ "name": "advancedUrlFilteringProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.21",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "advancedUrlFilteringSubscriptionStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "advancedUrlFilteringSubscriptionExpDate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "advancedUrlFilteringSubscriptionDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "advancedUrlFilteringUpdateStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "advancedUrlFilteringUpdateDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "advancedUrlFilteringNextUpdate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "advancedUrlFilteringVersion"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "advancedUrlFilteringRADStatusCode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "advancedUrlFilteringRADStatusDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "advancedUrlFilteringStatusCode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "advancedUrlFilteringStatusShortDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "advancedUrlFilteringStatusLongDesc"
+ }
+ ],
+ "status": "current"
+ },
+ "dlpProductsGroup": {
+ "name": "dlpProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.22",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "exchangeAgentName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "exchangeAgentStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "exchangeAgentTotalMsg"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "exchangeAgentTotalScannedMsg"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "exchangeAgentDroppedMsg"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "exchangeAgentUpTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "exchangeAgentTimeSinceLastMsg"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "exchangeAgentQueueLen"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "exchangeQueueLen"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "exchangeAgentAvgTimePerMsg"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "exchangeAgentAvgTimePerScannedMsg"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "exchangeAgentVersion"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "exchangeCPUUsage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "exchangeMemoryUsage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "exchangeAgentPolicyTimeStamp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpVersionString"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpLicenseStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpLdapStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpTotalScans"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpSMTPScans"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpSMTPIncidents"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpLastSMTPScan"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpNumQuarantined"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpQrntMsgsSize"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpSentEMails"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpExpiredEMails"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpDiscardEMails"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpPostfixQLen"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpPostfixErrors"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpPostfixQOldMsg"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpPostfixQMsgsSz"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpPostfixQFreeSp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpQrntFreeSpace"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpQrntStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpHttpScans"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpHttpIncidents"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpHttpLastScan"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpFtpScans"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpFtpIncidents"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpFtpLastScan"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpBypassStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpUserCheckClnts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpLastPolStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpStatusCode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpStatusShortDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "dlpStatusLongDesc"
+ }
+ ],
+ "status": "current"
+ },
+ "amwProductsGroup": {
+ "name": "amwProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.23",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "antiBotSubscriptionStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "antiBotSubscriptionExpDate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "antiBotSubscriptionDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "antiVirusSubscriptionStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "antiVirusSubscriptionExpDate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "antiVirusSubscriptionDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "antiSpamSubscriptionStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "antiSpamSubscriptionExpDate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "antiSpamSubscriptionDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "amwABUpdateStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "amwABUpdateDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "amwABNextUpdate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "amwABVersion"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "amwAVUpdateStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "amwAVUpdateDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "amwAVNextUpdate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "amwAVVersion"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "amwStatusCode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "amwStatusShortDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "amwStatusLongDesc"
+ }
+ ],
+ "status": "current"
+ },
+ "asgProductsGroup": {
+ "name": "asgProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.24",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgProductName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVer"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgKernelVer"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgBuildNum"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgMaximumBladesPerChassis"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgActiveBladesBitmask"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgInstalledBladesBitmask"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgInstalled"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSystemUp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgEvent"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgStatusCode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgStatShort"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgStatLong"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSecureXLStatusBitmask"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgAttachedBladesBitmask"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgThroughput"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgConnectionRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgPacketRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgConcurrConn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgAccelConnectionRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgNonAccelConnectionRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgAccelConcurrConn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgNonAccelConcurrConn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgLoad"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgAccelLoadAvg"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgAccelLoadMin"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgAccelLoadMax"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgInstancesLoadAvg"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgInstancesLoadMin"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgInstancesLoadMax"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVpnThroughput"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVpnConn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgNatConnRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgNatConn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVsxCpu1MinAvg"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgStatName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgAccelPath"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgMediumPath"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgFirewallPath"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgDropped"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgCountersBladeId"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgCountersThroughput"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgCountersConnRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgCountersPacketRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgCountersConcurrConnNum"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgCountersAccelLoadAverage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgCountersAccelLoadMin"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgCountersAccelLoadMax"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgCountersInstanceLoadAverage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgCountersInstanceLoadMin"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgCountersInstanceLoadMax"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgPeakCriteria"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgPeakValue"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgPeakTimeStamp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgPeakUnits"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgAcceptedBytesTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgDroppedBytesTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgRejectedTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6Throughput"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6ConnectionRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6PacketRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6ConcurrConn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6AccelConnectionRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6NonAccelConnectionRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6AccelConcurrConn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6NonAccelConcurrConn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6Load"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6AccelLoadAvg"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6AccelLoadMin"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6AccelLoadMax"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6InstancesLoadAvg"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6InstancesLoadMin"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6InstancesLoadMax"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6VpnThroughput"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6VpnConn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6NatConnRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6NatConn"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6VsxCpu1MinAvg"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6StatName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6AccelPath"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6MediumPath"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6FirewallPath"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6Dropped"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6CountersBladeId"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6CountersThroughput"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6CountersConnRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6CountersPacketRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6CountersConcurrConnNum"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6CountersAccelLoadAverage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6CountersAccelLoadMin"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6CountersAccelLoadMax"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6CountersInstanceLoadAverage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6CountersInstanceLoadMin"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6CountersInstanceLoadMax"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6PeakCriteria"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6PeakValue"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6PeakTimeStamp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6PeakUnits"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6AcceptedBytesTotalRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6DroppedBytesTotalRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6DroppedTotalRate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6RulebaseBladeId"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6RulebaseDroppedTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6RulebaseAcceptedTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6RulebaseRejectedTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6RulebaseBytesDroppedTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6RulebaseBytesAcceptedTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6RulebaseBytesRejectedTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSensorName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSensorLocation"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSensorCurrValue"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSensorMinValue"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSensorMaxValue"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSensorThreshold"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSensorUnit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSensorIdentity"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSensorStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgResourceName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgResourceLocation"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgResourceCurrValue"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgResourceThreshold"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgResourceUnit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgResourceTotalVal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgResourceTitle"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgProtocolName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgProtocolConns"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgProtocolTotalPkts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgProtocolTotalBytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgServiceName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgServiceConns"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgServiceTotalPkts"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgServiceTotalBytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgNetIfName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgNetIfIPv4Addr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgNetIfIPv6Addr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgNetIfMACAddr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgNetIfInfo"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgNetIfState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgNetIfSpeed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgNetIfMTU"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgNetIfDuplex"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgNetIfRx"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgNetIfTx"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgProblemName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgProblemStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgProblemPriority"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgProblemVerified"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgProblemDescr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgChassisMode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgChassisHAMode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSyncToActive"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSyncToStandby"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSyncExceptionsID"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSyncExceptionsSource"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSyncExceptionsSourceMask"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSyncExceptionsDestination"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSyncExceptionsDestinationMask"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSyncExceptionsIpProtocol"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSyncExceptionsSync"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSyncExceptionsDelay"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgChassisParamsID"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgChassisParamsStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgChassisParamsGrade"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgChassisParamsMaxGrade"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgChassisParamsUniqueIP"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSGMID"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSGMStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSGMProcess"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSGMPolicyTime"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgFactorName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgFactorValue"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgPriorityPortName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgPortPriority"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgCoreRowTitle"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade1"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade2"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade3"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade4"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade5"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade6"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade7"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade8"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade9"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade10"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade11"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade12"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade13"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade14"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade15"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade16"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade17"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade18"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade19"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade20"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade21"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade22"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade23"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade24"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade25"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade26"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade27"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade28"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade29"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade30"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade31"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade32"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade33"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade34"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade35"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade36"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade37"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade38"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade39"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade40"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade41"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade42"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade43"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade44"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade45"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade46"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade47"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "blade48"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVslsSgmRatio"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVslsSystemPrimaryChassis"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVslsVsName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVslsVsPrimaryChassis"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVslsVsActiveChassis"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVslsVsHealth"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVslsVsReason"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVslsVsChassis1InterfacesUp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVslsVsChassis1InterfacesTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVslsVsChassis1FwksUp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVslsVsChassis1FwksTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVslsVsChassis2InterfacesUp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVslsVsChassis2InterfacesTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVslsVsChassis2FwksUp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVslsVsChassis2FwksTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVslsVsChassis3InterfacesUp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVslsVsChassis3InterfacesTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVslsVsChassis3FwksUp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVslsVsChassis3FwksTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVslsVsChassis4InterfacesUp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVslsVsChassis4InterfacesTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVslsVsChassis4FwksUp"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVslsVsChassis4FwksTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXConnBladeID"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXIPver"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXConcurrentConns"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXPeakConns"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXConnLimit"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXConnectionsNumberPerSystem"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXMemBladeid"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXOverallMem"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXCoreUtilBladeid"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXCoreUtilCPUID"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXCoreUtilUsage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXRateBladeid"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXRateValue"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXPacketRatePerSystem"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXThroughputBladeid"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXThroughputValue"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXThroughputPerSystem"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXThroughputPerInterfaceBladeid"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXThroughputPerInterfaceName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXThroughputPerInterfaceValue"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXPerSystemThroughputPerInterfaceName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXPerSystemThroughputPerInterfaceValue"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXConnectionRateBladeid"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXConnectionRateValue"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXConnectionRatePerSystem"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXVirtualMemoryBladeid"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXVirtualMemoryValue"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgDiagnosticTestName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgDiagnosticLastRun"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgDiagnosticResult"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgDiagnosticComment"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgDiagSummary"
+ }
+ ],
+ "status": "current"
+ },
+ "teProductsGroup": {
+ "name": "teProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.25",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "teSubscriptionStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "teCloudSubscriptionStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "teSubscriptionExpDate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "teSubscriptionDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "teUpdateStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "teUpdateDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "teStatusCode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "teStatusShortDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "teStatusLongDesc"
+ }
+ ],
+ "status": "current"
+ },
+ "threatExtractionProductsGroup": {
+ "name": "threatExtractionProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.26",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "threatExtractionSubscriptionStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "threatExtractionSubscriptionExpDate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "threatExtractionSubscriptionDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "threatExtractionTotalScannedAttachments"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "threatExtractionCleanedAttachments"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "threatExtractionOriginalAttachmentsAccesses"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "threatExtractionStatusCode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "threatExtractionStatusShortDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "threatExtractionStatusLongDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "threatExtractionEngineVersion"
+ }
+ ],
+ "status": "current"
+ },
+ "sxlProductsGroup": {
+ "name": "sxlProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.27",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLConnsExisting"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLConnsAdded"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLConnsDeleted"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrRxMbits"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrTxMbits"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrInboundKbitsPerSecond"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrOutboundKbitsPerSecond"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrInboundpacketsPerSecond"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrOutboundpacketsPerSecond"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrConnectionsPerSecond"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrConcurrentConnections"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrPpak2FwNotificationsSuccessful"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrPpak2FwNotificationsFailure"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrFw2PpakNotificationsSuccessful"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrFw2PpakNotificationsFailure"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrDropsTotPackets"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrDropsPxlDecision"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrDropsFragmentationError"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrDropsF2FNotAllowed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrDropsHeavyLoadTcpViolation"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrDropsCorruptPacket"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrDropsHeavyLoadNewConnection"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrDropsClearPacketOnVPN"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrDropsEncryptionFailed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrDropsDropTemplate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrDropsDecryptionFailed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrDropsOutboundConnNotFound"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrDropsInterfaceDown"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrDropsClusterError"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrDropsXmlError"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrDropsAntiSpoofing"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrDropsSanityError"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrDropsQxlDecision"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrDropsLoopPrevention"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostRxMbits"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostTxMbits"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInboundKbitsPerSecond"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostOutboundKbitsPerSecond"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInboundpacketsPerSecond"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostOutboundpacketsPerSecond"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostConnectionsPerSecond"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostConcurrentConnections"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostPpak2FwNotificationsSuccessful"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostPpak2FwNotificationsFailure"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostFw2PpakNotificationsSuccessful"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostFw2PpakNotificationsFailure"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostDropsTotPackets"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostDropsPxlDecision"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostDropsFragmentationError"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostDropsF2FNotAllowed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostDropsHeavyLoadTcpViolation"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostDropsCorruptPacket"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostDropsHeavyLoadNewConnection"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostDropsClearPacketOnVPN"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostDropsEncryptionFailed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostDropsDropTemplate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostDropsDecryptionFailed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostDropsOutboundConnNotFound"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostDropsInterfaceDown"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostDropsClusterError"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostDropsXmlError"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostDropsAntiSpoofing"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostDropsSanityError"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostDropsQxlDecision"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostDropsLoopPrevention"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterface0Name"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterface1Name"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterface2Name"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterface3Name"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterface4Name"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterface5Name"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterface6Name"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterface7Name"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterface0Speed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterface1Speed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterface2Speed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterface3Speed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterface4Speed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterface5Speed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterface6Speed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterface7Speed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterface0State"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterface1State"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterface2State"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterface3State"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterface4State"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterface5State"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterface6State"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterface7State"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsRxMbits"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsTxMbits"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInboundKbitsPerSecond"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsOutboundKbitsPerSecond"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInboundpacketsPerSecond"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsOutboundpacketsPerSecond"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsConnectionsPerSecond"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsConcurrentConnections"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsPpak2FwNotificationsSuccessful"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsPpak2FwNotificationsFailure"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsFw2PpakNotificationsSuccessful"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsFw2PpakNotificationsFailure"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsDropsTotPackets"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsDropsPxlDecision"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsDropsFragmentationError"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsDropsF2FNotAllowed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsDropsHeavyLoadTcpViolation"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsDropsCorruptPacket"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsDropsHeavyLoadNewConnection"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsDropsClearPacketOnVPN"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsDropsEncryptionFailed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsDropsDropTemplate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsDropsDecryptionFailed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsDropsOutboundConnNotFound"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsDropsInterfaceDown"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsDropsClusterError"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsDropsXmlError"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsDropsAntiSpoofing"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsDropsSanityError"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsDropsQxlDecision"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsDropsLoopPrevention"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterface0Name"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterface1Name"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterface2Name"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterface3Name"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterface4Name"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterface5Name"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterface6Name"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterface7Name"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterface0Speed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterface1Speed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterface2Speed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterface3Speed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterface4Speed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterface5Speed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterface6Speed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterface7Speed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterface0State"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterface1State"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterface2State"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterface3State"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterface4State"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterface5State"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterface6State"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterface7State"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsSxlTotMemory"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsSxlUsedMemory"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsSxlFreeMemory"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsPacketPoolTotMemory"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsPacketPoolUsedMemory"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsPacketPoolFreeMemory"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu0Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu1Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu2Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu3Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu4Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu5Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu6Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu7Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu8Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu9Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu10Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu11Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu12Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu13Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu14Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu15Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu16Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu17Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu18Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu19Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu20Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu21Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu22Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu23Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu24Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu25Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu26Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu27Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu28Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu29Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu30Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpu31Usage"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsGeneralIndex"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsType"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsSerialNumber"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsSlotNumber"
+ }
+ ],
+ "status": "current"
+ },
+ "vsecControllerProductsGroup": {
+ "name": "vsecControllerProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.28",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsecVsecStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsecNumberOfDisconnectedDataCenters"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsecTotalNumberOfDataCenters"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsecTotalNumberOfImportedDataCenterObjects"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsecTotalNumberOfGwWithDataCenterObjects"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsecDataCenterName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsecDataCenterType"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsecConnectionStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsecNumberOfImportedObjects"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsecNumberOfAutoUpdate"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsecGatewayName"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsecGatewayIP"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsecGatewayVersion"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsecGatewayUpdateSucceeded"
+ }
+ ],
+ "status": "current"
+ },
+ "ipsProductsGroup": {
+ "name": "ipsProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.29",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ipsStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ipsUpdateStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ipsUpdateDescription"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ipsNextUpdateDescription"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ipsDBVersion"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ipsState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ipsStateShortDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ipsStateLongDesc"
+ }
+ ],
+ "status": "current"
+ },
+ "httpsInspectionProductsGroup": {
+ "name": "httpsInspectionProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.30",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "httpsInspectionStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "httpsInspectionStatusDescription"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "hsmEnabled"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "hsmEnabledDescription"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "hsmPartitionAccess"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "hsmPartitionAccessDescription"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "outboundStatus"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "outboundStatusDescription"
+ }
+ ],
+ "status": "current"
+ },
+ "mhoProductsGroup": {
+ "name": "mhoProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.31",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxPortLabel"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxUcast"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxMcast"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBcast"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxErr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxFrames"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxFcsErr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoTxPortLabel"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoTxUcast"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoTxMcast"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoTxBcast"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoTxErr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoTxFrames"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoTxBytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuffPortLabel"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuff0Frames"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuff0Octet"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuff0Discard"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuff1Frames"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuff1Octet"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuff1Discard"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuff2Frames"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuff2Octet"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuff2Discard"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuff3Frames"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuff3Octet"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuff3Discard"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuff4Frames"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuff4Octet"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuff4Discard"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuff5Frames"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuff5Octet"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuff5Discard"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuff6Frames"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuff6Octet"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuff6Discard"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuff7Frames"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuff7Octet"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuff7Discard"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoStatePortLabel"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoStateLinkState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoStateAdminState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoStateSpeed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoSummaryPortLabel"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoSummaryLinkState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoSummaryAdminState"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoSummarySpeed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoSummaryRxFcsErr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoSummaryRxErr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoSummaryRxFrames"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoSummaryRxBytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoSummaryTxErr"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoSummaryTxFrames"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoSummaryTxBytes"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoACLsUsed"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoACLsTotal"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoACLsAvailable"
+ }
+ ],
+ "status": "current"
+ },
+ "zphProductsGroup": {
+ "name": "zphProductsGroup",
+ "oid": "1.3.6.1.4.1.2620.2.2.32",
+ "class": "objectgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "zphStatusCode"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "zphStatusShortDesc"
+ },
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "zphStatusLongDesc"
+ }
+ ],
+ "status": "current"
+ },
+ "fwNotifications": {
+ "name": "fwNotifications",
+ "oid": "1.3.6.1.4.1.2620.2.3.1",
+ "class": "notificationgroup",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwTrap"
+ }
+ ],
+ "status": "current"
+ },
+ "mhoPortsStatus": {
+ "name": "mhoPortsStatus",
+ "oid": "1.3.6.1.4.1.2620.1.55.1",
+ "class": "objectidentity"
+ },
+ "mhoAcls": {
+ "name": "mhoAcls",
+ "oid": "1.3.6.1.4.1.2620.1.55.2",
+ "class": "objectidentity"
+ },
+ "mhoRxTable": {
+ "name": "mhoRxTable",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.1",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mhoTxTable": {
+ "name": "mhoTxTable",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.2",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mhoRxBuffTable": {
+ "name": "mhoRxBuffTable",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mhoStateTable": {
+ "name": "mhoStateTable",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.4",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mhoSummaryTable": {
+ "name": "mhoSummaryTable",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.5",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mhoRxEntry": {
+ "name": "mhoRxEntry",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.1.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxPortIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "mhoTxEntry": {
+ "name": "mhoTxEntry",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.2.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoTxPortIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "mhoRxBuffEntry": {
+ "name": "mhoRxBuffEntry",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoRxBuffPortIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "mhoStateEntry": {
+ "name": "mhoStateEntry",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.4.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoStatePortIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "mhoSummaryEntry": {
+ "name": "mhoSummaryEntry",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.5.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mhoSummaryPortIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "mhoRxPortIndex": {
+ "name": "mhoRxPortIndex",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.1.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mhoRxPortLabel": {
+ "name": "mhoRxPortLabel",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.1.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxUcast": {
+ "name": "mhoRxUcast",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.1.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxMcast": {
+ "name": "mhoRxMcast",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.1.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBcast": {
+ "name": "mhoRxBcast",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.1.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxErr": {
+ "name": "mhoRxErr",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.1.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxFrames": {
+ "name": "mhoRxFrames",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.1.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBytes": {
+ "name": "mhoRxBytes",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.1.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxFcsErr": {
+ "name": "mhoRxFcsErr",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.1.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoTxPortIndex": {
+ "name": "mhoTxPortIndex",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.2.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mhoTxPortLabel": {
+ "name": "mhoTxPortLabel",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.2.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoTxUcast": {
+ "name": "mhoTxUcast",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.2.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoTxMcast": {
+ "name": "mhoTxMcast",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.2.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoTxBcast": {
+ "name": "mhoTxBcast",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.2.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoTxErr": {
+ "name": "mhoTxErr",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.2.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoTxFrames": {
+ "name": "mhoTxFrames",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.2.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoTxBytes": {
+ "name": "mhoTxBytes",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.2.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuffPortIndex": {
+ "name": "mhoRxBuffPortIndex",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mhoRxBuffPortLabel": {
+ "name": "mhoRxBuffPortLabel",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuff0Frames": {
+ "name": "mhoRxBuff0Frames",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuff0Octet": {
+ "name": "mhoRxBuff0Octet",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuff0Discard": {
+ "name": "mhoRxBuff0Discard",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuff1Frames": {
+ "name": "mhoRxBuff1Frames",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuff1Octet": {
+ "name": "mhoRxBuff1Octet",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuff1Discard": {
+ "name": "mhoRxBuff1Discard",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuff2Frames": {
+ "name": "mhoRxBuff2Frames",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuff2Octet": {
+ "name": "mhoRxBuff2Octet",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuff2Discard": {
+ "name": "mhoRxBuff2Discard",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.11",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuff3Frames": {
+ "name": "mhoRxBuff3Frames",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.12",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuff3Octet": {
+ "name": "mhoRxBuff3Octet",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.13",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuff3Discard": {
+ "name": "mhoRxBuff3Discard",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.14",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuff4Frames": {
+ "name": "mhoRxBuff4Frames",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.15",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuff4Octet": {
+ "name": "mhoRxBuff4Octet",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.16",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuff4Discard": {
+ "name": "mhoRxBuff4Discard",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.17",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuff5Frames": {
+ "name": "mhoRxBuff5Frames",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.18",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuff5Octet": {
+ "name": "mhoRxBuff5Octet",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.19",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuff5Discard": {
+ "name": "mhoRxBuff5Discard",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.20",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuff6Frames": {
+ "name": "mhoRxBuff6Frames",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.21",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuff6Octet": {
+ "name": "mhoRxBuff6Octet",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.22",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuff6Discard": {
+ "name": "mhoRxBuff6Discard",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.23",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuff7Frames": {
+ "name": "mhoRxBuff7Frames",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.24",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuff7Octet": {
+ "name": "mhoRxBuff7Octet",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.25",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoRxBuff7Discard": {
+ "name": "mhoRxBuff7Discard",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.3.1.26",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoStatePortIndex": {
+ "name": "mhoStatePortIndex",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.4.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mhoStatePortLabel": {
+ "name": "mhoStatePortLabel",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.4.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoStateLinkState": {
+ "name": "mhoStateLinkState",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.4.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoStateAdminState": {
+ "name": "mhoStateAdminState",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.4.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoStateSpeed": {
+ "name": "mhoStateSpeed",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.4.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoSummaryPortIndex": {
+ "name": "mhoSummaryPortIndex",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.5.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mhoSummaryPortLabel": {
+ "name": "mhoSummaryPortLabel",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.5.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoSummaryLinkState": {
+ "name": "mhoSummaryLinkState",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.5.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoSummaryAdminState": {
+ "name": "mhoSummaryAdminState",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.5.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoSummarySpeed": {
+ "name": "mhoSummarySpeed",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.5.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoSummaryRxFcsErr": {
+ "name": "mhoSummaryRxFcsErr",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.5.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoSummaryRxErr": {
+ "name": "mhoSummaryRxErr",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.5.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoSummaryRxFrames": {
+ "name": "mhoSummaryRxFrames",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.5.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoSummaryRxBytes": {
+ "name": "mhoSummaryRxBytes",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.5.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoSummaryTxErr": {
+ "name": "mhoSummaryTxErr",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.5.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoSummaryTxFrames": {
+ "name": "mhoSummaryTxFrames",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.5.1.11",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoSummaryTxBytes": {
+ "name": "mhoSummaryTxBytes",
+ "oid": "1.3.6.1.4.1.2620.1.55.1.5.1.12",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoACLsUsed": {
+ "name": "mhoACLsUsed",
+ "oid": "1.3.6.1.4.1.2620.1.55.2.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoACLsTotal": {
+ "name": "mhoACLsTotal",
+ "oid": "1.3.6.1.4.1.2620.1.55.2.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mhoACLsAvailable": {
+ "name": "mhoACLsAvailable",
+ "oid": "1.3.6.1.4.1.2620.1.55.2.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ipsStatus": {
+ "name": "ipsStatus",
+ "oid": "1.3.6.1.4.1.2620.1.53.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ipsUpdateStatusInfo": {
+ "name": "ipsUpdateStatusInfo",
+ "oid": "1.3.6.1.4.1.2620.1.53.11",
+ "class": "objectidentity"
+ },
+ "ipsUpdateStatus": {
+ "name": "ipsUpdateStatus",
+ "oid": "1.3.6.1.4.1.2620.1.53.11.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ipsUpdateDescription": {
+ "name": "ipsUpdateDescription",
+ "oid": "1.3.6.1.4.1.2620.1.53.11.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ipsNextUpdateDescription": {
+ "name": "ipsNextUpdateDescription",
+ "oid": "1.3.6.1.4.1.2620.1.53.11.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ipsDBVersion": {
+ "name": "ipsDBVersion",
+ "oid": "1.3.6.1.4.1.2620.1.53.11.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ipsState": {
+ "name": "ipsState",
+ "oid": "1.3.6.1.4.1.2620.1.53.101",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ipsStateShortDesc": {
+ "name": "ipsStateShortDesc",
+ "oid": "1.3.6.1.4.1.2620.1.53.102",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ipsStateLongDesc": {
+ "name": "ipsStateLongDesc",
+ "oid": "1.3.6.1.4.1.2620.1.53.103",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "httpsInspectionStatus": {
+ "name": "httpsInspectionStatus",
+ "oid": "1.3.6.1.4.1.2620.1.54.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "httpsInspectionStatusDescription": {
+ "name": "httpsInspectionStatusDescription",
+ "oid": "1.3.6.1.4.1.2620.1.54.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "hsmStatus": {
+ "name": "hsmStatus",
+ "oid": "1.3.6.1.4.1.2620.1.54.3",
+ "class": "objectidentity"
+ },
+ "hsmEnabled": {
+ "name": "hsmEnabled",
+ "oid": "1.3.6.1.4.1.2620.1.54.3.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "hsmEnabledDescription": {
+ "name": "hsmEnabledDescription",
+ "oid": "1.3.6.1.4.1.2620.1.54.3.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "hsmPartitionAccess": {
+ "name": "hsmPartitionAccess",
+ "oid": "1.3.6.1.4.1.2620.1.54.3.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "hsmPartitionAccessDescription": {
+ "name": "hsmPartitionAccessDescription",
+ "oid": "1.3.6.1.4.1.2620.1.54.3.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "outboundStatus": {
+ "name": "outboundStatus",
+ "oid": "1.3.6.1.4.1.2620.1.54.3.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "outboundStatusDescription": {
+ "name": "outboundStatusDescription",
+ "oid": "1.3.6.1.4.1.2620.1.54.3.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsecVsecStatus": {
+ "name": "vsecVsecStatus",
+ "oid": "1.3.6.1.4.1.2620.1.52.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsecNumberOfDisconnectedDataCenters": {
+ "name": "vsecNumberOfDisconnectedDataCenters",
+ "oid": "1.3.6.1.4.1.2620.1.52.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsecTotalNumberOfDataCenters": {
+ "name": "vsecTotalNumberOfDataCenters",
+ "oid": "1.3.6.1.4.1.2620.1.52.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsecTotalNumberOfImportedDataCenterObjects": {
+ "name": "vsecTotalNumberOfImportedDataCenterObjects",
+ "oid": "1.3.6.1.4.1.2620.1.52.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsecTotalNumberOfGwWithDataCenterObjects": {
+ "name": "vsecTotalNumberOfGwWithDataCenterObjects",
+ "oid": "1.3.6.1.4.1.2620.1.52.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsecDataCenterTable": {
+ "name": "vsecDataCenterTable",
+ "oid": "1.3.6.1.4.1.2620.1.52.6",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "vsecDataCenterEntry": {
+ "name": "vsecDataCenterEntry",
+ "oid": "1.3.6.1.4.1.2620.1.52.6.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsecDataCenterIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "vsecDataCenterIndex": {
+ "name": "vsecDataCenterIndex",
+ "oid": "1.3.6.1.4.1.2620.1.52.6.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "vsecDataCenterName": {
+ "name": "vsecDataCenterName",
+ "oid": "1.3.6.1.4.1.2620.1.52.6.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsecDataCenterType": {
+ "name": "vsecDataCenterType",
+ "oid": "1.3.6.1.4.1.2620.1.52.6.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsecConnectionStatus": {
+ "name": "vsecConnectionStatus",
+ "oid": "1.3.6.1.4.1.2620.1.52.6.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsecNumberOfImportedObjects": {
+ "name": "vsecNumberOfImportedObjects",
+ "oid": "1.3.6.1.4.1.2620.1.52.6.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsecNumberOfAutoUpdate": {
+ "name": "vsecNumberOfAutoUpdate",
+ "oid": "1.3.6.1.4.1.2620.1.52.6.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsecEnforcingGatewaysTable": {
+ "name": "vsecEnforcingGatewaysTable",
+ "oid": "1.3.6.1.4.1.2620.1.52.7",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "vsecEnforcingGatewayEntry": {
+ "name": "vsecEnforcingGatewayEntry",
+ "oid": "1.3.6.1.4.1.2620.1.52.7.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsecGatewayIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "vsecGatewayIndex": {
+ "name": "vsecGatewayIndex",
+ "oid": "1.3.6.1.4.1.2620.1.52.7.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "vsecGatewayName": {
+ "name": "vsecGatewayName",
+ "oid": "1.3.6.1.4.1.2620.1.52.7.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsecGatewayIP": {
+ "name": "vsecGatewayIP",
+ "oid": "1.3.6.1.4.1.2620.1.52.7.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsecGatewayVersion": {
+ "name": "vsecGatewayVersion",
+ "oid": "1.3.6.1.4.1.2620.1.52.7.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsecGatewayUpdateSucceeded": {
+ "name": "vsecGatewayUpdateSucceeded",
+ "oid": "1.3.6.1.4.1.2620.1.52.7.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxVsSupported": {
+ "name": "vsxVsSupported",
+ "oid": "1.3.6.1.4.1.2620.1.16.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxVsConfigured": {
+ "name": "vsxVsConfigured",
+ "oid": "1.3.6.1.4.1.2620.1.16.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxVsInstalled": {
+ "name": "vsxVsInstalled",
+ "oid": "1.3.6.1.4.1.2620.1.16.13",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxVsidConfigured": {
+ "name": "vsxVsidConfigured",
+ "oid": "1.3.6.1.4.1.2620.1.16.14",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxAllVSsConnsSum": {
+ "name": "vsxAllVSsConnsSum",
+ "oid": "1.3.6.1.4.1.2620.1.16.15",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxStatus": {
+ "name": "vsxStatus",
+ "oid": "1.3.6.1.4.1.2620.1.16.22",
+ "class": "objectidentity"
+ },
+ "vsxStatusTable": {
+ "name": "vsxStatusTable",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.1",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "vsxStatusEntry": {
+ "name": "vsxStatusEntry",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.1.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusVSId",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "vsxStatusVSId": {
+ "name": "vsxStatusVSId",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.1.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type",
+ "constraints": {
+ "range": [
+ {
+ "min": 0,
+ "max": 250
+ }
+ ]
+ }
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "vsxStatusVRId": {
+ "name": "vsxStatusVRId",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.1.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type",
+ "constraints": {
+ "range": [
+ {
+ "min": 0,
+ "max": 250
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxStatusVsName": {
+ "name": "vsxStatusVsName",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.1.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxStatusVsType": {
+ "name": "vsxStatusVsType",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.1.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxStatusMainIP": {
+ "name": "vsxStatusMainIP",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.1.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxStatusPolicyName": {
+ "name": "vsxStatusPolicyName",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.1.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxStatusVsPolicyType": {
+ "name": "vsxStatusVsPolicyType",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.1.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxStatusSicTrustState": {
+ "name": "vsxStatusSicTrustState",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.1.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxStatusHAState": {
+ "name": "vsxStatusHAState",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.1.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxStatusVSWeight": {
+ "name": "vsxStatusVSWeight",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.1.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxStatusMemoryUsageTable": {
+ "name": "vsxStatusMemoryUsageTable",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.3",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "vsxStatusMemoryUsageEntry": {
+ "name": "vsxStatusMemoryUsageEntry",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.3.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusMemoryUsageVSId",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "vsxStatusMemoryUsageVSId": {
+ "name": "vsxStatusMemoryUsageVSId",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.3.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type",
+ "constraints": {
+ "range": [
+ {
+ "min": 0,
+ "max": 250
+ }
+ ]
+ }
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "vsxStatusMemoryUsageVSName": {
+ "name": "vsxStatusMemoryUsageVSName",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.3.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxStatusMemoryUsage": {
+ "name": "vsxStatusMemoryUsage",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.3.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxStatusMemoryUsageVSMaxMem": {
+ "name": "vsxStatusMemoryUsageVSMaxMem",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.3.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxStatusInterfacesTable": {
+ "name": "vsxStatusInterfacesTable",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.5",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "vsxStatusInterfacesEntry": {
+ "name": "vsxStatusInterfacesEntry",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.5.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusInterfaceVSID",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "vsxStatusInterfaceVSID": {
+ "name": "vsxStatusInterfaceVSID",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.5.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type",
+ "constraints": {
+ "range": [
+ {
+ "min": 0,
+ "max": 250
+ }
+ ]
+ }
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "vsxStatusInterfaceVSName": {
+ "name": "vsxStatusInterfaceVSName",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.5.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxStatusInterfaceIfName": {
+ "name": "vsxStatusInterfaceIfName",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.5.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxStatusInterfaceAdminState": {
+ "name": "vsxStatusInterfaceAdminState",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.5.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "INTEGER",
+ "class": "type",
+ "constraints": {
+ "enumeration": {
+ "up": 1,
+ "down": 2
+ }
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxStatusInterfaceOperState": {
+ "name": "vsxStatusInterfaceOperState",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.5.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "INTEGER",
+ "class": "type",
+ "constraints": {
+ "enumeration": {
+ "up": 1,
+ "down": 2
+ }
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxStatusInterfaceRxBytes": {
+ "name": "vsxStatusInterfaceRxBytes",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.5.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxStatusInterfaceTxBytes": {
+ "name": "vsxStatusInterfaceTxBytes",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.5.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxStatusInterfaceOverallBytes": {
+ "name": "vsxStatusInterfaceOverallBytes",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.5.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxStatusInterfaceRxErrors": {
+ "name": "vsxStatusInterfaceRxErrors",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.5.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxStatusInterfaceTxErrors": {
+ "name": "vsxStatusInterfaceTxErrors",
+ "oid": "1.3.6.1.4.1.2620.1.16.22.5.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxCounters": {
+ "name": "vsxCounters",
+ "oid": "1.3.6.1.4.1.2620.1.16.23",
+ "class": "objectidentity"
+ },
+ "vsxCountersTable": {
+ "name": "vsxCountersTable",
+ "oid": "1.3.6.1.4.1.2620.1.16.23.1",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "vsxCountersEntry": {
+ "name": "vsxCountersEntry",
+ "oid": "1.3.6.1.4.1.2620.1.16.23.1.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusVSId",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "vsxCountersVSId": {
+ "name": "vsxCountersVSId",
+ "oid": "1.3.6.1.4.1.2620.1.16.23.1.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type",
+ "constraints": {
+ "range": [
+ {
+ "min": 0,
+ "max": 250
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxCountersConnNum": {
+ "name": "vsxCountersConnNum",
+ "oid": "1.3.6.1.4.1.2620.1.16.23.1.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxCountersConnPeakNum": {
+ "name": "vsxCountersConnPeakNum",
+ "oid": "1.3.6.1.4.1.2620.1.16.23.1.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxCountersConnTableLimit": {
+ "name": "vsxCountersConnTableLimit",
+ "oid": "1.3.6.1.4.1.2620.1.16.23.1.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxCountersPackets": {
+ "name": "vsxCountersPackets",
+ "oid": "1.3.6.1.4.1.2620.1.16.23.1.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxS2SIpsecTunnels": {
+ "name": "vsxS2SIpsecTunnels",
+ "oid": "1.3.6.1.4.1.2620.1.16.31",
+ "class": "objectidentity"
+ },
+ "vsxS2SIpsecTunnelsTable": {
+ "name": "vsxS2SIpsecTunnelsTable",
+ "oid": "1.3.6.1.4.1.2620.1.16.31.1",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "vsxS2SIpsecTunnelsEntry": {
+ "name": "vsxS2SIpsecTunnelsEntry",
+ "oid": "1.3.6.1.4.1.2620.1.16.31.1.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusVSId",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "vsxTunnelsVSidName": {
+ "name": "vsxTunnelsVSidName",
+ "oid": "1.3.6.1.4.1.2620.1.16.31.1.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxS2SIpsecTunnelsCounter": {
+ "name": "vsxS2SIpsecTunnelsCounter",
+ "oid": "1.3.6.1.4.1.2620.1.16.31.1.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxVSStateChanged": {
+ "name": "vsxVSStateChanged",
+ "oid": "1.3.6.1.4.1.2620.1.16.32",
+ "class": "objectidentity"
+ },
+ "vsxVSStateChangedTable": {
+ "name": "vsxVSStateChangedTable",
+ "oid": "1.3.6.1.4.1.2620.1.16.32.1",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "vsxVSStateChangedEntry": {
+ "name": "vsxVSStateChangedEntry",
+ "oid": "1.3.6.1.4.1.2620.1.16.32.1.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusVSId",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "vsxVSStateChangedVSIdName": {
+ "name": "vsxVSStateChangedVSIdName",
+ "oid": "1.3.6.1.4.1.2620.1.16.32.1.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxVSStateChangedChangeOccurred": {
+ "name": "vsxVSStateChangedChangeOccurred",
+ "oid": "1.3.6.1.4.1.2620.1.16.32.1.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxCountersDroppedTotal": {
+ "name": "vsxCountersDroppedTotal",
+ "oid": "1.3.6.1.4.1.2620.1.16.23.1.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxCountersAcceptedTotal": {
+ "name": "vsxCountersAcceptedTotal",
+ "oid": "1.3.6.1.4.1.2620.1.16.23.1.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxCountersRejectedTotal": {
+ "name": "vsxCountersRejectedTotal",
+ "oid": "1.3.6.1.4.1.2620.1.16.23.1.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxCountersBytesAcceptedTotal": {
+ "name": "vsxCountersBytesAcceptedTotal",
+ "oid": "1.3.6.1.4.1.2620.1.16.23.1.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxCountersBytesDroppedTotal": {
+ "name": "vsxCountersBytesDroppedTotal",
+ "oid": "1.3.6.1.4.1.2620.1.16.23.1.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxCountersBytesRejectedTotal": {
+ "name": "vsxCountersBytesRejectedTotal",
+ "oid": "1.3.6.1.4.1.2620.1.16.23.1.1.11",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxCountersLoggedTotal": {
+ "name": "vsxCountersLoggedTotal",
+ "oid": "1.3.6.1.4.1.2620.1.16.23.1.1.12",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxCountersIsDataValid": {
+ "name": "vsxCountersIsDataValid",
+ "oid": "1.3.6.1.4.1.2620.1.16.23.1.1.13",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxCountersDropTable": {
+ "name": "vsxCountersDropTable",
+ "oid": "1.3.6.1.4.1.2620.1.16.23.2",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "vsxCountersDropEntry": {
+ "name": "vsxCountersDropEntry",
+ "oid": "1.3.6.1.4.1.2620.1.16.23.2.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsxStatusVSId",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "vsxCountersDropVSID": {
+ "name": "vsxCountersDropVSID",
+ "oid": "1.3.6.1.4.1.2620.1.16.23.2.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type",
+ "constraints": {
+ "range": [
+ {
+ "min": 0,
+ "max": 250
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxCountersDropVsName": {
+ "name": "vsxCountersDropVsName",
+ "oid": "1.3.6.1.4.1.2620.1.16.23.2.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsxCountersDropCount": {
+ "name": "vsxCountersDropCount",
+ "oid": "1.3.6.1.4.1.2620.1.16.23.2.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raUsersTable": {
+ "name": "raUsersTable",
+ "oid": "1.3.6.1.4.1.2620.500.9000",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "raUsersEntry": {
+ "name": "raUsersEntry",
+ "oid": "1.3.6.1.4.1.2620.500.9000.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raInternalIpAddr",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "raInternalIpAddr": {
+ "name": "raInternalIpAddr",
+ "oid": "1.3.6.1.4.1.2620.500.9000.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "raExternalIpAddr": {
+ "name": "raExternalIpAddr",
+ "oid": "1.3.6.1.4.1.2620.500.9000.1.19",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raUserState": {
+ "name": "raUserState",
+ "oid": "1.3.6.1.4.1.2620.500.9000.1.20",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-write",
+ "status": "current"
+ },
+ "raOfficeMode": {
+ "name": "raOfficeMode",
+ "oid": "1.3.6.1.4.1.2620.500.9000.1.21",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raIkeOverTCP": {
+ "name": "raIkeOverTCP",
+ "oid": "1.3.6.1.4.1.2620.500.9000.1.22",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raUseUDPEncap": {
+ "name": "raUseUDPEncap",
+ "oid": "1.3.6.1.4.1.2620.500.9000.1.23",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raVisitorMode": {
+ "name": "raVisitorMode",
+ "oid": "1.3.6.1.4.1.2620.500.9000.1.24",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raRouteTraffic": {
+ "name": "raRouteTraffic",
+ "oid": "1.3.6.1.4.1.2620.500.9000.1.25",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raCommunity": {
+ "name": "raCommunity",
+ "oid": "1.3.6.1.4.1.2620.500.9000.1.26",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raTunnelEncAlgorithm": {
+ "name": "raTunnelEncAlgorithm",
+ "oid": "1.3.6.1.4.1.2620.500.9000.1.27",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "INTEGER",
+ "class": "type",
+ "constraints": {
+ "enumeration": {
+ "espDES": 1,
+ "esp3DES": 2,
+ "espCAST": 5,
+ "esp3IDEA": 7,
+ "espNULL": 9,
+ "espAES128": 129,
+ "espAES256": 130
+ }
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raTunnelAuthMethod": {
+ "name": "raTunnelAuthMethod",
+ "oid": "1.3.6.1.4.1.2620.500.9000.1.28",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "INTEGER",
+ "class": "type",
+ "constraints": {
+ "enumeration": {
+ "presharedKey": 1,
+ "dssSignature": 2,
+ "rsaSignature": 3,
+ "rsaEncryption": 4,
+ "revRsaEncryption": 5,
+ "xauth": 129,
+ "crack": 130
+ }
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raLogonTime": {
+ "name": "raLogonTime",
+ "oid": "1.3.6.1.4.1.2620.500.9000.1.29",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "tunnelTable": {
+ "name": "tunnelTable",
+ "oid": "1.3.6.1.4.1.2620.500.9002",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "tunnelEntry": {
+ "name": "tunnelEntry",
+ "oid": "1.3.6.1.4.1.2620.500.9002.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "tunnelPeerIpAddr",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "tunnelPeerIpAddr": {
+ "name": "tunnelPeerIpAddr",
+ "oid": "1.3.6.1.4.1.2620.500.9002.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "tunnelPeerObjName": {
+ "name": "tunnelPeerObjName",
+ "oid": "1.3.6.1.4.1.2620.500.9002.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "tunnelState": {
+ "name": "tunnelState",
+ "oid": "1.3.6.1.4.1.2620.500.9002.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "INTEGER",
+ "class": "type",
+ "constraints": {
+ "enumeration": {
+ "active": 3,
+ "destroy": 4,
+ "idle": 129,
+ "phase1": 130,
+ "down": 131,
+ "init": 132
+ }
+ }
+ },
+ "maxaccess": "read-write",
+ "status": "current"
+ },
+ "tunnelCommunity": {
+ "name": "tunnelCommunity",
+ "oid": "1.3.6.1.4.1.2620.500.9002.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "tunnelNextHop": {
+ "name": "tunnelNextHop",
+ "oid": "1.3.6.1.4.1.2620.500.9002.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "tunnelInterface": {
+ "name": "tunnelInterface",
+ "oid": "1.3.6.1.4.1.2620.500.9002.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "tunnelSourceIpAddr": {
+ "name": "tunnelSourceIpAddr",
+ "oid": "1.3.6.1.4.1.2620.500.9002.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "tunnelLinkPriority": {
+ "name": "tunnelLinkPriority",
+ "oid": "1.3.6.1.4.1.2620.500.9002.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "INTEGER",
+ "class": "type",
+ "constraints": {
+ "enumeration": {
+ "primary": 0,
+ "backup": 1,
+ "onDemand": 2
+ }
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "tunnelProbState": {
+ "name": "tunnelProbState",
+ "oid": "1.3.6.1.4.1.2620.500.9002.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "INTEGER",
+ "class": "type",
+ "constraints": {
+ "enumeration": {
+ "unknown": 0,
+ "alive": 1,
+ "dead": 2
+ }
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "tunnelPeerType": {
+ "name": "tunnelPeerType",
+ "oid": "1.3.6.1.4.1.2620.500.9002.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "INTEGER",
+ "class": "type",
+ "constraints": {
+ "enumeration": {
+ "regular": 1,
+ "daip": 2,
+ "robo": 3,
+ "lsv": 4
+ }
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "tunnelType": {
+ "name": "tunnelType",
+ "oid": "1.3.6.1.4.1.2620.500.9002.1.11",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "INTEGER",
+ "class": "type",
+ "constraints": {
+ "enumeration": {
+ "regular": 1,
+ "permanent": 2
+ }
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "permanentTunnelTable": {
+ "name": "permanentTunnelTable",
+ "oid": "1.3.6.1.4.1.2620.500.9003",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "permanentTunnelEntry": {
+ "name": "permanentTunnelEntry",
+ "oid": "1.3.6.1.4.1.2620.500.9003.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "permanentTunnelPeerIpAddr",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "permanentTunnelPeerIpAddr": {
+ "name": "permanentTunnelPeerIpAddr",
+ "oid": "1.3.6.1.4.1.2620.500.9003.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "permanentTunnelPeerObjName": {
+ "name": "permanentTunnelPeerObjName",
+ "oid": "1.3.6.1.4.1.2620.500.9003.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "permanentTunnelState": {
+ "name": "permanentTunnelState",
+ "oid": "1.3.6.1.4.1.2620.500.9003.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "INTEGER",
+ "class": "type",
+ "constraints": {
+ "enumeration": {
+ "active": 3,
+ "destroy": 4,
+ "idle": 129,
+ "phase1": 130,
+ "down": 131,
+ "init": 132
+ }
+ }
+ },
+ "maxaccess": "read-write",
+ "status": "current"
+ },
+ "permanentTunnelCommunity": {
+ "name": "permanentTunnelCommunity",
+ "oid": "1.3.6.1.4.1.2620.500.9003.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "permanentTunnelNextHop": {
+ "name": "permanentTunnelNextHop",
+ "oid": "1.3.6.1.4.1.2620.500.9003.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "permanentTunnelInterface": {
+ "name": "permanentTunnelInterface",
+ "oid": "1.3.6.1.4.1.2620.500.9003.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "permanentTunnelSourceIpAddr": {
+ "name": "permanentTunnelSourceIpAddr",
+ "oid": "1.3.6.1.4.1.2620.500.9003.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "permanentTunnelLinkPriority": {
+ "name": "permanentTunnelLinkPriority",
+ "oid": "1.3.6.1.4.1.2620.500.9003.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "INTEGER",
+ "class": "type",
+ "constraints": {
+ "enumeration": {
+ "primary": 0,
+ "backup": 1,
+ "onDemand": 2
+ }
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "permanentTunnelProbState": {
+ "name": "permanentTunnelProbState",
+ "oid": "1.3.6.1.4.1.2620.500.9003.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "INTEGER",
+ "class": "type",
+ "constraints": {
+ "enumeration": {
+ "unknown": 0,
+ "alive": 1,
+ "dead": 2
+ }
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "permanentTunnelPeerType": {
+ "name": "permanentTunnelPeerType",
+ "oid": "1.3.6.1.4.1.2620.500.9003.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "INTEGER",
+ "class": "type",
+ "constraints": {
+ "enumeration": {
+ "regular": 1,
+ "daip": 2,
+ "robo": 3
+ }
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwPolicyStat": {
+ "name": "fwPolicyStat",
+ "oid": "1.3.6.1.4.1.2620.1.1.25",
+ "class": "objectidentity"
+ },
+ "fwPerfStat": {
+ "name": "fwPerfStat",
+ "oid": "1.3.6.1.4.1.2620.1.1.26",
+ "class": "objectidentity"
+ },
+ "fwHmem": {
+ "name": "fwHmem",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.1",
+ "class": "objectidentity"
+ },
+ "fwKmem": {
+ "name": "fwKmem",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.2",
+ "class": "objectidentity"
+ },
+ "fwInspect": {
+ "name": "fwInspect",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.3",
+ "class": "objectidentity"
+ },
+ "fwCookies": {
+ "name": "fwCookies",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.4",
+ "class": "objectidentity"
+ },
+ "fwChains": {
+ "name": "fwChains",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.5",
+ "class": "objectidentity"
+ },
+ "fwFragments": {
+ "name": "fwFragments",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.6",
+ "class": "objectidentity"
+ },
+ "fwUfp": {
+ "name": "fwUfp",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.8",
+ "class": "objectidentity"
+ },
+ "fwSS": {
+ "name": "fwSS",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9",
+ "class": "objectidentity"
+ },
+ "fwConnectionsStat": {
+ "name": "fwConnectionsStat",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.11",
+ "class": "objectidentity"
+ },
+ "fwHmem64": {
+ "name": "fwHmem64",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.12",
+ "class": "objectidentity"
+ },
+ "fwSS_http": {
+ "name": "fwSS_http",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1",
+ "class": "objectidentity"
+ },
+ "fwSS_ftp": {
+ "name": "fwSS_ftp",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2",
+ "class": "objectidentity"
+ },
+ "fwSS_telnet": {
+ "name": "fwSS_telnet",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.3",
+ "class": "objectidentity"
+ },
+ "fwSS_rlogin": {
+ "name": "fwSS_rlogin",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.4",
+ "class": "objectidentity"
+ },
+ "fwSS_ufp": {
+ "name": "fwSS_ufp",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.5",
+ "class": "objectidentity"
+ },
+ "fwSS_smtp": {
+ "name": "fwSS_smtp",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6",
+ "class": "objectidentity"
+ },
+ "fwSS_POP3": {
+ "name": "fwSS_POP3",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7",
+ "class": "objectidentity"
+ },
+ "fwSS_av_total": {
+ "name": "fwSS_av_total",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.10",
+ "class": "objectidentity"
+ },
+ "fwModuleState": {
+ "name": "fwModuleState",
+ "oid": "1.3.6.1.4.1.2620.1.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwFilterName": {
+ "name": "fwFilterName",
+ "oid": "1.3.6.1.4.1.2620.1.1.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwFilterDate": {
+ "name": "fwFilterDate",
+ "oid": "1.3.6.1.4.1.2620.1.1.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwAccepted": {
+ "name": "fwAccepted",
+ "oid": "1.3.6.1.4.1.2620.1.1.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwRejected": {
+ "name": "fwRejected",
+ "oid": "1.3.6.1.4.1.2620.1.1.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwDropped": {
+ "name": "fwDropped",
+ "oid": "1.3.6.1.4.1.2620.1.1.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwLogged": {
+ "name": "fwLogged",
+ "oid": "1.3.6.1.4.1.2620.1.1.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwMajor": {
+ "name": "fwMajor",
+ "oid": "1.3.6.1.4.1.2620.1.1.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwMinor": {
+ "name": "fwMinor",
+ "oid": "1.3.6.1.4.1.2620.1.1.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwProduct": {
+ "name": "fwProduct",
+ "oid": "1.3.6.1.4.1.2620.1.1.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwEvent": {
+ "name": "fwEvent",
+ "oid": "1.3.6.1.4.1.2620.1.1.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSICTrustState": {
+ "name": "fwSICTrustState",
+ "oid": "1.3.6.1.4.1.2620.1.1.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwTrapPrefix": {
+ "name": "fwTrapPrefix",
+ "oid": "1.3.6.1.4.1.2620.1.1.0",
+ "class": "objectidentity"
+ },
+ "fwTrap": {
+ "name": "fwTrap",
+ "oid": "1.3.6.1.4.1.2620.1.1.0.1",
+ "class": "notificationtype",
+ "objects": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwEvent"
+ }
+ ],
+ "status": "current"
+ },
+ "fwProdName": {
+ "name": "fwProdName",
+ "oid": "1.3.6.1.4.1.2620.1.1.21",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwVerMajor": {
+ "name": "fwVerMajor",
+ "oid": "1.3.6.1.4.1.2620.1.1.22",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwVerMinor": {
+ "name": "fwVerMinor",
+ "oid": "1.3.6.1.4.1.2620.1.1.23",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwKernelBuild": {
+ "name": "fwKernelBuild",
+ "oid": "1.3.6.1.4.1.2620.1.1.24",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwPolicyName": {
+ "name": "fwPolicyName",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwInstallTime": {
+ "name": "fwInstallTime",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwNumConn": {
+ "name": "fwNumConn",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwPeakNumConn": {
+ "name": "fwPeakNumConn",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwIspTable": {
+ "name": "fwIspTable",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.7",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwIspEntry": {
+ "name": "fwIspEntry",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.7.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwIspIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "fwIspIndex": {
+ "name": "fwIspIndex",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.7.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwIspName": {
+ "name": "fwIspName",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.7.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwIspStatus": {
+ "name": "fwIspStatus",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.7.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwIspRole": {
+ "name": "fwIspRole",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.7.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "unknown": {
+ "name": "unknown",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.7.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwIfTable": {
+ "name": "fwIfTable",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.5",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwConnTableLimit": {
+ "name": "fwConnTableLimit",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwIfEntry": {
+ "name": "fwIfEntry",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.5.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwIfIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "fwIfIndex": {
+ "name": "fwIfIndex",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.5.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwIfName": {
+ "name": "fwIfName",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.5.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwAcceptPcktsIn": {
+ "name": "fwAcceptPcktsIn",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.5.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwAcceptPcktsOut": {
+ "name": "fwAcceptPcktsOut",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.5.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwAcceptBytesIn": {
+ "name": "fwAcceptBytesIn",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.5.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwAcceptBytesOut": {
+ "name": "fwAcceptBytesOut",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.5.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwDropPcktsIn": {
+ "name": "fwDropPcktsIn",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.5.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwDropPcktsOut": {
+ "name": "fwDropPcktsOut",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.5.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwRejectPcktsIn": {
+ "name": "fwRejectPcktsIn",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.5.1.11",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwRejectPcktsOut": {
+ "name": "fwRejectPcktsOut",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.5.1.12",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwLogIn": {
+ "name": "fwLogIn",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.5.1.13",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwLogOut": {
+ "name": "fwLogOut",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.5.1.14",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwAcceptedTotal": {
+ "name": "fwAcceptedTotal",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwDroppedTotal": {
+ "name": "fwDroppedTotal",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.16",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwRejectedTotal": {
+ "name": "fwRejectedTotal",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.14",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwLoggedTotal": {
+ "name": "fwLoggedTotal",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.13",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwAcceptedBytesTotal": {
+ "name": "fwAcceptedBytesTotal",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwDroppedBytesTotal": {
+ "name": "fwDroppedBytesTotal",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwRejectedBytesTotal": {
+ "name": "fwRejectedBytesTotal",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.15",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwAcceptedBytesRates": {
+ "name": "fwAcceptedBytesRates",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.20",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwAcceptedPcktsRates": {
+ "name": "fwAcceptedPcktsRates",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.21",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwConnsRate": {
+ "name": "fwConnsRate",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.22",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwIf64Table": {
+ "name": "fwIf64Table",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.25",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwFullyUtilizedDrops": {
+ "name": "fwFullyUtilizedDrops",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.26",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwIf64Entry": {
+ "name": "fwIf64Entry",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.25.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwIfIndex64",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "fwIfIndex64": {
+ "name": "fwIfIndex64",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.25.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwIfName64": {
+ "name": "fwIfName64",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.25.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwAcceptPcktsIn64": {
+ "name": "fwAcceptPcktsIn64",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.25.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwAcceptPcktsOut64": {
+ "name": "fwAcceptPcktsOut64",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.25.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwAcceptBytesIn64": {
+ "name": "fwAcceptBytesIn64",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.25.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwAcceptBytesOut64": {
+ "name": "fwAcceptBytesOut64",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.25.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwDropPcktsIn64": {
+ "name": "fwDropPcktsIn64",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.25.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwDropPcktsOut64": {
+ "name": "fwDropPcktsOut64",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.25.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwRejectPcktsIn64": {
+ "name": "fwRejectPcktsIn64",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.25.1.11",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwRejectPcktsOut64": {
+ "name": "fwRejectPcktsOut64",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.25.1.12",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwLogIn64": {
+ "name": "fwLogIn64",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.25.1.13",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwLogOut64": {
+ "name": "fwLogOut64",
+ "oid": "1.3.6.1.4.1.2620.1.1.25.25.1.14",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem_block_size": {
+ "name": "fwHmem_block_size",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem_requested_bytes": {
+ "name": "fwHmem_requested_bytes",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.1.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem_initial_allocated_bytes": {
+ "name": "fwHmem_initial_allocated_bytes",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.1.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem_initial_allocated_blocks": {
+ "name": "fwHmem_initial_allocated_blocks",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.1.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem_initial_allocated_pools": {
+ "name": "fwHmem_initial_allocated_pools",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.1.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem_current_allocated_bytes": {
+ "name": "fwHmem_current_allocated_bytes",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.1.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem_current_allocated_blocks": {
+ "name": "fwHmem_current_allocated_blocks",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.1.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem_current_allocated_pools": {
+ "name": "fwHmem_current_allocated_pools",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.1.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem_maximum_bytes": {
+ "name": "fwHmem_maximum_bytes",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.1.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem_maximum_pools": {
+ "name": "fwHmem_maximum_pools",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.1.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem_bytes_used": {
+ "name": "fwHmem_bytes_used",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.1.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem_blocks_used": {
+ "name": "fwHmem_blocks_used",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.1.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem_bytes_unused": {
+ "name": "fwHmem_bytes_unused",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.1.13",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem_blocks_unused": {
+ "name": "fwHmem_blocks_unused",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.1.14",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem_bytes_peak": {
+ "name": "fwHmem_bytes_peak",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.1.15",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem_blocks_peak": {
+ "name": "fwHmem_blocks_peak",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.1.16",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem_bytes_internal_use": {
+ "name": "fwHmem_bytes_internal_use",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.1.17",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem_number_of_items": {
+ "name": "fwHmem_number_of_items",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.1.18",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem_alloc_operations": {
+ "name": "fwHmem_alloc_operations",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.1.19",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem_free_operations": {
+ "name": "fwHmem_free_operations",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.1.20",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem_failed_alloc": {
+ "name": "fwHmem_failed_alloc",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.1.21",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem_failed_free": {
+ "name": "fwHmem_failed_free",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.1.22",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwKmem_system_physical_mem": {
+ "name": "fwKmem_system_physical_mem",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.2.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwKmem_available_physical_mem": {
+ "name": "fwKmem_available_physical_mem",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.2.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwKmem_aix_heap_size": {
+ "name": "fwKmem_aix_heap_size",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.2.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwKmem_bytes_used": {
+ "name": "fwKmem_bytes_used",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.2.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwKmem_blocking_bytes_used": {
+ "name": "fwKmem_blocking_bytes_used",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.2.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwKmem_non_blocking_bytes_used": {
+ "name": "fwKmem_non_blocking_bytes_used",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.2.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwKmem_bytes_unused": {
+ "name": "fwKmem_bytes_unused",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.2.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwKmem_bytes_peak": {
+ "name": "fwKmem_bytes_peak",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.2.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwKmem_blocking_bytes_peak": {
+ "name": "fwKmem_blocking_bytes_peak",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.2.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwKmem_non_blocking_bytes_peak": {
+ "name": "fwKmem_non_blocking_bytes_peak",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.2.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwKmem_bytes_internal_use": {
+ "name": "fwKmem_bytes_internal_use",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.2.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwKmem_number_of_items": {
+ "name": "fwKmem_number_of_items",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.2.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwKmem_alloc_operations": {
+ "name": "fwKmem_alloc_operations",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.2.13",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwKmem_free_operations": {
+ "name": "fwKmem_free_operations",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.2.14",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwKmem_failed_alloc": {
+ "name": "fwKmem_failed_alloc",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.2.15",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwKmem_failed_free": {
+ "name": "fwKmem_failed_free",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.2.16",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwInspect_packets": {
+ "name": "fwInspect_packets",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.3.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwInspect_operations": {
+ "name": "fwInspect_operations",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.3.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwInspect_lookups": {
+ "name": "fwInspect_lookups",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.3.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwInspect_record": {
+ "name": "fwInspect_record",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.3.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwInspect_extract": {
+ "name": "fwInspect_extract",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.3.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwCookies_total": {
+ "name": "fwCookies_total",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.4.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwCookies_allocfwCookies_total": {
+ "name": "fwCookies_allocfwCookies_total",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.4.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwCookies_freefwCookies_total": {
+ "name": "fwCookies_freefwCookies_total",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.4.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwCookies_dupfwCookies_total": {
+ "name": "fwCookies_dupfwCookies_total",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.4.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwCookies_getfwCookies_total": {
+ "name": "fwCookies_getfwCookies_total",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.4.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwCookies_putfwCookies_total": {
+ "name": "fwCookies_putfwCookies_total",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.4.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwCookies_lenfwCookies_total": {
+ "name": "fwCookies_lenfwCookies_total",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.4.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwChains_alloc": {
+ "name": "fwChains_alloc",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.5.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwChains_free": {
+ "name": "fwChains_free",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.5.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwFrag_fragments": {
+ "name": "fwFrag_fragments",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.6.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwFrag_expired": {
+ "name": "fwFrag_expired",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.6.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwFrag_packets": {
+ "name": "fwFrag_packets",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.6.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwUfpHitRatio": {
+ "name": "fwUfpHitRatio",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.8.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwUfpInspected": {
+ "name": "fwUfpInspected",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.8.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwUfpHits": {
+ "name": "fwUfpHits",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.8.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_pid": {
+ "name": "fwSS_http_pid",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_proto": {
+ "name": "fwSS_http_proto",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_port": {
+ "name": "fwSS_http_port",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_logical_port": {
+ "name": "fwSS_http_logical_port",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_max_avail_socket": {
+ "name": "fwSS_http_max_avail_socket",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_socket_in_use_max": {
+ "name": "fwSS_http_socket_in_use_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_socket_in_use_curr": {
+ "name": "fwSS_http_socket_in_use_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_socket_in_use_count": {
+ "name": "fwSS_http_socket_in_use_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_sess_max": {
+ "name": "fwSS_http_sess_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_sess_curr": {
+ "name": "fwSS_http_sess_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_sess_count": {
+ "name": "fwSS_http_sess_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_auth_sess_max": {
+ "name": "fwSS_http_auth_sess_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_auth_sess_curr": {
+ "name": "fwSS_http_auth_sess_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.13",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_auth_sess_count": {
+ "name": "fwSS_http_auth_sess_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.14",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_accepted_sess": {
+ "name": "fwSS_http_accepted_sess",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.15",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_rejected_sess": {
+ "name": "fwSS_http_rejected_sess",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.16",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_auth_failures": {
+ "name": "fwSS_http_auth_failures",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.17",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_ops_cvp_sess_max": {
+ "name": "fwSS_http_ops_cvp_sess_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.18",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_ops_cvp_sess_curr": {
+ "name": "fwSS_http_ops_cvp_sess_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.19",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_ops_cvp_sess_count": {
+ "name": "fwSS_http_ops_cvp_sess_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.20",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_ops_cvp_rej_sess": {
+ "name": "fwSS_http_ops_cvp_rej_sess",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.21",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_ssl_encryp_sess_max": {
+ "name": "fwSS_http_ssl_encryp_sess_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.22",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_ssl_encryp_sess_curr": {
+ "name": "fwSS_http_ssl_encryp_sess_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.23",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_ssl_encryp_sess_count": {
+ "name": "fwSS_http_ssl_encryp_sess_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.24",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_transp_sess_max": {
+ "name": "fwSS_http_transp_sess_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.25",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_transp_sess_curr": {
+ "name": "fwSS_http_transp_sess_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.26",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_transp_sess_count": {
+ "name": "fwSS_http_transp_sess_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.27",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_proxied_sess_max": {
+ "name": "fwSS_http_proxied_sess_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.28",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_proxied_sess_curr": {
+ "name": "fwSS_http_proxied_sess_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.29",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_proxied_sess_count": {
+ "name": "fwSS_http_proxied_sess_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.30",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_tunneled_sess_max": {
+ "name": "fwSS_http_tunneled_sess_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.31",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_tunneled_sess_curr": {
+ "name": "fwSS_http_tunneled_sess_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.32",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_tunneled_sess_count": {
+ "name": "fwSS_http_tunneled_sess_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.33",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_ftp_sess_max": {
+ "name": "fwSS_http_ftp_sess_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.34",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_ftp_sess_curr": {
+ "name": "fwSS_http_ftp_sess_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.35",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_ftp_sess_count": {
+ "name": "fwSS_http_ftp_sess_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.36",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_time_stamp": {
+ "name": "fwSS_http_time_stamp",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.37",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_is_alive": {
+ "name": "fwSS_http_is_alive",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.38",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_blocked_cnt": {
+ "name": "fwSS_http_blocked_cnt",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.39",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_blocked_total": {
+ "name": "fwSS_http_blocked_total",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.40",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_scanned_total": {
+ "name": "fwSS_http_scanned_total",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.41",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_blocked_by_file_type": {
+ "name": "fwSS_http_blocked_by_file_type",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.42",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_blocked_by_size_limit": {
+ "name": "fwSS_http_blocked_by_size_limit",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.43",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_blocked_by_archive_limit": {
+ "name": "fwSS_http_blocked_by_archive_limit",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.44",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_blocked_by_internal_error": {
+ "name": "fwSS_http_blocked_by_internal_error",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.45",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_passed_cnt": {
+ "name": "fwSS_http_passed_cnt",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.46",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_passed_by_file_type": {
+ "name": "fwSS_http_passed_by_file_type",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.47",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_passed_by_size_limit": {
+ "name": "fwSS_http_passed_by_size_limit",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.48",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_passed_by_archive_limit": {
+ "name": "fwSS_http_passed_by_archive_limit",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.49",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_passed_by_internal_error": {
+ "name": "fwSS_http_passed_by_internal_error",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.50",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_passed_total": {
+ "name": "fwSS_http_passed_total",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.51",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_blocked_by_AV_settings": {
+ "name": "fwSS_http_blocked_by_AV_settings",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.52",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_passed_by_AV_settings": {
+ "name": "fwSS_http_passed_by_AV_settings",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.53",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_blocked_by_URL_filter_category": {
+ "name": "fwSS_http_blocked_by_URL_filter_category",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.54",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_blocked_by_URL_block_list": {
+ "name": "fwSS_http_blocked_by_URL_block_list",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.55",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_passed_by_URL_allow_list": {
+ "name": "fwSS_http_passed_by_URL_allow_list",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.56",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_http_passed_by_URL_filter_category": {
+ "name": "fwSS_http_passed_by_URL_filter_category",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.1.57",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_pid": {
+ "name": "fwSS_ftp_pid",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_proto": {
+ "name": "fwSS_ftp_proto",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_port": {
+ "name": "fwSS_ftp_port",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_logical_port": {
+ "name": "fwSS_ftp_logical_port",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_max_avail_socket": {
+ "name": "fwSS_ftp_max_avail_socket",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_socket_in_use_max": {
+ "name": "fwSS_ftp_socket_in_use_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_socket_in_use_curr": {
+ "name": "fwSS_ftp_socket_in_use_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_socket_in_use_count": {
+ "name": "fwSS_ftp_socket_in_use_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_sess_max": {
+ "name": "fwSS_ftp_sess_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_sess_curr": {
+ "name": "fwSS_ftp_sess_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_sess_count": {
+ "name": "fwSS_ftp_sess_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_auth_sess_max": {
+ "name": "fwSS_ftp_auth_sess_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_auth_sess_curr": {
+ "name": "fwSS_ftp_auth_sess_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.13",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_auth_sess_count": {
+ "name": "fwSS_ftp_auth_sess_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.14",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_accepted_sess": {
+ "name": "fwSS_ftp_accepted_sess",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.15",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_rejected_sess": {
+ "name": "fwSS_ftp_rejected_sess",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.16",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_auth_failures": {
+ "name": "fwSS_ftp_auth_failures",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.17",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_ops_cvp_sess_max": {
+ "name": "fwSS_ftp_ops_cvp_sess_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.18",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_ops_cvp_sess_curr": {
+ "name": "fwSS_ftp_ops_cvp_sess_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.19",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_ops_cvp_sess_count": {
+ "name": "fwSS_ftp_ops_cvp_sess_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.20",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_ops_cvp_rej_sess": {
+ "name": "fwSS_ftp_ops_cvp_rej_sess",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.21",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_time_stamp": {
+ "name": "fwSS_ftp_time_stamp",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.22",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_is_alive": {
+ "name": "fwSS_ftp_is_alive",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.23",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_blocked_cnt": {
+ "name": "fwSS_ftp_blocked_cnt",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.24",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_blocked_total": {
+ "name": "fwSS_ftp_blocked_total",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.25",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_scanned_total": {
+ "name": "fwSS_ftp_scanned_total",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.26",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_blocked_by_file_type": {
+ "name": "fwSS_ftp_blocked_by_file_type",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.27",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_blocked_by_size_limit": {
+ "name": "fwSS_ftp_blocked_by_size_limit",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.28",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_blocked_by_archive_limit": {
+ "name": "fwSS_ftp_blocked_by_archive_limit",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.29",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_blocked_by_internal_error": {
+ "name": "fwSS_ftp_blocked_by_internal_error",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.30",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_passed_cnt": {
+ "name": "fwSS_ftp_passed_cnt",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.31",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_passed_by_file_type": {
+ "name": "fwSS_ftp_passed_by_file_type",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.32",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_passed_by_size_limit": {
+ "name": "fwSS_ftp_passed_by_size_limit",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.33",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_passed_by_archive_limit": {
+ "name": "fwSS_ftp_passed_by_archive_limit",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.34",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_passed_by_internal_error": {
+ "name": "fwSS_ftp_passed_by_internal_error",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.35",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_passed_total": {
+ "name": "fwSS_ftp_passed_total",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.36",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_blocked_by_AV_settings": {
+ "name": "fwSS_ftp_blocked_by_AV_settings",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.37",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ftp_passed_by_AV_settings": {
+ "name": "fwSS_ftp_passed_by_AV_settings",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.2.38",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_telnet_pid": {
+ "name": "fwSS_telnet_pid",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.3.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_telnet_proto": {
+ "name": "fwSS_telnet_proto",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.3.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_telnet_port": {
+ "name": "fwSS_telnet_port",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.3.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_telnet_logical_port": {
+ "name": "fwSS_telnet_logical_port",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.3.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_telnet_max_avail_socket": {
+ "name": "fwSS_telnet_max_avail_socket",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.3.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_telnet_socket_in_use_max": {
+ "name": "fwSS_telnet_socket_in_use_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.3.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_telnet_socket_in_use_curr": {
+ "name": "fwSS_telnet_socket_in_use_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.3.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_telnet_socket_in_use_count": {
+ "name": "fwSS_telnet_socket_in_use_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.3.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_telnet_sess_max": {
+ "name": "fwSS_telnet_sess_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.3.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_telnet_sess_curr": {
+ "name": "fwSS_telnet_sess_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.3.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_telnet_sess_count": {
+ "name": "fwSS_telnet_sess_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.3.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_telnet_auth_sess_max": {
+ "name": "fwSS_telnet_auth_sess_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.3.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_telnet_auth_sess_curr": {
+ "name": "fwSS_telnet_auth_sess_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.3.13",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_telnet_auth_sess_count": {
+ "name": "fwSS_telnet_auth_sess_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.3.14",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_telnet_accepted_sess": {
+ "name": "fwSS_telnet_accepted_sess",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.3.15",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_telnet_rejected_sess": {
+ "name": "fwSS_telnet_rejected_sess",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.3.16",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_telnet_auth_failures": {
+ "name": "fwSS_telnet_auth_failures",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.3.17",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_telnet_time_stamp": {
+ "name": "fwSS_telnet_time_stamp",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.3.18",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_telnet_is_alive": {
+ "name": "fwSS_telnet_is_alive",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.3.19",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_rlogin_pid": {
+ "name": "fwSS_rlogin_pid",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.4.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_rlogin_proto": {
+ "name": "fwSS_rlogin_proto",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.4.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_rlogin_port": {
+ "name": "fwSS_rlogin_port",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.4.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_rlogin_logical_port": {
+ "name": "fwSS_rlogin_logical_port",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.4.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_rlogin_max_avail_socket": {
+ "name": "fwSS_rlogin_max_avail_socket",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.4.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_rlogin_socket_in_use_max": {
+ "name": "fwSS_rlogin_socket_in_use_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.4.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_rlogin_socket_in_use_curr": {
+ "name": "fwSS_rlogin_socket_in_use_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.4.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_rlogin_socket_in_use_count": {
+ "name": "fwSS_rlogin_socket_in_use_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.4.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_rlogin_sess_max": {
+ "name": "fwSS_rlogin_sess_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.4.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_rlogin_sess_curr": {
+ "name": "fwSS_rlogin_sess_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.4.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_rlogin_sess_count": {
+ "name": "fwSS_rlogin_sess_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.4.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_rlogin_auth_sess_max": {
+ "name": "fwSS_rlogin_auth_sess_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.4.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_rlogin_auth_sess_curr": {
+ "name": "fwSS_rlogin_auth_sess_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.4.13",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_rlogin_auth_sess_count": {
+ "name": "fwSS_rlogin_auth_sess_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.4.14",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_rlogin_accepted_sess": {
+ "name": "fwSS_rlogin_accepted_sess",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.4.15",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_rlogin_rejected_sess": {
+ "name": "fwSS_rlogin_rejected_sess",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.4.16",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_rlogin_auth_failures": {
+ "name": "fwSS_rlogin_auth_failures",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.4.17",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_rlogin_time_stamp": {
+ "name": "fwSS_rlogin_time_stamp",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.4.18",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_rlogin_is_alive": {
+ "name": "fwSS_rlogin_is_alive",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.4.19",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ufp_ops_ufp_sess_max": {
+ "name": "fwSS_ufp_ops_ufp_sess_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.5.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ufp_ops_ufp_sess_curr": {
+ "name": "fwSS_ufp_ops_ufp_sess_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.5.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ufp_ops_ufp_sess_count": {
+ "name": "fwSS_ufp_ops_ufp_sess_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.5.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ufp_ops_ufp_rej_sess": {
+ "name": "fwSS_ufp_ops_ufp_rej_sess",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.5.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ufp_time_stamp": {
+ "name": "fwSS_ufp_time_stamp",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.5.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_ufp_is_alive": {
+ "name": "fwSS_ufp_is_alive",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.5.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_pid": {
+ "name": "fwSS_smtp_pid",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_proto": {
+ "name": "fwSS_smtp_proto",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_port": {
+ "name": "fwSS_smtp_port",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_logical_port": {
+ "name": "fwSS_smtp_logical_port",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_max_avail_socket": {
+ "name": "fwSS_smtp_max_avail_socket",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_socket_in_use_max": {
+ "name": "fwSS_smtp_socket_in_use_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_socket_in_use_curr": {
+ "name": "fwSS_smtp_socket_in_use_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_socket_in_use_count": {
+ "name": "fwSS_smtp_socket_in_use_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_sess_max": {
+ "name": "fwSS_smtp_sess_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_sess_curr": {
+ "name": "fwSS_smtp_sess_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_sess_count": {
+ "name": "fwSS_smtp_sess_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_auth_sess_max": {
+ "name": "fwSS_smtp_auth_sess_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_auth_sess_curr": {
+ "name": "fwSS_smtp_auth_sess_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.13",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_auth_sess_count": {
+ "name": "fwSS_smtp_auth_sess_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.14",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_accepted_sess": {
+ "name": "fwSS_smtp_accepted_sess",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.15",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_rejected_sess": {
+ "name": "fwSS_smtp_rejected_sess",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.16",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_auth_failures": {
+ "name": "fwSS_smtp_auth_failures",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.17",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_mail_max": {
+ "name": "fwSS_smtp_mail_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.18",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_mail_curr": {
+ "name": "fwSS_smtp_mail_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.19",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_mail_count": {
+ "name": "fwSS_smtp_mail_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.20",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_outgoing_mail_max": {
+ "name": "fwSS_smtp_outgoing_mail_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.21",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_outgoing_mail_curr": {
+ "name": "fwSS_smtp_outgoing_mail_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.22",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_outgoing_mail_count": {
+ "name": "fwSS_smtp_outgoing_mail_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.23",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_max_mail_on_conn": {
+ "name": "fwSS_smtp_max_mail_on_conn",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.24",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_total_mails": {
+ "name": "fwSS_smtp_total_mails",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.25",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_time_stamp": {
+ "name": "fwSS_smtp_time_stamp",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.26",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_is_alive": {
+ "name": "fwSS_smtp_is_alive",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.27",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_blocked_cnt": {
+ "name": "fwSS_smtp_blocked_cnt",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.28",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_blocked_total": {
+ "name": "fwSS_smtp_blocked_total",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.29",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_scanned_total": {
+ "name": "fwSS_smtp_scanned_total",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.30",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_blocked_by_file_type": {
+ "name": "fwSS_smtp_blocked_by_file_type",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.31",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_blocked_by_size_limit": {
+ "name": "fwSS_smtp_blocked_by_size_limit",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.32",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_blocked_by_archive_limit": {
+ "name": "fwSS_smtp_blocked_by_archive_limit",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.33",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_blocked_by_internal_error": {
+ "name": "fwSS_smtp_blocked_by_internal_error",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.34",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_passed_cnt": {
+ "name": "fwSS_smtp_passed_cnt",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.35",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_passed_by_file_type": {
+ "name": "fwSS_smtp_passed_by_file_type",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.36",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_passed_by_size_limit": {
+ "name": "fwSS_smtp_passed_by_size_limit",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.37",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_passed_by_archive_limit": {
+ "name": "fwSS_smtp_passed_by_archive_limit",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.38",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_passed_by_internal_error": {
+ "name": "fwSS_smtp_passed_by_internal_error",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.39",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_passed_total": {
+ "name": "fwSS_smtp_passed_total",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.40",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_blocked_by_AV_settings": {
+ "name": "fwSS_smtp_blocked_by_AV_settings",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.41",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_smtp_passed_by_AV_settings": {
+ "name": "fwSS_smtp_passed_by_AV_settings",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.6.42",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_pid": {
+ "name": "fwSS_POP3_pid",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_proto": {
+ "name": "fwSS_POP3_proto",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_port": {
+ "name": "fwSS_POP3_port",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_logical_port": {
+ "name": "fwSS_POP3_logical_port",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_max_avail_socket": {
+ "name": "fwSS_POP3_max_avail_socket",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_socket_in_use_max": {
+ "name": "fwSS_POP3_socket_in_use_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_socket_in_use_curr": {
+ "name": "fwSS_POP3_socket_in_use_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_socket_in_use_count": {
+ "name": "fwSS_POP3_socket_in_use_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_sess_max": {
+ "name": "fwSS_POP3_sess_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_sess_curr": {
+ "name": "fwSS_POP3_sess_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_sess_count": {
+ "name": "fwSS_POP3_sess_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_auth_sess_max": {
+ "name": "fwSS_POP3_auth_sess_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_auth_sess_curr": {
+ "name": "fwSS_POP3_auth_sess_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.13",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_auth_sess_count": {
+ "name": "fwSS_POP3_auth_sess_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.14",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_accepted_sess": {
+ "name": "fwSS_POP3_accepted_sess",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.15",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_rejected_sess": {
+ "name": "fwSS_POP3_rejected_sess",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.16",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_auth_failures": {
+ "name": "fwSS_POP3_auth_failures",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.17",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_mail_max": {
+ "name": "fwSS_POP3_mail_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.18",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_mail_curr": {
+ "name": "fwSS_POP3_mail_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.19",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_mail_count": {
+ "name": "fwSS_POP3_mail_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.20",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_outgoing_mail_max": {
+ "name": "fwSS_POP3_outgoing_mail_max",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.21",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_outgoing_mail_curr": {
+ "name": "fwSS_POP3_outgoing_mail_curr",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.22",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_outgoing_mail_count": {
+ "name": "fwSS_POP3_outgoing_mail_count",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.23",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_max_mail_on_conn": {
+ "name": "fwSS_POP3_max_mail_on_conn",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.24",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_total_mails": {
+ "name": "fwSS_POP3_total_mails",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.25",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_time_stamp": {
+ "name": "fwSS_POP3_time_stamp",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.26",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_is_alive": {
+ "name": "fwSS_POP3_is_alive",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.27",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_blocked_cnt": {
+ "name": "fwSS_POP3_blocked_cnt",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.28",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_blocked_total": {
+ "name": "fwSS_POP3_blocked_total",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.29",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_scanned_total": {
+ "name": "fwSS_POP3_scanned_total",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.30",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_blocked_by_file_type": {
+ "name": "fwSS_POP3_blocked_by_file_type",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.31",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_blocked_by_size_limit": {
+ "name": "fwSS_POP3_blocked_by_size_limit",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.32",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_blocked_by_archive_limit": {
+ "name": "fwSS_POP3_blocked_by_archive_limit",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.33",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_blocked_by_internal_error": {
+ "name": "fwSS_POP3_blocked_by_internal_error",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.34",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_passed_cnt": {
+ "name": "fwSS_POP3_passed_cnt",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.35",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_passed_by_file_type": {
+ "name": "fwSS_POP3_passed_by_file_type",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.36",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_passed_by_size_limit": {
+ "name": "fwSS_POP3_passed_by_size_limit",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.37",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_passed_by_archive_limit": {
+ "name": "fwSS_POP3_passed_by_archive_limit",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.38",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_passed_by_internal_error": {
+ "name": "fwSS_POP3_passed_by_internal_error",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.39",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_passed_total": {
+ "name": "fwSS_POP3_passed_total",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.40",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_blocked_by_AV_settings": {
+ "name": "fwSS_POP3_blocked_by_AV_settings",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.41",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_POP3_passed_by_AV_settings": {
+ "name": "fwSS_POP3_passed_by_AV_settings",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.7.42",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_total_blocked_by_av": {
+ "name": "fwSS_total_blocked_by_av",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.10.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_total_blocked": {
+ "name": "fwSS_total_blocked",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.10.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_total_scanned": {
+ "name": "fwSS_total_scanned",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.10.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_total_blocked_by_file_type": {
+ "name": "fwSS_total_blocked_by_file_type",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.10.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_total_blocked_by_size_limit": {
+ "name": "fwSS_total_blocked_by_size_limit",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.10.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_total_blocked_by_archive_limit": {
+ "name": "fwSS_total_blocked_by_archive_limit",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.10.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_total_blocked_by_interal_error": {
+ "name": "fwSS_total_blocked_by_interal_error",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.10.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_total_passed_by_av": {
+ "name": "fwSS_total_passed_by_av",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.10.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_total_passed_by_file_type": {
+ "name": "fwSS_total_passed_by_file_type",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.10.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_total_passed_by_size_limit": {
+ "name": "fwSS_total_passed_by_size_limit",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.10.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_total_passed_by_archive_limit": {
+ "name": "fwSS_total_passed_by_archive_limit",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.10.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_total_passed_by_interal_error": {
+ "name": "fwSS_total_passed_by_interal_error",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.10.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_total_passed": {
+ "name": "fwSS_total_passed",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.10.13",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_total_blocked_by_av_settings": {
+ "name": "fwSS_total_blocked_by_av_settings",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.10.14",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSS_total_passed_by_av_settings": {
+ "name": "fwSS_total_passed_by_av_settings",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.9.10.15",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwConnectionsStatConnectionsTcp": {
+ "name": "fwConnectionsStatConnectionsTcp",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.11.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwConnectionsStatConnectionsUdp": {
+ "name": "fwConnectionsStatConnectionsUdp",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.11.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwConnectionsStatConnectionsIcmp": {
+ "name": "fwConnectionsStatConnectionsIcmp",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.11.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwConnectionsStatConnectionsOther": {
+ "name": "fwConnectionsStatConnectionsOther",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.11.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwConnectionsStatConnections": {
+ "name": "fwConnectionsStatConnections",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.11.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwConnectionsStatConnectionRate": {
+ "name": "fwConnectionsStatConnectionRate",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.11.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem64_block_size": {
+ "name": "fwHmem64_block_size",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.12.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem64_requested_bytes": {
+ "name": "fwHmem64_requested_bytes",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.12.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem64_initial_allocated_bytes": {
+ "name": "fwHmem64_initial_allocated_bytes",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.12.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem64_initial_allocated_blocks": {
+ "name": "fwHmem64_initial_allocated_blocks",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.12.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem64_initial_allocated_pools": {
+ "name": "fwHmem64_initial_allocated_pools",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.12.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem64_current_allocated_bytes": {
+ "name": "fwHmem64_current_allocated_bytes",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.12.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem64_current_allocated_blocks": {
+ "name": "fwHmem64_current_allocated_blocks",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.12.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem64_current_allocated_pools": {
+ "name": "fwHmem64_current_allocated_pools",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.12.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem64_maximum_bytes": {
+ "name": "fwHmem64_maximum_bytes",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.12.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem64_maximum_pools": {
+ "name": "fwHmem64_maximum_pools",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.12.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem64_bytes_used": {
+ "name": "fwHmem64_bytes_used",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.12.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem64_blocks_used": {
+ "name": "fwHmem64_blocks_used",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.12.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem64_bytes_unused": {
+ "name": "fwHmem64_bytes_unused",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.12.13",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem64_blocks_unused": {
+ "name": "fwHmem64_blocks_unused",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.12.14",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem64_bytes_peak": {
+ "name": "fwHmem64_bytes_peak",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.12.15",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem64_blocks_peak": {
+ "name": "fwHmem64_blocks_peak",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.12.16",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem64_bytes_internal_use": {
+ "name": "fwHmem64_bytes_internal_use",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.12.17",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem64_number_of_items": {
+ "name": "fwHmem64_number_of_items",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.12.18",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem64_alloc_operations": {
+ "name": "fwHmem64_alloc_operations",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.12.19",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem64_free_operations": {
+ "name": "fwHmem64_free_operations",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.12.20",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem64_failed_alloc": {
+ "name": "fwHmem64_failed_alloc",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.12.21",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwHmem64_failed_free": {
+ "name": "fwHmem64_failed_free",
+ "oid": "1.3.6.1.4.1.2620.1.1.26.12.22",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwNetIfTable": {
+ "name": "fwNetIfTable",
+ "oid": "1.3.6.1.4.1.2620.1.1.27",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwNetIfEntry": {
+ "name": "fwNetIfEntry",
+ "oid": "1.3.6.1.4.1.2620.1.1.27.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwNetIfIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "fwNetIfIndex": {
+ "name": "fwNetIfIndex",
+ "oid": "1.3.6.1.4.1.2620.1.1.27.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwNetIfName": {
+ "name": "fwNetIfName",
+ "oid": "1.3.6.1.4.1.2620.1.1.27.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwNetIfIPAddr": {
+ "name": "fwNetIfIPAddr",
+ "oid": "1.3.6.1.4.1.2620.1.1.27.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwNetIfNetmask": {
+ "name": "fwNetIfNetmask",
+ "oid": "1.3.6.1.4.1.2620.1.1.27.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwNetIfFlags": {
+ "name": "fwNetIfFlags",
+ "oid": "1.3.6.1.4.1.2620.1.1.27.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwNetIfPeerName": {
+ "name": "fwNetIfPeerName",
+ "oid": "1.3.6.1.4.1.2620.1.1.27.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwNetIfRemoteIp": {
+ "name": "fwNetIfRemoteIp",
+ "oid": "1.3.6.1.4.1.2620.1.1.27.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwNetIfTopology": {
+ "name": "fwNetIfTopology",
+ "oid": "1.3.6.1.4.1.2620.1.1.27.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwNetIfProxyName": {
+ "name": "fwNetIfProxyName",
+ "oid": "1.3.6.1.4.1.2620.1.1.27.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwNetIfSlaves": {
+ "name": "fwNetIfSlaves",
+ "oid": "1.3.6.1.4.1.2620.1.1.27.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwNetIfPorts": {
+ "name": "fwNetIfPorts",
+ "oid": "1.3.6.1.4.1.2620.1.1.27.1.11",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwNetIfIPV6Addr": {
+ "name": "fwNetIfIPV6Addr",
+ "oid": "1.3.6.1.4.1.2620.1.1.27.1.12",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "OCTET STRING",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwNetIfIPV6AddrLen": {
+ "name": "fwNetIfIPV6AddrLen",
+ "oid": "1.3.6.1.4.1.2620.1.1.27.1.13",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwLSConn": {
+ "name": "fwLSConn",
+ "oid": "1.3.6.1.4.1.2620.1.1.30",
+ "class": "objectidentity"
+ },
+ "fwLSConnOverall": {
+ "name": "fwLSConnOverall",
+ "oid": "1.3.6.1.4.1.2620.1.1.30.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwLSConnOverallDesc": {
+ "name": "fwLSConnOverallDesc",
+ "oid": "1.3.6.1.4.1.2620.1.1.30.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwLSConnTable": {
+ "name": "fwLSConnTable",
+ "oid": "1.3.6.1.4.1.2620.1.1.30.3",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwLocalLoggingDesc": {
+ "name": "fwLocalLoggingDesc",
+ "oid": "1.3.6.1.4.1.2620.1.1.30.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwLocalLoggingStat": {
+ "name": "fwLocalLoggingStat",
+ "oid": "1.3.6.1.4.1.2620.1.1.30.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwLocalLoggingWriteRate": {
+ "name": "fwLocalLoggingWriteRate",
+ "oid": "1.3.6.1.4.1.2620.1.1.30.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwLoggingHandlingRate": {
+ "name": "fwLoggingHandlingRate",
+ "oid": "1.3.6.1.4.1.2620.1.1.30.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwLSConnEntry": {
+ "name": "fwLSConnEntry",
+ "oid": "1.3.6.1.4.1.2620.1.1.30.3.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwLSConnIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "fwLSConnIndex": {
+ "name": "fwLSConnIndex",
+ "oid": "1.3.6.1.4.1.2620.1.1.30.3.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwLSConnName": {
+ "name": "fwLSConnName",
+ "oid": "1.3.6.1.4.1.2620.1.1.30.3.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwLSConnState": {
+ "name": "fwLSConnState",
+ "oid": "1.3.6.1.4.1.2620.1.1.30.3.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwLSConnStateDesc": {
+ "name": "fwLSConnStateDesc",
+ "oid": "1.3.6.1.4.1.2620.1.1.30.3.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwLSConnSendRate": {
+ "name": "fwLSConnSendRate",
+ "oid": "1.3.6.1.4.1.2620.1.1.30.3.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwInstancesCPU": {
+ "name": "fwInstancesCPU",
+ "oid": "1.3.6.1.4.1.2620.1.1.31",
+ "class": "objectidentity"
+ },
+ "fwInstancesCPUTable": {
+ "name": "fwInstancesCPUTable",
+ "oid": "1.3.6.1.4.1.2620.1.1.31.1",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwInstancesCPUEntry": {
+ "name": "fwInstancesCPUEntry",
+ "oid": "1.3.6.1.4.1.2620.1.1.31.1.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwInstancesCPUInstanceName",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "fwInstancesCPUInstanceName": {
+ "name": "fwInstancesCPUInstanceName",
+ "oid": "1.3.6.1.4.1.2620.1.1.31.1.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwInstancesCPUUsage": {
+ "name": "fwInstancesCPUUsage",
+ "oid": "1.3.6.1.4.1.2620.1.1.31.1.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwInstancesCPUTotal": {
+ "name": "fwInstancesCPUTotal",
+ "oid": "1.3.6.1.4.1.2620.1.1.31.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLGroup": {
+ "name": "fwSXLGroup",
+ "oid": "1.3.6.1.4.1.2620.1.36.1",
+ "class": "objectidentity"
+ },
+ "fwSXLStatus": {
+ "name": "fwSXLStatus",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLConnsExisting": {
+ "name": "fwSXLConnsExisting",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLConnsAdded": {
+ "name": "fwSXLConnsAdded",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLConnsDeleted": {
+ "name": "fwSXLConnsDeleted",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLStatistics": {
+ "name": "fwSXLStatistics",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5",
+ "class": "objectidentity"
+ },
+ "fwSXLStatisticsAggregate": {
+ "name": "fwSXLStatisticsAggregate",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1",
+ "class": "objectidentity"
+ },
+ "fwSXLStatAggregateThroughputTable": {
+ "name": "fwSXLStatAggregateThroughputTable",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.1",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLStatAggregateThroughputEntry": {
+ "name": "fwSXLStatAggregateThroughputEntry",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.1.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrThroughputIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "fwSXLAggrThroughputIndex": {
+ "name": "fwSXLAggrThroughputIndex",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.1.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLAggrRxMbits": {
+ "name": "fwSXLAggrRxMbits",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.1.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrTxMbits": {
+ "name": "fwSXLAggrTxMbits",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.1.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrInboundKbitsPerSecond": {
+ "name": "fwSXLAggrInboundKbitsPerSecond",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.1.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrOutboundKbitsPerSecond": {
+ "name": "fwSXLAggrOutboundKbitsPerSecond",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.1.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrInboundpacketsPerSecond": {
+ "name": "fwSXLAggrInboundpacketsPerSecond",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.1.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrOutboundpacketsPerSecond": {
+ "name": "fwSXLAggrOutboundpacketsPerSecond",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.1.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrConnectionsPerSecond": {
+ "name": "fwSXLAggrConnectionsPerSecond",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.1.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrConcurrentConnections": {
+ "name": "fwSXLAggrConcurrentConnections",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.1.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLStatAggregateNotificationsTable": {
+ "name": "fwSXLStatAggregateNotificationsTable",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.2",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLStatAggregateNotificationsEntry": {
+ "name": "fwSXLStatAggregateNotificationsEntry",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.2.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrNotificationsIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "fwSXLAggrNotificationsIndex": {
+ "name": "fwSXLAggrNotificationsIndex",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.2.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLAggrPpak2FwNotificationsSuccessful": {
+ "name": "fwSXLAggrPpak2FwNotificationsSuccessful",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.2.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrPpak2FwNotificationsFailure": {
+ "name": "fwSXLAggrPpak2FwNotificationsFailure",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.2.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrFw2PpakNotificationsSuccessful": {
+ "name": "fwSXLAggrFw2PpakNotificationsSuccessful",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.2.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrFw2PpakNotificationsFailure": {
+ "name": "fwSXLAggrFw2PpakNotificationsFailure",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.2.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLStatAggregateDropsTable": {
+ "name": "fwSXLStatAggregateDropsTable",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.3",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLStatAggregateDropsEntry": {
+ "name": "fwSXLStatAggregateDropsEntry",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.3.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLAggrDropsIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "fwSXLAggrDropsIndex": {
+ "name": "fwSXLAggrDropsIndex",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.3.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLAggrDropsTotPackets": {
+ "name": "fwSXLAggrDropsTotPackets",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.3.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrDropsPxlDecision": {
+ "name": "fwSXLAggrDropsPxlDecision",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.3.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrDropsFragmentationError": {
+ "name": "fwSXLAggrDropsFragmentationError",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.3.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrDropsF2FNotAllowed": {
+ "name": "fwSXLAggrDropsF2FNotAllowed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.3.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrDropsHeavyLoadTcpViolation": {
+ "name": "fwSXLAggrDropsHeavyLoadTcpViolation",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.3.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrDropsCorruptPacket": {
+ "name": "fwSXLAggrDropsCorruptPacket",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.3.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrDropsHeavyLoadNewConnection": {
+ "name": "fwSXLAggrDropsHeavyLoadNewConnection",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.3.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrDropsClearPacketOnVPN": {
+ "name": "fwSXLAggrDropsClearPacketOnVPN",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.3.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrDropsEncryptionFailed": {
+ "name": "fwSXLAggrDropsEncryptionFailed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.3.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrDropsDropTemplate": {
+ "name": "fwSXLAggrDropsDropTemplate",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.3.1.11",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrDropsDecryptionFailed": {
+ "name": "fwSXLAggrDropsDecryptionFailed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.3.1.12",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrDropsOutboundConnNotFound": {
+ "name": "fwSXLAggrDropsOutboundConnNotFound",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.3.1.13",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrDropsInterfaceDown": {
+ "name": "fwSXLAggrDropsInterfaceDown",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.3.1.14",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrDropsClusterError": {
+ "name": "fwSXLAggrDropsClusterError",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.3.1.15",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrDropsXmlError": {
+ "name": "fwSXLAggrDropsXmlError",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.3.1.16",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrDropsAntiSpoofing": {
+ "name": "fwSXLAggrDropsAntiSpoofing",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.3.1.17",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrDropsSanityError": {
+ "name": "fwSXLAggrDropsSanityError",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.3.1.18",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrDropsQxlDecision": {
+ "name": "fwSXLAggrDropsQxlDecision",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.3.1.19",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLAggrDropsLoopPrevention": {
+ "name": "fwSXLAggrDropsLoopPrevention",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.1.3.1.20",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLStatisticsHost": {
+ "name": "fwSXLStatisticsHost",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2",
+ "class": "objectidentity"
+ },
+ "fwSXLStatHostThroughputTable": {
+ "name": "fwSXLStatHostThroughputTable",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.1",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLStatHostThroughputEntry": {
+ "name": "fwSXLStatHostThroughputEntry",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.1.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostThroughputIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "fwSXLHostThroughputIndex": {
+ "name": "fwSXLHostThroughputIndex",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.1.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLHostRxMbits": {
+ "name": "fwSXLHostRxMbits",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.1.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostTxMbits": {
+ "name": "fwSXLHostTxMbits",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.1.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInboundKbitsPerSecond": {
+ "name": "fwSXLHostInboundKbitsPerSecond",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.1.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostOutboundKbitsPerSecond": {
+ "name": "fwSXLHostOutboundKbitsPerSecond",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.1.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInboundpacketsPerSecond": {
+ "name": "fwSXLHostInboundpacketsPerSecond",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.1.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostOutboundpacketsPerSecond": {
+ "name": "fwSXLHostOutboundpacketsPerSecond",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.1.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostConnectionsPerSecond": {
+ "name": "fwSXLHostConnectionsPerSecond",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.1.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostConcurrentConnections": {
+ "name": "fwSXLHostConcurrentConnections",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.1.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLStatHostNotificationsTable": {
+ "name": "fwSXLStatHostNotificationsTable",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.2",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLStatHostNotificationsEntry": {
+ "name": "fwSXLStatHostNotificationsEntry",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.2.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostNotificationsIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "fwSXLHostNotificationsIndex": {
+ "name": "fwSXLHostNotificationsIndex",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.2.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLHostPpak2FwNotificationsSuccessful": {
+ "name": "fwSXLHostPpak2FwNotificationsSuccessful",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.2.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostPpak2FwNotificationsFailure": {
+ "name": "fwSXLHostPpak2FwNotificationsFailure",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.2.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostFw2PpakNotificationsSuccessful": {
+ "name": "fwSXLHostFw2PpakNotificationsSuccessful",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.2.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostFw2PpakNotificationsFailure": {
+ "name": "fwSXLHostFw2PpakNotificationsFailure",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.2.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLStatHostDropsTable": {
+ "name": "fwSXLStatHostDropsTable",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.3",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLStatHostDropsEntry": {
+ "name": "fwSXLStatHostDropsEntry",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.3.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostDropsIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "fwSXLHostDropsIndex": {
+ "name": "fwSXLHostDropsIndex",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.3.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLHostDropsTotPackets": {
+ "name": "fwSXLHostDropsTotPackets",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.3.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostDropsPxlDecision": {
+ "name": "fwSXLHostDropsPxlDecision",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.3.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostDropsFragmentationError": {
+ "name": "fwSXLHostDropsFragmentationError",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.3.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostDropsF2FNotAllowed": {
+ "name": "fwSXLHostDropsF2FNotAllowed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.3.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostDropsHeavyLoadTcpViolation": {
+ "name": "fwSXLHostDropsHeavyLoadTcpViolation",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.3.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostDropsCorruptPacket": {
+ "name": "fwSXLHostDropsCorruptPacket",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.3.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostDropsHeavyLoadNewConnection": {
+ "name": "fwSXLHostDropsHeavyLoadNewConnection",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.3.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostDropsClearPacketOnVPN": {
+ "name": "fwSXLHostDropsClearPacketOnVPN",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.3.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostDropsEncryptionFailed": {
+ "name": "fwSXLHostDropsEncryptionFailed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.3.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostDropsDropTemplate": {
+ "name": "fwSXLHostDropsDropTemplate",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.3.1.11",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostDropsDecryptionFailed": {
+ "name": "fwSXLHostDropsDecryptionFailed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.3.1.12",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostDropsOutboundConnNotFound": {
+ "name": "fwSXLHostDropsOutboundConnNotFound",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.3.1.13",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostDropsInterfaceDown": {
+ "name": "fwSXLHostDropsInterfaceDown",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.3.1.14",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostDropsClusterError": {
+ "name": "fwSXLHostDropsClusterError",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.3.1.15",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostDropsXmlError": {
+ "name": "fwSXLHostDropsXmlError",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.3.1.16",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostDropsAntiSpoofing": {
+ "name": "fwSXLHostDropsAntiSpoofing",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.3.1.17",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostDropsSanityError": {
+ "name": "fwSXLHostDropsSanityError",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.3.1.18",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostDropsQxlDecision": {
+ "name": "fwSXLHostDropsQxlDecision",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.3.1.19",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostDropsLoopPrevention": {
+ "name": "fwSXLHostDropsLoopPrevention",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.3.1.20",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLStatHostInterfacesTable": {
+ "name": "fwSXLStatHostInterfacesTable",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLStatHostInterfacesEntry": {
+ "name": "fwSXLStatHostInterfacesEntry",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostInterfacesIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "fwSXLHostInterfacesIndex": {
+ "name": "fwSXLHostInterfacesIndex",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLHostInterface0Name": {
+ "name": "fwSXLHostInterface0Name",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInterface1Name": {
+ "name": "fwSXLHostInterface1Name",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInterface2Name": {
+ "name": "fwSXLHostInterface2Name",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInterface3Name": {
+ "name": "fwSXLHostInterface3Name",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInterface4Name": {
+ "name": "fwSXLHostInterface4Name",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInterface5Name": {
+ "name": "fwSXLHostInterface5Name",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInterface6Name": {
+ "name": "fwSXLHostInterface6Name",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInterface7Name": {
+ "name": "fwSXLHostInterface7Name",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInterface0Speed": {
+ "name": "fwSXLHostInterface0Speed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInterface1Speed": {
+ "name": "fwSXLHostInterface1Speed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.11",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInterface2Speed": {
+ "name": "fwSXLHostInterface2Speed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.12",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInterface3Speed": {
+ "name": "fwSXLHostInterface3Speed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.13",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInterface4Speed": {
+ "name": "fwSXLHostInterface4Speed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.14",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInterface5Speed": {
+ "name": "fwSXLHostInterface5Speed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.15",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInterface6Speed": {
+ "name": "fwSXLHostInterface6Speed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.16",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInterface7Speed": {
+ "name": "fwSXLHostInterface7Speed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.17",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInterface0State": {
+ "name": "fwSXLHostInterface0State",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.18",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInterface1State": {
+ "name": "fwSXLHostInterface1State",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.19",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInterface2State": {
+ "name": "fwSXLHostInterface2State",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.20",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInterface3State": {
+ "name": "fwSXLHostInterface3State",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.21",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInterface4State": {
+ "name": "fwSXLHostInterface4State",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.22",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInterface5State": {
+ "name": "fwSXLHostInterface5State",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.23",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInterface6State": {
+ "name": "fwSXLHostInterface6State",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.24",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLHostInterface7State": {
+ "name": "fwSXLHostInterface7State",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.4.1.25",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLStatHostGeneralTable": {
+ "name": "fwSXLStatHostGeneralTable",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.5",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLStatHostGeneralEntry": {
+ "name": "fwSXLStatHostGeneralEntry",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.5.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostGeneralIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "fwSXLHostGeneralIndex": {
+ "name": "fwSXLHostGeneralIndex",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.5.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLHostState": {
+ "name": "fwSXLHostState",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.2.5.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLStatisticsFalcons": {
+ "name": "fwSXLStatisticsFalcons",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3",
+ "class": "objectidentity"
+ },
+ "fwSXLStatFalconsThroughputTable": {
+ "name": "fwSXLStatFalconsThroughputTable",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.1",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLStatFalconsThroughputEntry": {
+ "name": "fwSXLStatFalconsThroughputEntry",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.1.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsThroughputIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "fwSXLFalconsThroughputIndex": {
+ "name": "fwSXLFalconsThroughputIndex",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.1.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLFalconsRxMbits": {
+ "name": "fwSXLFalconsRxMbits",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.1.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsTxMbits": {
+ "name": "fwSXLFalconsTxMbits",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.1.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInboundKbitsPerSecond": {
+ "name": "fwSXLFalconsInboundKbitsPerSecond",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.1.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsOutboundKbitsPerSecond": {
+ "name": "fwSXLFalconsOutboundKbitsPerSecond",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.1.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInboundpacketsPerSecond": {
+ "name": "fwSXLFalconsInboundpacketsPerSecond",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.1.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsOutboundpacketsPerSecond": {
+ "name": "fwSXLFalconsOutboundpacketsPerSecond",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.1.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsConnectionsPerSecond": {
+ "name": "fwSXLFalconsConnectionsPerSecond",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.1.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsConcurrentConnections": {
+ "name": "fwSXLFalconsConcurrentConnections",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.1.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLStatFalconsNotificationsTable": {
+ "name": "fwSXLStatFalconsNotificationsTable",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.2",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLStatFalconsNotificationsEntry": {
+ "name": "fwSXLStatFalconsNotificationsEntry",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.2.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsNotificationsIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "fwSXLFalconsNotificationsIndex": {
+ "name": "fwSXLFalconsNotificationsIndex",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.2.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLFalconsPpak2FwNotificationsSuccessful": {
+ "name": "fwSXLFalconsPpak2FwNotificationsSuccessful",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.2.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsPpak2FwNotificationsFailure": {
+ "name": "fwSXLFalconsPpak2FwNotificationsFailure",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.2.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsFw2PpakNotificationsSuccessful": {
+ "name": "fwSXLFalconsFw2PpakNotificationsSuccessful",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.2.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsFw2PpakNotificationsFailure": {
+ "name": "fwSXLFalconsFw2PpakNotificationsFailure",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.2.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLStatFalconsDropsTable": {
+ "name": "fwSXLStatFalconsDropsTable",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.3",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLStatFalconsDropsEntry": {
+ "name": "fwSXLStatFalconsDropsEntry",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.3.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsDropsIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "fwSXLFalconsDropsIndex": {
+ "name": "fwSXLFalconsDropsIndex",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.3.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLFalconsDropsTotPackets": {
+ "name": "fwSXLFalconsDropsTotPackets",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.3.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsDropsPxlDecision": {
+ "name": "fwSXLFalconsDropsPxlDecision",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.3.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsDropsFragmentationError": {
+ "name": "fwSXLFalconsDropsFragmentationError",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.3.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsDropsF2FNotAllowed": {
+ "name": "fwSXLFalconsDropsF2FNotAllowed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.3.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsDropsHeavyLoadTcpViolation": {
+ "name": "fwSXLFalconsDropsHeavyLoadTcpViolation",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.3.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsDropsCorruptPacket": {
+ "name": "fwSXLFalconsDropsCorruptPacket",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.3.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsDropsHeavyLoadNewConnection": {
+ "name": "fwSXLFalconsDropsHeavyLoadNewConnection",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.3.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsDropsClearPacketOnVPN": {
+ "name": "fwSXLFalconsDropsClearPacketOnVPN",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.3.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsDropsEncryptionFailed": {
+ "name": "fwSXLFalconsDropsEncryptionFailed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.3.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsDropsDropTemplate": {
+ "name": "fwSXLFalconsDropsDropTemplate",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.3.1.11",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsDropsDecryptionFailed": {
+ "name": "fwSXLFalconsDropsDecryptionFailed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.3.1.12",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsDropsOutboundConnNotFound": {
+ "name": "fwSXLFalconsDropsOutboundConnNotFound",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.3.1.13",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsDropsInterfaceDown": {
+ "name": "fwSXLFalconsDropsInterfaceDown",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.3.1.14",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsDropsClusterError": {
+ "name": "fwSXLFalconsDropsClusterError",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.3.1.15",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsDropsXmlError": {
+ "name": "fwSXLFalconsDropsXmlError",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.3.1.16",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsDropsAntiSpoofing": {
+ "name": "fwSXLFalconsDropsAntiSpoofing",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.3.1.17",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsDropsSanityError": {
+ "name": "fwSXLFalconsDropsSanityError",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.3.1.18",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsDropsQxlDecision": {
+ "name": "fwSXLFalconsDropsQxlDecision",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.3.1.19",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsDropsLoopPrevention": {
+ "name": "fwSXLFalconsDropsLoopPrevention",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.3.1.20",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLStatFalconsInterfacesTable": {
+ "name": "fwSXLStatFalconsInterfacesTable",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLStatFalconsInterfacesEntry": {
+ "name": "fwSXLStatFalconsInterfacesEntry",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsInterfacesIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "fwSXLFalconsInterfacesIndex": {
+ "name": "fwSXLFalconsInterfacesIndex",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLFalconsInterface0Name": {
+ "name": "fwSXLFalconsInterface0Name",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInterface1Name": {
+ "name": "fwSXLFalconsInterface1Name",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInterface2Name": {
+ "name": "fwSXLFalconsInterface2Name",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInterface3Name": {
+ "name": "fwSXLFalconsInterface3Name",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInterface4Name": {
+ "name": "fwSXLFalconsInterface4Name",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInterface5Name": {
+ "name": "fwSXLFalconsInterface5Name",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInterface6Name": {
+ "name": "fwSXLFalconsInterface6Name",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInterface7Name": {
+ "name": "fwSXLFalconsInterface7Name",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInterface0Speed": {
+ "name": "fwSXLFalconsInterface0Speed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInterface1Speed": {
+ "name": "fwSXLFalconsInterface1Speed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.11",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInterface2Speed": {
+ "name": "fwSXLFalconsInterface2Speed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.12",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInterface3Speed": {
+ "name": "fwSXLFalconsInterface3Speed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.13",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInterface4Speed": {
+ "name": "fwSXLFalconsInterface4Speed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.14",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInterface5Speed": {
+ "name": "fwSXLFalconsInterface5Speed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.15",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInterface6Speed": {
+ "name": "fwSXLFalconsInterface6Speed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.16",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInterface7Speed": {
+ "name": "fwSXLFalconsInterface7Speed",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.17",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInterface0State": {
+ "name": "fwSXLFalconsInterface0State",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.18",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInterface1State": {
+ "name": "fwSXLFalconsInterface1State",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.19",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInterface2State": {
+ "name": "fwSXLFalconsInterface2State",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.20",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInterface3State": {
+ "name": "fwSXLFalconsInterface3State",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.21",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInterface4State": {
+ "name": "fwSXLFalconsInterface4State",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.22",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInterface5State": {
+ "name": "fwSXLFalconsInterface5State",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.23",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInterface6State": {
+ "name": "fwSXLFalconsInterface6State",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.24",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsInterface7State": {
+ "name": "fwSXLFalconsInterface7State",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.4.1.25",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLStatFalconsMemoryTable": {
+ "name": "fwSXLStatFalconsMemoryTable",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.5",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLStatFalconsMemoryEntry": {
+ "name": "fwSXLStatFalconsMemoryEntry",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.5.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsMemoryIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "fwSXLFalconsMemoryIndex": {
+ "name": "fwSXLFalconsMemoryIndex",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.5.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLFalconsSxlTotMemory": {
+ "name": "fwSXLFalconsSxlTotMemory",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.5.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsSxlUsedMemory": {
+ "name": "fwSXLFalconsSxlUsedMemory",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.5.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsSxlFreeMemory": {
+ "name": "fwSXLFalconsSxlFreeMemory",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.5.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsPacketPoolTotMemory": {
+ "name": "fwSXLFalconsPacketPoolTotMemory",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.5.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsPacketPoolUsedMemory": {
+ "name": "fwSXLFalconsPacketPoolUsedMemory",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.5.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsPacketPoolFreeMemory": {
+ "name": "fwSXLFalconsPacketPoolFreeMemory",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.5.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLStatFalconsCpuTable": {
+ "name": "fwSXLStatFalconsCpuTable",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLStatFalconsCpuEntry": {
+ "name": "fwSXLStatFalconsCpuEntry",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLFalconsCpuIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "fwSXLFalconsCpuIndex": {
+ "name": "fwSXLFalconsCpuIndex",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu0Usage": {
+ "name": "fwSXLFalconsCpu0Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu1Usage": {
+ "name": "fwSXLFalconsCpu1Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu2Usage": {
+ "name": "fwSXLFalconsCpu2Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu3Usage": {
+ "name": "fwSXLFalconsCpu3Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu4Usage": {
+ "name": "fwSXLFalconsCpu4Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu5Usage": {
+ "name": "fwSXLFalconsCpu5Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu6Usage": {
+ "name": "fwSXLFalconsCpu6Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu7Usage": {
+ "name": "fwSXLFalconsCpu7Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu8Usage": {
+ "name": "fwSXLFalconsCpu8Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu9Usage": {
+ "name": "fwSXLFalconsCpu9Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.11",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu10Usage": {
+ "name": "fwSXLFalconsCpu10Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.12",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu11Usage": {
+ "name": "fwSXLFalconsCpu11Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.13",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu12Usage": {
+ "name": "fwSXLFalconsCpu12Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.14",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu13Usage": {
+ "name": "fwSXLFalconsCpu13Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.15",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu14Usage": {
+ "name": "fwSXLFalconsCpu14Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.16",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu15Usage": {
+ "name": "fwSXLFalconsCpu15Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.17",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu16Usage": {
+ "name": "fwSXLFalconsCpu16Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.18",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu17Usage": {
+ "name": "fwSXLFalconsCpu17Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.19",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu18Usage": {
+ "name": "fwSXLFalconsCpu18Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.20",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu19Usage": {
+ "name": "fwSXLFalconsCpu19Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.21",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu20Usage": {
+ "name": "fwSXLFalconsCpu20Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.22",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu21Usage": {
+ "name": "fwSXLFalconsCpu21Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.23",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu22Usage": {
+ "name": "fwSXLFalconsCpu22Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.24",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu23Usage": {
+ "name": "fwSXLFalconsCpu23Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.25",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu24Usage": {
+ "name": "fwSXLFalconsCpu24Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.26",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu25Usage": {
+ "name": "fwSXLFalconsCpu25Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.27",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu26Usage": {
+ "name": "fwSXLFalconsCpu26Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.28",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu27Usage": {
+ "name": "fwSXLFalconsCpu27Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.29",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu28Usage": {
+ "name": "fwSXLFalconsCpu28Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.30",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu29Usage": {
+ "name": "fwSXLFalconsCpu29Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.31",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu30Usage": {
+ "name": "fwSXLFalconsCpu30Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.32",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsCpu31Usage": {
+ "name": "fwSXLFalconsCpu31Usage",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.6.1.33",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLStatFalconsGeneralTable": {
+ "name": "fwSXLStatFalconsGeneralTable",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.7",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fwSXLStatFalconsGeneralEntry": {
+ "name": "fwSXLStatFalconsGeneralEntry",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.7.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fwSXLHostGeneralIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "fwSXLFalconsGeneralIndex": {
+ "name": "fwSXLFalconsGeneralIndex",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.7.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsState": {
+ "name": "fwSXLFalconsState",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.7.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsType": {
+ "name": "fwSXLFalconsType",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.7.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsSerialNumber": {
+ "name": "fwSXLFalconsSerialNumber",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.7.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fwSXLFalconsSlotNumber": {
+ "name": "fwSXLFalconsSlotNumber",
+ "oid": "1.3.6.1.4.1.2620.1.36.1.5.3.7.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvGeneral": {
+ "name": "cpvGeneral",
+ "oid": "1.3.6.1.4.1.2620.1.2.4",
+ "class": "objectidentity"
+ },
+ "cpvIpsec": {
+ "name": "cpvIpsec",
+ "oid": "1.3.6.1.4.1.2620.1.2.5",
+ "class": "objectidentity"
+ },
+ "cpvFwz": {
+ "name": "cpvFwz",
+ "oid": "1.3.6.1.4.1.2620.1.2.6",
+ "class": "objectidentity"
+ },
+ "cpvAccelerator": {
+ "name": "cpvAccelerator",
+ "oid": "1.3.6.1.4.1.2620.1.2.8",
+ "class": "objectidentity"
+ },
+ "cpvIKE": {
+ "name": "cpvIKE",
+ "oid": "1.3.6.1.4.1.2620.1.2.9",
+ "class": "objectidentity"
+ },
+ "cpvIPsec": {
+ "name": "cpvIPsec",
+ "oid": "1.3.6.1.4.1.2620.1.2.10",
+ "class": "objectidentity"
+ },
+ "cpvStatistics": {
+ "name": "cpvStatistics",
+ "oid": "1.3.6.1.4.1.2620.1.2.4.1",
+ "class": "objectidentity"
+ },
+ "cpvErrors": {
+ "name": "cpvErrors",
+ "oid": "1.3.6.1.4.1.2620.1.2.4.2",
+ "class": "objectidentity"
+ },
+ "cpvSaStatistics": {
+ "name": "cpvSaStatistics",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.2",
+ "class": "objectidentity"
+ },
+ "cpvSaErrors": {
+ "name": "cpvSaErrors",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.3",
+ "class": "objectidentity"
+ },
+ "cpvIpsecStatistics": {
+ "name": "cpvIpsecStatistics",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.4",
+ "class": "objectidentity"
+ },
+ "cpvFwzStatistics": {
+ "name": "cpvFwzStatistics",
+ "oid": "1.3.6.1.4.1.2620.1.2.6.1",
+ "class": "objectidentity"
+ },
+ "cpvFwzErrors": {
+ "name": "cpvFwzErrors",
+ "oid": "1.3.6.1.4.1.2620.1.2.6.2",
+ "class": "objectidentity"
+ },
+ "cpvHwAccelGeneral": {
+ "name": "cpvHwAccelGeneral",
+ "oid": "1.3.6.1.4.1.2620.1.2.8.1",
+ "class": "objectidentity"
+ },
+ "cpvHwAccelStatistics": {
+ "name": "cpvHwAccelStatistics",
+ "oid": "1.3.6.1.4.1.2620.1.2.8.2",
+ "class": "objectidentity"
+ },
+ "cpvIKEglobals": {
+ "name": "cpvIKEglobals",
+ "oid": "1.3.6.1.4.1.2620.1.2.9.1",
+ "class": "objectidentity"
+ },
+ "cpvIKEerrors": {
+ "name": "cpvIKEerrors",
+ "oid": "1.3.6.1.4.1.2620.1.2.9.2",
+ "class": "objectidentity"
+ },
+ "cpvIPsecNIC": {
+ "name": "cpvIPsecNIC",
+ "oid": "1.3.6.1.4.1.2620.1.2.10.1",
+ "class": "objectidentity"
+ },
+ "cpvProdName": {
+ "name": "cpvProdName",
+ "oid": "1.3.6.1.4.1.2620.1.2.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvVerMajor": {
+ "name": "cpvVerMajor",
+ "oid": "1.3.6.1.4.1.2620.1.2.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvVerMinor": {
+ "name": "cpvVerMinor",
+ "oid": "1.3.6.1.4.1.2620.1.2.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvEncPackets": {
+ "name": "cpvEncPackets",
+ "oid": "1.3.6.1.4.1.2620.1.2.4.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvDecPackets": {
+ "name": "cpvDecPackets",
+ "oid": "1.3.6.1.4.1.2620.1.2.4.1.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvErrOut": {
+ "name": "cpvErrOut",
+ "oid": "1.3.6.1.4.1.2620.1.2.4.2.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvErrIn": {
+ "name": "cpvErrIn",
+ "oid": "1.3.6.1.4.1.2620.1.2.4.2.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvErrIke": {
+ "name": "cpvErrIke",
+ "oid": "1.3.6.1.4.1.2620.1.2.4.2.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvErrPolicy": {
+ "name": "cpvErrPolicy",
+ "oid": "1.3.6.1.4.1.2620.1.2.4.2.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvCurrEspSAsIn": {
+ "name": "cpvCurrEspSAsIn",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.2.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvTotalEspSAsIn": {
+ "name": "cpvTotalEspSAsIn",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.2.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvCurrEspSAsOut": {
+ "name": "cpvCurrEspSAsOut",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.2.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvTotalEspSAsOut": {
+ "name": "cpvTotalEspSAsOut",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.2.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvCurrAhSAsIn": {
+ "name": "cpvCurrAhSAsIn",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.2.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvTotalAhSAsIn": {
+ "name": "cpvTotalAhSAsIn",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.2.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvCurrAhSAsOut": {
+ "name": "cpvCurrAhSAsOut",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.2.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvTotalAhSAsOut": {
+ "name": "cpvTotalAhSAsOut",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.2.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvMaxConncurEspSAsIn": {
+ "name": "cpvMaxConncurEspSAsIn",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.2.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvMaxConncurEspSAsOut": {
+ "name": "cpvMaxConncurEspSAsOut",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.2.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvMaxConncurAhSAsIn": {
+ "name": "cpvMaxConncurAhSAsIn",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.2.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvMaxConncurAhSAsOut": {
+ "name": "cpvMaxConncurAhSAsOut",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.2.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvSaDecrErr": {
+ "name": "cpvSaDecrErr",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.3.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvSaAuthErr": {
+ "name": "cpvSaAuthErr",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.3.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvSaReplayErr": {
+ "name": "cpvSaReplayErr",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.3.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvSaPolicyErr": {
+ "name": "cpvSaPolicyErr",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.3.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvSaOtherErrIn": {
+ "name": "cpvSaOtherErrIn",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.3.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvSaOtherErrOut": {
+ "name": "cpvSaOtherErrOut",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.3.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvSaUnknownSpiErr": {
+ "name": "cpvSaUnknownSpiErr",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.3.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIpsecUdpEspEncPkts": {
+ "name": "cpvIpsecUdpEspEncPkts",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.4.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIpsecUdpEspDecPkts": {
+ "name": "cpvIpsecUdpEspDecPkts",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.4.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIpsecAhEncPkts": {
+ "name": "cpvIpsecAhEncPkts",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.4.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIpsecAhDecPkts": {
+ "name": "cpvIpsecAhDecPkts",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.4.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIpsecEspEncPkts": {
+ "name": "cpvIpsecEspEncPkts",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.4.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIpsecEspDecPkts": {
+ "name": "cpvIpsecEspDecPkts",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.4.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIpsecDecomprBytesBefore": {
+ "name": "cpvIpsecDecomprBytesBefore",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.4.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIpsecDecomprBytesAfter": {
+ "name": "cpvIpsecDecomprBytesAfter",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.4.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIpsecDecomprOverhead": {
+ "name": "cpvIpsecDecomprOverhead",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.4.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIpsecDecomprPkts": {
+ "name": "cpvIpsecDecomprPkts",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.4.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIpsecDecomprErr": {
+ "name": "cpvIpsecDecomprErr",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.4.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIpsecComprBytesBefore": {
+ "name": "cpvIpsecComprBytesBefore",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.4.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIpsecComprBytesAfter": {
+ "name": "cpvIpsecComprBytesAfter",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.4.13",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIpsecComprOverhead": {
+ "name": "cpvIpsecComprOverhead",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.4.14",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIpsecNonCompressibleBytes": {
+ "name": "cpvIpsecNonCompressibleBytes",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.4.15",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIpsecCompressiblePkts": {
+ "name": "cpvIpsecCompressiblePkts",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.4.16",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIpsecNonCompressiblePkts": {
+ "name": "cpvIpsecNonCompressiblePkts",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.4.17",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIpsecComprErrors": {
+ "name": "cpvIpsecComprErrors",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.4.18",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIpsecEspEncBytes": {
+ "name": "cpvIpsecEspEncBytes",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.4.19",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIpsecEspDecBytes": {
+ "name": "cpvIpsecEspDecBytes",
+ "oid": "1.3.6.1.4.1.2620.1.2.5.4.20",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvFwzEncapsEncPkts": {
+ "name": "cpvFwzEncapsEncPkts",
+ "oid": "1.3.6.1.4.1.2620.1.2.6.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvFwzEncapsDecPkts": {
+ "name": "cpvFwzEncapsDecPkts",
+ "oid": "1.3.6.1.4.1.2620.1.2.6.1.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvFwzEncPkts": {
+ "name": "cpvFwzEncPkts",
+ "oid": "1.3.6.1.4.1.2620.1.2.6.1.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvFwzDecPkts": {
+ "name": "cpvFwzDecPkts",
+ "oid": "1.3.6.1.4.1.2620.1.2.6.1.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvFwzEncapsEncErrs": {
+ "name": "cpvFwzEncapsEncErrs",
+ "oid": "1.3.6.1.4.1.2620.1.2.6.2.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvFwzEncapsDecErrs": {
+ "name": "cpvFwzEncapsDecErrs",
+ "oid": "1.3.6.1.4.1.2620.1.2.6.2.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvFwzEncErrs": {
+ "name": "cpvFwzEncErrs",
+ "oid": "1.3.6.1.4.1.2620.1.2.6.2.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvFwzDecErrs": {
+ "name": "cpvFwzDecErrs",
+ "oid": "1.3.6.1.4.1.2620.1.2.6.2.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvHwAccelVendor": {
+ "name": "cpvHwAccelVendor",
+ "oid": "1.3.6.1.4.1.2620.1.2.8.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvHwAccelStatus": {
+ "name": "cpvHwAccelStatus",
+ "oid": "1.3.6.1.4.1.2620.1.2.8.1.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvHwAccelDriverMajorVer": {
+ "name": "cpvHwAccelDriverMajorVer",
+ "oid": "1.3.6.1.4.1.2620.1.2.8.1.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvHwAccelDriverMinorVer": {
+ "name": "cpvHwAccelDriverMinorVer",
+ "oid": "1.3.6.1.4.1.2620.1.2.8.1.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvHwAccelEspEncPkts": {
+ "name": "cpvHwAccelEspEncPkts",
+ "oid": "1.3.6.1.4.1.2620.1.2.8.2.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvHwAccelEspDecPkts": {
+ "name": "cpvHwAccelEspDecPkts",
+ "oid": "1.3.6.1.4.1.2620.1.2.8.2.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvHwAccelEspEncBytes": {
+ "name": "cpvHwAccelEspEncBytes",
+ "oid": "1.3.6.1.4.1.2620.1.2.8.2.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvHwAccelEspDecBytes": {
+ "name": "cpvHwAccelEspDecBytes",
+ "oid": "1.3.6.1.4.1.2620.1.2.8.2.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvHwAccelAhEncPkts": {
+ "name": "cpvHwAccelAhEncPkts",
+ "oid": "1.3.6.1.4.1.2620.1.2.8.2.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvHwAccelAhDecPkts": {
+ "name": "cpvHwAccelAhDecPkts",
+ "oid": "1.3.6.1.4.1.2620.1.2.8.2.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvHwAccelAhEncBytes": {
+ "name": "cpvHwAccelAhEncBytes",
+ "oid": "1.3.6.1.4.1.2620.1.2.8.2.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvHwAccelAhDecBytes": {
+ "name": "cpvHwAccelAhDecBytes",
+ "oid": "1.3.6.1.4.1.2620.1.2.8.2.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIKECurrSAs": {
+ "name": "cpvIKECurrSAs",
+ "oid": "1.3.6.1.4.1.2620.1.2.9.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIKECurrInitSAs": {
+ "name": "cpvIKECurrInitSAs",
+ "oid": "1.3.6.1.4.1.2620.1.2.9.1.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIKECurrRespSAs": {
+ "name": "cpvIKECurrRespSAs",
+ "oid": "1.3.6.1.4.1.2620.1.2.9.1.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIKETotalSAs": {
+ "name": "cpvIKETotalSAs",
+ "oid": "1.3.6.1.4.1.2620.1.2.9.1.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIKETotalInitSAs": {
+ "name": "cpvIKETotalInitSAs",
+ "oid": "1.3.6.1.4.1.2620.1.2.9.1.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIKETotalRespSAs": {
+ "name": "cpvIKETotalRespSAs",
+ "oid": "1.3.6.1.4.1.2620.1.2.9.1.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIKETotalSAsAttempts": {
+ "name": "cpvIKETotalSAsAttempts",
+ "oid": "1.3.6.1.4.1.2620.1.2.9.1.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIKETotalSAsInitAttempts": {
+ "name": "cpvIKETotalSAsInitAttempts",
+ "oid": "1.3.6.1.4.1.2620.1.2.9.1.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIKETotalSAsRespAttempts": {
+ "name": "cpvIKETotalSAsRespAttempts",
+ "oid": "1.3.6.1.4.1.2620.1.2.9.1.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIKEMaxConncurSAs": {
+ "name": "cpvIKEMaxConncurSAs",
+ "oid": "1.3.6.1.4.1.2620.1.2.9.1.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIKEMaxConncurInitSAs": {
+ "name": "cpvIKEMaxConncurInitSAs",
+ "oid": "1.3.6.1.4.1.2620.1.2.9.1.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIKEMaxConncurRespSAs": {
+ "name": "cpvIKEMaxConncurRespSAs",
+ "oid": "1.3.6.1.4.1.2620.1.2.9.1.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIKETotalFailuresInit": {
+ "name": "cpvIKETotalFailuresInit",
+ "oid": "1.3.6.1.4.1.2620.1.2.9.2.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIKENoResp": {
+ "name": "cpvIKENoResp",
+ "oid": "1.3.6.1.4.1.2620.1.2.9.2.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIKETotalFailuresResp": {
+ "name": "cpvIKETotalFailuresResp",
+ "oid": "1.3.6.1.4.1.2620.1.2.9.2.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIPsecNICsNum": {
+ "name": "cpvIPsecNICsNum",
+ "oid": "1.3.6.1.4.1.2620.1.2.10.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIPsecNICTotalDownLoadedSAs": {
+ "name": "cpvIPsecNICTotalDownLoadedSAs",
+ "oid": "1.3.6.1.4.1.2620.1.2.10.1.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIPsecNICCurrDownLoadedSAs": {
+ "name": "cpvIPsecNICCurrDownLoadedSAs",
+ "oid": "1.3.6.1.4.1.2620.1.2.10.1.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIPsecNICDecrBytes": {
+ "name": "cpvIPsecNICDecrBytes",
+ "oid": "1.3.6.1.4.1.2620.1.2.10.1.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIPsecNICEncrBytes": {
+ "name": "cpvIPsecNICEncrBytes",
+ "oid": "1.3.6.1.4.1.2620.1.2.10.1.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIPsecNICDecrPackets": {
+ "name": "cpvIPsecNICDecrPackets",
+ "oid": "1.3.6.1.4.1.2620.1.2.10.1.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpvIPsecNICEncrPackets": {
+ "name": "cpvIPsecNICEncrPackets",
+ "oid": "1.3.6.1.4.1.2620.1.2.10.1.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fgProdName": {
+ "name": "fgProdName",
+ "oid": "1.3.6.1.4.1.2620.1.3.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fgVerMajor": {
+ "name": "fgVerMajor",
+ "oid": "1.3.6.1.4.1.2620.1.3.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fgVerMinor": {
+ "name": "fgVerMinor",
+ "oid": "1.3.6.1.4.1.2620.1.3.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fgVersionString": {
+ "name": "fgVersionString",
+ "oid": "1.3.6.1.4.1.2620.1.3.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fgModuleKernelBuild": {
+ "name": "fgModuleKernelBuild",
+ "oid": "1.3.6.1.4.1.2620.1.3.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fgStrPolicyName": {
+ "name": "fgStrPolicyName",
+ "oid": "1.3.6.1.4.1.2620.1.3.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fgInstallTime": {
+ "name": "fgInstallTime",
+ "oid": "1.3.6.1.4.1.2620.1.3.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fgNumInterfaces": {
+ "name": "fgNumInterfaces",
+ "oid": "1.3.6.1.4.1.2620.1.3.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fgIfTable": {
+ "name": "fgIfTable",
+ "oid": "1.3.6.1.4.1.2620.1.3.9",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fgIfEntry": {
+ "name": "fgIfEntry",
+ "oid": "1.3.6.1.4.1.2620.1.3.9.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fgIfIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "fgIfIndex": {
+ "name": "fgIfIndex",
+ "oid": "1.3.6.1.4.1.2620.1.3.9.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fgIfName": {
+ "name": "fgIfName",
+ "oid": "1.3.6.1.4.1.2620.1.3.9.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fgPolicyName": {
+ "name": "fgPolicyName",
+ "oid": "1.3.6.1.4.1.2620.1.3.9.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fgRateLimitIn": {
+ "name": "fgRateLimitIn",
+ "oid": "1.3.6.1.4.1.2620.1.3.9.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fgRateLimitOut": {
+ "name": "fgRateLimitOut",
+ "oid": "1.3.6.1.4.1.2620.1.3.9.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fgAvrRateIn": {
+ "name": "fgAvrRateIn",
+ "oid": "1.3.6.1.4.1.2620.1.3.9.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fgAvrRateOut": {
+ "name": "fgAvrRateOut",
+ "oid": "1.3.6.1.4.1.2620.1.3.9.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fgRetransPcktsIn": {
+ "name": "fgRetransPcktsIn",
+ "oid": "1.3.6.1.4.1.2620.1.3.9.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fgRetransPcktsOut": {
+ "name": "fgRetransPcktsOut",
+ "oid": "1.3.6.1.4.1.2620.1.3.9.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fgPendPcktsIn": {
+ "name": "fgPendPcktsIn",
+ "oid": "1.3.6.1.4.1.2620.1.3.9.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fgPendPcktsOut": {
+ "name": "fgPendPcktsOut",
+ "oid": "1.3.6.1.4.1.2620.1.3.9.1.11",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fgPendBytesIn": {
+ "name": "fgPendBytesIn",
+ "oid": "1.3.6.1.4.1.2620.1.3.9.1.12",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fgPendBytesOut": {
+ "name": "fgPendBytesOut",
+ "oid": "1.3.6.1.4.1.2620.1.3.9.1.13",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fgNumConnIn": {
+ "name": "fgNumConnIn",
+ "oid": "1.3.6.1.4.1.2620.1.3.9.1.14",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fgNumConnOut": {
+ "name": "fgNumConnOut",
+ "oid": "1.3.6.1.4.1.2620.1.3.9.1.15",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haProdName": {
+ "name": "haProdName",
+ "oid": "1.3.6.1.4.1.2620.1.5.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haInstalled": {
+ "name": "haInstalled",
+ "oid": "1.3.6.1.4.1.2620.1.5.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haVerMajor": {
+ "name": "haVerMajor",
+ "oid": "1.3.6.1.4.1.2620.1.5.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haVerMinor": {
+ "name": "haVerMinor",
+ "oid": "1.3.6.1.4.1.2620.1.5.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haStarted": {
+ "name": "haStarted",
+ "oid": "1.3.6.1.4.1.2620.1.5.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haState": {
+ "name": "haState",
+ "oid": "1.3.6.1.4.1.2620.1.5.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haBlockState": {
+ "name": "haBlockState",
+ "oid": "1.3.6.1.4.1.2620.1.5.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haIdentifier": {
+ "name": "haIdentifier",
+ "oid": "1.3.6.1.4.1.2620.1.5.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haProtoVersion": {
+ "name": "haProtoVersion",
+ "oid": "1.3.6.1.4.1.2620.1.5.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haWorkMode": {
+ "name": "haWorkMode",
+ "oid": "1.3.6.1.4.1.2620.1.5.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haVersionSting": {
+ "name": "haVersionSting",
+ "oid": "1.3.6.1.4.1.2620.1.5.14",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haClusterXLFailover": {
+ "name": "haClusterXLFailover",
+ "oid": "1.3.6.1.4.1.2620.1.5.17",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haStatCode": {
+ "name": "haStatCode",
+ "oid": "1.3.6.1.4.1.2620.1.5.101",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haStatShort": {
+ "name": "haStatShort",
+ "oid": "1.3.6.1.4.1.2620.1.5.102",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haStatLong": {
+ "name": "haStatLong",
+ "oid": "1.3.6.1.4.1.2620.1.5.103",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haServicePack": {
+ "name": "haServicePack",
+ "oid": "1.3.6.1.4.1.2620.1.5.999",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haIfTable": {
+ "name": "haIfTable",
+ "oid": "1.3.6.1.4.1.2620.1.5.12",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "haIfEntry": {
+ "name": "haIfEntry",
+ "oid": "1.3.6.1.4.1.2620.1.5.12.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haIfIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "haIfIndex": {
+ "name": "haIfIndex",
+ "oid": "1.3.6.1.4.1.2620.1.5.12.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "haIfName": {
+ "name": "haIfName",
+ "oid": "1.3.6.1.4.1.2620.1.5.12.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haIP": {
+ "name": "haIP",
+ "oid": "1.3.6.1.4.1.2620.1.5.12.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haStatus": {
+ "name": "haStatus",
+ "oid": "1.3.6.1.4.1.2620.1.5.12.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haVerified": {
+ "name": "haVerified",
+ "oid": "1.3.6.1.4.1.2620.1.5.12.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haTrusted": {
+ "name": "haTrusted",
+ "oid": "1.3.6.1.4.1.2620.1.5.12.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haShared": {
+ "name": "haShared",
+ "oid": "1.3.6.1.4.1.2620.1.5.12.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haProblemTable": {
+ "name": "haProblemTable",
+ "oid": "1.3.6.1.4.1.2620.1.5.13",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "haProblemEntry": {
+ "name": "haProblemEntry",
+ "oid": "1.3.6.1.4.1.2620.1.5.13.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haIfIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "haProblemIndex": {
+ "name": "haProblemIndex",
+ "oid": "1.3.6.1.4.1.2620.1.5.13.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haProblemName": {
+ "name": "haProblemName",
+ "oid": "1.3.6.1.4.1.2620.1.5.13.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haProblemStatus": {
+ "name": "haProblemStatus",
+ "oid": "1.3.6.1.4.1.2620.1.5.13.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haProblemPriority": {
+ "name": "haProblemPriority",
+ "oid": "1.3.6.1.4.1.2620.1.5.13.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haProblemVerified": {
+ "name": "haProblemVerified",
+ "oid": "1.3.6.1.4.1.2620.1.5.13.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haProblemDescr": {
+ "name": "haProblemDescr",
+ "oid": "1.3.6.1.4.1.2620.1.5.13.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haClusterIpTable": {
+ "name": "haClusterIpTable",
+ "oid": "1.3.6.1.4.1.2620.1.5.15",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "haClusterIpEntry": {
+ "name": "haClusterIpEntry",
+ "oid": "1.3.6.1.4.1.2620.1.5.15.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haClusterIpIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "haClusterIpIndex": {
+ "name": "haClusterIpIndex",
+ "oid": "1.3.6.1.4.1.2620.1.5.15.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "haClusterIpIfName": {
+ "name": "haClusterIpIfName",
+ "oid": "1.3.6.1.4.1.2620.1.5.15.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haClusterIpAddr": {
+ "name": "haClusterIpAddr",
+ "oid": "1.3.6.1.4.1.2620.1.5.15.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haClusterIpNetMask": {
+ "name": "haClusterIpNetMask",
+ "oid": "1.3.6.1.4.1.2620.1.5.15.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haClusterIpMemberNet": {
+ "name": "haClusterIpMemberNet",
+ "oid": "1.3.6.1.4.1.2620.1.5.15.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haClusterIpMemberNetMask": {
+ "name": "haClusterIpMemberNetMask",
+ "oid": "1.3.6.1.4.1.2620.1.5.15.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haClusterSyncTable": {
+ "name": "haClusterSyncTable",
+ "oid": "1.3.6.1.4.1.2620.1.5.16",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "haClusterSyncEntry": {
+ "name": "haClusterSyncEntry",
+ "oid": "1.3.6.1.4.1.2620.1.5.16.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "haClusterSyncIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "haClusterSyncIndex": {
+ "name": "haClusterSyncIndex",
+ "oid": "1.3.6.1.4.1.2620.1.5.16.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "haClusterSyncName": {
+ "name": "haClusterSyncName",
+ "oid": "1.3.6.1.4.1.2620.1.5.16.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haClusterSyncAddr": {
+ "name": "haClusterSyncAddr",
+ "oid": "1.3.6.1.4.1.2620.1.5.16.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "haClusterSyncNetMask": {
+ "name": "haClusterSyncNetMask",
+ "oid": "1.3.6.1.4.1.2620.1.5.16.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnInfo": {
+ "name": "svnInfo",
+ "oid": "1.3.6.1.4.1.2620.1.6.4",
+ "class": "objectidentity"
+ },
+ "svnOSInfo": {
+ "name": "svnOSInfo",
+ "oid": "1.3.6.1.4.1.2620.1.6.5",
+ "class": "objectidentity"
+ },
+ "svnPerf": {
+ "name": "svnPerf",
+ "oid": "1.3.6.1.4.1.2620.1.6.7",
+ "class": "objectidentity"
+ },
+ "svnApplianceInfo": {
+ "name": "svnApplianceInfo",
+ "oid": "1.3.6.1.4.1.2620.1.6.16",
+ "class": "objectidentity"
+ },
+ "svnMem": {
+ "name": "svnMem",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.1",
+ "class": "objectidentity"
+ },
+ "svnProc": {
+ "name": "svnProc",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.2",
+ "class": "objectidentity"
+ },
+ "svnDisk": {
+ "name": "svnDisk",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.3",
+ "class": "objectidentity"
+ },
+ "svnMem64": {
+ "name": "svnMem64",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.4",
+ "class": "objectidentity"
+ },
+ "svnRoutingModify": {
+ "name": "svnRoutingModify",
+ "oid": "1.3.6.1.4.1.2620.1.6.9",
+ "class": "objectidentity"
+ },
+ "svnLogDaemon": {
+ "name": "svnLogDaemon",
+ "oid": "1.3.6.1.4.1.2620.1.6.11",
+ "class": "objectidentity"
+ },
+ "svnUpdatesInfo": {
+ "name": "svnUpdatesInfo",
+ "oid": "1.3.6.1.4.1.2620.1.6.20",
+ "class": "objectidentity"
+ },
+ "svnVsxInfo": {
+ "name": "svnVsxInfo",
+ "oid": "1.3.6.1.4.1.2620.1.6.21",
+ "class": "objectidentity"
+ },
+ "arpTableInfo": {
+ "name": "arpTableInfo",
+ "oid": "1.3.6.1.4.1.2620.1.6.22",
+ "class": "objectidentity"
+ },
+ "sysInfo": {
+ "name": "sysInfo",
+ "oid": "1.3.6.1.4.1.2620.1.6.23",
+ "class": "objectidentity"
+ },
+ "svnProdName": {
+ "name": "svnProdName",
+ "oid": "1.3.6.1.4.1.2620.1.6.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnProdVerMajor": {
+ "name": "svnProdVerMajor",
+ "oid": "1.3.6.1.4.1.2620.1.6.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnProdVerMinor": {
+ "name": "svnProdVerMinor",
+ "oid": "1.3.6.1.4.1.2620.1.6.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnUpdatesInfoBuild": {
+ "name": "svnUpdatesInfoBuild",
+ "oid": "1.3.6.1.4.1.2620.1.6.20.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnUpdatesInfoStatus": {
+ "name": "svnUpdatesInfoStatus",
+ "oid": "1.3.6.1.4.1.2620.1.6.20.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnUpdatesInfoConnection": {
+ "name": "svnUpdatesInfoConnection",
+ "oid": "1.3.6.1.4.1.2620.1.6.20.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnUpdatesInfoAvailablePackages": {
+ "name": "svnUpdatesInfoAvailablePackages",
+ "oid": "1.3.6.1.4.1.2620.1.6.20.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnUpdatesInfoAvailableRecommended": {
+ "name": "svnUpdatesInfoAvailableRecommended",
+ "oid": "1.3.6.1.4.1.2620.1.6.20.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnUpdatesInfoAvailableHotfixes": {
+ "name": "svnUpdatesInfoAvailableHotfixes",
+ "oid": "1.3.6.1.4.1.2620.1.6.20.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "updatesInstalledTable": {
+ "name": "updatesInstalledTable",
+ "oid": "1.3.6.1.4.1.2620.1.6.20.7",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "updatesInstalledEntry": {
+ "name": "updatesInstalledEntry",
+ "oid": "1.3.6.1.4.1.2620.1.6.20.7.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "updatesInstalledIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "updatesInstalledIndex": {
+ "name": "updatesInstalledIndex",
+ "oid": "1.3.6.1.4.1.2620.1.6.20.7.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "updatesInstalledName": {
+ "name": "updatesInstalledName",
+ "oid": "1.3.6.1.4.1.2620.1.6.20.7.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "updatesInstalledType": {
+ "name": "updatesInstalledType",
+ "oid": "1.3.6.1.4.1.2620.1.6.20.7.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "updatesRecommendedTable": {
+ "name": "updatesRecommendedTable",
+ "oid": "1.3.6.1.4.1.2620.1.6.20.8",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "updatesRecommendedEntry": {
+ "name": "updatesRecommendedEntry",
+ "oid": "1.3.6.1.4.1.2620.1.6.20.8.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "updatesRecommendedIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "updatesRecommendedIndex": {
+ "name": "updatesRecommendedIndex",
+ "oid": "1.3.6.1.4.1.2620.1.6.20.8.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "updatesRecommendedName": {
+ "name": "updatesRecommendedName",
+ "oid": "1.3.6.1.4.1.2620.1.6.20.8.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "updatesRecommendedType": {
+ "name": "updatesRecommendedType",
+ "oid": "1.3.6.1.4.1.2620.1.6.20.8.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "updatesRecommendedStatus": {
+ "name": "updatesRecommendedStatus",
+ "oid": "1.3.6.1.4.1.2620.1.6.20.8.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnVersion": {
+ "name": "svnVersion",
+ "oid": "1.3.6.1.4.1.2620.1.6.4.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnBuild": {
+ "name": "svnBuild",
+ "oid": "1.3.6.1.4.1.2620.1.6.4.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "osName": {
+ "name": "osName",
+ "oid": "1.3.6.1.4.1.2620.1.6.5.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "osMajorVer": {
+ "name": "osMajorVer",
+ "oid": "1.3.6.1.4.1.2620.1.6.5.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "osMinorVer": {
+ "name": "osMinorVer",
+ "oid": "1.3.6.1.4.1.2620.1.6.5.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "osBuildNum": {
+ "name": "osBuildNum",
+ "oid": "1.3.6.1.4.1.2620.1.6.5.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "osSPmajor": {
+ "name": "osSPmajor",
+ "oid": "1.3.6.1.4.1.2620.1.6.5.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "osSPminor": {
+ "name": "osSPminor",
+ "oid": "1.3.6.1.4.1.2620.1.6.5.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "osVersionLevel": {
+ "name": "osVersionLevel",
+ "oid": "1.3.6.1.4.1.2620.1.6.5.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnApplianceSerialNumber": {
+ "name": "svnApplianceSerialNumber",
+ "oid": "1.3.6.1.4.1.2620.1.6.16.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnApplianceManufacturer": {
+ "name": "svnApplianceManufacturer",
+ "oid": "1.3.6.1.4.1.2620.1.6.16.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnApplianceProductName": {
+ "name": "svnApplianceProductName",
+ "oid": "1.3.6.1.4.1.2620.1.6.16.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnApplianceSeriesString": {
+ "name": "svnApplianceSeriesString",
+ "oid": "1.3.6.1.4.1.2620.1.6.16.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "memTotalVirtual": {
+ "name": "memTotalVirtual",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "memActiveVirtual": {
+ "name": "memActiveVirtual",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.1.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "memTotalReal": {
+ "name": "memTotalReal",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.1.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "memActiveReal": {
+ "name": "memActiveReal",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.1.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "memFreeReal": {
+ "name": "memFreeReal",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.1.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "memSwapsSec": {
+ "name": "memSwapsSec",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.1.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "memDiskTransfers": {
+ "name": "memDiskTransfers",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.1.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "procUsrTime": {
+ "name": "procUsrTime",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.2.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "procSysTime": {
+ "name": "procSysTime",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.2.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "procIdleTime": {
+ "name": "procIdleTime",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.2.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "procUsage": {
+ "name": "procUsage",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.2.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "procQueue": {
+ "name": "procQueue",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.2.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "procInterrupts": {
+ "name": "procInterrupts",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.2.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "procNum": {
+ "name": "procNum",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.2.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "diskTime": {
+ "name": "diskTime",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.3.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "diskQueue": {
+ "name": "diskQueue",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.3.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "diskPercent": {
+ "name": "diskPercent",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.3.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "diskFreeTotal": {
+ "name": "diskFreeTotal",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.3.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "diskFreeAvail": {
+ "name": "diskFreeAvail",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.3.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "diskTotal": {
+ "name": "diskTotal",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.3.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "memTotalVirtual64": {
+ "name": "memTotalVirtual64",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.4.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "memActiveVirtual64": {
+ "name": "memActiveVirtual64",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.4.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "memTotalReal64": {
+ "name": "memTotalReal64",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.4.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "memActiveReal64": {
+ "name": "memActiveReal64",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.4.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "memFreeReal64": {
+ "name": "memFreeReal64",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.4.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "memSwapsSec64": {
+ "name": "memSwapsSec64",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.4.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "memDiskTransfers64": {
+ "name": "memDiskTransfers64",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.4.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "multiProcTable": {
+ "name": "multiProcTable",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.5",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "vdName": {
+ "name": "vdName",
+ "oid": "1.3.6.1.4.1.2620.1.6.21.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vdType": {
+ "name": "vdType",
+ "oid": "1.3.6.1.4.1.2620.1.6.21.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ctxId": {
+ "name": "ctxId",
+ "oid": "1.3.6.1.4.1.2620.1.6.21.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "multiProcEntry": {
+ "name": "multiProcEntry",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.5.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "multiProcIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "multiProcIndex": {
+ "name": "multiProcIndex",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.5.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "multiProcUserTime": {
+ "name": "multiProcUserTime",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.5.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "multiProcSystemTime": {
+ "name": "multiProcSystemTime",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.5.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "multiProcIdleTime": {
+ "name": "multiProcIdleTime",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.5.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "multiProcUsage": {
+ "name": "multiProcUsage",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.5.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "multiProcRunQueue": {
+ "name": "multiProcRunQueue",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.5.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "multiProcInterrupts": {
+ "name": "multiProcInterrupts",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.5.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "multiDiskTable": {
+ "name": "multiDiskTable",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.6",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "multiDiskEntry": {
+ "name": "multiDiskEntry",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.6.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "multiDiskIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "multiDiskIndex": {
+ "name": "multiDiskIndex",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.6.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "multiDiskName": {
+ "name": "multiDiskName",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.6.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "multiDiskSize": {
+ "name": "multiDiskSize",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.6.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "multiDiskUsed": {
+ "name": "multiDiskUsed",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.6.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "multiDiskFreeTotalBytes": {
+ "name": "multiDiskFreeTotalBytes",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.6.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "multiDiskFreeTotalPercent": {
+ "name": "multiDiskFreeTotalPercent",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.6.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "multiDiskFreeAvailableBytes": {
+ "name": "multiDiskFreeAvailableBytes",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.6.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "multiDiskFreeAvailablePercent": {
+ "name": "multiDiskFreeAvailablePercent",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.6.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raidInfo": {
+ "name": "raidInfo",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7",
+ "class": "objectidentity"
+ },
+ "sensorInfo": {
+ "name": "sensorInfo",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8",
+ "class": "objectidentity"
+ },
+ "powerSupplyInfo": {
+ "name": "powerSupplyInfo",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.9",
+ "class": "objectidentity"
+ },
+ "raidVolumeTable": {
+ "name": "raidVolumeTable",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7.1",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "raidVolumeEntry": {
+ "name": "raidVolumeEntry",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7.1.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raidVolumeIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "raidVolumeIndex": {
+ "name": "raidVolumeIndex",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7.1.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type",
+ "constraints": {
+ "range": [
+ {
+ "min": 0,
+ "max": 100
+ }
+ ]
+ }
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "raidVolumeID": {
+ "name": "raidVolumeID",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7.1.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raidVolumeType": {
+ "name": "raidVolumeType",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7.1.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "numOfDisksOnRaid": {
+ "name": "numOfDisksOnRaid",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7.1.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raidVolumeMaxLBA": {
+ "name": "raidVolumeMaxLBA",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7.1.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raidVolumeState": {
+ "name": "raidVolumeState",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7.1.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raidVolumeFlags": {
+ "name": "raidVolumeFlags",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7.1.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raidVolumeSize": {
+ "name": "raidVolumeSize",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7.1.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raidDiskTable": {
+ "name": "raidDiskTable",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7.2",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "raidDiskEntry": {
+ "name": "raidDiskEntry",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7.2.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "raidDiskIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "raidDiskIndex": {
+ "name": "raidDiskIndex",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7.2.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type",
+ "constraints": {
+ "range": [
+ {
+ "min": 0,
+ "max": 100
+ }
+ ]
+ }
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "raidDiskVolumeID": {
+ "name": "raidDiskVolumeID",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7.2.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raidDiskID": {
+ "name": "raidDiskID",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7.2.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raidDiskNumber": {
+ "name": "raidDiskNumber",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7.2.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raidDiskVendor": {
+ "name": "raidDiskVendor",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7.2.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raidDiskProductID": {
+ "name": "raidDiskProductID",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7.2.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raidDiskRevision": {
+ "name": "raidDiskRevision",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7.2.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raidDiskMaxLBA": {
+ "name": "raidDiskMaxLBA",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7.2.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raidDiskState": {
+ "name": "raidDiskState",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7.2.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raidDiskFlags": {
+ "name": "raidDiskFlags",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7.2.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raidDiskSyncState": {
+ "name": "raidDiskSyncState",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7.2.1.11",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "raidDiskSize": {
+ "name": "raidDiskSize",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.7.2.1.12",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "tempertureSensorTable": {
+ "name": "tempertureSensorTable",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8.1",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "tempertureSensorEntry": {
+ "name": "tempertureSensorEntry",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8.1.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "tempertureSensorIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "tempertureSensorIndex": {
+ "name": "tempertureSensorIndex",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8.1.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type",
+ "constraints": {
+ "range": [
+ {
+ "min": 0,
+ "max": 100
+ }
+ ]
+ }
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "tempertureSensorName": {
+ "name": "tempertureSensorName",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8.1.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "tempertureSensorValue": {
+ "name": "tempertureSensorValue",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8.1.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "tempertureSensorUnit": {
+ "name": "tempertureSensorUnit",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8.1.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "tempertureSensorType": {
+ "name": "tempertureSensorType",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8.1.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "tempertureSensorStatus": {
+ "name": "tempertureSensorStatus",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8.1.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fanSpeedSensorTable": {
+ "name": "fanSpeedSensorTable",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8.2",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fanSpeedSensorEntry": {
+ "name": "fanSpeedSensorEntry",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8.2.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "fanSpeedSensorIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "fanSpeedSensorIndex": {
+ "name": "fanSpeedSensorIndex",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8.2.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type",
+ "constraints": {
+ "range": [
+ {
+ "min": 0,
+ "max": 100
+ }
+ ]
+ }
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "fanSpeedSensorName": {
+ "name": "fanSpeedSensorName",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8.2.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fanSpeedSensorValue": {
+ "name": "fanSpeedSensorValue",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8.2.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fanSpeedSensorUnit": {
+ "name": "fanSpeedSensorUnit",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8.2.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fanSpeedSensorType": {
+ "name": "fanSpeedSensorType",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8.2.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "fanSpeedSensorStatus": {
+ "name": "fanSpeedSensorStatus",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8.2.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voltageSensorTable": {
+ "name": "voltageSensorTable",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8.3",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "voltageSensorEntry": {
+ "name": "voltageSensorEntry",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8.3.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voltageSensorIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "voltageSensorIndex": {
+ "name": "voltageSensorIndex",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8.3.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type",
+ "constraints": {
+ "range": [
+ {
+ "min": 0,
+ "max": 100
+ }
+ ]
+ }
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "voltageSensorName": {
+ "name": "voltageSensorName",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8.3.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voltageSensorValue": {
+ "name": "voltageSensorValue",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8.3.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voltageSensorUnit": {
+ "name": "voltageSensorUnit",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8.3.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voltageSensorType": {
+ "name": "voltageSensorType",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8.3.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voltageSensorStatus": {
+ "name": "voltageSensorStatus",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.8.3.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "powerSupplyTable": {
+ "name": "powerSupplyTable",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.9.1",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "powerSupplyEntry": {
+ "name": "powerSupplyEntry",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.9.1.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "powerSupplyIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "powerSupplyIndex": {
+ "name": "powerSupplyIndex",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.9.1.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type",
+ "constraints": {
+ "range": [
+ {
+ "min": 0,
+ "max": 100
+ }
+ ]
+ }
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "powerSupplyStatus": {
+ "name": "powerSupplyStatus",
+ "oid": "1.3.6.1.4.1.2620.1.6.7.9.1.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "routingTable": {
+ "name": "routingTable",
+ "oid": "1.3.6.1.4.1.2620.1.6.6",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "routingEntry": {
+ "name": "routingEntry",
+ "oid": "1.3.6.1.4.1.2620.1.6.6.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "routingIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "routingIndex": {
+ "name": "routingIndex",
+ "oid": "1.3.6.1.4.1.2620.1.6.6.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "routingDest": {
+ "name": "routingDest",
+ "oid": "1.3.6.1.4.1.2620.1.6.6.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "routingMask": {
+ "name": "routingMask",
+ "oid": "1.3.6.1.4.1.2620.1.6.6.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "routingGatweway": {
+ "name": "routingGatweway",
+ "oid": "1.3.6.1.4.1.2620.1.6.6.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "routingIntrfName": {
+ "name": "routingIntrfName",
+ "oid": "1.3.6.1.4.1.2620.1.6.6.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnSysTime": {
+ "name": "svnSysTime",
+ "oid": "1.3.6.1.4.1.2620.1.6.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnRouteModDest": {
+ "name": "svnRouteModDest",
+ "oid": "1.3.6.1.4.1.2620.1.6.9.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnRouteModMask": {
+ "name": "svnRouteModMask",
+ "oid": "1.3.6.1.4.1.2620.1.6.9.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnRouteModGateway": {
+ "name": "svnRouteModGateway",
+ "oid": "1.3.6.1.4.1.2620.1.6.9.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnRouteModIfIndex": {
+ "name": "svnRouteModIfIndex",
+ "oid": "1.3.6.1.4.1.2620.1.6.9.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnRouteModIfName": {
+ "name": "svnRouteModIfName",
+ "oid": "1.3.6.1.4.1.2620.1.6.9.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnRouteModAction": {
+ "name": "svnRouteModAction",
+ "oid": "1.3.6.1.4.1.2620.1.6.9.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnUTCTimeOffset": {
+ "name": "svnUTCTimeOffset",
+ "oid": "1.3.6.1.4.1.2620.1.6.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnLogDStat": {
+ "name": "svnLogDStat",
+ "oid": "1.3.6.1.4.1.2620.1.6.11.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnSysStartTime": {
+ "name": "svnSysStartTime",
+ "oid": "1.3.6.1.4.1.2620.1.6.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnSysUniqId": {
+ "name": "svnSysUniqId",
+ "oid": "1.3.6.1.4.1.2620.1.6.13",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnWebUIPort": {
+ "name": "svnWebUIPort",
+ "oid": "1.3.6.1.4.1.2620.1.6.15",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "arpTableSize": {
+ "name": "arpTableSize",
+ "oid": "1.3.6.1.4.1.2620.1.6.22.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "sysDescr": {
+ "name": "sysDescr",
+ "oid": "1.3.6.1.4.1.2620.1.6.23.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "sysObjectID": {
+ "name": "sysObjectID",
+ "oid": "1.3.6.1.4.1.2620.1.6.23.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnPlatformInfo": {
+ "name": "svnPlatformInfo",
+ "oid": "1.3.6.1.4.1.2620.1.6.123",
+ "class": "objectidentity"
+ },
+ "supportedPlatforms": {
+ "name": "supportedPlatforms",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1",
+ "class": "objectidentity"
+ },
+ "checkPointUTM_1450": {
+ "name": "checkPointUTM_1450",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointUTM_11050": {
+ "name": "checkPointUTM_11050",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointUTM_12050": {
+ "name": "checkPointUTM_12050",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointUTM_1130": {
+ "name": "checkPointUTM_1130",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointUTM_1270": {
+ "name": "checkPointUTM_1270",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointUTM_1570": {
+ "name": "checkPointUTM_1570",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointUTM_11070": {
+ "name": "checkPointUTM_11070",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointUTM_12070": {
+ "name": "checkPointUTM_12070",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointUTM_13070": {
+ "name": "checkPointUTM_13070",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointPower_15070": {
+ "name": "checkPointPower_15070",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointPower_19070": {
+ "name": "checkPointPower_19070",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointPower_111000": {
+ "name": "checkPointPower_111000",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSmart_15": {
+ "name": "checkPointSmart_15",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.13",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSmart_125": {
+ "name": "checkPointSmart_125",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.14",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSmart_150": {
+ "name": "checkPointSmart_150",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.15",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSmart_1150": {
+ "name": "checkPointSmart_1150",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.16",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointIP150": {
+ "name": "checkPointIP150",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.17",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointIP280": {
+ "name": "checkPointIP280",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.18",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointIP290": {
+ "name": "checkPointIP290",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.19",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointIP390": {
+ "name": "checkPointIP390",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.20",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointIP560": {
+ "name": "checkPointIP560",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.21",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointIP690": {
+ "name": "checkPointIP690",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.22",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointIP1280": {
+ "name": "checkPointIP1280",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.23",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointIP2450": {
+ "name": "checkPointIP2450",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.24",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointUNIVERGEUnifiedWall1000": {
+ "name": "checkPointUNIVERGEUnifiedWall1000",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.25",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointUNIVERGEUnifiedWall2000": {
+ "name": "checkPointUNIVERGEUnifiedWall2000",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.26",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointUNIVERGEUnifiedWall4000": {
+ "name": "checkPointUNIVERGEUnifiedWall4000",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.27",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointUNIVERGEUnifiedWall100": {
+ "name": "checkPointUNIVERGEUnifiedWall100",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.28",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointDLP_19571": {
+ "name": "checkPointDLP_19571",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.29",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointDLP_12571": {
+ "name": "checkPointDLP_12571",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.30",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointIPS_12076": {
+ "name": "checkPointIPS_12076",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.31",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointIPS_15076": {
+ "name": "checkPointIPS_15076",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.32",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointIPS_19076": {
+ "name": "checkPointIPS_19076",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.33",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint2200": {
+ "name": "checkPoint2200",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.34",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint4200": {
+ "name": "checkPoint4200",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.35",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint4400": {
+ "name": "checkPoint4400",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.36",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint4600": {
+ "name": "checkPoint4600",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.37",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint4800": {
+ "name": "checkPoint4800",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.38",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointTE250": {
+ "name": "checkPointTE250",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.39",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint12200": {
+ "name": "checkPoint12200",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.40",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint12400": {
+ "name": "checkPoint12400",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.41",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint12600": {
+ "name": "checkPoint12600",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.42",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointTE1000": {
+ "name": "checkPointTE1000",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.43",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint13500": {
+ "name": "checkPoint13500",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.44",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint21400": {
+ "name": "checkPoint21400",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.45",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint21600": {
+ "name": "checkPoint21600",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.46",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint21700": {
+ "name": "checkPoint21700",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.47",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointVMware": {
+ "name": "checkPointVMware",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.48",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointOpenServer": {
+ "name": "checkPointOpenServer",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.49",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSmart_1205": {
+ "name": "checkPointSmart_1205",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.50",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSmart_1210": {
+ "name": "checkPointSmart_1210",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.51",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSmart_1225": {
+ "name": "checkPointSmart_1225",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.52",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSmart_13050": {
+ "name": "checkPointSmart_13050",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.53",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSmart_13150": {
+ "name": "checkPointSmart_13150",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.54",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint13800": {
+ "name": "checkPoint13800",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.55",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint21800": {
+ "name": "checkPoint21800",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.56",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointTE250X": {
+ "name": "checkPointTE250X",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.57",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointTE1000X": {
+ "name": "checkPointTE1000X",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.58",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointTE2000X": {
+ "name": "checkPointTE2000X",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.59",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointTE100X": {
+ "name": "checkPointTE100X",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.60",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint23500": {
+ "name": "checkPoint23500",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.61",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint23800": {
+ "name": "checkPoint23800",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.62",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint15400": {
+ "name": "checkPoint15400",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.63",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint15600": {
+ "name": "checkPoint15600",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.64",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint3200": {
+ "name": "checkPoint3200",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.65",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint5200": {
+ "name": "checkPoint5200",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.66",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint5400": {
+ "name": "checkPoint5400",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.67",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint5600": {
+ "name": "checkPoint5600",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.68",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint5800": {
+ "name": "checkPoint5800",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.69",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint5900": {
+ "name": "checkPoint5900",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.70",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint3100": {
+ "name": "checkPoint3100",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.71",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint5100": {
+ "name": "checkPoint5100",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.72",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSmart_1405": {
+ "name": "checkPointSmart_1405",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.73",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSmart_1410": {
+ "name": "checkPointSmart_1410",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.74",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSmart_5050": {
+ "name": "checkPointSmart_5050",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.75",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSmart_525": {
+ "name": "checkPointSmart_525",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.76",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSmart_5150": {
+ "name": "checkPointSmart_5150",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.77",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint23900": {
+ "name": "checkPoint23900",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.78",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint6500": {
+ "name": "checkPoint6500",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.79",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint6800": {
+ "name": "checkPoint6800",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.80",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint16000T": {
+ "name": "checkPoint16000T",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.81",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint26000": {
+ "name": "checkPoint26000",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.82",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSmart_625": {
+ "name": "checkPointSmart_625",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.83",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint16000": {
+ "name": "checkPoint16000",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.84",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint26000T": {
+ "name": "checkPoint26000T",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.85",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint3600": {
+ "name": "checkPoint3600",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.86",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint3600T": {
+ "name": "checkPoint3600T",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.87",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint6200B": {
+ "name": "checkPoint6200B",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.88",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint6200P": {
+ "name": "checkPoint6200P",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.89",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint6200T": {
+ "name": "checkPoint6200T",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.90",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint6600": {
+ "name": "checkPoint6600",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.91",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint6900": {
+ "name": "checkPoint6900",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.92",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint16600HS": {
+ "name": "checkPoint16600HS",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.93",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint28600HS": {
+ "name": "checkPoint28600HS",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.94",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint6700": {
+ "name": "checkPoint6700",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.95",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint7000": {
+ "name": "checkPoint7000",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.96",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint16200": {
+ "name": "checkPoint16200",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.97",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint28000": {
+ "name": "checkPoint28000",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.98",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint6400": {
+ "name": "checkPoint6400",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.99",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint3800": {
+ "name": "checkPoint3800",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.100",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSmart_6000_L": {
+ "name": "checkPointSmart_6000_L",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.101",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSmart_6000_XL": {
+ "name": "checkPointSmart_6000_XL",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.102",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSmart_600_S": {
+ "name": "checkPointSmart_600_S",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.103",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSmart_600_M": {
+ "name": "checkPointSmart_600_M",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.104",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointTE2000XN": {
+ "name": "checkPointTE2000XN",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.105",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointQLS250": {
+ "name": "checkPointQLS250",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.120",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointQLS450": {
+ "name": "checkPointQLS450",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.121",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointQLS650": {
+ "name": "checkPointQLS650",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.122",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointQLS800": {
+ "name": "checkPointQLS800",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.123",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointMLS200": {
+ "name": "checkPointMLS200",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.124",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointMLS400": {
+ "name": "checkPointMLS400",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.125",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSMB_1530": {
+ "name": "checkPointSMB_1530",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.2000",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSMB_1550": {
+ "name": "checkPointSMB_1550",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.2001",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSMB_1570": {
+ "name": "checkPointSMB_1570",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.2002",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSMB_1570R": {
+ "name": "checkPointSMB_1570R",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.2003",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSMB_1590": {
+ "name": "checkPointSMB_1590",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.2004",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSMB_1600": {
+ "name": "checkPointSMB_1600",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.2005",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointSMB_1800": {
+ "name": "checkPointSMB_1800",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.2006",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint61000": {
+ "name": "checkPoint61000",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.3001",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint64000": {
+ "name": "checkPoint64000",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.3002",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint41000": {
+ "name": "checkPoint41000",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.3003",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPoint44000": {
+ "name": "checkPoint44000",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.3004",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointMHO140": {
+ "name": "checkPointMHO140",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.4000",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointMHO170": {
+ "name": "checkPointMHO170",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.4001",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "checkPointMHO175": {
+ "name": "checkPointMHO175",
+ "oid": "1.3.6.1.4.1.2620.1.6.123.1.4002",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnLicensing": {
+ "name": "svnLicensing",
+ "oid": "1.3.6.1.4.1.2620.1.6.18",
+ "class": "objectidentity"
+ },
+ "licensingTable": {
+ "name": "licensingTable",
+ "oid": "1.3.6.1.4.1.2620.1.6.18.1",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "licensingEntry": {
+ "name": "licensingEntry",
+ "oid": "1.3.6.1.4.1.2620.1.6.18.1.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "licensingIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "licensingIndex": {
+ "name": "licensingIndex",
+ "oid": "1.3.6.1.4.1.2620.1.6.18.1.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "licensingID": {
+ "name": "licensingID",
+ "oid": "1.3.6.1.4.1.2620.1.6.18.1.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "licensingBladeGUIOrder": {
+ "name": "licensingBladeGUIOrder",
+ "oid": "1.3.6.1.4.1.2620.1.6.18.1.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "licensingBladeName": {
+ "name": "licensingBladeName",
+ "oid": "1.3.6.1.4.1.2620.1.6.18.1.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "licensingState": {
+ "name": "licensingState",
+ "oid": "1.3.6.1.4.1.2620.1.6.18.1.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "licensingExpirationDate": {
+ "name": "licensingExpirationDate",
+ "oid": "1.3.6.1.4.1.2620.1.6.18.1.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "licensingImpact": {
+ "name": "licensingImpact",
+ "oid": "1.3.6.1.4.1.2620.1.6.18.1.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "licensingBladeActive": {
+ "name": "licensingBladeActive",
+ "oid": "1.3.6.1.4.1.2620.1.6.18.1.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "licensingTotalQuota": {
+ "name": "licensingTotalQuota",
+ "oid": "1.3.6.1.4.1.2620.1.6.18.1.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "licensingUsedQuota": {
+ "name": "licensingUsedQuota",
+ "oid": "1.3.6.1.4.1.2620.1.6.18.1.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "licensingAssetInfo": {
+ "name": "licensingAssetInfo",
+ "oid": "1.3.6.1.4.1.2620.1.6.18.2",
+ "class": "objectidentity"
+ },
+ "licensingAssetAccountId": {
+ "name": "licensingAssetAccountId",
+ "oid": "1.3.6.1.4.1.2620.1.6.18.2.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "licensingAssetPackageDescription": {
+ "name": "licensingAssetPackageDescription",
+ "oid": "1.3.6.1.4.1.2620.1.6.18.2.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "licensingAssetContainerCK": {
+ "name": "licensingAssetContainerCK",
+ "oid": "1.3.6.1.4.1.2620.1.6.18.2.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "licensingAssetCKSignature": {
+ "name": "licensingAssetCKSignature",
+ "oid": "1.3.6.1.4.1.2620.1.6.18.2.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "licensingAssetContainerSKU": {
+ "name": "licensingAssetContainerSKU",
+ "oid": "1.3.6.1.4.1.2620.1.6.18.2.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "licensingAssetSupportLevel": {
+ "name": "licensingAssetSupportLevel",
+ "oid": "1.3.6.1.4.1.2620.1.6.18.2.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "licensingAssetSupportExpiration": {
+ "name": "licensingAssetSupportExpiration",
+ "oid": "1.3.6.1.4.1.2620.1.6.18.2.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "licensingAssetActivationStatus": {
+ "name": "licensingAssetActivationStatus",
+ "oid": "1.3.6.1.4.1.2620.1.6.18.2.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnConnectivity": {
+ "name": "svnConnectivity",
+ "oid": "1.3.6.1.4.1.2620.1.6.19",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnNetStat": {
+ "name": "svnNetStat",
+ "oid": "1.3.6.1.4.1.2620.1.6.50",
+ "class": "objectidentity"
+ },
+ "svnNetIfTable": {
+ "name": "svnNetIfTable",
+ "oid": "1.3.6.1.4.1.2620.1.6.50.1",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "svnNetIfTableEntry": {
+ "name": "svnNetIfTableEntry",
+ "oid": "1.3.6.1.4.1.2620.1.6.50.1.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "svnNetIfIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "svnNetIfIndex": {
+ "name": "svnNetIfIndex",
+ "oid": "1.3.6.1.4.1.2620.1.6.50.1.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "svnNetIfVsid": {
+ "name": "svnNetIfVsid",
+ "oid": "1.3.6.1.4.1.2620.1.6.50.1.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnNetIfName": {
+ "name": "svnNetIfName",
+ "oid": "1.3.6.1.4.1.2620.1.6.50.1.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnNetIfAddress": {
+ "name": "svnNetIfAddress",
+ "oid": "1.3.6.1.4.1.2620.1.6.50.1.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnNetIfMask": {
+ "name": "svnNetIfMask",
+ "oid": "1.3.6.1.4.1.2620.1.6.50.1.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnNetIfMTU": {
+ "name": "svnNetIfMTU",
+ "oid": "1.3.6.1.4.1.2620.1.6.50.1.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnNetIfState": {
+ "name": "svnNetIfState",
+ "oid": "1.3.6.1.4.1.2620.1.6.50.1.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnNetIfMAC": {
+ "name": "svnNetIfMAC",
+ "oid": "1.3.6.1.4.1.2620.1.6.50.1.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnNetIfDescription": {
+ "name": "svnNetIfDescription",
+ "oid": "1.3.6.1.4.1.2620.1.6.50.1.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnNetIfOperState": {
+ "name": "svnNetIfOperState",
+ "oid": "1.3.6.1.4.1.2620.1.6.50.1.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnNetIfRXBytes": {
+ "name": "svnNetIfRXBytes",
+ "oid": "1.3.6.1.4.1.2620.1.6.50.1.1.13",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnNetIfRXDrops": {
+ "name": "svnNetIfRXDrops",
+ "oid": "1.3.6.1.4.1.2620.1.6.50.1.1.14",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnNetIfRXErrors": {
+ "name": "svnNetIfRXErrors",
+ "oid": "1.3.6.1.4.1.2620.1.6.50.1.1.15",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnNetIfRXPackets": {
+ "name": "svnNetIfRXPackets",
+ "oid": "1.3.6.1.4.1.2620.1.6.50.1.1.16",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnNetIfTXBytes": {
+ "name": "svnNetIfTXBytes",
+ "oid": "1.3.6.1.4.1.2620.1.6.50.1.1.17",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnNetIfTXDrops": {
+ "name": "svnNetIfTXDrops",
+ "oid": "1.3.6.1.4.1.2620.1.6.50.1.1.18",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnNetIfTXErrors": {
+ "name": "svnNetIfTXErrors",
+ "oid": "1.3.6.1.4.1.2620.1.6.50.1.1.19",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnNetIfTXPackets": {
+ "name": "svnNetIfTXPackets",
+ "oid": "1.3.6.1.4.1.2620.1.6.50.1.1.20",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsRoutingTable": {
+ "name": "vsRoutingTable",
+ "oid": "1.3.6.1.4.1.2620.1.6.51",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "vsRoutingEntry": {
+ "name": "vsRoutingEntry",
+ "oid": "1.3.6.1.4.1.2620.1.6.51.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "vsRoutingIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "vsRoutingIndex": {
+ "name": "vsRoutingIndex",
+ "oid": "1.3.6.1.4.1.2620.1.6.51.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "vsRoutingDest": {
+ "name": "vsRoutingDest",
+ "oid": "1.3.6.1.4.1.2620.1.6.51.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsRoutingMask": {
+ "name": "vsRoutingMask",
+ "oid": "1.3.6.1.4.1.2620.1.6.51.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsRoutingGateway": {
+ "name": "vsRoutingGateway",
+ "oid": "1.3.6.1.4.1.2620.1.6.51.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsRoutingIntrfName": {
+ "name": "vsRoutingIntrfName",
+ "oid": "1.3.6.1.4.1.2620.1.6.51.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "vsRoutingVsId": {
+ "name": "vsRoutingVsId",
+ "oid": "1.3.6.1.4.1.2620.1.6.51.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnStatCode": {
+ "name": "svnStatCode",
+ "oid": "1.3.6.1.4.1.2620.1.6.101",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnStatShortDescr": {
+ "name": "svnStatShortDescr",
+ "oid": "1.3.6.1.4.1.2620.1.6.102",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnStatLongDescr": {
+ "name": "svnStatLongDescr",
+ "oid": "1.3.6.1.4.1.2620.1.6.103",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "svnServicePack": {
+ "name": "svnServicePack",
+ "oid": "1.3.6.1.4.1.2620.1.6.999",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mgProdName": {
+ "name": "mgProdName",
+ "oid": "1.3.6.1.4.1.2620.1.7.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mgVerMajor": {
+ "name": "mgVerMajor",
+ "oid": "1.3.6.1.4.1.2620.1.7.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mgVerMinor": {
+ "name": "mgVerMinor",
+ "oid": "1.3.6.1.4.1.2620.1.7.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mgBuildNumber": {
+ "name": "mgBuildNumber",
+ "oid": "1.3.6.1.4.1.2620.1.7.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mgActiveStatus": {
+ "name": "mgActiveStatus",
+ "oid": "1.3.6.1.4.1.2620.1.7.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mgFwmIsAlive": {
+ "name": "mgFwmIsAlive",
+ "oid": "1.3.6.1.4.1.2620.1.7.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mgConnectedClientsTable": {
+ "name": "mgConnectedClientsTable",
+ "oid": "1.3.6.1.4.1.2620.1.7.7",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mgICAStatus": {
+ "name": "mgICAStatus",
+ "oid": "1.3.6.1.4.1.2620.1.7.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mgMgmtHAJournals": {
+ "name": "mgMgmtHAJournals",
+ "oid": "1.3.6.1.4.1.2620.1.7.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mgIsLicenseViolation": {
+ "name": "mgIsLicenseViolation",
+ "oid": "1.3.6.1.4.1.2620.1.7.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mgLicenseViolationMsg": {
+ "name": "mgLicenseViolationMsg",
+ "oid": "1.3.6.1.4.1.2620.1.7.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mgConnectedClientsEntry": {
+ "name": "mgConnectedClientsEntry",
+ "oid": "1.3.6.1.4.1.2620.1.7.7.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mgIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "mgIndex": {
+ "name": "mgIndex",
+ "oid": "1.3.6.1.4.1.2620.1.7.7.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mgClientName": {
+ "name": "mgClientName",
+ "oid": "1.3.6.1.4.1.2620.1.7.7.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mgClientHost": {
+ "name": "mgClientHost",
+ "oid": "1.3.6.1.4.1.2620.1.7.7.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mgClientDbLock": {
+ "name": "mgClientDbLock",
+ "oid": "1.3.6.1.4.1.2620.1.7.7.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mgApplicationType": {
+ "name": "mgApplicationType",
+ "oid": "1.3.6.1.4.1.2620.1.7.7.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mgLogServerInfo": {
+ "name": "mgLogServerInfo",
+ "oid": "1.3.6.1.4.1.2620.1.7.14",
+ "class": "objectidentity"
+ },
+ "mgLSLogReceiveRate": {
+ "name": "mgLSLogReceiveRate",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mgLSLogReceiveRatePeak": {
+ "name": "mgLSLogReceiveRatePeak",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mgLSLogReceiveRate10Min": {
+ "name": "mgLSLogReceiveRate10Min",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mgConnectedGatewaysTable": {
+ "name": "mgConnectedGatewaysTable",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.4",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mgConnectedGatewaysEntry": {
+ "name": "mgConnectedGatewaysEntry",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.4.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "mglsGWIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "mglsGWIndex": {
+ "name": "mglsGWIndex",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.4.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mglsGWIP": {
+ "name": "mglsGWIP",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.4.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mglsGWState": {
+ "name": "mglsGWState",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.4.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mglsGWLastLoginTime": {
+ "name": "mglsGWLastLoginTime",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.4.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mglsGWLogReceiveRate": {
+ "name": "mglsGWLogReceiveRate",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.4.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mgIndexerInfo": {
+ "name": "mgIndexerInfo",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.5",
+ "class": "objectidentity"
+ },
+ "mgIndexerInfoTotalReadLogs": {
+ "name": "mgIndexerInfoTotalReadLogs",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.5.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mgIndexerInfoTotalUpdatesAndLogsIndexed": {
+ "name": "mgIndexerInfoTotalUpdatesAndLogsIndexed",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.5.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mgIndexerInfoTotalReadLogsErrors": {
+ "name": "mgIndexerInfoTotalReadLogsErrors",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.5.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mgIndexerInfoTotalUpdatesAndLogsIndexedErrors": {
+ "name": "mgIndexerInfoTotalUpdatesAndLogsIndexedErrors",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.5.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mgIndexerInfoUpdatesAndLogsIndexedRate": {
+ "name": "mgIndexerInfoUpdatesAndLogsIndexedRate",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.5.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mgIndexerInfoReadLogsRate": {
+ "name": "mgIndexerInfoReadLogsRate",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.5.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mgIndexerInfoUpdatesAndLogsIndexedRate10min": {
+ "name": "mgIndexerInfoUpdatesAndLogsIndexedRate10min",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.5.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mgIndexerInfoReadLogsRate10min": {
+ "name": "mgIndexerInfoReadLogsRate10min",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.5.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mgIndexerInfoUpdatesAndLogsIndexedRate60min": {
+ "name": "mgIndexerInfoUpdatesAndLogsIndexedRate60min",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.5.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mgIndexerInfoReadLogsRate60min": {
+ "name": "mgIndexerInfoReadLogsRate60min",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.5.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mgIndexerInfoUpdatesAndLogsIndexedRatePeak": {
+ "name": "mgIndexerInfoUpdatesAndLogsIndexedRatePeak",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.5.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mgIndexerInfoReadLogsRatePeak": {
+ "name": "mgIndexerInfoReadLogsRatePeak",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.5.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mgIndexerInfoReadLogsDelay": {
+ "name": "mgIndexerInfoReadLogsDelay",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.5.13",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "mgStatCode": {
+ "name": "mgStatCode",
+ "oid": "1.3.6.1.4.1.2620.1.7.101",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mgStatShortDescr": {
+ "name": "mgStatShortDescr",
+ "oid": "1.3.6.1.4.1.2620.1.7.102",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mgStatLongDescr": {
+ "name": "mgStatLongDescr",
+ "oid": "1.3.6.1.4.1.2620.1.7.103",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "mgLSLogReceiveRate1Hour": {
+ "name": "mgLSLogReceiveRate1Hour",
+ "oid": "1.3.6.1.4.1.2620.1.7.14.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "wamPluginPerformance": {
+ "name": "wamPluginPerformance",
+ "oid": "1.3.6.1.4.1.2620.1.8.6",
+ "class": "objectidentity"
+ },
+ "wamPolicy": {
+ "name": "wamPolicy",
+ "oid": "1.3.6.1.4.1.2620.1.8.7",
+ "class": "objectidentity"
+ },
+ "wamUagQueries": {
+ "name": "wamUagQueries",
+ "oid": "1.3.6.1.4.1.2620.1.8.8",
+ "class": "objectidentity"
+ },
+ "wamGlobalPerformance": {
+ "name": "wamGlobalPerformance",
+ "oid": "1.3.6.1.4.1.2620.1.8.9",
+ "class": "objectidentity"
+ },
+ "wamProdName": {
+ "name": "wamProdName",
+ "oid": "1.3.6.1.4.1.2620.1.8.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "wamVerMajor": {
+ "name": "wamVerMajor",
+ "oid": "1.3.6.1.4.1.2620.1.8.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "wamVerMinor": {
+ "name": "wamVerMinor",
+ "oid": "1.3.6.1.4.1.2620.1.8.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "wamState": {
+ "name": "wamState",
+ "oid": "1.3.6.1.4.1.2620.1.8.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "wamName": {
+ "name": "wamName",
+ "oid": "1.3.6.1.4.1.2620.1.8.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "wamStatCode": {
+ "name": "wamStatCode",
+ "oid": "1.3.6.1.4.1.2620.1.8.101",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "wamStatShortDescr": {
+ "name": "wamStatShortDescr",
+ "oid": "1.3.6.1.4.1.2620.1.8.102",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "wamStatLongDescr": {
+ "name": "wamStatLongDescr",
+ "oid": "1.3.6.1.4.1.2620.1.8.103",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "wamAcceptReq": {
+ "name": "wamAcceptReq",
+ "oid": "1.3.6.1.4.1.2620.1.8.6.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "wamRejectReq": {
+ "name": "wamRejectReq",
+ "oid": "1.3.6.1.4.1.2620.1.8.6.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "wamPolicyName": {
+ "name": "wamPolicyName",
+ "oid": "1.3.6.1.4.1.2620.1.8.7.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "wamPolicyUpdate": {
+ "name": "wamPolicyUpdate",
+ "oid": "1.3.6.1.4.1.2620.1.8.7.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "wamUagHost": {
+ "name": "wamUagHost",
+ "oid": "1.3.6.1.4.1.2620.1.8.8.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "wamUagIp": {
+ "name": "wamUagIp",
+ "oid": "1.3.6.1.4.1.2620.1.8.8.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "wamUagPort": {
+ "name": "wamUagPort",
+ "oid": "1.3.6.1.4.1.2620.1.8.8.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "wamUagNoQueries": {
+ "name": "wamUagNoQueries",
+ "oid": "1.3.6.1.4.1.2620.1.8.8.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "wamUagLastQuery": {
+ "name": "wamUagLastQuery",
+ "oid": "1.3.6.1.4.1.2620.1.8.8.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "wamOpenSessions": {
+ "name": "wamOpenSessions",
+ "oid": "1.3.6.1.4.1.2620.1.8.9.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "wamLastSession": {
+ "name": "wamLastSession",
+ "oid": "1.3.6.1.4.1.2620.1.8.9.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dtpsProdName": {
+ "name": "dtpsProdName",
+ "oid": "1.3.6.1.4.1.2620.1.9.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dtpsVerMajor": {
+ "name": "dtpsVerMajor",
+ "oid": "1.3.6.1.4.1.2620.1.9.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dtpsVerMinor": {
+ "name": "dtpsVerMinor",
+ "oid": "1.3.6.1.4.1.2620.1.9.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dtpsLicensedUsers": {
+ "name": "dtpsLicensedUsers",
+ "oid": "1.3.6.1.4.1.2620.1.9.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dtpsConnectedUsers": {
+ "name": "dtpsConnectedUsers",
+ "oid": "1.3.6.1.4.1.2620.1.9.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dtpsStatCode": {
+ "name": "dtpsStatCode",
+ "oid": "1.3.6.1.4.1.2620.1.9.101",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Gauge32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dtpsStatShortDescr": {
+ "name": "dtpsStatShortDescr",
+ "oid": "1.3.6.1.4.1.2620.1.9.102",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dtpsStatLongDescr": {
+ "name": "dtpsStatLongDescr",
+ "oid": "1.3.6.1.4.1.2620.1.9.103",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "lsProdName": {
+ "name": "lsProdName",
+ "oid": "1.3.6.1.4.1.2620.1.11.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "lsVerMajor": {
+ "name": "lsVerMajor",
+ "oid": "1.3.6.1.4.1.2620.1.11.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "lsVerMinor": {
+ "name": "lsVerMinor",
+ "oid": "1.3.6.1.4.1.2620.1.11.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "lsBuildNumber": {
+ "name": "lsBuildNumber",
+ "oid": "1.3.6.1.4.1.2620.1.11.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "lsFwmIsAlive": {
+ "name": "lsFwmIsAlive",
+ "oid": "1.3.6.1.4.1.2620.1.11.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "lsLoggingInfo": {
+ "name": "lsLoggingInfo",
+ "oid": "1.3.6.1.4.1.2620.1.11.14",
+ "class": "objectidentity"
+ },
+ "lsLogReceiveRate": {
+ "name": "lsLogReceiveRate",
+ "oid": "1.3.6.1.4.1.2620.1.11.14.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "lsLogReceiveRatePeak": {
+ "name": "lsLogReceiveRatePeak",
+ "oid": "1.3.6.1.4.1.2620.1.11.14.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "lsLogReceiveRate10Min": {
+ "name": "lsLogReceiveRate10Min",
+ "oid": "1.3.6.1.4.1.2620.1.11.14.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "lsConnectedGatewaysTable": {
+ "name": "lsConnectedGatewaysTable",
+ "oid": "1.3.6.1.4.1.2620.1.11.14.4",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "lsConnectedGatewaysEntry": {
+ "name": "lsConnectedGatewaysEntry",
+ "oid": "1.3.6.1.4.1.2620.1.11.14.4.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "lsGWIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "lsGWIndex": {
+ "name": "lsGWIndex",
+ "oid": "1.3.6.1.4.1.2620.1.11.14.4.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "lsGWIP": {
+ "name": "lsGWIP",
+ "oid": "1.3.6.1.4.1.2620.1.11.14.4.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "lsGWState": {
+ "name": "lsGWState",
+ "oid": "1.3.6.1.4.1.2620.1.11.14.4.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "lsGWLastLoginTime": {
+ "name": "lsGWLastLoginTime",
+ "oid": "1.3.6.1.4.1.2620.1.11.14.4.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "lsGWLogReceiveRate": {
+ "name": "lsGWLogReceiveRate",
+ "oid": "1.3.6.1.4.1.2620.1.11.14.4.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "lsIndexerInfo": {
+ "name": "lsIndexerInfo",
+ "oid": "1.3.6.1.4.1.2620.1.11.14.5",
+ "class": "objectidentity"
+ },
+ "lsIndexerInfoTotalReadLogs": {
+ "name": "lsIndexerInfoTotalReadLogs",
+ "oid": "1.3.6.1.4.1.2620.1.11.14.5.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "lsIndexerInfoTotalUpdatesAndLogsIndexed": {
+ "name": "lsIndexerInfoTotalUpdatesAndLogsIndexed",
+ "oid": "1.3.6.1.4.1.2620.1.11.14.5.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "lsIndexerInfoTotalReadLogsErrors": {
+ "name": "lsIndexerInfoTotalReadLogsErrors",
+ "oid": "1.3.6.1.4.1.2620.1.11.14.5.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "lsIndexerInfoTotalUpdatesAndLogsIndexedErrors": {
+ "name": "lsIndexerInfoTotalUpdatesAndLogsIndexedErrors",
+ "oid": "1.3.6.1.4.1.2620.1.11.14.5.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "lsIndexerInfoUpdatesAndLogsIndexedRate": {
+ "name": "lsIndexerInfoUpdatesAndLogsIndexedRate",
+ "oid": "1.3.6.1.4.1.2620.1.11.14.5.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "lsIndexerInfoReadLogsRate": {
+ "name": "lsIndexerInfoReadLogsRate",
+ "oid": "1.3.6.1.4.1.2620.1.11.14.5.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "lsIndexerInfoUpdatesAndLogsIndexedRatePeak": {
+ "name": "lsIndexerInfoUpdatesAndLogsIndexedRatePeak",
+ "oid": "1.3.6.1.4.1.2620.1.11.14.5.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "lsIndexerInfoReadLogsRatePeak": {
+ "name": "lsIndexerInfoReadLogsRatePeak",
+ "oid": "1.3.6.1.4.1.2620.1.11.14.5.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "lsLogReceiveRate1Hour": {
+ "name": "lsLogReceiveRate1Hour",
+ "oid": "1.3.6.1.4.1.2620.1.11.14.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "lsStatCode": {
+ "name": "lsStatCode",
+ "oid": "1.3.6.1.4.1.2620.1.11.101",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "lsStatShortDescr": {
+ "name": "lsStatShortDescr",
+ "oid": "1.3.6.1.4.1.2620.1.11.102",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "lsStatLongDescr": {
+ "name": "lsStatLongDescr",
+ "oid": "1.3.6.1.4.1.2620.1.11.103",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "lsConnectedClientsTable": {
+ "name": "lsConnectedClientsTable",
+ "oid": "1.3.6.1.4.1.2620.1.11.7",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "lsConnectedClientsEntry": {
+ "name": "lsConnectedClientsEntry",
+ "oid": "1.3.6.1.4.1.2620.1.11.7.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "lsIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "lsIndex": {
+ "name": "lsIndex",
+ "oid": "1.3.6.1.4.1.2620.1.11.7.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "lsClientName": {
+ "name": "lsClientName",
+ "oid": "1.3.6.1.4.1.2620.1.11.7.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "lsClientHost": {
+ "name": "lsClientHost",
+ "oid": "1.3.6.1.4.1.2620.1.11.7.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "lsClientDbLock": {
+ "name": "lsClientDbLock",
+ "oid": "1.3.6.1.4.1.2620.1.11.7.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "lsApplicationType": {
+ "name": "lsApplicationType",
+ "oid": "1.3.6.1.4.1.2620.1.11.7.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxInfo": {
+ "name": "gxInfo",
+ "oid": "1.3.6.1.4.1.2620.1.20.1",
+ "class": "objectidentity"
+ },
+ "gxCreateInfo": {
+ "name": "gxCreateInfo",
+ "oid": "1.3.6.1.4.1.2620.1.20.5",
+ "class": "objectidentity"
+ },
+ "gxDeleteInfo": {
+ "name": "gxDeleteInfo",
+ "oid": "1.3.6.1.4.1.2620.1.20.6",
+ "class": "objectidentity"
+ },
+ "gxUpdateInfo": {
+ "name": "gxUpdateInfo",
+ "oid": "1.3.6.1.4.1.2620.1.20.7",
+ "class": "objectidentity"
+ },
+ "gxPathMngInfo": {
+ "name": "gxPathMngInfo",
+ "oid": "1.3.6.1.4.1.2620.1.20.8",
+ "class": "objectidentity"
+ },
+ "gxGpduInfo": {
+ "name": "gxGpduInfo",
+ "oid": "1.3.6.1.4.1.2620.1.20.9",
+ "class": "objectidentity"
+ },
+ "gxInitiateInfo": {
+ "name": "gxInitiateInfo",
+ "oid": "1.3.6.1.4.1.2620.1.20.10",
+ "class": "objectidentity"
+ },
+ "gxGTPv2CreateInfo": {
+ "name": "gxGTPv2CreateInfo",
+ "oid": "1.3.6.1.4.1.2620.1.20.11",
+ "class": "objectidentity"
+ },
+ "gxGTPv2DeleteInfo": {
+ "name": "gxGTPv2DeleteInfo",
+ "oid": "1.3.6.1.4.1.2620.1.20.12",
+ "class": "objectidentity"
+ },
+ "gxGTPv2UpdateInfo": {
+ "name": "gxGTPv2UpdateInfo",
+ "oid": "1.3.6.1.4.1.2620.1.20.13",
+ "class": "objectidentity"
+ },
+ "gxGTPv2PathMngInfo": {
+ "name": "gxGTPv2PathMngInfo",
+ "oid": "1.3.6.1.4.1.2620.1.20.14",
+ "class": "objectidentity"
+ },
+ "gxGTPv2CmdInfo": {
+ "name": "gxGTPv2CmdInfo",
+ "oid": "1.3.6.1.4.1.2620.1.20.15",
+ "class": "objectidentity"
+ },
+ "gxProdName": {
+ "name": "gxProdName",
+ "oid": "1.3.6.1.4.1.2620.1.20.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxProdVersion": {
+ "name": "gxProdVersion",
+ "oid": "1.3.6.1.4.1.2620.1.20.1.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxProdVerMajor": {
+ "name": "gxProdVerMajor",
+ "oid": "1.3.6.1.4.1.2620.1.20.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxProdVerMinor": {
+ "name": "gxProdVerMinor",
+ "oid": "1.3.6.1.4.1.2620.1.20.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxBuild": {
+ "name": "gxBuild",
+ "oid": "1.3.6.1.4.1.2620.1.20.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxCreateSinceInstall": {
+ "name": "gxCreateSinceInstall",
+ "oid": "1.3.6.1.4.1.2620.1.20.5.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxActContxt": {
+ "name": "gxActContxt",
+ "oid": "1.3.6.1.4.1.2620.1.20.5.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxDropPlicyCreate": {
+ "name": "gxDropPlicyCreate",
+ "oid": "1.3.6.1.4.1.2620.1.20.5.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxDropMalformedReqCreate": {
+ "name": "gxDropMalformedReqCreate",
+ "oid": "1.3.6.1.4.1.2620.1.20.5.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxDropMalformedRespCreate": {
+ "name": "gxDropMalformedRespCreate",
+ "oid": "1.3.6.1.4.1.2620.1.20.5.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxExpiredCreate": {
+ "name": "gxExpiredCreate",
+ "oid": "1.3.6.1.4.1.2620.1.20.5.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxBadCauseCreate": {
+ "name": "gxBadCauseCreate",
+ "oid": "1.3.6.1.4.1.2620.1.20.5.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxSecondaryNsapiEntries": {
+ "name": "gxSecondaryNsapiEntries",
+ "oid": "1.3.6.1.4.1.2620.1.20.5.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxActv0v1PdnConns": {
+ "name": "gxActv0v1PdnConns",
+ "oid": "1.3.6.1.4.1.2620.1.20.5.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxTunnelApnsEntries": {
+ "name": "gxTunnelApnsEntries",
+ "oid": "1.3.6.1.4.1.2620.1.20.5.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxTunnelsEntries": {
+ "name": "gxTunnelsEntries",
+ "oid": "1.3.6.1.4.1.2620.1.20.5.13",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxDeleteSinceInstall": {
+ "name": "gxDeleteSinceInstall",
+ "oid": "1.3.6.1.4.1.2620.1.20.6.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxDropOutOfContxtDelete": {
+ "name": "gxDropOutOfContxtDelete",
+ "oid": "1.3.6.1.4.1.2620.1.20.6.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxDropMalformedReqDelete": {
+ "name": "gxDropMalformedReqDelete",
+ "oid": "1.3.6.1.4.1.2620.1.20.6.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxDropMalformedRespDelete": {
+ "name": "gxDropMalformedRespDelete",
+ "oid": "1.3.6.1.4.1.2620.1.20.6.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxExpiredDelete": {
+ "name": "gxExpiredDelete",
+ "oid": "1.3.6.1.4.1.2620.1.20.6.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxBadCauseDelete": {
+ "name": "gxBadCauseDelete",
+ "oid": "1.3.6.1.4.1.2620.1.20.6.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxUpdateSinceInstall": {
+ "name": "gxUpdateSinceInstall",
+ "oid": "1.3.6.1.4.1.2620.1.20.7.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxDropOutOfContxtUpdate": {
+ "name": "gxDropOutOfContxtUpdate",
+ "oid": "1.3.6.1.4.1.2620.1.20.7.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxDropMalformedReqUpdate": {
+ "name": "gxDropMalformedReqUpdate",
+ "oid": "1.3.6.1.4.1.2620.1.20.7.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxDropMalformedRespUpdate": {
+ "name": "gxDropMalformedRespUpdate",
+ "oid": "1.3.6.1.4.1.2620.1.20.7.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxExpiredUpdate": {
+ "name": "gxExpiredUpdate",
+ "oid": "1.3.6.1.4.1.2620.1.20.7.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxBadCauseUpdate": {
+ "name": "gxBadCauseUpdate",
+ "oid": "1.3.6.1.4.1.2620.1.20.7.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxEchoSinceInstall": {
+ "name": "gxEchoSinceInstall",
+ "oid": "1.3.6.1.4.1.2620.1.20.8.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxVnspSinceInstall": {
+ "name": "gxVnspSinceInstall",
+ "oid": "1.3.6.1.4.1.2620.1.20.8.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxDropPolicyEcho": {
+ "name": "gxDropPolicyEcho",
+ "oid": "1.3.6.1.4.1.2620.1.20.8.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxDropMalformedReqEcho": {
+ "name": "gxDropMalformedReqEcho",
+ "oid": "1.3.6.1.4.1.2620.1.20.8.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxDropMalformedRespEcho": {
+ "name": "gxDropMalformedRespEcho",
+ "oid": "1.3.6.1.4.1.2620.1.20.8.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxExpiredEcho": {
+ "name": "gxExpiredEcho",
+ "oid": "1.3.6.1.4.1.2620.1.20.8.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxDropVnsp": {
+ "name": "gxDropVnsp",
+ "oid": "1.3.6.1.4.1.2620.1.20.8.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGtpPathEntries": {
+ "name": "gxGtpPathEntries",
+ "oid": "1.3.6.1.4.1.2620.1.20.8.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGpdu1MinAvgRate": {
+ "name": "gxGpdu1MinAvgRate",
+ "oid": "1.3.6.1.4.1.2620.1.20.9.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxDropOutOfContxtGpdu": {
+ "name": "gxDropOutOfContxtGpdu",
+ "oid": "1.3.6.1.4.1.2620.1.20.9.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxDropAnti_spoofingGpdu": {
+ "name": "gxDropAnti_spoofingGpdu",
+ "oid": "1.3.6.1.4.1.2620.1.20.9.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxDropMs_MsGpdu": {
+ "name": "gxDropMs_MsGpdu",
+ "oid": "1.3.6.1.4.1.2620.1.20.9.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxDropBadSeqGpdu": {
+ "name": "gxDropBadSeqGpdu",
+ "oid": "1.3.6.1.4.1.2620.1.20.9.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxDropBadGpdu": {
+ "name": "gxDropBadGpdu",
+ "oid": "1.3.6.1.4.1.2620.1.20.9.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGpduExpiredTunnel": {
+ "name": "gxGpduExpiredTunnel",
+ "oid": "1.3.6.1.4.1.2620.1.20.9.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxInitiateSinceInstall": {
+ "name": "gxInitiateSinceInstall",
+ "oid": "1.3.6.1.4.1.2620.1.20.10.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxDropInitiationReq": {
+ "name": "gxDropInitiationReq",
+ "oid": "1.3.6.1.4.1.2620.1.20.10.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxDropInitiationResp": {
+ "name": "gxDropInitiationResp",
+ "oid": "1.3.6.1.4.1.2620.1.20.10.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxExpiredInitiateAct": {
+ "name": "gxExpiredInitiateAct",
+ "oid": "1.3.6.1.4.1.2620.1.20.10.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2CreateSessionSinceInstall": {
+ "name": "gxGTPv2CreateSessionSinceInstall",
+ "oid": "1.3.6.1.4.1.2620.1.20.11.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2CreateBearerSinceInstall": {
+ "name": "gxGTPv2CreateBearerSinceInstall",
+ "oid": "1.3.6.1.4.1.2620.1.20.11.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2ExpiredCreateSession": {
+ "name": "gxGTPv2ExpiredCreateSession",
+ "oid": "1.3.6.1.4.1.2620.1.20.11.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2ExpiredCreateBearer": {
+ "name": "gxGTPv2ExpiredCreateBearer",
+ "oid": "1.3.6.1.4.1.2620.1.20.11.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DropMalformedCreateSessionReq": {
+ "name": "gxGTPv2DropMalformedCreateSessionReq",
+ "oid": "1.3.6.1.4.1.2620.1.20.11.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DropMalformedCreateSessionResp": {
+ "name": "gxGTPv2DropMalformedCreateSessionResp",
+ "oid": "1.3.6.1.4.1.2620.1.20.11.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DropMalformedCreateBearerReq": {
+ "name": "gxGTPv2DropMalformedCreateBearerReq",
+ "oid": "1.3.6.1.4.1.2620.1.20.11.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DropMalformedCreateBearerResp": {
+ "name": "gxGTPv2DropMalformedCreateBearerResp",
+ "oid": "1.3.6.1.4.1.2620.1.20.11.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DropPolicyCreateSession": {
+ "name": "gxGTPv2DropPolicyCreateSession",
+ "oid": "1.3.6.1.4.1.2620.1.20.11.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DropPolicyCreateBearer": {
+ "name": "gxGTPv2DropPolicyCreateBearer",
+ "oid": "1.3.6.1.4.1.2620.1.20.11.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2ActPDN": {
+ "name": "gxGTPv2ActPDN",
+ "oid": "1.3.6.1.4.1.2620.1.20.11.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2ActDataBearers": {
+ "name": "gxGTPv2ActDataBearers",
+ "oid": "1.3.6.1.4.1.2620.1.20.11.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DeleteSessionSinceInstall": {
+ "name": "gxGTPv2DeleteSessionSinceInstall",
+ "oid": "1.3.6.1.4.1.2620.1.20.12.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DeleteBearerSinceInstall": {
+ "name": "gxGTPv2DeleteBearerSinceInstall",
+ "oid": "1.3.6.1.4.1.2620.1.20.12.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2ExpiredDeleteSession": {
+ "name": "gxGTPv2ExpiredDeleteSession",
+ "oid": "1.3.6.1.4.1.2620.1.20.12.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2ExpiredDeleteBearer": {
+ "name": "gxGTPv2ExpiredDeleteBearer",
+ "oid": "1.3.6.1.4.1.2620.1.20.12.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DropMalformedDeleteSessionReq": {
+ "name": "gxGTPv2DropMalformedDeleteSessionReq",
+ "oid": "1.3.6.1.4.1.2620.1.20.12.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DropMalformedDeleteSessionResp": {
+ "name": "gxGTPv2DropMalformedDeleteSessionResp",
+ "oid": "1.3.6.1.4.1.2620.1.20.12.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DropMalformedDeleteBearerReq": {
+ "name": "gxGTPv2DropMalformedDeleteBearerReq",
+ "oid": "1.3.6.1.4.1.2620.1.20.12.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DropMalformedDeleteBearerResp": {
+ "name": "gxGTPv2DropMalformedDeleteBearerResp",
+ "oid": "1.3.6.1.4.1.2620.1.20.12.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DropPolicyDeleteSession": {
+ "name": "gxGTPv2DropPolicyDeleteSession",
+ "oid": "1.3.6.1.4.1.2620.1.20.12.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DropPolicyDeleteBearer": {
+ "name": "gxGTPv2DropPolicyDeleteBearer",
+ "oid": "1.3.6.1.4.1.2620.1.20.12.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2UpdateBearerSinceInstall": {
+ "name": "gxGTPv2UpdateBearerSinceInstall",
+ "oid": "1.3.6.1.4.1.2620.1.20.13.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2ExpiredUpdateBearer": {
+ "name": "gxGTPv2ExpiredUpdateBearer",
+ "oid": "1.3.6.1.4.1.2620.1.20.13.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2ModifyBearerSinceInstall": {
+ "name": "gxGTPv2ModifyBearerSinceInstall",
+ "oid": "1.3.6.1.4.1.2620.1.20.13.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2ExpiredModifyBearer": {
+ "name": "gxGTPv2ExpiredModifyBearer",
+ "oid": "1.3.6.1.4.1.2620.1.20.13.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DropMalformedUpdateBearerReq": {
+ "name": "gxGTPv2DropMalformedUpdateBearerReq",
+ "oid": "1.3.6.1.4.1.2620.1.20.13.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DropMalformedUpdateBearerResp": {
+ "name": "gxGTPv2DropMalformedUpdateBearerResp",
+ "oid": "1.3.6.1.4.1.2620.1.20.13.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DropMalformedModifyBearerReq": {
+ "name": "gxGTPv2DropMalformedModifyBearerReq",
+ "oid": "1.3.6.1.4.1.2620.1.20.13.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DropMalformedModifyBearerResp": {
+ "name": "gxGTPv2DropMalformedModifyBearerResp",
+ "oid": "1.3.6.1.4.1.2620.1.20.13.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DropPolicyUpdateBearer": {
+ "name": "gxGTPv2DropPolicyUpdateBearer",
+ "oid": "1.3.6.1.4.1.2620.1.20.13.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DropPolicyModifyBearer": {
+ "name": "gxGTPv2DropPolicyModifyBearer",
+ "oid": "1.3.6.1.4.1.2620.1.20.13.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2EchoSinceInstall": {
+ "name": "gxGTPv2EchoSinceInstall",
+ "oid": "1.3.6.1.4.1.2620.1.20.14.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2VnspSinceInstall": {
+ "name": "gxGTPv2VnspSinceInstall",
+ "oid": "1.3.6.1.4.1.2620.1.20.14.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2ExpiredEcho": {
+ "name": "gxGTPv2ExpiredEcho",
+ "oid": "1.3.6.1.4.1.2620.1.20.14.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DropMalformedEchoReq": {
+ "name": "gxGTPv2DropMalformedEchoReq",
+ "oid": "1.3.6.1.4.1.2620.1.20.14.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DropMalformedEchoResp": {
+ "name": "gxGTPv2DropMalformedEchoResp",
+ "oid": "1.3.6.1.4.1.2620.1.20.14.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DropPolicyEcho": {
+ "name": "gxGTPv2DropPolicyEcho",
+ "oid": "1.3.6.1.4.1.2620.1.20.14.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2ModifyBearerCmdSinceInstall": {
+ "name": "gxGTPv2ModifyBearerCmdSinceInstall",
+ "oid": "1.3.6.1.4.1.2620.1.20.15.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2ModifyBearerFailIndSinceInstall": {
+ "name": "gxGTPv2ModifyBearerFailIndSinceInstall",
+ "oid": "1.3.6.1.4.1.2620.1.20.15.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DeleteBearerCmdSinceInstall": {
+ "name": "gxGTPv2DeleteBearerCmdSinceInstall",
+ "oid": "1.3.6.1.4.1.2620.1.20.15.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2DeleteBearerFailIndSinceInstall": {
+ "name": "gxGTPv2DeleteBearerFailIndSinceInstall",
+ "oid": "1.3.6.1.4.1.2620.1.20.15.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2BearerResourceCmdSinceInstall": {
+ "name": "gxGTPv2BearerResourceCmdSinceInstall",
+ "oid": "1.3.6.1.4.1.2620.1.20.15.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "gxGTPv2BearerResourceFailIndSinceInstall": {
+ "name": "gxGTPv2BearerResourceFailIndSinceInstall",
+ "oid": "1.3.6.1.4.1.2620.1.20.15.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asmAttacks": {
+ "name": "asmAttacks",
+ "oid": "1.3.6.1.4.1.2620.1.17.1",
+ "class": "objectidentity"
+ },
+ "asmLayer3": {
+ "name": "asmLayer3",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.1",
+ "class": "objectidentity"
+ },
+ "asmLayer4": {
+ "name": "asmLayer4",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.2",
+ "class": "objectidentity"
+ },
+ "asmTCP": {
+ "name": "asmTCP",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.2.1",
+ "class": "objectidentity"
+ },
+ "asmSynatk": {
+ "name": "asmSynatk",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.2.1.1",
+ "class": "objectidentity"
+ },
+ "asmSmallPmtu": {
+ "name": "asmSmallPmtu",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.2.1.2",
+ "class": "objectidentity"
+ },
+ "asmSeqval": {
+ "name": "asmSeqval",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.2.1.3",
+ "class": "objectidentity"
+ },
+ "asmUDP": {
+ "name": "asmUDP",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.2.2",
+ "class": "objectidentity"
+ },
+ "asmScans": {
+ "name": "asmScans",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.2.3",
+ "class": "objectidentity"
+ },
+ "asmHostPortScan": {
+ "name": "asmHostPortScan",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.2.3.1",
+ "class": "objectidentity"
+ },
+ "asmIPSweep": {
+ "name": "asmIPSweep",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.2.3.2",
+ "class": "objectidentity"
+ },
+ "asmLayer5": {
+ "name": "asmLayer5",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3",
+ "class": "objectidentity"
+ },
+ "asmHTTP": {
+ "name": "asmHTTP",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.1",
+ "class": "objectidentity"
+ },
+ "asmHttpWorms": {
+ "name": "asmHttpWorms",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.1.1",
+ "class": "objectidentity"
+ },
+ "asmHttpFormatViolatoin": {
+ "name": "asmHttpFormatViolatoin",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.1.2",
+ "class": "objectidentity"
+ },
+ "asmHttpAsciiViolation": {
+ "name": "asmHttpAsciiViolation",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.1.3",
+ "class": "objectidentity"
+ },
+ "asmHttpP2PHeaderFilter": {
+ "name": "asmHttpP2PHeaderFilter",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.1.4",
+ "class": "objectidentity"
+ },
+ "asmCIFS": {
+ "name": "asmCIFS",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.2",
+ "class": "objectidentity"
+ },
+ "asmCIFSWorms": {
+ "name": "asmCIFSWorms",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.2.1",
+ "class": "objectidentity"
+ },
+ "asmCIFSNullSession": {
+ "name": "asmCIFSNullSession",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.2.2",
+ "class": "objectidentity"
+ },
+ "asmCIFSBlockedPopUps": {
+ "name": "asmCIFSBlockedPopUps",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.2.3",
+ "class": "objectidentity"
+ },
+ "asmCIFSBlockedCommands": {
+ "name": "asmCIFSBlockedCommands",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.2.4",
+ "class": "objectidentity"
+ },
+ "asmCIFSPasswordLengthViolations": {
+ "name": "asmCIFSPasswordLengthViolations",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.2.5",
+ "class": "objectidentity"
+ },
+ "asmP2P": {
+ "name": "asmP2P",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.3",
+ "class": "objectidentity"
+ },
+ "asmP2POtherConAttempts": {
+ "name": "asmP2POtherConAttempts",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.3.1",
+ "class": "objectidentity"
+ },
+ "asmP2PKazaaConAttempts": {
+ "name": "asmP2PKazaaConAttempts",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.3.2",
+ "class": "objectidentity"
+ },
+ "asmP2PeMuleConAttempts": {
+ "name": "asmP2PeMuleConAttempts",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.3.3",
+ "class": "objectidentity"
+ },
+ "asmP2PGnutellaConAttempts": {
+ "name": "asmP2PGnutellaConAttempts",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.3.4",
+ "class": "objectidentity"
+ },
+ "asmP2PSkypeCon": {
+ "name": "asmP2PSkypeCon",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.3.5",
+ "class": "objectidentity"
+ },
+ "asmP2PBitTorrentCon": {
+ "name": "asmP2PBitTorrentCon",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.3.6",
+ "class": "objectidentity"
+ },
+ "asmSynatkSynAckTimeout": {
+ "name": "asmSynatkSynAckTimeout",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.2.1.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asmSynatkSynAckReset": {
+ "name": "asmSynatkSynAckReset",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.2.1.1.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asmSynatkModeChange": {
+ "name": "asmSynatkModeChange",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.2.1.1.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asmSynatkCurrentMode": {
+ "name": "asmSynatkCurrentMode",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.2.1.1.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asmSynatkNumberofunAckedSyns": {
+ "name": "asmSynatkNumberofunAckedSyns",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.2.1.1.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "smallPMTUNumberOfAttacks": {
+ "name": "smallPMTUNumberOfAttacks",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.2.1.2.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "smallPMTUValueOfMinimalMTUsize": {
+ "name": "smallPMTUValueOfMinimalMTUsize",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.2.1.2.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "sequenceVerifierInvalidAck": {
+ "name": "sequenceVerifierInvalidAck",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.2.1.3.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "sequenceVerifierInvalidSequence": {
+ "name": "sequenceVerifierInvalidSequence",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.2.1.3.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "sequenceVerifierInvalidretransmit": {
+ "name": "sequenceVerifierInvalidretransmit",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.2.1.3.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "httpWorms": {
+ "name": "httpWorms",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.1.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "numOfhostPortScan": {
+ "name": "numOfhostPortScan",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.2.3.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "numOfIpSweep": {
+ "name": "numOfIpSweep",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.2.3.2.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "httpURLLengthViolation": {
+ "name": "httpURLLengthViolation",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.1.2.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "httpHeaderLengthViolations": {
+ "name": "httpHeaderLengthViolations",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.1.2.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "httpMaxHeaderReached": {
+ "name": "httpMaxHeaderReached",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.1.2.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "numOfHttpASCIIViolations": {
+ "name": "numOfHttpASCIIViolations",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.1.3.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "numOfHttpP2PHeaders": {
+ "name": "numOfHttpP2PHeaders",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.1.4.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "numOfCIFSworms": {
+ "name": "numOfCIFSworms",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.2.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "numOfCIFSNullSessions": {
+ "name": "numOfCIFSNullSessions",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.2.2.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "numOfCIFSBlockedPopUps": {
+ "name": "numOfCIFSBlockedPopUps",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.2.3.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "numOfCIFSBlockedCommands": {
+ "name": "numOfCIFSBlockedCommands",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.2.4.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "numOfCIFSPasswordLengthViolations": {
+ "name": "numOfCIFSPasswordLengthViolations",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.2.5.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "numOfP2POtherConAttempts": {
+ "name": "numOfP2POtherConAttempts",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.3.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "numOfP2PKazaaConAttempts": {
+ "name": "numOfP2PKazaaConAttempts",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.3.2.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "numOfP2PeMuleConAttempts": {
+ "name": "numOfP2PeMuleConAttempts",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.3.3.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "numOfGnutellaConAttempts": {
+ "name": "numOfGnutellaConAttempts",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.3.4.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "numOfP2PSkypeCon": {
+ "name": "numOfP2PSkypeCon",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.3.5.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "numOfBitTorrentCon": {
+ "name": "numOfBitTorrentCon",
+ "oid": "1.3.6.1.4.1.2620.1.17.1.3.3.6.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviEngines": {
+ "name": "aviEngines",
+ "oid": "1.3.6.1.4.1.2620.1.24.1",
+ "class": "objectidentity"
+ },
+ "aviTopViruses": {
+ "name": "aviTopViruses",
+ "oid": "1.3.6.1.4.1.2620.1.24.2",
+ "class": "objectidentity"
+ },
+ "aviTopEverViruses": {
+ "name": "aviTopEverViruses",
+ "oid": "1.3.6.1.4.1.2620.1.24.3",
+ "class": "objectidentity"
+ },
+ "aviServices": {
+ "name": "aviServices",
+ "oid": "1.3.6.1.4.1.2620.1.24.4",
+ "class": "objectidentity"
+ },
+ "aviServicesHTTP": {
+ "name": "aviServicesHTTP",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.1",
+ "class": "objectidentity"
+ },
+ "aviServicesFTP": {
+ "name": "aviServicesFTP",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.2",
+ "class": "objectidentity"
+ },
+ "aviServicesSMTP": {
+ "name": "aviServicesSMTP",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.3",
+ "class": "objectidentity"
+ },
+ "aviServicesPOP3": {
+ "name": "aviServicesPOP3",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.4",
+ "class": "objectidentity"
+ },
+ "aviStatCode": {
+ "name": "aviStatCode",
+ "oid": "1.3.6.1.4.1.2620.1.24.101",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviStatShortDescr": {
+ "name": "aviStatShortDescr",
+ "oid": "1.3.6.1.4.1.2620.1.24.102",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviStatLongDescr": {
+ "name": "aviStatLongDescr",
+ "oid": "1.3.6.1.4.1.2620.1.24.103",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviEngineTable": {
+ "name": "aviEngineTable",
+ "oid": "1.3.6.1.4.1.2620.1.24.1.1",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "aviEngineEntry": {
+ "name": "aviEngineEntry",
+ "oid": "1.3.6.1.4.1.2620.1.24.1.1.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviEngineIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "aviEngineIndex": {
+ "name": "aviEngineIndex",
+ "oid": "1.3.6.1.4.1.2620.1.24.1.1.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "aviEngineName": {
+ "name": "aviEngineName",
+ "oid": "1.3.6.1.4.1.2620.1.24.1.1.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviEngineVer": {
+ "name": "aviEngineVer",
+ "oid": "1.3.6.1.4.1.2620.1.24.1.1.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviEngineDate": {
+ "name": "aviEngineDate",
+ "oid": "1.3.6.1.4.1.2620.1.24.1.1.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviSignatureName": {
+ "name": "aviSignatureName",
+ "oid": "1.3.6.1.4.1.2620.1.24.1.1.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviSignatureVer": {
+ "name": "aviSignatureVer",
+ "oid": "1.3.6.1.4.1.2620.1.24.1.1.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviSignatureDate": {
+ "name": "aviSignatureDate",
+ "oid": "1.3.6.1.4.1.2620.1.24.1.1.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviLastSigCheckTime": {
+ "name": "aviLastSigCheckTime",
+ "oid": "1.3.6.1.4.1.2620.1.24.1.1.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviLastSigLocation": {
+ "name": "aviLastSigLocation",
+ "oid": "1.3.6.1.4.1.2620.1.24.1.1.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviLastLicExp": {
+ "name": "aviLastLicExp",
+ "oid": "1.3.6.1.4.1.2620.1.24.1.1.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviTopVirusesTable": {
+ "name": "aviTopVirusesTable",
+ "oid": "1.3.6.1.4.1.2620.1.24.2.1",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "aviTopVirusesEntry": {
+ "name": "aviTopVirusesEntry",
+ "oid": "1.3.6.1.4.1.2620.1.24.2.1.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviTopVirusesIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "aviTopVirusesIndex": {
+ "name": "aviTopVirusesIndex",
+ "oid": "1.3.6.1.4.1.2620.1.24.2.1.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "aviTopVirusesName": {
+ "name": "aviTopVirusesName",
+ "oid": "1.3.6.1.4.1.2620.1.24.2.1.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviTopVirusesCnt": {
+ "name": "aviTopVirusesCnt",
+ "oid": "1.3.6.1.4.1.2620.1.24.2.1.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviTopEverVirusesTable": {
+ "name": "aviTopEverVirusesTable",
+ "oid": "1.3.6.1.4.1.2620.1.24.3.1",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "aviTopEverVirusesEntry": {
+ "name": "aviTopEverVirusesEntry",
+ "oid": "1.3.6.1.4.1.2620.1.24.3.1.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviTopEverVirusesIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "aviTopEverVirusesIndex": {
+ "name": "aviTopEverVirusesIndex",
+ "oid": "1.3.6.1.4.1.2620.1.24.3.1.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "aviTopEverVirusesName": {
+ "name": "aviTopEverVirusesName",
+ "oid": "1.3.6.1.4.1.2620.1.24.3.1.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviTopEverVirusesCnt": {
+ "name": "aviTopEverVirusesCnt",
+ "oid": "1.3.6.1.4.1.2620.1.24.3.1.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviHTTPState": {
+ "name": "aviHTTPState",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviHTTPLastVirusName": {
+ "name": "aviHTTPLastVirusName",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.1.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviHTTPLastVirusTime": {
+ "name": "aviHTTPLastVirusTime",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.1.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviHTTPTopVirusesTable": {
+ "name": "aviHTTPTopVirusesTable",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.1.4",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "aviHTTPTopVirusesEntry": {
+ "name": "aviHTTPTopVirusesEntry",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.1.4.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviHTTPTopVirusesIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "aviHTTPTopVirusesIndex": {
+ "name": "aviHTTPTopVirusesIndex",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.1.4.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "aviHTTPTopVirusesName": {
+ "name": "aviHTTPTopVirusesName",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.1.4.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviHTTPTopVirusesCnt": {
+ "name": "aviHTTPTopVirusesCnt",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.1.4.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviFTPState": {
+ "name": "aviFTPState",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.2.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviFTPLastVirusName": {
+ "name": "aviFTPLastVirusName",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.2.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviFTPLastVirusTime": {
+ "name": "aviFTPLastVirusTime",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.2.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviFTPTopVirusesTable": {
+ "name": "aviFTPTopVirusesTable",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.2.4",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "aviFTPTopVirusesEntry": {
+ "name": "aviFTPTopVirusesEntry",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.2.4.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviFTPTopVirusesIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "aviFTPTopVirusesIndex": {
+ "name": "aviFTPTopVirusesIndex",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.2.4.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "aviFTPTopVirusesName": {
+ "name": "aviFTPTopVirusesName",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.2.4.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviFTPTopVirusesCnt": {
+ "name": "aviFTPTopVirusesCnt",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.2.4.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviSMTPState": {
+ "name": "aviSMTPState",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.3.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviSMTPLastVirusName": {
+ "name": "aviSMTPLastVirusName",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.3.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviSMTPLastVirusTime": {
+ "name": "aviSMTPLastVirusTime",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.3.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviSMTPTopVirusesTable": {
+ "name": "aviSMTPTopVirusesTable",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.3.4",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "aviSMTPTopVirusesEntry": {
+ "name": "aviSMTPTopVirusesEntry",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.3.4.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviSMTPTopVirusesIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "aviSMTPTopVirusesIndex": {
+ "name": "aviSMTPTopVirusesIndex",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.3.4.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "aviSMTPTopVirusesName": {
+ "name": "aviSMTPTopVirusesName",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.3.4.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviSMTPTopVirusesCnt": {
+ "name": "aviSMTPTopVirusesCnt",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.3.4.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviPOP3State": {
+ "name": "aviPOP3State",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.4.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviPOP3LastVirusName": {
+ "name": "aviPOP3LastVirusName",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.4.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviPOP3LastVirusTime": {
+ "name": "aviPOP3LastVirusTime",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.4.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviPOP3TopVirusesTable": {
+ "name": "aviPOP3TopVirusesTable",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.4.4",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "aviPOP3TopVirusesEntry": {
+ "name": "aviPOP3TopVirusesEntry",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.4.4.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "aviPOP3TopVirusesIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "aviPOP3TopVirusesIndex": {
+ "name": "aviPOP3TopVirusesIndex",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.4.4.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "aviPOP3TopVirusesName": {
+ "name": "aviPOP3TopVirusesName",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.4.4.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "aviPOP3TopVirusesCnt": {
+ "name": "aviPOP3TopVirusesCnt",
+ "oid": "1.3.6.1.4.1.2620.1.24.4.4.4.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpsemd": {
+ "name": "cpsemd",
+ "oid": "1.3.6.1.4.1.2620.1.25.1",
+ "class": "objectidentity"
+ },
+ "cpsead": {
+ "name": "cpsead",
+ "oid": "1.3.6.1.4.1.2620.1.25.2",
+ "class": "objectidentity"
+ },
+ "cpsemdStatCode": {
+ "name": "cpsemdStatCode",
+ "oid": "1.3.6.1.4.1.2620.1.25.1.101",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpsemdStatShortDescr": {
+ "name": "cpsemdStatShortDescr",
+ "oid": "1.3.6.1.4.1.2620.1.25.1.102",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpsemdStatLongDescr": {
+ "name": "cpsemdStatLongDescr",
+ "oid": "1.3.6.1.4.1.2620.1.25.1.103",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpsemdProcAlive": {
+ "name": "cpsemdProcAlive",
+ "oid": "1.3.6.1.4.1.2620.1.25.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpsemdNewEventsHandled": {
+ "name": "cpsemdNewEventsHandled",
+ "oid": "1.3.6.1.4.1.2620.1.25.1.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpsemdUpdatesHandled": {
+ "name": "cpsemdUpdatesHandled",
+ "oid": "1.3.6.1.4.1.2620.1.25.1.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpsemdLastEventTime": {
+ "name": "cpsemdLastEventTime",
+ "oid": "1.3.6.1.4.1.2620.1.25.1.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpsemdCurrentDBSize": {
+ "name": "cpsemdCurrentDBSize",
+ "oid": "1.3.6.1.4.1.2620.1.25.1.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpsemdDBCapacity": {
+ "name": "cpsemdDBCapacity",
+ "oid": "1.3.6.1.4.1.2620.1.25.1.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpsemdNumEvents": {
+ "name": "cpsemdNumEvents",
+ "oid": "1.3.6.1.4.1.2620.1.25.1.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpsemdDBDiskSpace": {
+ "name": "cpsemdDBDiskSpace",
+ "oid": "1.3.6.1.4.1.2620.1.25.1.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpsemdCorrelationUnitTable": {
+ "name": "cpsemdCorrelationUnitTable",
+ "oid": "1.3.6.1.4.1.2620.1.25.1.9",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "cpsemdDBIsFull": {
+ "name": "cpsemdDBIsFull",
+ "oid": "1.3.6.1.4.1.2620.1.25.1.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpsemdCorrelationUnitEntry": {
+ "name": "cpsemdCorrelationUnitEntry",
+ "oid": "1.3.6.1.4.1.2620.1.25.1.9.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpsemdCorrelationUnitIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "cpsemdCorrelationUnitIndex": {
+ "name": "cpsemdCorrelationUnitIndex",
+ "oid": "1.3.6.1.4.1.2620.1.25.1.9.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "cpsemdCorrelationUnitIP": {
+ "name": "cpsemdCorrelationUnitIP",
+ "oid": "1.3.6.1.4.1.2620.1.25.1.9.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpsemdCorrelationUnitLastRcvdTime": {
+ "name": "cpsemdCorrelationUnitLastRcvdTime",
+ "oid": "1.3.6.1.4.1.2620.1.25.1.9.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpsemdCorrelationUnitNumEventsRcvd": {
+ "name": "cpsemdCorrelationUnitNumEventsRcvd",
+ "oid": "1.3.6.1.4.1.2620.1.25.1.9.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpsemdConnectionDuration": {
+ "name": "cpsemdConnectionDuration",
+ "oid": "1.3.6.1.4.1.2620.1.25.1.9.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpseadStatCode": {
+ "name": "cpseadStatCode",
+ "oid": "1.3.6.1.4.1.2620.1.25.2.101",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpseadStatShortDescr": {
+ "name": "cpseadStatShortDescr",
+ "oid": "1.3.6.1.4.1.2620.1.25.2.102",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpseadStatLongDescr": {
+ "name": "cpseadStatLongDescr",
+ "oid": "1.3.6.1.4.1.2620.1.25.2.103",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpseadProcAlive": {
+ "name": "cpseadProcAlive",
+ "oid": "1.3.6.1.4.1.2620.1.25.2.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpseadConnectedToSem": {
+ "name": "cpseadConnectedToSem",
+ "oid": "1.3.6.1.4.1.2620.1.25.2.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpseadNumProcessedLogs": {
+ "name": "cpseadNumProcessedLogs",
+ "oid": "1.3.6.1.4.1.2620.1.25.2.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpseadJobsTable": {
+ "name": "cpseadJobsTable",
+ "oid": "1.3.6.1.4.1.2620.1.25.2.4",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "cpseadJobsEntry": {
+ "name": "cpseadJobsEntry",
+ "oid": "1.3.6.1.4.1.2620.1.25.2.4.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "cpseadJobIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "cpseadJobIndex": {
+ "name": "cpseadJobIndex",
+ "oid": "1.3.6.1.4.1.2620.1.25.2.4.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "cpseadJobID": {
+ "name": "cpseadJobID",
+ "oid": "1.3.6.1.4.1.2620.1.25.2.4.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpseadJobName": {
+ "name": "cpseadJobName",
+ "oid": "1.3.6.1.4.1.2620.1.25.2.4.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpseadJobState": {
+ "name": "cpseadJobState",
+ "oid": "1.3.6.1.4.1.2620.1.25.2.4.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpseadJobIsOnline": {
+ "name": "cpseadJobIsOnline",
+ "oid": "1.3.6.1.4.1.2620.1.25.2.4.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpseadJobLogServer": {
+ "name": "cpseadJobLogServer",
+ "oid": "1.3.6.1.4.1.2620.1.25.2.4.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpseadJobDataType": {
+ "name": "cpseadJobDataType",
+ "oid": "1.3.6.1.4.1.2620.1.25.2.4.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpseadConnectedToLogServer": {
+ "name": "cpseadConnectedToLogServer",
+ "oid": "1.3.6.1.4.1.2620.1.25.2.4.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpseadNumAnalyzedLogs": {
+ "name": "cpseadNumAnalyzedLogs",
+ "oid": "1.3.6.1.4.1.2620.1.25.2.4.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpseadFileName": {
+ "name": "cpseadFileName",
+ "oid": "1.3.6.1.4.1.2620.1.25.2.4.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpseadFileCurrentPosition": {
+ "name": "cpseadFileCurrentPosition",
+ "oid": "1.3.6.1.4.1.2620.1.25.2.4.1.11",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpseadStateDescriptionCode": {
+ "name": "cpseadStateDescriptionCode",
+ "oid": "1.3.6.1.4.1.2620.1.25.2.4.1.12",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpseadStateDescription": {
+ "name": "cpseadStateDescription",
+ "oid": "1.3.6.1.4.1.2620.1.25.2.4.1.13",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "cpseadNoFreeDiskSpace": {
+ "name": "cpseadNoFreeDiskSpace",
+ "oid": "1.3.6.1.4.1.2620.1.25.2.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ufEngine": {
+ "name": "ufEngine",
+ "oid": "1.3.6.1.4.1.2620.1.29.1",
+ "class": "objectidentity"
+ },
+ "ufSS": {
+ "name": "ufSS",
+ "oid": "1.3.6.1.4.1.2620.1.29.2",
+ "class": "objectidentity"
+ },
+ "ufStatCode": {
+ "name": "ufStatCode",
+ "oid": "1.3.6.1.4.1.2620.1.29.101",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ufStatShortDescr": {
+ "name": "ufStatShortDescr",
+ "oid": "1.3.6.1.4.1.2620.1.29.102",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ufStatLongDescr": {
+ "name": "ufStatLongDescr",
+ "oid": "1.3.6.1.4.1.2620.1.29.103",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ufEngineName": {
+ "name": "ufEngineName",
+ "oid": "1.3.6.1.4.1.2620.1.29.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ufEngineVer": {
+ "name": "ufEngineVer",
+ "oid": "1.3.6.1.4.1.2620.1.29.1.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ufEngineDate": {
+ "name": "ufEngineDate",
+ "oid": "1.3.6.1.4.1.2620.1.29.1.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ufSignatureDate": {
+ "name": "ufSignatureDate",
+ "oid": "1.3.6.1.4.1.2620.1.29.1.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ufSignatureVer": {
+ "name": "ufSignatureVer",
+ "oid": "1.3.6.1.4.1.2620.1.29.1.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ufLastSigCheckTime": {
+ "name": "ufLastSigCheckTime",
+ "oid": "1.3.6.1.4.1.2620.1.29.1.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ufLastSigLocation": {
+ "name": "ufLastSigLocation",
+ "oid": "1.3.6.1.4.1.2620.1.29.1.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ufLastLicExp": {
+ "name": "ufLastLicExp",
+ "oid": "1.3.6.1.4.1.2620.1.29.1.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ufIsMonitor": {
+ "name": "ufIsMonitor",
+ "oid": "1.3.6.1.4.1.2620.1.29.2.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ufScannedCnt": {
+ "name": "ufScannedCnt",
+ "oid": "1.3.6.1.4.1.2620.1.29.2.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ufBlockedCnt": {
+ "name": "ufBlockedCnt",
+ "oid": "1.3.6.1.4.1.2620.1.29.2.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ufTopBlockedCatTable": {
+ "name": "ufTopBlockedCatTable",
+ "oid": "1.3.6.1.4.1.2620.1.29.2.4",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "ufTopBlockedCatEntry": {
+ "name": "ufTopBlockedCatEntry",
+ "oid": "1.3.6.1.4.1.2620.1.29.2.4.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ufTopBlockedCatIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "ufTopBlockedCatIndex": {
+ "name": "ufTopBlockedCatIndex",
+ "oid": "1.3.6.1.4.1.2620.1.29.2.4.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "ufTopBlockedCatName": {
+ "name": "ufTopBlockedCatName",
+ "oid": "1.3.6.1.4.1.2620.1.29.2.4.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ufTopBlockedCatCnt": {
+ "name": "ufTopBlockedCatCnt",
+ "oid": "1.3.6.1.4.1.2620.1.29.2.4.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ufTopBlockedSiteTable": {
+ "name": "ufTopBlockedSiteTable",
+ "oid": "1.3.6.1.4.1.2620.1.29.2.5",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "ufTopBlockedSiteEntry": {
+ "name": "ufTopBlockedSiteEntry",
+ "oid": "1.3.6.1.4.1.2620.1.29.2.5.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ufTopBlockedSiteIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "ufTopBlockedSiteIndex": {
+ "name": "ufTopBlockedSiteIndex",
+ "oid": "1.3.6.1.4.1.2620.1.29.2.5.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "ufTopBlockedSiteName": {
+ "name": "ufTopBlockedSiteName",
+ "oid": "1.3.6.1.4.1.2620.1.29.2.5.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ufTopBlockedSiteCnt": {
+ "name": "ufTopBlockedSiteCnt",
+ "oid": "1.3.6.1.4.1.2620.1.29.2.5.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ufTopBlockedUserTable": {
+ "name": "ufTopBlockedUserTable",
+ "oid": "1.3.6.1.4.1.2620.1.29.2.6",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "ufTopBlockedUserEntry": {
+ "name": "ufTopBlockedUserEntry",
+ "oid": "1.3.6.1.4.1.2620.1.29.2.6.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "ufTopBlockedUserIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "ufTopBlockedUserIndex": {
+ "name": "ufTopBlockedUserIndex",
+ "oid": "1.3.6.1.4.1.2620.1.29.2.6.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "ufTopBlockedUserName": {
+ "name": "ufTopBlockedUserName",
+ "oid": "1.3.6.1.4.1.2620.1.29.2.6.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "ufTopBlockedUserCnt": {
+ "name": "ufTopBlockedUserCnt",
+ "oid": "1.3.6.1.4.1.2620.1.29.2.6.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "msProductName": {
+ "name": "msProductName",
+ "oid": "1.3.6.1.4.1.2620.1.30.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "msMajorVersion": {
+ "name": "msMajorVersion",
+ "oid": "1.3.6.1.4.1.2620.1.30.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "msMinorVersion": {
+ "name": "msMinorVersion",
+ "oid": "1.3.6.1.4.1.2620.1.30.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "msBuildNumber": {
+ "name": "msBuildNumber",
+ "oid": "1.3.6.1.4.1.2620.1.30.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "msVersionStr": {
+ "name": "msVersionStr",
+ "oid": "1.3.6.1.4.1.2620.1.30.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "msSpam": {
+ "name": "msSpam",
+ "oid": "1.3.6.1.4.1.2620.1.30.6",
+ "class": "objectidentity"
+ },
+ "msSpamNumScannedEmails": {
+ "name": "msSpamNumScannedEmails",
+ "oid": "1.3.6.1.4.1.2620.1.30.6.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "msSpamNumSpamEmails": {
+ "name": "msSpamNumSpamEmails",
+ "oid": "1.3.6.1.4.1.2620.1.30.6.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "msSpamNumHandledSpamEmails": {
+ "name": "msSpamNumHandledSpamEmails",
+ "oid": "1.3.6.1.4.1.2620.1.30.6.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "msSpamControls": {
+ "name": "msSpamControls",
+ "oid": "1.3.6.1.4.1.2620.1.30.6.4",
+ "class": "objectidentity"
+ },
+ "msSpamControlsSpamEngine": {
+ "name": "msSpamControlsSpamEngine",
+ "oid": "1.3.6.1.4.1.2620.1.30.6.4.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "msSpamControlsIpRepuatation": {
+ "name": "msSpamControlsIpRepuatation",
+ "oid": "1.3.6.1.4.1.2620.1.30.6.4.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "msSpamControlsSPF": {
+ "name": "msSpamControlsSPF",
+ "oid": "1.3.6.1.4.1.2620.1.30.6.4.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "msSpamControlsDomainKeys": {
+ "name": "msSpamControlsDomainKeys",
+ "oid": "1.3.6.1.4.1.2620.1.30.6.4.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "msSpamControlsRDNS": {
+ "name": "msSpamControlsRDNS",
+ "oid": "1.3.6.1.4.1.2620.1.30.6.4.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "msSpamControlsRBL": {
+ "name": "msSpamControlsRBL",
+ "oid": "1.3.6.1.4.1.2620.1.30.6.4.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "msExpirationDate": {
+ "name": "msExpirationDate",
+ "oid": "1.3.6.1.4.1.2620.1.30.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "msEngineVer": {
+ "name": "msEngineVer",
+ "oid": "1.3.6.1.4.1.2620.1.30.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "msEngineDate": {
+ "name": "msEngineDate",
+ "oid": "1.3.6.1.4.1.2620.1.30.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "msStatCode": {
+ "name": "msStatCode",
+ "oid": "1.3.6.1.4.1.2620.1.30.101",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "msStatShortDescr": {
+ "name": "msStatShortDescr",
+ "oid": "1.3.6.1.4.1.2620.1.30.102",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "msStatLongDescr": {
+ "name": "msStatLongDescr",
+ "oid": "1.3.6.1.4.1.2620.1.30.103",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "msServicePack": {
+ "name": "msServicePack",
+ "oid": "1.3.6.1.4.1.2620.1.30.999",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipProductName": {
+ "name": "voipProductName",
+ "oid": "1.3.6.1.4.1.2620.1.31.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipMajorVersion": {
+ "name": "voipMajorVersion",
+ "oid": "1.3.6.1.4.1.2620.1.31.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipMinorVersion": {
+ "name": "voipMinorVersion",
+ "oid": "1.3.6.1.4.1.2620.1.31.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipBuildNumber": {
+ "name": "voipBuildNumber",
+ "oid": "1.3.6.1.4.1.2620.1.31.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipVersionStr": {
+ "name": "voipVersionStr",
+ "oid": "1.3.6.1.4.1.2620.1.31.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipDOS": {
+ "name": "voipDOS",
+ "oid": "1.3.6.1.4.1.2620.1.31.6",
+ "class": "objectidentity"
+ },
+ "voipDOSSip": {
+ "name": "voipDOSSip",
+ "oid": "1.3.6.1.4.1.2620.1.31.6.1",
+ "class": "objectidentity"
+ },
+ "voipDOSSipNetwork": {
+ "name": "voipDOSSipNetwork",
+ "oid": "1.3.6.1.4.1.2620.1.31.6.1.1",
+ "class": "objectidentity"
+ },
+ "voipDOSSipNetworkReqInterval": {
+ "name": "voipDOSSipNetworkReqInterval",
+ "oid": "1.3.6.1.4.1.2620.1.31.6.1.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipDOSSipNetworkReqConfThreshold": {
+ "name": "voipDOSSipNetworkReqConfThreshold",
+ "oid": "1.3.6.1.4.1.2620.1.31.6.1.1.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipDOSSipNetworkReqCurrentVal": {
+ "name": "voipDOSSipNetworkReqCurrentVal",
+ "oid": "1.3.6.1.4.1.2620.1.31.6.1.1.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipDOSSipNetworkRegInterval": {
+ "name": "voipDOSSipNetworkRegInterval",
+ "oid": "1.3.6.1.4.1.2620.1.31.6.1.1.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipDOSSipNetworkRegConfThreshold": {
+ "name": "voipDOSSipNetworkRegConfThreshold",
+ "oid": "1.3.6.1.4.1.2620.1.31.6.1.1.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipDOSSipNetworkRegCurrentVal": {
+ "name": "voipDOSSipNetworkRegCurrentVal",
+ "oid": "1.3.6.1.4.1.2620.1.31.6.1.1.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipDOSSipNetworkCallInitInterval": {
+ "name": "voipDOSSipNetworkCallInitInterval",
+ "oid": "1.3.6.1.4.1.2620.1.31.6.1.1.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipDOSSipNetworkCallInitConfThreshold": {
+ "name": "voipDOSSipNetworkCallInitConfThreshold",
+ "oid": "1.3.6.1.4.1.2620.1.31.6.1.1.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipDOSSipNetworkCallInitICurrentVal": {
+ "name": "voipDOSSipNetworkCallInitICurrentVal",
+ "oid": "1.3.6.1.4.1.2620.1.31.6.1.1.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipDOSSipRateLimitingTable": {
+ "name": "voipDOSSipRateLimitingTable",
+ "oid": "1.3.6.1.4.1.2620.1.31.6.1.2",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "voipDOSSipRateLimitingEntry": {
+ "name": "voipDOSSipRateLimitingEntry",
+ "oid": "1.3.6.1.4.1.2620.1.31.6.1.2.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "voipDOSSipRateLimitingTableIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "voipDOSSipRateLimitingTableIndex": {
+ "name": "voipDOSSipRateLimitingTableIndex",
+ "oid": "1.3.6.1.4.1.2620.1.31.6.1.2.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "voipDOSSipRateLimitingTableIpAddress": {
+ "name": "voipDOSSipRateLimitingTableIpAddress",
+ "oid": "1.3.6.1.4.1.2620.1.31.6.1.2.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipDOSSipRateLimitingTableInterval": {
+ "name": "voipDOSSipRateLimitingTableInterval",
+ "oid": "1.3.6.1.4.1.2620.1.31.6.1.2.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipDOSSipRateLimitingTableConfThreshold": {
+ "name": "voipDOSSipRateLimitingTableConfThreshold",
+ "oid": "1.3.6.1.4.1.2620.1.31.6.1.2.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipDOSSipRateLimitingTableNumDOSSipRequests": {
+ "name": "voipDOSSipRateLimitingTableNumDOSSipRequests",
+ "oid": "1.3.6.1.4.1.2620.1.31.6.1.2.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipDOSSipRateLimitingTableNumTrustedRequests": {
+ "name": "voipDOSSipRateLimitingTableNumTrustedRequests",
+ "oid": "1.3.6.1.4.1.2620.1.31.6.1.2.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipDOSSipRateLimitingTableNumNonTrustedRequests": {
+ "name": "voipDOSSipRateLimitingTableNumNonTrustedRequests",
+ "oid": "1.3.6.1.4.1.2620.1.31.6.1.2.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipDOSSipRateLimitingTableNumRequestsfromServers": {
+ "name": "voipDOSSipRateLimitingTableNumRequestsfromServers",
+ "oid": "1.3.6.1.4.1.2620.1.31.6.1.2.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipCAC": {
+ "name": "voipCAC",
+ "oid": "1.3.6.1.4.1.2620.1.31.7",
+ "class": "objectidentity"
+ },
+ "voipCACConcurrentCalls": {
+ "name": "voipCACConcurrentCalls",
+ "oid": "1.3.6.1.4.1.2620.1.31.7.1",
+ "class": "objectidentity"
+ },
+ "voipCACConcurrentCallsConfThreshold": {
+ "name": "voipCACConcurrentCallsConfThreshold",
+ "oid": "1.3.6.1.4.1.2620.1.31.7.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipCACConcurrentCallsCurrentVal": {
+ "name": "voipCACConcurrentCallsCurrentVal",
+ "oid": "1.3.6.1.4.1.2620.1.31.7.1.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipStatCode": {
+ "name": "voipStatCode",
+ "oid": "1.3.6.1.4.1.2620.1.31.101",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipStatShortDescr": {
+ "name": "voipStatShortDescr",
+ "oid": "1.3.6.1.4.1.2620.1.31.102",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipStatLongDescr": {
+ "name": "voipStatLongDescr",
+ "oid": "1.3.6.1.4.1.2620.1.31.103",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "voipServicePack": {
+ "name": "voipServicePack",
+ "oid": "1.3.6.1.4.1.2620.1.31.999",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessProductName": {
+ "name": "identityAwarenessProductName",
+ "oid": "1.3.6.1.4.1.2620.1.38.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessAuthUsers": {
+ "name": "identityAwarenessAuthUsers",
+ "oid": "1.3.6.1.4.1.2620.1.38.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessUnAuthUsers": {
+ "name": "identityAwarenessUnAuthUsers",
+ "oid": "1.3.6.1.4.1.2620.1.38.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessAuthUsersKerberos": {
+ "name": "identityAwarenessAuthUsersKerberos",
+ "oid": "1.3.6.1.4.1.2620.1.38.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessAuthMachKerberos": {
+ "name": "identityAwarenessAuthMachKerberos",
+ "oid": "1.3.6.1.4.1.2620.1.38.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessAuthUsersPass": {
+ "name": "identityAwarenessAuthUsersPass",
+ "oid": "1.3.6.1.4.1.2620.1.38.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessAuthUsersADQuery": {
+ "name": "identityAwarenessAuthUsersADQuery",
+ "oid": "1.3.6.1.4.1.2620.1.38.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessAuthMachADQuery": {
+ "name": "identityAwarenessAuthMachADQuery",
+ "oid": "1.3.6.1.4.1.2620.1.38.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessLoggedInAgent": {
+ "name": "identityAwarenessLoggedInAgent",
+ "oid": "1.3.6.1.4.1.2620.1.38.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessLoggedInCaptivePortal": {
+ "name": "identityAwarenessLoggedInCaptivePortal",
+ "oid": "1.3.6.1.4.1.2620.1.38.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessLoggedInADQuery": {
+ "name": "identityAwarenessLoggedInADQuery",
+ "oid": "1.3.6.1.4.1.2620.1.38.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessAntiSpoffProtection": {
+ "name": "identityAwarenessAntiSpoffProtection",
+ "oid": "1.3.6.1.4.1.2620.1.38.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessSuccUserLoginKerberos": {
+ "name": "identityAwarenessSuccUserLoginKerberos",
+ "oid": "1.3.6.1.4.1.2620.1.38.13",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessSuccMachLoginKerberos": {
+ "name": "identityAwarenessSuccMachLoginKerberos",
+ "oid": "1.3.6.1.4.1.2620.1.38.14",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessSuccUserLoginPass": {
+ "name": "identityAwarenessSuccUserLoginPass",
+ "oid": "1.3.6.1.4.1.2620.1.38.15",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessSuccUserLoginADQuery": {
+ "name": "identityAwarenessSuccUserLoginADQuery",
+ "oid": "1.3.6.1.4.1.2620.1.38.16",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessSuccMachLoginADQuery": {
+ "name": "identityAwarenessSuccMachLoginADQuery",
+ "oid": "1.3.6.1.4.1.2620.1.38.17",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessUnSuccUserLoginKerberos": {
+ "name": "identityAwarenessUnSuccUserLoginKerberos",
+ "oid": "1.3.6.1.4.1.2620.1.38.18",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessUnSuccMachLoginKerberos": {
+ "name": "identityAwarenessUnSuccMachLoginKerberos",
+ "oid": "1.3.6.1.4.1.2620.1.38.19",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessUnSuccUserLoginPass": {
+ "name": "identityAwarenessUnSuccUserLoginPass",
+ "oid": "1.3.6.1.4.1.2620.1.38.20",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessSuccUserLDAP": {
+ "name": "identityAwarenessSuccUserLDAP",
+ "oid": "1.3.6.1.4.1.2620.1.38.21",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessUnSuccUserLDAP": {
+ "name": "identityAwarenessUnSuccUserLDAP",
+ "oid": "1.3.6.1.4.1.2620.1.38.22",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessDataTrans": {
+ "name": "identityAwarenessDataTrans",
+ "oid": "1.3.6.1.4.1.2620.1.38.23",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessDistributedEnvTable": {
+ "name": "identityAwarenessDistributedEnvTable",
+ "oid": "1.3.6.1.4.1.2620.1.38.24",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "identityAwarenessDistributedEnvEntry": {
+ "name": "identityAwarenessDistributedEnvEntry",
+ "oid": "1.3.6.1.4.1.2620.1.38.24.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessDistributedEnvTableIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "identityAwarenessDistributedEnvTableIndex": {
+ "name": "identityAwarenessDistributedEnvTableIndex",
+ "oid": "1.3.6.1.4.1.2620.1.38.24.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "identityAwarenessDistributedEnvTableGwName": {
+ "name": "identityAwarenessDistributedEnvTableGwName",
+ "oid": "1.3.6.1.4.1.2620.1.38.24.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessDistributedEnvTableDisconnections": {
+ "name": "identityAwarenessDistributedEnvTableDisconnections",
+ "oid": "1.3.6.1.4.1.2620.1.38.24.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessDistributedEnvTableBruteForceAtt": {
+ "name": "identityAwarenessDistributedEnvTableBruteForceAtt",
+ "oid": "1.3.6.1.4.1.2620.1.38.24.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessDistributedEnvTableStatus": {
+ "name": "identityAwarenessDistributedEnvTableStatus",
+ "oid": "1.3.6.1.4.1.2620.1.38.24.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessDistributedEnvTableIsLocal": {
+ "name": "identityAwarenessDistributedEnvTableIsLocal",
+ "oid": "1.3.6.1.4.1.2620.1.38.24.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessADQueryStatusTable": {
+ "name": "identityAwarenessADQueryStatusTable",
+ "oid": "1.3.6.1.4.1.2620.1.38.25",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "identityAwarenessADQueryStatusEntry": {
+ "name": "identityAwarenessADQueryStatusEntry",
+ "oid": "1.3.6.1.4.1.2620.1.38.25.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "identityAwarenessADQueryStatusTableIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "identityAwarenessADQueryStatusTableIndex": {
+ "name": "identityAwarenessADQueryStatusTableIndex",
+ "oid": "1.3.6.1.4.1.2620.1.38.25.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "identityAwarenessADQueryStatusCurrStatus": {
+ "name": "identityAwarenessADQueryStatusCurrStatus",
+ "oid": "1.3.6.1.4.1.2620.1.38.25.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessADQueryStatusDomainName": {
+ "name": "identityAwarenessADQueryStatusDomainName",
+ "oid": "1.3.6.1.4.1.2620.1.38.25.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessADQueryStatusDomainIP": {
+ "name": "identityAwarenessADQueryStatusDomainIP",
+ "oid": "1.3.6.1.4.1.2620.1.38.25.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "IpAddress",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessADQueryStatusEvents": {
+ "name": "identityAwarenessADQueryStatusEvents",
+ "oid": "1.3.6.1.4.1.2620.1.38.25.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessRADIUSAccounting": {
+ "name": "identityAwarenessRADIUSAccounting",
+ "oid": "1.3.6.1.4.1.2620.1.38.39",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessIdentityCollectorActiveDirectory": {
+ "name": "identityAwarenessIdentityCollectorActiveDirectory",
+ "oid": "1.3.6.1.4.1.2620.1.38.40",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessIdentityCollectorCiscoISE": {
+ "name": "identityAwarenessIdentityCollectorCiscoISE",
+ "oid": "1.3.6.1.4.1.2620.1.38.41",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessTerminalServer": {
+ "name": "identityAwarenessTerminalServer",
+ "oid": "1.3.6.1.4.1.2620.1.38.42",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessRemoteAccess": {
+ "name": "identityAwarenessRemoteAccess",
+ "oid": "1.3.6.1.4.1.2620.1.38.43",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessIdentityWebAPI": {
+ "name": "identityAwarenessIdentityWebAPI",
+ "oid": "1.3.6.1.4.1.2620.1.38.44",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessStatus": {
+ "name": "identityAwarenessStatus",
+ "oid": "1.3.6.1.4.1.2620.1.38.101",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessStatusShortDesc": {
+ "name": "identityAwarenessStatusShortDesc",
+ "oid": "1.3.6.1.4.1.2620.1.38.102",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "identityAwarenessStatusLongDesc": {
+ "name": "identityAwarenessStatusLongDesc",
+ "oid": "1.3.6.1.4.1.2620.1.38.103",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "applicationControlSubscription": {
+ "name": "applicationControlSubscription",
+ "oid": "1.3.6.1.4.1.2620.1.39.1",
+ "class": "objectidentity"
+ },
+ "applicationControlSubscriptionStatus": {
+ "name": "applicationControlSubscriptionStatus",
+ "oid": "1.3.6.1.4.1.2620.1.39.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "applicationControlSubscriptionExpDate": {
+ "name": "applicationControlSubscriptionExpDate",
+ "oid": "1.3.6.1.4.1.2620.1.39.1.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "applicationControlSubscriptionDesc": {
+ "name": "applicationControlSubscriptionDesc",
+ "oid": "1.3.6.1.4.1.2620.1.39.1.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "applicationControlUpdate": {
+ "name": "applicationControlUpdate",
+ "oid": "1.3.6.1.4.1.2620.1.39.2",
+ "class": "objectidentity"
+ },
+ "applicationControlUpdateStatus": {
+ "name": "applicationControlUpdateStatus",
+ "oid": "1.3.6.1.4.1.2620.1.39.2.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "applicationControlUpdateDesc": {
+ "name": "applicationControlUpdateDesc",
+ "oid": "1.3.6.1.4.1.2620.1.39.2.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "applicationControlNextUpdate": {
+ "name": "applicationControlNextUpdate",
+ "oid": "1.3.6.1.4.1.2620.1.39.2.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "applicationControlVersion": {
+ "name": "applicationControlVersion",
+ "oid": "1.3.6.1.4.1.2620.1.39.2.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "applicationControlStatusCode": {
+ "name": "applicationControlStatusCode",
+ "oid": "1.3.6.1.4.1.2620.1.39.101",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "applicationControlStatusShortDesc": {
+ "name": "applicationControlStatusShortDesc",
+ "oid": "1.3.6.1.4.1.2620.1.39.102",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "applicationControlStatusLongDesc": {
+ "name": "applicationControlStatusLongDesc",
+ "oid": "1.3.6.1.4.1.2620.1.39.103",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "exchangeAgentsStatus": {
+ "name": "exchangeAgentsStatus",
+ "oid": "1.3.6.1.4.1.2620.1.44.1",
+ "class": "objectidentity"
+ },
+ "exchangeAgentsStatusTable": {
+ "name": "exchangeAgentsStatusTable",
+ "oid": "1.3.6.1.4.1.2620.1.44.1.1",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "exchangeAgentsStatusEntry": {
+ "name": "exchangeAgentsStatusEntry",
+ "oid": "1.3.6.1.4.1.2620.1.44.1.1.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "exchangeAgentsStatusTableIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "exchangeAgentsStatusTableIndex": {
+ "name": "exchangeAgentsStatusTableIndex",
+ "oid": "1.3.6.1.4.1.2620.1.44.1.1.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "exchangeAgentName": {
+ "name": "exchangeAgentName",
+ "oid": "1.3.6.1.4.1.2620.1.44.1.1.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "exchangeAgentStatus": {
+ "name": "exchangeAgentStatus",
+ "oid": "1.3.6.1.4.1.2620.1.44.1.1.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "exchangeAgentTotalMsg": {
+ "name": "exchangeAgentTotalMsg",
+ "oid": "1.3.6.1.4.1.2620.1.44.1.1.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "exchangeAgentTotalScannedMsg": {
+ "name": "exchangeAgentTotalScannedMsg",
+ "oid": "1.3.6.1.4.1.2620.1.44.1.1.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "exchangeAgentDroppedMsg": {
+ "name": "exchangeAgentDroppedMsg",
+ "oid": "1.3.6.1.4.1.2620.1.44.1.1.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "exchangeAgentUpTime": {
+ "name": "exchangeAgentUpTime",
+ "oid": "1.3.6.1.4.1.2620.1.44.1.1.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "exchangeAgentTimeSinceLastMsg": {
+ "name": "exchangeAgentTimeSinceLastMsg",
+ "oid": "1.3.6.1.4.1.2620.1.44.1.1.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "exchangeAgentQueueLen": {
+ "name": "exchangeAgentQueueLen",
+ "oid": "1.3.6.1.4.1.2620.1.44.1.1.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "exchangeQueueLen": {
+ "name": "exchangeQueueLen",
+ "oid": "1.3.6.1.4.1.2620.1.44.1.1.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "exchangeAgentAvgTimePerMsg": {
+ "name": "exchangeAgentAvgTimePerMsg",
+ "oid": "1.3.6.1.4.1.2620.1.44.1.1.1.11",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "exchangeAgentAvgTimePerScannedMsg": {
+ "name": "exchangeAgentAvgTimePerScannedMsg",
+ "oid": "1.3.6.1.4.1.2620.1.44.1.1.1.12",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "exchangeAgentVersion": {
+ "name": "exchangeAgentVersion",
+ "oid": "1.3.6.1.4.1.2620.1.44.1.1.1.13",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "exchangeCPUUsage": {
+ "name": "exchangeCPUUsage",
+ "oid": "1.3.6.1.4.1.2620.1.44.1.1.1.14",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "exchangeMemoryUsage": {
+ "name": "exchangeMemoryUsage",
+ "oid": "1.3.6.1.4.1.2620.1.44.1.1.1.15",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "exchangeAgentPolicyTimeStamp": {
+ "name": "exchangeAgentPolicyTimeStamp",
+ "oid": "1.3.6.1.4.1.2620.1.44.1.1.1.16",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpVersionString": {
+ "name": "dlpVersionString",
+ "oid": "1.3.6.1.4.1.2620.1.44.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpLicenseStatus": {
+ "name": "dlpLicenseStatus",
+ "oid": "1.3.6.1.4.1.2620.1.44.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpLdapStatus": {
+ "name": "dlpLdapStatus",
+ "oid": "1.3.6.1.4.1.2620.1.44.13",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpTotalScans": {
+ "name": "dlpTotalScans",
+ "oid": "1.3.6.1.4.1.2620.1.44.14",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpSMTPScans": {
+ "name": "dlpSMTPScans",
+ "oid": "1.3.6.1.4.1.2620.1.44.15",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpSMTPIncidents": {
+ "name": "dlpSMTPIncidents",
+ "oid": "1.3.6.1.4.1.2620.1.44.16",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpLastSMTPScan": {
+ "name": "dlpLastSMTPScan",
+ "oid": "1.3.6.1.4.1.2620.1.44.17",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpNumQuarantined": {
+ "name": "dlpNumQuarantined",
+ "oid": "1.3.6.1.4.1.2620.1.44.18",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpQrntMsgsSize": {
+ "name": "dlpQrntMsgsSize",
+ "oid": "1.3.6.1.4.1.2620.1.44.19",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpSentEMails": {
+ "name": "dlpSentEMails",
+ "oid": "1.3.6.1.4.1.2620.1.44.20",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpExpiredEMails": {
+ "name": "dlpExpiredEMails",
+ "oid": "1.3.6.1.4.1.2620.1.44.21",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpDiscardEMails": {
+ "name": "dlpDiscardEMails",
+ "oid": "1.3.6.1.4.1.2620.1.44.22",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpPostfixQLen": {
+ "name": "dlpPostfixQLen",
+ "oid": "1.3.6.1.4.1.2620.1.44.23",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpPostfixErrors": {
+ "name": "dlpPostfixErrors",
+ "oid": "1.3.6.1.4.1.2620.1.44.24",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpPostfixQOldMsg": {
+ "name": "dlpPostfixQOldMsg",
+ "oid": "1.3.6.1.4.1.2620.1.44.25",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpPostfixQMsgsSz": {
+ "name": "dlpPostfixQMsgsSz",
+ "oid": "1.3.6.1.4.1.2620.1.44.26",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpPostfixQFreeSp": {
+ "name": "dlpPostfixQFreeSp",
+ "oid": "1.3.6.1.4.1.2620.1.44.27",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpQrntFreeSpace": {
+ "name": "dlpQrntFreeSpace",
+ "oid": "1.3.6.1.4.1.2620.1.44.28",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpQrntStatus": {
+ "name": "dlpQrntStatus",
+ "oid": "1.3.6.1.4.1.2620.1.44.29",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpHttpScans": {
+ "name": "dlpHttpScans",
+ "oid": "1.3.6.1.4.1.2620.1.44.30",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpHttpIncidents": {
+ "name": "dlpHttpIncidents",
+ "oid": "1.3.6.1.4.1.2620.1.44.31",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpHttpLastScan": {
+ "name": "dlpHttpLastScan",
+ "oid": "1.3.6.1.4.1.2620.1.44.32",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpFtpScans": {
+ "name": "dlpFtpScans",
+ "oid": "1.3.6.1.4.1.2620.1.44.33",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpFtpIncidents": {
+ "name": "dlpFtpIncidents",
+ "oid": "1.3.6.1.4.1.2620.1.44.34",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpFtpLastScan": {
+ "name": "dlpFtpLastScan",
+ "oid": "1.3.6.1.4.1.2620.1.44.35",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpBypassStatus": {
+ "name": "dlpBypassStatus",
+ "oid": "1.3.6.1.4.1.2620.1.44.36",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpUserCheckClnts": {
+ "name": "dlpUserCheckClnts",
+ "oid": "1.3.6.1.4.1.2620.1.44.37",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpLastPolStatus": {
+ "name": "dlpLastPolStatus",
+ "oid": "1.3.6.1.4.1.2620.1.44.38",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpStatusCode": {
+ "name": "dlpStatusCode",
+ "oid": "1.3.6.1.4.1.2620.1.44.101",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpStatusShortDesc": {
+ "name": "dlpStatusShortDesc",
+ "oid": "1.3.6.1.4.1.2620.1.44.102",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "dlpStatusLongDesc": {
+ "name": "dlpStatusLongDesc",
+ "oid": "1.3.6.1.4.1.2620.1.44.103",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "thresholdPolicy": {
+ "name": "thresholdPolicy",
+ "oid": "1.3.6.1.4.1.2620.1.42.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "thresholdState": {
+ "name": "thresholdState",
+ "oid": "1.3.6.1.4.1.2620.1.42.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "thresholdStateDesc": {
+ "name": "thresholdStateDesc",
+ "oid": "1.3.6.1.4.1.2620.1.42.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "thresholdEnabled": {
+ "name": "thresholdEnabled",
+ "oid": "1.3.6.1.4.1.2620.1.42.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "thresholdActive": {
+ "name": "thresholdActive",
+ "oid": "1.3.6.1.4.1.2620.1.42.5",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "thresholdEventsSinceStartup": {
+ "name": "thresholdEventsSinceStartup",
+ "oid": "1.3.6.1.4.1.2620.1.42.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "thresholdActiveEventsTable": {
+ "name": "thresholdActiveEventsTable",
+ "oid": "1.3.6.1.4.1.2620.1.42.7",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "thresholdActiveEventsEntry": {
+ "name": "thresholdActiveEventsEntry",
+ "oid": "1.3.6.1.4.1.2620.1.42.7.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdActiveEventsIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "thresholdActiveEventsIndex": {
+ "name": "thresholdActiveEventsIndex",
+ "oid": "1.3.6.1.4.1.2620.1.42.7.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "thresholdActiveEventName": {
+ "name": "thresholdActiveEventName",
+ "oid": "1.3.6.1.4.1.2620.1.42.7.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "thresholdActiveEventCategory": {
+ "name": "thresholdActiveEventCategory",
+ "oid": "1.3.6.1.4.1.2620.1.42.7.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "thresholdActiveEventSeverity": {
+ "name": "thresholdActiveEventSeverity",
+ "oid": "1.3.6.1.4.1.2620.1.42.7.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "thresholdActiveEventSubject": {
+ "name": "thresholdActiveEventSubject",
+ "oid": "1.3.6.1.4.1.2620.1.42.7.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "thresholdActiveEventSubjectValue": {
+ "name": "thresholdActiveEventSubjectValue",
+ "oid": "1.3.6.1.4.1.2620.1.42.7.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "thresholdActiveEventActivationTime": {
+ "name": "thresholdActiveEventActivationTime",
+ "oid": "1.3.6.1.4.1.2620.1.42.7.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "thresholdActiveEventState": {
+ "name": "thresholdActiveEventState",
+ "oid": "1.3.6.1.4.1.2620.1.42.7.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "thresholdDestinationsTable": {
+ "name": "thresholdDestinationsTable",
+ "oid": "1.3.6.1.4.1.2620.1.42.8",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "thresholdDestinationsEntry": {
+ "name": "thresholdDestinationsEntry",
+ "oid": "1.3.6.1.4.1.2620.1.42.8.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdDestinationIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "thresholdDestinationIndex": {
+ "name": "thresholdDestinationIndex",
+ "oid": "1.3.6.1.4.1.2620.1.42.8.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "thresholdDestinationName": {
+ "name": "thresholdDestinationName",
+ "oid": "1.3.6.1.4.1.2620.1.42.8.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "thresholdDestinationType": {
+ "name": "thresholdDestinationType",
+ "oid": "1.3.6.1.4.1.2620.1.42.8.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "thresholdSendingState": {
+ "name": "thresholdSendingState",
+ "oid": "1.3.6.1.4.1.2620.1.42.8.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "thresholdSendingStateDesc": {
+ "name": "thresholdSendingStateDesc",
+ "oid": "1.3.6.1.4.1.2620.1.42.8.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "thresholdAlertCount": {
+ "name": "thresholdAlertCount",
+ "oid": "1.3.6.1.4.1.2620.1.42.8.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "thresholdErrorsTable": {
+ "name": "thresholdErrorsTable",
+ "oid": "1.3.6.1.4.1.2620.1.42.9",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "thresholdErrorsEntry": {
+ "name": "thresholdErrorsEntry",
+ "oid": "1.3.6.1.4.1.2620.1.42.9.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "thresholdErrorIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "thresholdErrorIndex": {
+ "name": "thresholdErrorIndex",
+ "oid": "1.3.6.1.4.1.2620.1.42.9.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "thresholdName": {
+ "name": "thresholdName",
+ "oid": "1.3.6.1.4.1.2620.1.42.9.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "thresholdThresholdOID": {
+ "name": "thresholdThresholdOID",
+ "oid": "1.3.6.1.4.1.2620.1.42.9.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "thresholdErrorDesc": {
+ "name": "thresholdErrorDesc",
+ "oid": "1.3.6.1.4.1.2620.1.42.9.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "thresholdErrorTime": {
+ "name": "thresholdErrorTime",
+ "oid": "1.3.6.1.4.1.2620.1.42.9.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "advancedUrlFilteringSubscription": {
+ "name": "advancedUrlFilteringSubscription",
+ "oid": "1.3.6.1.4.1.2620.1.43.1",
+ "class": "objectidentity"
+ },
+ "advancedUrlFilteringSubscriptionStatus": {
+ "name": "advancedUrlFilteringSubscriptionStatus",
+ "oid": "1.3.6.1.4.1.2620.1.43.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "advancedUrlFilteringSubscriptionExpDate": {
+ "name": "advancedUrlFilteringSubscriptionExpDate",
+ "oid": "1.3.6.1.4.1.2620.1.43.1.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "advancedUrlFilteringSubscriptionDesc": {
+ "name": "advancedUrlFilteringSubscriptionDesc",
+ "oid": "1.3.6.1.4.1.2620.1.43.1.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "advancedUrlFilteringUpdate": {
+ "name": "advancedUrlFilteringUpdate",
+ "oid": "1.3.6.1.4.1.2620.1.43.2",
+ "class": "objectidentity"
+ },
+ "advancedUrlFilteringUpdateStatus": {
+ "name": "advancedUrlFilteringUpdateStatus",
+ "oid": "1.3.6.1.4.1.2620.1.43.2.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "advancedUrlFilteringUpdateDesc": {
+ "name": "advancedUrlFilteringUpdateDesc",
+ "oid": "1.3.6.1.4.1.2620.1.43.2.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "advancedUrlFilteringNextUpdate": {
+ "name": "advancedUrlFilteringNextUpdate",
+ "oid": "1.3.6.1.4.1.2620.1.43.2.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "advancedUrlFilteringVersion": {
+ "name": "advancedUrlFilteringVersion",
+ "oid": "1.3.6.1.4.1.2620.1.43.2.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "advancedUrlFilteringRADStatus": {
+ "name": "advancedUrlFilteringRADStatus",
+ "oid": "1.3.6.1.4.1.2620.1.43.3",
+ "class": "objectidentity"
+ },
+ "advancedUrlFilteringRADStatusCode": {
+ "name": "advancedUrlFilteringRADStatusCode",
+ "oid": "1.3.6.1.4.1.2620.1.43.3.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "advancedUrlFilteringRADStatusDesc": {
+ "name": "advancedUrlFilteringRADStatusDesc",
+ "oid": "1.3.6.1.4.1.2620.1.43.3.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "advancedUrlFilteringStatusCode": {
+ "name": "advancedUrlFilteringStatusCode",
+ "oid": "1.3.6.1.4.1.2620.1.43.101",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "advancedUrlFilteringStatusShortDesc": {
+ "name": "advancedUrlFilteringStatusShortDesc",
+ "oid": "1.3.6.1.4.1.2620.1.43.102",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "advancedUrlFilteringStatusLongDesc": {
+ "name": "advancedUrlFilteringStatusLongDesc",
+ "oid": "1.3.6.1.4.1.2620.1.43.103",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "antiBotSubscription": {
+ "name": "antiBotSubscription",
+ "oid": "1.3.6.1.4.1.2620.1.46.2",
+ "class": "objectidentity"
+ },
+ "antiBotSubscriptionStatus": {
+ "name": "antiBotSubscriptionStatus",
+ "oid": "1.3.6.1.4.1.2620.1.46.2.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "antiBotSubscriptionExpDate": {
+ "name": "antiBotSubscriptionExpDate",
+ "oid": "1.3.6.1.4.1.2620.1.46.2.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "antiBotSubscriptionDesc": {
+ "name": "antiBotSubscriptionDesc",
+ "oid": "1.3.6.1.4.1.2620.1.46.2.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "antiVirusSubscription": {
+ "name": "antiVirusSubscription",
+ "oid": "1.3.6.1.4.1.2620.1.46.3",
+ "class": "objectidentity"
+ },
+ "antiVirusSubscriptionStatus": {
+ "name": "antiVirusSubscriptionStatus",
+ "oid": "1.3.6.1.4.1.2620.1.46.3.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "antiVirusSubscriptionExpDate": {
+ "name": "antiVirusSubscriptionExpDate",
+ "oid": "1.3.6.1.4.1.2620.1.46.3.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "antiVirusSubscriptionDesc": {
+ "name": "antiVirusSubscriptionDesc",
+ "oid": "1.3.6.1.4.1.2620.1.46.3.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "antiSpamSubscription": {
+ "name": "antiSpamSubscription",
+ "oid": "1.3.6.1.4.1.2620.1.46.4",
+ "class": "objectidentity"
+ },
+ "antiSpamSubscriptionStatus": {
+ "name": "antiSpamSubscriptionStatus",
+ "oid": "1.3.6.1.4.1.2620.1.46.4.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "antiSpamSubscriptionExpDate": {
+ "name": "antiSpamSubscriptionExpDate",
+ "oid": "1.3.6.1.4.1.2620.1.46.4.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "antiSpamSubscriptionDesc": {
+ "name": "antiSpamSubscriptionDesc",
+ "oid": "1.3.6.1.4.1.2620.1.46.4.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "amwABUpdate": {
+ "name": "amwABUpdate",
+ "oid": "1.3.6.1.4.1.2620.1.46.1",
+ "class": "objectidentity"
+ },
+ "amwABUpdateStatus": {
+ "name": "amwABUpdateStatus",
+ "oid": "1.3.6.1.4.1.2620.1.46.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "amwABUpdateDesc": {
+ "name": "amwABUpdateDesc",
+ "oid": "1.3.6.1.4.1.2620.1.46.1.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "amwABNextUpdate": {
+ "name": "amwABNextUpdate",
+ "oid": "1.3.6.1.4.1.2620.1.46.1.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "amwABVersion": {
+ "name": "amwABVersion",
+ "oid": "1.3.6.1.4.1.2620.1.46.1.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "amwAVUpdate": {
+ "name": "amwAVUpdate",
+ "oid": "1.3.6.1.4.1.2620.1.46.5",
+ "class": "objectidentity"
+ },
+ "amwAVUpdateStatus": {
+ "name": "amwAVUpdateStatus",
+ "oid": "1.3.6.1.4.1.2620.1.46.5.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "amwAVUpdateDesc": {
+ "name": "amwAVUpdateDesc",
+ "oid": "1.3.6.1.4.1.2620.1.46.5.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "amwAVNextUpdate": {
+ "name": "amwAVNextUpdate",
+ "oid": "1.3.6.1.4.1.2620.1.46.5.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "amwAVVersion": {
+ "name": "amwAVVersion",
+ "oid": "1.3.6.1.4.1.2620.1.46.5.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "amwStatusCode": {
+ "name": "amwStatusCode",
+ "oid": "1.3.6.1.4.1.2620.1.46.101",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "amwStatusShortDesc": {
+ "name": "amwStatusShortDesc",
+ "oid": "1.3.6.1.4.1.2620.1.46.102",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "amwStatusLongDesc": {
+ "name": "amwStatusLongDesc",
+ "oid": "1.3.6.1.4.1.2620.1.46.103",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgProductName": {
+ "name": "asgProductName",
+ "oid": "1.3.6.1.4.1.2620.1.48.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVer": {
+ "name": "asgVer",
+ "oid": "1.3.6.1.4.1.2620.1.48.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgKernelVer": {
+ "name": "asgKernelVer",
+ "oid": "1.3.6.1.4.1.2620.1.48.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgBuildNum": {
+ "name": "asgBuildNum",
+ "oid": "1.3.6.1.4.1.2620.1.48.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgMaximumBladesPerChassis": {
+ "name": "asgMaximumBladesPerChassis",
+ "oid": "1.3.6.1.4.1.2620.1.48.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgActiveBladesBitmask": {
+ "name": "asgActiveBladesBitmask",
+ "oid": "1.3.6.1.4.1.2620.1.48.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgInstalledBladesBitmask": {
+ "name": "asgInstalledBladesBitmask",
+ "oid": "1.3.6.1.4.1.2620.1.48.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgInstalled": {
+ "name": "asgInstalled",
+ "oid": "1.3.6.1.4.1.2620.1.48.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSystemUp": {
+ "name": "asgSystemUp",
+ "oid": "1.3.6.1.4.1.2620.1.48.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgEvent": {
+ "name": "asgEvent",
+ "oid": "1.3.6.1.4.1.2620.1.48.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgStatusCode": {
+ "name": "asgStatusCode",
+ "oid": "1.3.6.1.4.1.2620.1.48.13",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgStatShort": {
+ "name": "asgStatShort",
+ "oid": "1.3.6.1.4.1.2620.1.48.14",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgStatLong": {
+ "name": "asgStatLong",
+ "oid": "1.3.6.1.4.1.2620.1.48.15",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSecureXLStatusBitmask": {
+ "name": "asgSecureXLStatusBitmask",
+ "oid": "1.3.6.1.4.1.2620.1.48.16",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgAttachedBladesBitmask": {
+ "name": "asgAttachedBladesBitmask",
+ "oid": "1.3.6.1.4.1.2620.1.48.17",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv4PerformanceCounters": {
+ "name": "asgIPv4PerformanceCounters",
+ "oid": "1.3.6.1.4.1.2620.1.48.20",
+ "class": "objectidentity"
+ },
+ "asgThroughput": {
+ "name": "asgThroughput",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgConnectionRate": {
+ "name": "asgConnectionRate",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgPacketRate": {
+ "name": "asgPacketRate",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgConcurrConn": {
+ "name": "asgConcurrConn",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgAccelConnectionRate": {
+ "name": "asgAccelConnectionRate",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgNonAccelConnectionRate": {
+ "name": "asgNonAccelConnectionRate",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgAccelConcurrConn": {
+ "name": "asgAccelConcurrConn",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgNonAccelConcurrConn": {
+ "name": "asgNonAccelConcurrConn",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgLoad": {
+ "name": "asgLoad",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgAccelLoadAvg": {
+ "name": "asgAccelLoadAvg",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgAccelLoadMin": {
+ "name": "asgAccelLoadMin",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgAccelLoadMax": {
+ "name": "asgAccelLoadMax",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.13",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgInstancesLoadAvg": {
+ "name": "asgInstancesLoadAvg",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.14",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgInstancesLoadMin": {
+ "name": "asgInstancesLoadMin",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.15",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgInstancesLoadMax": {
+ "name": "asgInstancesLoadMax",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.16",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVpnThroughput": {
+ "name": "asgVpnThroughput",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.17",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVpnConn": {
+ "name": "asgVpnConn",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.18",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgNatConnRate": {
+ "name": "asgNatConnRate",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.19",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgNatConn": {
+ "name": "asgNatConn",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.20",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVsxCpu1MinAvg": {
+ "name": "asgVsxCpu1MinAvg",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.21",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgPathDistTable": {
+ "name": "asgPathDistTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.24",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgPathDistEntry": {
+ "name": "asgPathDistEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.24.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgPathDistIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgPathDistIndex": {
+ "name": "asgPathDistIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.24.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgStatName": {
+ "name": "asgStatName",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.24.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgAccelPath": {
+ "name": "asgAccelPath",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.24.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgMediumPath": {
+ "name": "asgMediumPath",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.24.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgFirewallPath": {
+ "name": "asgFirewallPath",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.24.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgDropped": {
+ "name": "asgDropped",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.24.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgCountersTable": {
+ "name": "asgCountersTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.25",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgCountersEntry": {
+ "name": "asgCountersEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.25.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgCountersIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgCountersIndex": {
+ "name": "asgCountersIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.25.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgCountersBladeId": {
+ "name": "asgCountersBladeId",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.25.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgCountersThroughput": {
+ "name": "asgCountersThroughput",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.25.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgCountersConnRate": {
+ "name": "asgCountersConnRate",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.25.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgCountersPacketRate": {
+ "name": "asgCountersPacketRate",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.25.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgCountersConcurrConnNum": {
+ "name": "asgCountersConcurrConnNum",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.25.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgCountersAccelLoadAverage": {
+ "name": "asgCountersAccelLoadAverage",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.25.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgCountersAccelLoadMin": {
+ "name": "asgCountersAccelLoadMin",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.25.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgCountersAccelLoadMax": {
+ "name": "asgCountersAccelLoadMax",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.25.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgCountersInstanceLoadAverage": {
+ "name": "asgCountersInstanceLoadAverage",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.25.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgCountersInstanceLoadMin": {
+ "name": "asgCountersInstanceLoadMin",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.25.1.11",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgCountersInstanceLoadMax": {
+ "name": "asgCountersInstanceLoadMax",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.25.1.12",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgPeaksTable": {
+ "name": "asgPeaksTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.26",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgPeaksEntry": {
+ "name": "asgPeaksEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.26.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgPeakIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgPeakIndex": {
+ "name": "asgPeakIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.26.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgPeakCriteria": {
+ "name": "asgPeakCriteria",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.26.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgPeakValue": {
+ "name": "asgPeakValue",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.26.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgPeakTimeStamp": {
+ "name": "asgPeakTimeStamp",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.26.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgPeakUnits": {
+ "name": "asgPeakUnits",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.26.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgRulebase": {
+ "name": "asgRulebase",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.27",
+ "class": "objectidentity"
+ },
+ "asgAcceptedBytesTotal": {
+ "name": "asgAcceptedBytesTotal",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.27.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgDroppedBytesTotal": {
+ "name": "asgDroppedBytesTotal",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.27.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgRejectedTotal": {
+ "name": "asgRejectedTotal",
+ "oid": "1.3.6.1.4.1.2620.1.48.20.27.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6PerformanceCounters": {
+ "name": "asgIPv6PerformanceCounters",
+ "oid": "1.3.6.1.4.1.2620.1.48.21",
+ "class": "objectidentity"
+ },
+ "asgIPv6Throughput": {
+ "name": "asgIPv6Throughput",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6ConnectionRate": {
+ "name": "asgIPv6ConnectionRate",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6PacketRate": {
+ "name": "asgIPv6PacketRate",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6ConcurrConn": {
+ "name": "asgIPv6ConcurrConn",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.4",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6AccelConnectionRate": {
+ "name": "asgIPv6AccelConnectionRate",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.6",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6NonAccelConnectionRate": {
+ "name": "asgIPv6NonAccelConnectionRate",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.7",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6AccelConcurrConn": {
+ "name": "asgIPv6AccelConcurrConn",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.8",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6NonAccelConcurrConn": {
+ "name": "asgIPv6NonAccelConcurrConn",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.9",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6Load": {
+ "name": "asgIPv6Load",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.10",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6AccelLoadAvg": {
+ "name": "asgIPv6AccelLoadAvg",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.11",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6AccelLoadMin": {
+ "name": "asgIPv6AccelLoadMin",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.12",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6AccelLoadMax": {
+ "name": "asgIPv6AccelLoadMax",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.13",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6InstancesLoadAvg": {
+ "name": "asgIPv6InstancesLoadAvg",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.14",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6InstancesLoadMin": {
+ "name": "asgIPv6InstancesLoadMin",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.15",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6InstancesLoadMax": {
+ "name": "asgIPv6InstancesLoadMax",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.16",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6VpnThroughput": {
+ "name": "asgIPv6VpnThroughput",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.17",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6VpnConn": {
+ "name": "asgIPv6VpnConn",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.18",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6NatConnRate": {
+ "name": "asgIPv6NatConnRate",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.19",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6NatConn": {
+ "name": "asgIPv6NatConn",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.20",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6VsxCpu1MinAvg": {
+ "name": "asgIPv6VsxCpu1MinAvg",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.21",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6PathDistTable": {
+ "name": "asgIPv6PathDistTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.24",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgIPv6PathDistEntry": {
+ "name": "asgIPv6PathDistEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.24.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6PathDistIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgIPv6PathDistIndex": {
+ "name": "asgIPv6PathDistIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.24.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgIPv6StatName": {
+ "name": "asgIPv6StatName",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.24.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6AccelPath": {
+ "name": "asgIPv6AccelPath",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.24.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6MediumPath": {
+ "name": "asgIPv6MediumPath",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.24.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6FirewallPath": {
+ "name": "asgIPv6FirewallPath",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.24.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6Dropped": {
+ "name": "asgIPv6Dropped",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.24.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6CountersTable": {
+ "name": "asgIPv6CountersTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.25",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgIPv6CountersEntry": {
+ "name": "asgIPv6CountersEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.25.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6CountersIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgIPv6CountersIndex": {
+ "name": "asgIPv6CountersIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.25.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgIPv6CountersBladeId": {
+ "name": "asgIPv6CountersBladeId",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.25.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6CountersThroughput": {
+ "name": "asgIPv6CountersThroughput",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.25.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6CountersConnRate": {
+ "name": "asgIPv6CountersConnRate",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.25.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6CountersPacketRate": {
+ "name": "asgIPv6CountersPacketRate",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.25.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6CountersConcurrConnNum": {
+ "name": "asgIPv6CountersConcurrConnNum",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.25.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6CountersAccelLoadAverage": {
+ "name": "asgIPv6CountersAccelLoadAverage",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.25.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6CountersAccelLoadMin": {
+ "name": "asgIPv6CountersAccelLoadMin",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.25.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6CountersAccelLoadMax": {
+ "name": "asgIPv6CountersAccelLoadMax",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.25.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6CountersInstanceLoadAverage": {
+ "name": "asgIPv6CountersInstanceLoadAverage",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.25.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6CountersInstanceLoadMin": {
+ "name": "asgIPv6CountersInstanceLoadMin",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.25.1.11",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6CountersInstanceLoadMax": {
+ "name": "asgIPv6CountersInstanceLoadMax",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.25.1.12",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6PeaksTable": {
+ "name": "asgIPv6PeaksTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.26",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgIPv6PeaksEntry": {
+ "name": "asgIPv6PeaksEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.26.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6PeakIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgIPv6PeakIndex": {
+ "name": "asgIPv6PeakIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.26.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgIPv6PeakCriteria": {
+ "name": "asgIPv6PeakCriteria",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.26.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6PeakValue": {
+ "name": "asgIPv6PeakValue",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.26.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6PeakTimeStamp": {
+ "name": "asgIPv6PeakTimeStamp",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.26.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6PeakUnits": {
+ "name": "asgIPv6PeakUnits",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.26.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6Rulebase": {
+ "name": "asgIPv6Rulebase",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.27",
+ "class": "objectidentity"
+ },
+ "asgIPv6AcceptedBytesTotalRate": {
+ "name": "asgIPv6AcceptedBytesTotalRate",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.27.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6DroppedBytesTotalRate": {
+ "name": "asgIPv6DroppedBytesTotalRate",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.27.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6DroppedTotalRate": {
+ "name": "asgIPv6DroppedTotalRate",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.27.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6RulebaseTable": {
+ "name": "asgIPv6RulebaseTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.27.4",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgIPv6RulebaseEntry": {
+ "name": "asgIPv6RulebaseEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.27.4.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgIPv6RulebaseIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgIPv6RulebaseIndex": {
+ "name": "asgIPv6RulebaseIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.27.4.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgIPv6RulebaseBladeId": {
+ "name": "asgIPv6RulebaseBladeId",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.27.4.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6RulebaseDroppedTotal": {
+ "name": "asgIPv6RulebaseDroppedTotal",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.27.4.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6RulebaseAcceptedTotal": {
+ "name": "asgIPv6RulebaseAcceptedTotal",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.27.4.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6RulebaseRejectedTotal": {
+ "name": "asgIPv6RulebaseRejectedTotal",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.27.4.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6RulebaseBytesDroppedTotal": {
+ "name": "asgIPv6RulebaseBytesDroppedTotal",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.27.4.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6RulebaseBytesAcceptedTotal": {
+ "name": "asgIPv6RulebaseBytesAcceptedTotal",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.27.4.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgIPv6RulebaseBytesRejectedTotal": {
+ "name": "asgIPv6RulebaseBytesRejectedTotal",
+ "oid": "1.3.6.1.4.1.2620.1.48.21.27.4.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgHwMonitoring": {
+ "name": "asgHwMonitoring",
+ "oid": "1.3.6.1.4.1.2620.1.48.22",
+ "class": "objectidentity"
+ },
+ "asgSensors": {
+ "name": "asgSensors",
+ "oid": "1.3.6.1.4.1.2620.1.48.22.1",
+ "class": "objectidentity"
+ },
+ "asgSensorTable": {
+ "name": "asgSensorTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.22.1.1",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgSensorEntry": {
+ "name": "asgSensorEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.22.1.1.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSensorIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgSensorIndex": {
+ "name": "asgSensorIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.22.1.1.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgSensorName": {
+ "name": "asgSensorName",
+ "oid": "1.3.6.1.4.1.2620.1.48.22.1.1.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSensorLocation": {
+ "name": "asgSensorLocation",
+ "oid": "1.3.6.1.4.1.2620.1.48.22.1.1.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSensorCurrValue": {
+ "name": "asgSensorCurrValue",
+ "oid": "1.3.6.1.4.1.2620.1.48.22.1.1.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSensorMinValue": {
+ "name": "asgSensorMinValue",
+ "oid": "1.3.6.1.4.1.2620.1.48.22.1.1.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSensorMaxValue": {
+ "name": "asgSensorMaxValue",
+ "oid": "1.3.6.1.4.1.2620.1.48.22.1.1.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSensorThreshold": {
+ "name": "asgSensorThreshold",
+ "oid": "1.3.6.1.4.1.2620.1.48.22.1.1.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSensorUnit": {
+ "name": "asgSensorUnit",
+ "oid": "1.3.6.1.4.1.2620.1.48.22.1.1.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSensorIdentity": {
+ "name": "asgSensorIdentity",
+ "oid": "1.3.6.1.4.1.2620.1.48.22.1.1.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSensorStatus": {
+ "name": "asgSensorStatus",
+ "oid": "1.3.6.1.4.1.2620.1.48.22.1.1.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgResourceTable": {
+ "name": "asgResourceTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.23",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgResourceEntry": {
+ "name": "asgResourceEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.23.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgResourceIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgResourceIndex": {
+ "name": "asgResourceIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.23.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgResourceName": {
+ "name": "asgResourceName",
+ "oid": "1.3.6.1.4.1.2620.1.48.23.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgResourceLocation": {
+ "name": "asgResourceLocation",
+ "oid": "1.3.6.1.4.1.2620.1.48.23.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgResourceCurrValue": {
+ "name": "asgResourceCurrValue",
+ "oid": "1.3.6.1.4.1.2620.1.48.23.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgResourceThreshold": {
+ "name": "asgResourceThreshold",
+ "oid": "1.3.6.1.4.1.2620.1.48.23.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgResourceUnit": {
+ "name": "asgResourceUnit",
+ "oid": "1.3.6.1.4.1.2620.1.48.23.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgResourceTotalVal": {
+ "name": "asgResourceTotalVal",
+ "oid": "1.3.6.1.4.1.2620.1.48.23.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgResourceTitle": {
+ "name": "asgResourceTitle",
+ "oid": "1.3.6.1.4.1.2620.1.48.23.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgProtocolTraffic": {
+ "name": "asgProtocolTraffic",
+ "oid": "1.3.6.1.4.1.2620.1.48.24",
+ "class": "objectidentity"
+ },
+ "asgServicesTraffic": {
+ "name": "asgServicesTraffic",
+ "oid": "1.3.6.1.4.1.2620.1.48.25",
+ "class": "objectidentity"
+ },
+ "asgProtocolTrafficTable": {
+ "name": "asgProtocolTrafficTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.24.1",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgProtocolTrafficEntry": {
+ "name": "asgProtocolTrafficEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.24.1.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgProtocolIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgProtocolIndex": {
+ "name": "asgProtocolIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.24.1.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgProtocolName": {
+ "name": "asgProtocolName",
+ "oid": "1.3.6.1.4.1.2620.1.48.24.1.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgProtocolConns": {
+ "name": "asgProtocolConns",
+ "oid": "1.3.6.1.4.1.2620.1.48.24.1.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgProtocolTotalPkts": {
+ "name": "asgProtocolTotalPkts",
+ "oid": "1.3.6.1.4.1.2620.1.48.24.1.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgProtocolTotalBytes": {
+ "name": "asgProtocolTotalBytes",
+ "oid": "1.3.6.1.4.1.2620.1.48.24.1.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgServiceTrafficTable": {
+ "name": "asgServiceTrafficTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.25.1",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgServiceTrafficEntry": {
+ "name": "asgServiceTrafficEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.25.1.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgServiceIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgServiceIndex": {
+ "name": "asgServiceIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.25.1.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgServiceName": {
+ "name": "asgServiceName",
+ "oid": "1.3.6.1.4.1.2620.1.48.25.1.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgServiceConns": {
+ "name": "asgServiceConns",
+ "oid": "1.3.6.1.4.1.2620.1.48.25.1.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgServiceTotalPkts": {
+ "name": "asgServiceTotalPkts",
+ "oid": "1.3.6.1.4.1.2620.1.48.25.1.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgServiceTotalBytes": {
+ "name": "asgServiceTotalBytes",
+ "oid": "1.3.6.1.4.1.2620.1.48.25.1.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSetup": {
+ "name": "asgSetup",
+ "oid": "1.3.6.1.4.1.2620.1.48.26",
+ "class": "objectidentity"
+ },
+ "asgNetIfTable": {
+ "name": "asgNetIfTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.26.1",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgNetIfEntry": {
+ "name": "asgNetIfEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.26.1.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgNetIfIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgNetIfIndex": {
+ "name": "asgNetIfIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.26.1.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgNetIfName": {
+ "name": "asgNetIfName",
+ "oid": "1.3.6.1.4.1.2620.1.48.26.1.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgNetIfIPv4Addr": {
+ "name": "asgNetIfIPv4Addr",
+ "oid": "1.3.6.1.4.1.2620.1.48.26.1.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgNetIfIPv6Addr": {
+ "name": "asgNetIfIPv6Addr",
+ "oid": "1.3.6.1.4.1.2620.1.48.26.1.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgNetIfMACAddr": {
+ "name": "asgNetIfMACAddr",
+ "oid": "1.3.6.1.4.1.2620.1.48.26.1.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgNetIfInfo": {
+ "name": "asgNetIfInfo",
+ "oid": "1.3.6.1.4.1.2620.1.48.26.1.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgNetIfState": {
+ "name": "asgNetIfState",
+ "oid": "1.3.6.1.4.1.2620.1.48.26.1.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgNetIfSpeed": {
+ "name": "asgNetIfSpeed",
+ "oid": "1.3.6.1.4.1.2620.1.48.26.1.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgNetIfMTU": {
+ "name": "asgNetIfMTU",
+ "oid": "1.3.6.1.4.1.2620.1.48.26.1.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgNetIfDuplex": {
+ "name": "asgNetIfDuplex",
+ "oid": "1.3.6.1.4.1.2620.1.48.26.1.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgNetIfRx": {
+ "name": "asgNetIfRx",
+ "oid": "1.3.6.1.4.1.2620.1.48.26.1.1.11",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgNetIfTx": {
+ "name": "asgNetIfTx",
+ "oid": "1.3.6.1.4.1.2620.1.48.26.1.1.12",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgProblemTable": {
+ "name": "asgProblemTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.27",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgProblemEntry": {
+ "name": "asgProblemEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.27.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgProblemIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgProblemIndex": {
+ "name": "asgProblemIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.27.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgProblemName": {
+ "name": "asgProblemName",
+ "oid": "1.3.6.1.4.1.2620.1.48.27.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgProblemStatus": {
+ "name": "asgProblemStatus",
+ "oid": "1.3.6.1.4.1.2620.1.48.27.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgProblemPriority": {
+ "name": "asgProblemPriority",
+ "oid": "1.3.6.1.4.1.2620.1.48.27.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgProblemVerified": {
+ "name": "asgProblemVerified",
+ "oid": "1.3.6.1.4.1.2620.1.48.27.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgProblemDescr": {
+ "name": "asgProblemDescr",
+ "oid": "1.3.6.1.4.1.2620.1.48.27.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgChassisInfo": {
+ "name": "asgChassisInfo",
+ "oid": "1.3.6.1.4.1.2620.1.48.28",
+ "class": "objectidentity"
+ },
+ "asgChassisMode": {
+ "name": "asgChassisMode",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgChassisHAMode": {
+ "name": "asgChassisHAMode",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSynchronization": {
+ "name": "asgSynchronization",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.3",
+ "class": "objectidentity"
+ },
+ "asgSyncToActive": {
+ "name": "asgSyncToActive",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.3.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSyncToStandby": {
+ "name": "asgSyncToStandby",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.3.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSyncExceptionsTable": {
+ "name": "asgSyncExceptionsTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.3.3",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgSyncExceptionsEntry": {
+ "name": "asgSyncExceptionsEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.3.3.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSyncExceptionsIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgSyncExceptionsIndex": {
+ "name": "asgSyncExceptionsIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.3.3.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgSyncExceptionsID": {
+ "name": "asgSyncExceptionsID",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.3.3.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSyncExceptionsSource": {
+ "name": "asgSyncExceptionsSource",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.3.3.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSyncExceptionsSourceMask": {
+ "name": "asgSyncExceptionsSourceMask",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.3.3.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSyncExceptionsDestination": {
+ "name": "asgSyncExceptionsDestination",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.3.3.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSyncExceptionsDestinationMask": {
+ "name": "asgSyncExceptionsDestinationMask",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.3.3.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSyncExceptionsIpProtocol": {
+ "name": "asgSyncExceptionsIpProtocol",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.3.3.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSyncExceptionsSync": {
+ "name": "asgSyncExceptionsSync",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.3.3.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSyncExceptionsDelay": {
+ "name": "asgSyncExceptionsDelay",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.3.3.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgChassisParamsTable": {
+ "name": "asgChassisParamsTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.4",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgChassisParamsEntry": {
+ "name": "asgChassisParamsEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.4.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgChassisParamsIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgChassisParamsIndex": {
+ "name": "asgChassisParamsIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.4.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgChassisParamsID": {
+ "name": "asgChassisParamsID",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.4.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgChassisParamsStatus": {
+ "name": "asgChassisParamsStatus",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.4.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgChassisParamsGrade": {
+ "name": "asgChassisParamsGrade",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.4.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgChassisParamsMaxGrade": {
+ "name": "asgChassisParamsMaxGrade",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.4.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgChassisParamsUniqueIP": {
+ "name": "asgChassisParamsUniqueIP",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.4.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSGMTable": {
+ "name": "asgSGMTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.5",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgSGMEntry": {
+ "name": "asgSGMEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.5.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgSGMIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgSGMIndex": {
+ "name": "asgSGMIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.5.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgSGMID": {
+ "name": "asgSGMID",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.5.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSGMStatus": {
+ "name": "asgSGMStatus",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.5.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSGMProcess": {
+ "name": "asgSGMProcess",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.5.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgSGMPolicyTime": {
+ "name": "asgSGMPolicyTime",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.5.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgFactorTable": {
+ "name": "asgFactorTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.6",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgFactorEntry": {
+ "name": "asgFactorEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.6.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgFactorIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgFactorIndex": {
+ "name": "asgFactorIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.6.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgFactorName": {
+ "name": "asgFactorName",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.6.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgFactorValue": {
+ "name": "asgFactorValue",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.6.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgPortPriorityTable": {
+ "name": "asgPortPriorityTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.7",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgPortPriorityEntry": {
+ "name": "asgPortPriorityEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.7.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgPortPriorityIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgPortPriorityIndex": {
+ "name": "asgPortPriorityIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.7.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgPriorityPortName": {
+ "name": "asgPriorityPortName",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.7.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgPortPriority": {
+ "name": "asgPortPriority",
+ "oid": "1.3.6.1.4.1.2620.1.48.28.7.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgCoresUtilTable": {
+ "name": "asgCoresUtilTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.29",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgCoresUtilEntry": {
+ "name": "asgCoresUtilEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgCoreIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgCoreIndex": {
+ "name": "asgCoreIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgCoreRowTitle": {
+ "name": "asgCoreRowTitle",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade1": {
+ "name": "blade1",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade2": {
+ "name": "blade2",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade3": {
+ "name": "blade3",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade4": {
+ "name": "blade4",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade5": {
+ "name": "blade5",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade6": {
+ "name": "blade6",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade7": {
+ "name": "blade7",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade8": {
+ "name": "blade8",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade9": {
+ "name": "blade9",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.11",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade10": {
+ "name": "blade10",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.12",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade11": {
+ "name": "blade11",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.13",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade12": {
+ "name": "blade12",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.14",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade13": {
+ "name": "blade13",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.15",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade14": {
+ "name": "blade14",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.16",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade15": {
+ "name": "blade15",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.17",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade16": {
+ "name": "blade16",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.18",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade17": {
+ "name": "blade17",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.19",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade18": {
+ "name": "blade18",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.20",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade19": {
+ "name": "blade19",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.21",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade20": {
+ "name": "blade20",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.22",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade21": {
+ "name": "blade21",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.23",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade22": {
+ "name": "blade22",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.24",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade23": {
+ "name": "blade23",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.25",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade24": {
+ "name": "blade24",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.26",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade25": {
+ "name": "blade25",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.27",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade26": {
+ "name": "blade26",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.28",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade27": {
+ "name": "blade27",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.29",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade28": {
+ "name": "blade28",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.30",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade29": {
+ "name": "blade29",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.31",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade30": {
+ "name": "blade30",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.32",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade31": {
+ "name": "blade31",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.33",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade32": {
+ "name": "blade32",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.34",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade33": {
+ "name": "blade33",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.35",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade34": {
+ "name": "blade34",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.36",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade35": {
+ "name": "blade35",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.37",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade36": {
+ "name": "blade36",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.38",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade37": {
+ "name": "blade37",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.39",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade38": {
+ "name": "blade38",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.40",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade39": {
+ "name": "blade39",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.41",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade40": {
+ "name": "blade40",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.42",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade41": {
+ "name": "blade41",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.43",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade42": {
+ "name": "blade42",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.44",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade43": {
+ "name": "blade43",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.45",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade44": {
+ "name": "blade44",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.46",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade45": {
+ "name": "blade45",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.47",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade46": {
+ "name": "blade46",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.48",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade47": {
+ "name": "blade47",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.49",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "blade48": {
+ "name": "blade48",
+ "oid": "1.3.6.1.4.1.2620.1.48.29.1.50",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSX": {
+ "name": "asgVSX",
+ "oid": "1.3.6.1.4.1.2620.1.48.30",
+ "class": "objectidentity"
+ },
+ "asgVslsInfo": {
+ "name": "asgVslsInfo",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20",
+ "class": "objectidentity"
+ },
+ "asgVslsSgmRatio": {
+ "name": "asgVslsSgmRatio",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVslsSystemPrimaryChassis": {
+ "name": "asgVslsSystemPrimaryChassis",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVslsStateTable": {
+ "name": "asgVslsStateTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.10",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgVslsStateEntry": {
+ "name": "asgVslsStateEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.10.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVslsVsid",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgVslsVsid": {
+ "name": "asgVslsVsid",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.10.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgVslsVsName": {
+ "name": "asgVslsVsName",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.10.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVslsVsPrimaryChassis": {
+ "name": "asgVslsVsPrimaryChassis",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.10.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVslsVsActiveChassis": {
+ "name": "asgVslsVsActiveChassis",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.10.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVslsVsHealth": {
+ "name": "asgVslsVsHealth",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.10.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVslsVsReason": {
+ "name": "asgVslsVsReason",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.10.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type",
+ "constraints": {
+ "size": [
+ {
+ "min": 0,
+ "max": 255
+ }
+ ]
+ }
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVslsVsChassis1InterfacesUp": {
+ "name": "asgVslsVsChassis1InterfacesUp",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.10.1.7",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVslsVsChassis1InterfacesTotal": {
+ "name": "asgVslsVsChassis1InterfacesTotal",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.10.1.8",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVslsVsChassis1FwksUp": {
+ "name": "asgVslsVsChassis1FwksUp",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.10.1.9",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVslsVsChassis1FwksTotal": {
+ "name": "asgVslsVsChassis1FwksTotal",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.10.1.10",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVslsVsChassis2InterfacesUp": {
+ "name": "asgVslsVsChassis2InterfacesUp",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.10.1.21",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVslsVsChassis2InterfacesTotal": {
+ "name": "asgVslsVsChassis2InterfacesTotal",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.10.1.22",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVslsVsChassis2FwksUp": {
+ "name": "asgVslsVsChassis2FwksUp",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.10.1.23",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVslsVsChassis2FwksTotal": {
+ "name": "asgVslsVsChassis2FwksTotal",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.10.1.24",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVslsVsChassis3InterfacesUp": {
+ "name": "asgVslsVsChassis3InterfacesUp",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.10.1.31",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVslsVsChassis3InterfacesTotal": {
+ "name": "asgVslsVsChassis3InterfacesTotal",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.10.1.32",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVslsVsChassis3FwksUp": {
+ "name": "asgVslsVsChassis3FwksUp",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.10.1.33",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVslsVsChassis3FwksTotal": {
+ "name": "asgVslsVsChassis3FwksTotal",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.10.1.34",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVslsVsChassis4InterfacesUp": {
+ "name": "asgVslsVsChassis4InterfacesUp",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.10.1.41",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVslsVsChassis4InterfacesTotal": {
+ "name": "asgVslsVsChassis4InterfacesTotal",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.10.1.42",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVslsVsChassis4FwksUp": {
+ "name": "asgVslsVsChassis4FwksUp",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.10.1.43",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVslsVsChassis4FwksTotal": {
+ "name": "asgVslsVsChassis4FwksTotal",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.20.10.1.44",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXConnInfo": {
+ "name": "asgVSXConnInfo",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.30",
+ "class": "objectidentity"
+ },
+ "asgVSXConnInfoTable": {
+ "name": "asgVSXConnInfoTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.30.10",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgVSXConnInfoEntry": {
+ "name": "asgVSXConnInfoEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.30.10.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXConnInfoIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgVSXConnInfoIndex": {
+ "name": "asgVSXConnInfoIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.30.10.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgVSXConnBladeID": {
+ "name": "asgVSXConnBladeID",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.30.10.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXIPver": {
+ "name": "asgVSXIPver",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.30.10.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXConcurrentConns": {
+ "name": "asgVSXConcurrentConns",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.30.10.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXPeakConns": {
+ "name": "asgVSXPeakConns",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.30.10.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXConnLimit": {
+ "name": "asgVSXConnLimit",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.30.10.1.6",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXConnectionsNumberPerSystem": {
+ "name": "asgVSXConnectionsNumberPerSystem",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.30.20",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXMemInfo": {
+ "name": "asgVSXMemInfo",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.40",
+ "class": "objectidentity"
+ },
+ "asgVSXMemInfoTable": {
+ "name": "asgVSXMemInfoTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.40.10",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgVSXMemInfoEntry": {
+ "name": "asgVSXMemInfoEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.40.10.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXMemInfoIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgVSXMemInfoIndex": {
+ "name": "asgVSXMemInfoIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.40.10.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgVSXMemBladeid": {
+ "name": "asgVSXMemBladeid",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.40.10.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXOverallMem": {
+ "name": "asgVSXOverallMem",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.40.10.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXCoreUtilInfo": {
+ "name": "asgVSXCoreUtilInfo",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.50",
+ "class": "objectidentity"
+ },
+ "asgVSXCoreUtilTable": {
+ "name": "asgVSXCoreUtilTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.50.10",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgVSXCoreUtilEntry": {
+ "name": "asgVSXCoreUtilEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.50.10.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXCoreUtilIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgVSXCoreUtilIndex": {
+ "name": "asgVSXCoreUtilIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.50.10.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgVSXCoreUtilBladeid": {
+ "name": "asgVSXCoreUtilBladeid",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.50.10.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXCoreUtilCPUID": {
+ "name": "asgVSXCoreUtilCPUID",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.50.10.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXCoreUtilUsage": {
+ "name": "asgVSXCoreUtilUsage",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.50.10.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXPacketRateInfo": {
+ "name": "asgVSXPacketRateInfo",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.80",
+ "class": "objectidentity"
+ },
+ "asgVSXPacketRateTable": {
+ "name": "asgVSXPacketRateTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.80.10",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgVSXPacketRateEntry": {
+ "name": "asgVSXPacketRateEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.80.10.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXPacketRateIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgVSXPacketRateIndex": {
+ "name": "asgVSXPacketRateIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.80.10.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgVSXRateBladeid": {
+ "name": "asgVSXRateBladeid",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.80.10.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXRateValue": {
+ "name": "asgVSXRateValue",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.80.10.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXPacketRatePerSystem": {
+ "name": "asgVSXPacketRatePerSystem",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.80.20",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXThroughputInfo": {
+ "name": "asgVSXThroughputInfo",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.90",
+ "class": "objectidentity"
+ },
+ "asgVSXThroughputTable": {
+ "name": "asgVSXThroughputTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.90.10",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgVSXThroughputEntry": {
+ "name": "asgVSXThroughputEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.90.10.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXThroughputIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgVSXThroughputIndex": {
+ "name": "asgVSXThroughputIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.90.10.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgVSXThroughputBladeid": {
+ "name": "asgVSXThroughputBladeid",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.90.10.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXThroughputValue": {
+ "name": "asgVSXThroughputValue",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.90.10.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXThroughputPerSystem": {
+ "name": "asgVSXThroughputPerSystem",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.90.20",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXThroughputPerInterfaceInfo": {
+ "name": "asgVSXThroughputPerInterfaceInfo",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.100",
+ "class": "objectidentity"
+ },
+ "asgVSXThroughputPerInterfaceTable": {
+ "name": "asgVSXThroughputPerInterfaceTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.100.10",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgVSXThroughputPerInterfaceEntry": {
+ "name": "asgVSXThroughputPerInterfaceEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.100.10.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXThroughputPerInterfaceIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgVSXThroughputPerInterfaceIndex": {
+ "name": "asgVSXThroughputPerInterfaceIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.100.10.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgVSXThroughputPerInterfaceBladeid": {
+ "name": "asgVSXThroughputPerInterfaceBladeid",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.100.10.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXThroughputPerInterfaceName": {
+ "name": "asgVSXThroughputPerInterfaceName",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.100.10.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXThroughputPerInterfaceValue": {
+ "name": "asgVSXThroughputPerInterfaceValue",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.100.10.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXPerSystemThroughputPerInterfaceTable": {
+ "name": "asgVSXPerSystemThroughputPerInterfaceTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.100.20",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgVSXPerSystemThroughputPerInterfaceTableEntry": {
+ "name": "asgVSXPerSystemThroughputPerInterfaceTableEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.100.20.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXPerSystemThroughputIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgVSXPerSystemThroughputIndex": {
+ "name": "asgVSXPerSystemThroughputIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.100.20.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgVSXPerSystemThroughputPerInterfaceName": {
+ "name": "asgVSXPerSystemThroughputPerInterfaceName",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.100.20.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXPerSystemThroughputPerInterfaceValue": {
+ "name": "asgVSXPerSystemThroughputPerInterfaceValue",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.100.20.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXConnectionRateInfo": {
+ "name": "asgVSXConnectionRateInfo",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.120",
+ "class": "objectidentity"
+ },
+ "asgVSXConnectionRateTable": {
+ "name": "asgVSXConnectionRateTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.120.10",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgVSXConnectionRateEntry": {
+ "name": "asgVSXConnectionRateEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.120.10.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXConnectionRateIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgVSXConnectionRateIndex": {
+ "name": "asgVSXConnectionRateIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.120.10.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgVSXConnectionRateBladeid": {
+ "name": "asgVSXConnectionRateBladeid",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.120.10.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXConnectionRateValue": {
+ "name": "asgVSXConnectionRateValue",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.120.10.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXConnectionRatePerSystem": {
+ "name": "asgVSXConnectionRatePerSystem",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.120.20",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Counter64",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXVirtualMemoryInfo": {
+ "name": "asgVSXVirtualMemoryInfo",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.130",
+ "class": "objectidentity"
+ },
+ "asgVSXVirtualMemoryTable": {
+ "name": "asgVSXVirtualMemoryTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.130.10",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgVSXVirtualMemoryEntry": {
+ "name": "asgVSXVirtualMemoryEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.130.10.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgVSXVirtualMemoryIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgVSXVirtualMemoryIndex": {
+ "name": "asgVSXVirtualMemoryIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.130.10.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgVSXVirtualMemoryBladeid": {
+ "name": "asgVSXVirtualMemoryBladeid",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.130.10.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgVSXVirtualMemoryValue": {
+ "name": "asgVSXVirtualMemoryValue",
+ "oid": "1.3.6.1.4.1.2620.1.48.30.130.10.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgDiagnostic": {
+ "name": "asgDiagnostic",
+ "oid": "1.3.6.1.4.1.2620.1.48.31",
+ "class": "objectidentity"
+ },
+ "asgDiagnosticTable": {
+ "name": "asgDiagnosticTable",
+ "oid": "1.3.6.1.4.1.2620.1.48.31.1",
+ "nodetype": "table",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgDiagnosticEntry": {
+ "name": "asgDiagnosticEntry",
+ "oid": "1.3.6.1.4.1.2620.1.48.31.1.1",
+ "nodetype": "row",
+ "class": "objecttype",
+ "maxaccess": "not-accessible",
+ "indices": [
+ {
+ "module": "CHECKPOINT-MIB",
+ "object": "asgDiagnosticIndex",
+ "implied": 0
+ }
+ ],
+ "status": "current"
+ },
+ "asgDiagnosticIndex": {
+ "name": "asgDiagnosticIndex",
+ "oid": "1.3.6.1.4.1.2620.1.48.31.1.1.1",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Unsigned32",
+ "class": "type"
+ },
+ "maxaccess": "not-accessible",
+ "status": "current"
+ },
+ "asgDiagnosticTestName": {
+ "name": "asgDiagnosticTestName",
+ "oid": "1.3.6.1.4.1.2620.1.48.31.1.1.2",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgDiagnosticLastRun": {
+ "name": "asgDiagnosticLastRun",
+ "oid": "1.3.6.1.4.1.2620.1.48.31.1.1.3",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgDiagnosticResult": {
+ "name": "asgDiagnosticResult",
+ "oid": "1.3.6.1.4.1.2620.1.48.31.1.1.4",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgDiagnosticComment": {
+ "name": "asgDiagnosticComment",
+ "oid": "1.3.6.1.4.1.2620.1.48.31.1.1.5",
+ "nodetype": "column",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "asgDiagSummary": {
+ "name": "asgDiagSummary",
+ "oid": "1.3.6.1.4.1.2620.1.48.31.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "teSubscriptionStatus": {
+ "name": "teSubscriptionStatus",
+ "oid": "1.3.6.1.4.1.2620.1.49.25",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "teCloudSubscriptionStatus": {
+ "name": "teCloudSubscriptionStatus",
+ "oid": "1.3.6.1.4.1.2620.1.49.26",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "teSubscriptionExpDate": {
+ "name": "teSubscriptionExpDate",
+ "oid": "1.3.6.1.4.1.2620.1.49.20",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "teSubscriptionDesc": {
+ "name": "teSubscriptionDesc",
+ "oid": "1.3.6.1.4.1.2620.1.49.27",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "teUpdateStatus": {
+ "name": "teUpdateStatus",
+ "oid": "1.3.6.1.4.1.2620.1.49.16",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "teUpdateDesc": {
+ "name": "teUpdateDesc",
+ "oid": "1.3.6.1.4.1.2620.1.49.17",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "teStatusCode": {
+ "name": "teStatusCode",
+ "oid": "1.3.6.1.4.1.2620.1.49.101",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "teStatusShortDesc": {
+ "name": "teStatusShortDesc",
+ "oid": "1.3.6.1.4.1.2620.1.49.102",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "teStatusLongDesc": {
+ "name": "teStatusLongDesc",
+ "oid": "1.3.6.1.4.1.2620.1.49.103",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "threatExtractionSubscription": {
+ "name": "threatExtractionSubscription",
+ "oid": "1.3.6.1.4.1.2620.1.50.1",
+ "class": "objectidentity"
+ },
+ "threatExtractionSubscriptionStatus": {
+ "name": "threatExtractionSubscriptionStatus",
+ "oid": "1.3.6.1.4.1.2620.1.50.1.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "threatExtractionSubscriptionExpDate": {
+ "name": "threatExtractionSubscriptionExpDate",
+ "oid": "1.3.6.1.4.1.2620.1.50.1.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "threatExtractionSubscriptionDesc": {
+ "name": "threatExtractionSubscriptionDesc",
+ "oid": "1.3.6.1.4.1.2620.1.50.1.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "threatExtractionStatistics": {
+ "name": "threatExtractionStatistics",
+ "oid": "1.3.6.1.4.1.2620.1.50.2",
+ "class": "objectidentity"
+ },
+ "threatExtractionTotalScannedAttachments": {
+ "name": "threatExtractionTotalScannedAttachments",
+ "oid": "1.3.6.1.4.1.2620.1.50.2.1",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "threatExtractionCleanedAttachments": {
+ "name": "threatExtractionCleanedAttachments",
+ "oid": "1.3.6.1.4.1.2620.1.50.2.2",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "threatExtractionOriginalAttachmentsAccesses": {
+ "name": "threatExtractionOriginalAttachmentsAccesses",
+ "oid": "1.3.6.1.4.1.2620.1.50.2.3",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "threatExtractionStatusCode": {
+ "name": "threatExtractionStatusCode",
+ "oid": "1.3.6.1.4.1.2620.1.50.101",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "Integer32",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "threatExtractionStatusShortDesc": {
+ "name": "threatExtractionStatusShortDesc",
+ "oid": "1.3.6.1.4.1.2620.1.50.102",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "threatExtractionStatusLongDesc": {
+ "name": "threatExtractionStatusLongDesc",
+ "oid": "1.3.6.1.4.1.2620.1.50.103",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "threatExtractionEngineVersion": {
+ "name": "threatExtractionEngineVersion",
+ "oid": "1.3.6.1.4.1.2620.1.50.104",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "zphStatusCode": {
+ "name": "zphStatusCode",
+ "oid": "1.3.6.1.4.1.2620.1.60.101",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "zphStatusShortDesc": {
+ "name": "zphStatusShortDesc",
+ "oid": "1.3.6.1.4.1.2620.1.60.102",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "zphStatusLongDesc": {
+ "name": "zphStatusLongDesc",
+ "oid": "1.3.6.1.4.1.2620.1.60.103",
+ "nodetype": "scalar",
+ "class": "objecttype",
+ "syntax": {
+ "type": "DisplayString",
+ "class": "type"
+ },
+ "maxaccess": "read-only",
+ "status": "current"
+ },
+ "meta": {
+ "comments": [
+ "ASN.1 source file:////Users/Alex/Downloads/pan-11-0-snmp-mib-modules/chkpnt.mib",
+ "Produced by pysmi-0.3.4 at Tue Nov 7 14:16:43 2023",
+ "On host MB-932154 platform Darwin version 22.6.0 by user Alex",
+ "Using Python version 3.9.16 (main, Dec 7 2022, 10:15:43) "
+ ],
+ "module": "CHECKPOINT-MIB"
+ }
+}
\ No newline at end of file
diff --git a/cloudshell/checkpoint/gaia/autoload/__init__.py b/cloudshell/checkpoint/cli/__init__.py
similarity index 100%
rename from cloudshell/checkpoint/gaia/autoload/__init__.py
rename to cloudshell/checkpoint/cli/__init__.py
diff --git a/cloudshell/checkpoint/cli/checkpoint_cli_configurator.py b/cloudshell/checkpoint/cli/checkpoint_cli_configurator.py
new file mode 100644
index 0000000..5a3c457
--- /dev/null
+++ b/cloudshell/checkpoint/cli/checkpoint_cli_configurator.py
@@ -0,0 +1,79 @@
+from __future__ import annotations
+
+import logging
+from collections.abc import Collection
+from typing import TYPE_CHECKING, ClassVar
+
+from attrs import define, field
+from typing_extensions import Self
+
+from cloudshell.cli.configurator import AbstractModeConfigurator
+from cloudshell.cli.factory.session_factory import (
+ CloudInfoAccessKeySessionFactory,
+ ConsoleSessionFactory,
+ GenericSessionFactory,
+ SessionFactory,
+)
+from cloudshell.cli.service.command_mode_helper import CommandModeHelper
+from cloudshell.cli.session.console_ssh import ConsoleSSHSession
+from cloudshell.cli.session.console_telnet import ConsoleTelnetSession
+from cloudshell.cli.session.ssh_session import SSHSession
+from cloudshell.cli.session.telnet_session import TelnetSession
+
+from cloudshell.checkpoint.cli.checkpoint_command_modes import (
+ EnableCommandMode,
+ ExpertCommandMode,
+ MaintenanceCommandMode,
+)
+
+if TYPE_CHECKING:
+ from cloudshell.cli.service.cli import CLI
+ from cloudshell.cli.types import T_COMMAND_MODE_RELATIONS, CliConfigProtocol
+
+
+@define
+class CheckpointCliConfigurator(AbstractModeConfigurator):
+ REGISTERED_SESSIONS: ClassVar[tuple[SessionFactory]] = (
+ CloudInfoAccessKeySessionFactory(SSHSession),
+ GenericSessionFactory(TelnetSession),
+ ConsoleSessionFactory(ConsoleSSHSession),
+ ConsoleSessionFactory(
+ ConsoleTelnetSession, session_kwargs={"start_with_new_line": False}
+ ),
+ ConsoleSessionFactory(
+ ConsoleTelnetSession, session_kwargs={"start_with_new_line": True}
+ ),
+ )
+ modes: T_COMMAND_MODE_RELATIONS = field(init=False)
+
+ def __attrs_post_init__(self):
+ super().__attrs_post_init__()
+ self.modes = CommandModeHelper.create_command_mode(self._auth)
+
+ @classmethod
+ def from_config(
+ cls,
+ conf: CliConfigProtocol,
+ logger: logging.Logger | None = None,
+ cli: CLI | None = None,
+ registered_sessions: Collection[SessionFactory] | None = None,
+ ) -> Self:
+ if not logger:
+ logger = logging.getLogger(__name__)
+ return super().from_config(conf, logger, cli, registered_sessions)
+
+ @property
+ def default_mode(self):
+ return self.modes[MaintenanceCommandMode]
+
+ @property
+ def enable_mode(self):
+ return self.modes[EnableCommandMode]
+
+ @property
+ def config_mode(self):
+ return self.modes[ExpertCommandMode]
+
+ def _on_session_start(self, session, logger):
+ """Send default commands to configure/clear session outputs."""
+ session.send_line("set clienv rows 0", logger)
diff --git a/cloudshell/checkpoint/cli/checkpoint_command_modes.py b/cloudshell/checkpoint/cli/checkpoint_command_modes.py
new file mode 100644
index 0000000..9d04463
--- /dev/null
+++ b/cloudshell/checkpoint/cli/checkpoint_command_modes.py
@@ -0,0 +1,123 @@
+from __future__ import annotations
+
+import random
+import re
+from typing import TYPE_CHECKING
+
+from passlib.hash import md5_crypt
+
+from cloudshell.cli.service.command_mode import CommandMode
+
+if TYPE_CHECKING:
+ from logging import Logger
+
+ from cloudshell.cli.service.auth_model import Auth
+ from cloudshell.cli.service.cli_service import CliService
+
+
+class MaintenanceCommandMode(CommandMode):
+ PROMPT: str = r"(?:(?!\)).)#\s*$" # TODO Verify prompt correctness
+ ENTER_COMMAND: str = ""
+ EXIT_COMMAND: str = ""
+
+ def __init__(self, auth: Auth):
+ """Initialize Maintenance Command Mode."""
+ self._auth = auth
+ CommandMode.__init__(
+ self,
+ MaintenanceCommandMode.PROMPT,
+ MaintenanceCommandMode.ENTER_COMMAND,
+ MaintenanceCommandMode.EXIT_COMMAND,
+ )
+
+
+class EnableCommandMode(CommandMode):
+ PROMPT: str = r">\s*$"
+ ENTER_COMMAND: str = "clish"
+ EXIT_COMMAND: str = ""
+
+ def __init__(self, auth: Auth):
+ """Initialize Enable Command Mode.
+
+ Enable Command Mode - default command mode for CheckPoint Shells.
+ """
+ self._auth = auth
+ CommandMode.__init__(
+ self,
+ EnableCommandMode.PROMPT,
+ EnableCommandMode.ENTER_COMMAND,
+ EnableCommandMode.EXIT_COMMAND,
+ )
+
+
+class ExpertCommandMode(CommandMode):
+ PROMPT: str = r"\[Expert.*#\s*$"
+ ENTER_COMMAND: str = "expert"
+ EXIT_COMMAND: str = "exit"
+
+ def __init__(self, auth: Auth):
+ """Initialize Expert Command Mode."""
+ self._auth = auth
+ CommandMode.__init__(
+ self,
+ ExpertCommandMode.PROMPT,
+ ExpertCommandMode.ENTER_COMMAND,
+ ExpertCommandMode.EXIT_COMMAND,
+ enter_error_map={r"[Ww]rong\spassword": "Wrong password."},
+ enter_action_map={
+ r"[Ww]rong\spassword": lambda s, l: self._exception(
+ "Incorrect Enable Password."
+ ),
+ "[Pp]assword": lambda session, logger: (
+ session.send_line(self._auth.enable_password, logger),
+ session.send_line("\n", logger),
+ ),
+ },
+ )
+
+ @staticmethod
+ def _exception(message: str) -> None:
+ raise Exception(message)
+
+ @staticmethod
+ def _expert_password_defined(cli_service: CliService, logger: Logger) -> bool:
+ """Check if expert password defined."""
+ logger.debug("Check if expert password defined.")
+ if not isinstance(cli_service.command_mode, EnableCommandMode):
+ raise Exception(
+ "Cannot verify expert password, command mode is not correct"
+ )
+ else:
+ result = cli_service.send_command("show configuration expert-password")
+ return (
+ re.match(r"^set\sexpert-password-hash\s.+$", result, re.MULTILINE)
+ is not None
+ )
+
+ def _set_expert_password(self, cli_service: CliService, logger: Logger) -> None:
+ """Set expert password."""
+ # gen enable password hash
+ enable_password_hash = md5_crypt.hash(
+ self._auth.enable_password, salt_size=random.choice(range(5, 8))
+ )
+
+ error_map = {
+ "Configuration lock present": "Configuration lock present.",
+ "Failed to maintain the lock": "Failed to maintain the lock.",
+ "Wrong password": "Wrong password.",
+ }
+ cli_service.send_command(
+ command=f"set expert-password-hash {enable_password_hash}",
+ logger=logger,
+ error_map=error_map,
+ )
+
+ def step_up(self, cli_service: CliService, logger: Logger) -> None:
+ if not self._expert_password_defined(cli_service, logger):
+ self._set_expert_password(cli_service, logger)
+ super().step_up(cli_service, logger)
+
+
+CommandMode.RELATIONS_DICT = {
+ MaintenanceCommandMode: {EnableCommandMode: {ExpertCommandMode: {}}}
+}
diff --git a/cloudshell/checkpoint/gaia/cli/__init__.py b/cloudshell/checkpoint/command_actions/__init__.py
similarity index 100%
rename from cloudshell/checkpoint/gaia/cli/__init__.py
rename to cloudshell/checkpoint/command_actions/__init__.py
diff --git a/cloudshell/checkpoint/command_actions/enable_disable_snmp_actions.py b/cloudshell/checkpoint/command_actions/enable_disable_snmp_actions.py
new file mode 100644
index 0000000..5af0ba4
--- /dev/null
+++ b/cloudshell/checkpoint/command_actions/enable_disable_snmp_actions.py
@@ -0,0 +1,158 @@
+from __future__ import annotations
+
+from typing import TYPE_CHECKING, ClassVar
+
+from attrs import define
+
+from cloudshell.cli.command_template.command_template_executor import (
+ CommandTemplateExecutor,
+)
+from cloudshell.snmp.snmp_parameters import SNMPV3Parameters
+
+from cloudshell.checkpoint.command_templates import snmp_configuration_templates
+
+if TYPE_CHECKING:
+ from cloudshell.cli.service.cli_service import CliService
+
+
+@define
+class BaseSnmpActions:
+ _cli_service: CliService
+ SNMP_AGENT_VERSION: ClassVar[str] = "any"
+
+ def enable_snmp_agent(self, action_map: dict = None, error_map: dict = None) -> str:
+ """Enable snmp."""
+ return CommandTemplateExecutor(
+ cli_service=self._cli_service,
+ command_template=snmp_configuration_templates.ENABLE_SNMP_AGENT,
+ action_map=action_map,
+ error_map=error_map,
+ ).execute_command()
+
+ def disable_snmp_agent(
+ self, action_map: dict = None, error_map: dict = None
+ ) -> str:
+ """Disable snmp."""
+ return CommandTemplateExecutor(
+ cli_service=self._cli_service,
+ command_template=snmp_configuration_templates.DISABLE_SNMP_AGENT,
+ action_map=action_map,
+ error_map=error_map,
+ ).execute_command()
+
+ def set_snmp_version(self, action_map: dict = None, error_map: dict = None) -> str:
+ """Set SNMP version."""
+ return CommandTemplateExecutor(
+ cli_service=self._cli_service,
+ command_template=snmp_configuration_templates.SET_SNMP_VERSION,
+ action_map=action_map,
+ error_map=error_map,
+ ).execute_command(snmp_version=self.SNMP_AGENT_VERSION)
+
+
+class EnableDisableSnmpV2Actions(BaseSnmpActions):
+ def set_snmp_read_community(self, snmp_community, action_map=None, error_map=None):
+ """Set read community."""
+ return CommandTemplateExecutor(
+ cli_service=self._cli_service,
+ command_template=snmp_configuration_templates.SET_RO_SNMP_COMMUNITY,
+ action_map=action_map,
+ error_map=error_map,
+ ).execute_command(name=snmp_community)
+
+ def set_snmp_write_community(self, snmp_community, action_map=None, error_map=None):
+ """Set write community."""
+ return CommandTemplateExecutor(
+ cli_service=self._cli_service,
+ command_template=snmp_configuration_templates.SET_RW_SNMP_COMMUNITY,
+ action_map=action_map,
+ error_map=error_map,
+ ).execute_command(name=snmp_community)
+
+ def delete_snmp_community(self, snmp_community, action_map=None, error_map=None):
+ """Delete snmp community."""
+ return CommandTemplateExecutor(
+ cli_service=self._cli_service,
+ command_template=snmp_configuration_templates.DELETE_SNMP_COMMUNITY,
+ action_map=action_map,
+ error_map=error_map,
+ ).execute_command(name=snmp_community)
+
+
+class EnableDisableSnmpV3Actions(BaseSnmpActions):
+ SNMP_AGENT_VERSION: ClassVar[str] = "v3-Only"
+
+ AUTH_PROTOCOL_MAP = {
+ SNMPV3Parameters.AUTH_MD5: "MD5",
+ SNMPV3Parameters.AUTH_SHA: "SHA1",
+ }
+
+ PRIV_PROTOCOL_MAP = {
+ SNMPV3Parameters.PRIV_NO_PRIV: "",
+ SNMPV3Parameters.PRIV_DES: "DES",
+ SNMPV3Parameters.PRIV_AES128: "AES",
+ }
+
+ def add_snmp_user(
+ self,
+ snmp_params: SNMPV3Parameters,
+ action_map: dict = None,
+ error_map: dict = None,
+ ) -> str:
+ """Add snmp user."""
+ try:
+ auth_protocol = self.AUTH_PROTOCOL_MAP[snmp_params.snmp_auth_protocol]
+ except KeyError:
+ raise Exception(
+ f"Authentication protocol "
+ f"{snmp_params.snmp_auth_protocol} is not supported."
+ )
+
+ try:
+ priv_encrypt_protocol = self.PRIV_PROTOCOL_MAP[
+ snmp_params.snmp_private_key_protocol
+ ]
+ except KeyError:
+ raise Exception(
+ f"Privacy Protocol "
+ f"{snmp_params.snmp_private_key_protocol} is not supported."
+ )
+
+ if not priv_encrypt_protocol:
+ return CommandTemplateExecutor(
+ cli_service=self._cli_service,
+ command_template=snmp_configuration_templates.SET_V3_SNMP_USER_NO_PRIV,
+ action_map=action_map,
+ error_map=error_map,
+ ).execute_command(
+ user=snmp_params.snmp_user,
+ password=snmp_params.snmp_password,
+ auth_protocol=auth_protocol,
+ )
+
+ return CommandTemplateExecutor(
+ cli_service=self._cli_service,
+ command_template=snmp_configuration_templates.SET_V3_SNMP_USER_PRIV,
+ action_map=action_map,
+ error_map=error_map,
+ ).execute_command(
+ user=snmp_params.snmp_user,
+ password=snmp_params.snmp_password,
+ auth_protocol=auth_protocol,
+ private_key=snmp_params.snmp_private_key,
+ priv_encrypt_protocol=priv_encrypt_protocol,
+ )
+
+ def delete_snmp_user(
+ self,
+ snmp_user: str,
+ action_map: dict = None,
+ error_map: dict = None,
+ ) -> str:
+ """Delete snmp user."""
+ return CommandTemplateExecutor(
+ cli_service=self._cli_service,
+ command_template=snmp_configuration_templates.DELETE_V3_SNMP_USER,
+ action_map=action_map,
+ error_map=error_map,
+ ).execute_command(user=snmp_user)
diff --git a/cloudshell/checkpoint/command_actions/save_restore_actions.py b/cloudshell/checkpoint/command_actions/save_restore_actions.py
new file mode 100644
index 0000000..85bd9ca
--- /dev/null
+++ b/cloudshell/checkpoint/command_actions/save_restore_actions.py
@@ -0,0 +1,64 @@
+from __future__ import annotations
+
+from typing import TYPE_CHECKING
+
+from attrs import define
+
+from cloudshell.cli.command_template.command_template_executor import (
+ CommandTemplateExecutor,
+)
+
+from cloudshell.checkpoint.command_templates import save_restore_templates
+
+if TYPE_CHECKING:
+ from cloudshell.cli.service.cli_service import CliService
+
+
+@define
+class SaveRestoreActions:
+ _cli_service: CliService
+
+ def save_local(
+ self, filename: str, action_map: dict = None, error_map: dict = None
+ ) -> str:
+ """Save configuration to local file."""
+ return CommandTemplateExecutor(
+ cli_service=self._cli_service,
+ command_template=save_restore_templates.SAVE_CONFIGURATION,
+ action_map=action_map,
+ error_map=error_map,
+ timeout=300,
+ ).execute_command(filename=filename)
+
+ def remove_local_file(self, filepath: str) -> str:
+ """Remove local file."""
+ return CommandTemplateExecutor(
+ cli_service=self._cli_service,
+ command_template=save_restore_templates.REMOVE,
+ ).execute_command(filename=filepath)
+
+ def restore(self, filepath: str) -> str:
+ """Restore configuration from local file."""
+ out = ""
+ out += CommandTemplateExecutor(
+ cli_service=self._cli_service,
+ command_template=save_restore_templates.ON_FAILURE_CONTINUE,
+ ).execute_command()
+
+ out += CommandTemplateExecutor(
+ cli_service=self._cli_service,
+ command_template=save_restore_templates.LOAD_CONFIGURATION,
+ timeout=300,
+ ).execute_command(filename=filepath)
+
+ out += CommandTemplateExecutor(
+ cli_service=self._cli_service,
+ command_template=save_restore_templates.ON_FAILURE_STOP,
+ ).execute_command()
+
+ out += CommandTemplateExecutor(
+ cli_service=self._cli_service,
+ command_template=save_restore_templates.SAVE_CONFIG,
+ ).execute_command()
+
+ return out
diff --git a/cloudshell/checkpoint/command_actions/system_actions.py b/cloudshell/checkpoint/command_actions/system_actions.py
new file mode 100644
index 0000000..08387fa
--- /dev/null
+++ b/cloudshell/checkpoint/command_actions/system_actions.py
@@ -0,0 +1,155 @@
+from __future__ import annotations
+
+import logging
+from typing import TYPE_CHECKING
+
+from attrs import define
+
+from cloudshell.cli.command_template.command_template_executor import (
+ CommandTemplateExecutor,
+)
+from cloudshell.cli.service.command_mode import CommandMode
+
+from cloudshell.checkpoint.command_templates import system_templates
+from cloudshell.checkpoint.helpers.errors import (
+ NotSupportedCheckpointError,
+ ShutdownOkCheckpointError,
+)
+
+if TYPE_CHECKING:
+ from cloudshell.cli.service.cli_service import CliService
+ from cloudshell.shell.flows.utils.url import RemoteURL
+
+logger = logging.getLogger(__name__)
+
+
+@define
+class SystemActions:
+ _cli_service: CliService
+
+ def shutdown(self):
+ """Shutdown the system."""
+ try:
+ return CommandTemplateExecutor(
+ self._cli_service, system_templates.SHUTDOWN
+ ).execute_command()
+ except ShutdownOkCheckpointError:
+ return "Shutdown process is running"
+
+ def _get_transfer_obj(self, protocol: str):
+ """Determine transfer protocol."""
+ protocol_mapping = {
+ "scp": ScpFileTransfer,
+ "ftp": FtpFileTransfer,
+ }
+ try:
+ transfer_class = protocol_mapping[protocol]
+ except KeyError:
+ raise NotSupportedCheckpointError(f"Protocol {protocol} is not supported.")
+
+ return transfer_class(self._cli_service)
+
+ def upload(self, remote_url: RemoteURL):
+ """Upload file to remote storage."""
+ transfer_obj = self._get_transfer_obj(remote_url.scheme)
+ return transfer_obj.upload(remote_url)
+
+ def download(self, remote_url: RemoteURL):
+ """Download file from remote storage."""
+ transfer_obj = self._get_transfer_obj(remote_url.scheme)
+ return transfer_obj.download(remote_url)
+
+
+@define
+class ScpFileTransfer:
+ _cli_service: CliService
+
+ def upload(self, remote_url: RemoteURL):
+ """Upload file to remote SCP server."""
+ return CommandTemplateExecutor(
+ cli_service=self._cli_service,
+ command_template=system_templates.SCP_COPY,
+ action_map=self._action_map(remote_url=remote_url),
+ ).execute_command(
+ scp_port=remote_url.port or "22",
+ src_location=remote_url.filename,
+ dst_location=self._get_scp_endpoint(remote_url=remote_url),
+ )
+
+ def download(self, remote_url: RemoteURL):
+ """Download file from remote SCP server."""
+ return CommandTemplateExecutor(
+ cli_service=self._cli_service,
+ command_template=system_templates.SCP_COPY,
+ action_map=self._action_map(remote_url=remote_url),
+ ).execute_command(
+ scp_port=remote_url.port or "22",
+ src_location=self._get_scp_endpoint(remote_url=remote_url),
+ dst_location=remote_url.filename,
+ )
+
+ @staticmethod
+ def _action_map(remote_url: RemoteURL) -> dict:
+ return {
+ r"[Pp]assword:": lambda s, l: s.send_line(remote_url.password, l),
+ r"\(yes\/no\)\?": lambda s, l: s.send_line("yes", l),
+ }
+
+ @staticmethod
+ def _get_scp_endpoint(remote_url: RemoteURL) -> str:
+ return f"{remote_url.username}@{remote_url.host}:{remote_url.path}"
+
+
+@define
+class FtpFileTransfer:
+ _cli_service: CliService
+
+ def upload(self, remote_url: RemoteURL):
+ """Upload file to remote FTP server."""
+ ftp_command_mode = self._get_ftp_command_mode(remote_url=remote_url)
+ try:
+ with self._cli_service.enter_mode(ftp_command_mode):
+ return CommandTemplateExecutor(
+ cli_service=self._cli_service,
+ command_template=system_templates.FTP_UPLOAD,
+ ).execute_command(
+ src_location=remote_url.filename,
+ dst_location=remote_url.path,
+ )
+ finally:
+ if self._cli_service.command_mode == ftp_command_mode:
+ ftp_command_mode.step_down(self._cli_service, logger)
+
+ def download(self, remote_url: RemoteURL):
+ """Download file from remote FTP server."""
+ ftp_command_mode = self._get_ftp_command_mode(remote_url=remote_url)
+ try:
+ with self._cli_service.enter_mode(ftp_command_mode):
+ return CommandTemplateExecutor(
+ cli_service=self._cli_service,
+ command_template=system_templates.FTP_DOWNLOAD,
+ ).execute_command(
+ src_location=remote_url.path,
+ dst_location=remote_url.filename,
+ )
+ finally:
+ if self._cli_service.command_mode == ftp_command_mode:
+ ftp_command_mode.step_down(self._cli_service, logger)
+
+ @staticmethod
+ def _get_ftp_command_mode(remote_url: RemoteURL) -> CommandMode:
+ return CommandMode(
+ r"ftp>",
+ enter_command=f"ftp {remote_url.host} {remote_url.port or '21'}",
+ exit_command="exit",
+ enter_action_map={
+ r"[Nn]ame|[Uu]sername|[Ll]ogin.*:": lambda s, l: s.send_line(
+ remote_url.username, l
+ ),
+ r"[Pp]assword.*:": lambda s, l: s.send_line(remote_url.password, l),
+ },
+ enter_error_map={
+ r"[Ll]ogin incorrect|failed": "Login or Password is not correct.",
+ r"[Cc]onnection timed out|[Nn]ot connected": "Cannot connect to ftp host.", # noqa E501
+ },
+ )
diff --git a/cloudshell/checkpoint/gaia/cli/sessions/__init__.py b/cloudshell/checkpoint/command_templates/__init__.py
similarity index 100%
rename from cloudshell/checkpoint/gaia/cli/sessions/__init__.py
rename to cloudshell/checkpoint/command_templates/__init__.py
diff --git a/cloudshell/checkpoint/command_templates/error_map.py b/cloudshell/checkpoint/command_templates/error_map.py
new file mode 100644
index 0000000..c19d42d
--- /dev/null
+++ b/cloudshell/checkpoint/command_templates/error_map.py
@@ -0,0 +1,16 @@
+from __future__ import annotations
+
+BASIC_ERRORS = {
+ "[Cc]onfiguration lock present": "Configuration lock present",
+ "Failed to maintain the lock": "Failed to maintain the lock.",
+ "Incomplete command": "Incomplete command.",
+ "No such file or directory": "No such file or directory",
+ "[Ii]nvalid command": "Invalid command",
+}
+
+PASSWORD_ERROR_MAP = {
+ "must be at least": "Authentication pass phrase must be at least 8 characters",
+ "not complex enough": "Password is not complex enough; "
+ "try mixing more different kinds of characters "
+ "(upper case, lower case, digits, and punctuation)",
+}
diff --git a/cloudshell/checkpoint/gaia/command_templates/save_restore_templates.py b/cloudshell/checkpoint/command_templates/save_restore_templates.py
similarity index 71%
rename from cloudshell/checkpoint/gaia/command_templates/save_restore_templates.py
rename to cloudshell/checkpoint/command_templates/save_restore_templates.py
index 69d339a..5955b62 100644
--- a/cloudshell/checkpoint/gaia/command_templates/save_restore_templates.py
+++ b/cloudshell/checkpoint/command_templates/save_restore_templates.py
@@ -1,19 +1,14 @@
-from collections import OrderedDict
+from __future__ import annotations
from cloudshell.cli.command_template.command_template import CommandTemplate
-from cloudshell.checkpoint.gaia.command_templates.snmp_configuration_templates import (
+from cloudshell.checkpoint.command_templates.snmp_configuration_templates import (
ERROR_MAP,
)
-LOCK_ACTION_MAP = OrderedDict(
- [
- (
- r"Configuration lock present",
- lambda s, l: s.send_line("lock database override", l),
- )
- ]
-)
+LOCK_ACTION_MAP = {
+ r"Configuration lock present": lambda s, l: s.send_line("lock database override", l)
+}
# Restore
ON_FAILURE_CONTINUE = CommandTemplate(
diff --git a/cloudshell/checkpoint/gaia/command_templates/snmp_configuration_templates.py b/cloudshell/checkpoint/command_templates/snmp_configuration_templates.py
similarity index 74%
rename from cloudshell/checkpoint/gaia/command_templates/snmp_configuration_templates.py
rename to cloudshell/checkpoint/command_templates/snmp_configuration_templates.py
index 94138df..331dd4b 100644
--- a/cloudshell/checkpoint/gaia/command_templates/snmp_configuration_templates.py
+++ b/cloudshell/checkpoint/command_templates/snmp_configuration_templates.py
@@ -1,22 +1,20 @@
-from collections import OrderedDict
-from itertools import chain
+from __future__ import annotations
from cloudshell.cli.command_template.command_template import CommandTemplate
-from cloudshell.checkpoint.gaia.command_templates.error_map import (
+from cloudshell.checkpoint.command_templates.error_map import (
BASIC_ERRORS,
PASSWORD_ERROR_MAP,
)
-SNMP_ERROR_MAP = OrderedDict(
- [
- (
- "does not accept community strings",
- "SNMP v3-Only does not accept community strings.",
- ),
- ]
-)
-ERROR_MAP = OrderedDict(chain(BASIC_ERRORS.items(), SNMP_ERROR_MAP.items()))
+SNMP_ERROR_MAP = {
+ "does not accept community strings": "SNMP v3-Only does not accept community strings." # noqa E501
+}
+
+ERROR_MAP = BASIC_ERRORS | SNMP_ERROR_MAP
+SNMP_PASSWORD_ERROR_MAP = BASIC_ERRORS | PASSWORD_ERROR_MAP
+
+
ENABLE_SNMP_AGENT = CommandTemplate("set snmp agent on", error_map=ERROR_MAP)
DISABLE_SNMP_AGENT = CommandTemplate("set snmp agent off", error_map=ERROR_MAP)
SET_SNMP_VERSION = CommandTemplate(
@@ -29,10 +27,6 @@
"set snmp community {name} read-write", error_map=ERROR_MAP
)
-SNMP_PASSWORD_ERROR_MAP = OrderedDict(
- chain(BASIC_ERRORS.items(), PASSWORD_ERROR_MAP.items())
-)
-
SET_V3_SNMP_USER_NO_PRIV = CommandTemplate(
"add snmp usm user {user} security-level authNoPriv auth-pass-phrase {password} "
"authentication-protocol {auth_protocol}",
diff --git a/cloudshell/checkpoint/command_templates/system_templates.py b/cloudshell/checkpoint/command_templates/system_templates.py
new file mode 100644
index 0000000..b09d981
--- /dev/null
+++ b/cloudshell/checkpoint/command_templates/system_templates.py
@@ -0,0 +1,34 @@
+from __future__ import annotations
+
+from cloudshell.cli.command_template.command_template import CommandTemplate
+
+from cloudshell.checkpoint.helpers.errors import ShutdownOkCheckpointError
+
+SCP_ERROR_MAP = {
+ "[Nn]o such file or directory": "No such file or directory.",
+ "[Nn]ame or service not known": "Name or service not known",
+ "[Nn]etwork is unreachable": "Network is unreachable",
+ "[Pp]ermission denied": "Permission denied",
+}
+
+FTP_ERROR_MAP = {r"Could not create file": "FTP: Could not create file."}
+
+
+SCP_COPY = CommandTemplate(
+ command="scp -P {scp_port} {src_location} {dst_location}", error_map=SCP_ERROR_MAP
+)
+FTP_UPLOAD = CommandTemplate(
+ command="put {src_location} {dst_location}", error_map=FTP_ERROR_MAP
+)
+FTP_DOWNLOAD = CommandTemplate(
+ command="get {src_location} {dst_location}", error_map=FTP_ERROR_MAP
+)
+
+SHUTDOWN = CommandTemplate(
+ command="shutdown -h now",
+ action_map={
+ r"system is going down": lambda: (_ for _ in ()).throw(
+ ShutdownOkCheckpointError()
+ )
+ },
+)
diff --git a/cloudshell/checkpoint/gaia/command_actions/__init__.py b/cloudshell/checkpoint/flows/__init__.py
similarity index 100%
rename from cloudshell/checkpoint/gaia/command_actions/__init__.py
rename to cloudshell/checkpoint/flows/__init__.py
diff --git a/cloudshell/checkpoint/flows/checkpoint_autoload_flow.py b/cloudshell/checkpoint/flows/checkpoint_autoload_flow.py
new file mode 100644
index 0000000..cce6647
--- /dev/null
+++ b/cloudshell/checkpoint/flows/checkpoint_autoload_flow.py
@@ -0,0 +1,29 @@
+from __future__ import annotations
+
+from typing import TYPE_CHECKING
+
+from cloudshell.shell.flows.autoload.basic_flow import AbstractAutoloadFlow
+
+from ..autoload.checkpoint_generic_snmp_autoload import CheckpointGenericSNMPAutoload
+
+if TYPE_CHECKING:
+ from cloudshell.shell.core.driver_context import AutoLoadDetails
+ from cloudshell.shell.standards.firewall.autoload_model import FirewallResourceModel
+ from cloudshell.snmp.snmp_configurator import EnableDisableSnmpConfigurator
+
+
+class CheckpointSnmpAutoloadFlow(AbstractAutoloadFlow):
+ """Autoload flow."""
+
+ def __init__(self, snmp_configurator: EnableDisableSnmpConfigurator):
+ super().__init__()
+ self._snmp_configurator = snmp_configurator
+
+ def _autoload_flow(
+ self, supported_os: list[str], resource_model: FirewallResourceModel
+ ) -> AutoLoadDetails:
+ """Autoload Flow."""
+ with self._snmp_configurator.get_service() as snmp_service:
+ snmp_autoload = CheckpointGenericSNMPAutoload(snmp_service, resource_model)
+ autoload_details = snmp_autoload.discover(supported_os)
+ return autoload_details
diff --git a/cloudshell/checkpoint/flows/checkpoint_configuration_flow.py b/cloudshell/checkpoint/flows/checkpoint_configuration_flow.py
new file mode 100644
index 0000000..1e8b6a4
--- /dev/null
+++ b/cloudshell/checkpoint/flows/checkpoint_configuration_flow.py
@@ -0,0 +1,112 @@
+from __future__ import annotations
+
+import logging
+from typing import TYPE_CHECKING
+
+from cloudshell.shell.flows.configuration.basic_flow import (
+ AbstractConfigurationFlow,
+ ConfigurationType,
+ RestoreMethod,
+)
+
+from cloudshell.checkpoint.command_actions.save_restore_actions import (
+ SaveRestoreActions,
+)
+from cloudshell.checkpoint.command_actions.system_actions import SystemActions
+
+if TYPE_CHECKING:
+ from typing import Union
+
+ from cloudshell.shell.flows.utils.url import BasicLocalUrl, RemoteURL
+ from cloudshell.shell.standards.firewall.resource_config import (
+ FirewallResourceConfig,
+ )
+
+ from ..cli.checkpoint_cli_configurator import CheckpointCliConfigurator
+
+ Url = Union[RemoteURL, BasicLocalUrl]
+
+
+logger = logging.getLogger(__name__)
+
+
+class CheckpointConfigurationFlow(AbstractConfigurationFlow):
+ def __init__(
+ self,
+ resource_config: FirewallResourceConfig,
+ cli_configurator: CheckpointCliConfigurator,
+ ):
+ super().__init__(resource_config)
+ self.cli_configurator = cli_configurator
+
+ @property
+ def file_system(self) -> str:
+ return "local"
+
+ def _save_flow(
+ self,
+ file_dst_url: Url,
+ configuration_type: ConfigurationType,
+ vrf_management_name: str | None,
+ ) -> None:
+ """Backup config.
+
+ Backup 'startup-config' or 'running-config' from
+ device to provided file_system [ftp|tftp].
+ Also possible to backup config to localhost
+ :param file_dst_url: destination url, remote or local, where file will be saved
+ :param configuration_type: type of configuration
+ that will be saved (StartUp or Running)
+ :param vrf_management_name: Virtual Routing and
+ Forwarding management name
+ """
+ with self.cli_configurator.enable_mode_service() as enable_cli_service:
+ save_restore_actions = SaveRestoreActions(enable_cli_service)
+ system_actions = SystemActions(enable_cli_service)
+
+ # save config to local fs
+ save_restore_actions.save_local(file_dst_url.filename)
+
+ if file_dst_url.scheme != self.file_system:
+ with enable_cli_service.enter_mode(self.cli_configurator.config_mode):
+ # Transfer config to remote
+ try:
+ system_actions.upload(file_dst_url)
+ finally:
+ # remove local file
+ save_restore_actions.remove_local_file(file_dst_url.filename)
+
+ def _restore_flow(
+ self,
+ config_path: Url,
+ configuration_type: ConfigurationType,
+ restore_method: RestoreMethod,
+ vrf_management_name: str | None,
+ ) -> None:
+ """Restore configuration on device from provided configuration file.
+
+ Restore configuration from local file system or ftp/tftp
+ server into 'running-config' or 'startup-config'.
+ :param config_path: relative path to the file on the
+ remote host tftp://server/sourcefile
+ :param configuration_type: the configuration
+ type to restore (StartUp or Running)
+ :param restore_method: override current config or not
+ :param vrf_management_name: Virtual Routing and
+ Forwarding management name
+ """
+ with self.cli_configurator.enable_mode_service() as enable_cli_service:
+ save_restore_actions = SaveRestoreActions(enable_cli_service)
+ system_actions = SystemActions(enable_cli_service)
+
+ if config_path.scheme != self.file_system:
+ with enable_cli_service.enter_mode(self.cli_configurator.config_mode):
+ system_actions.download(config_path)
+
+ # restore local
+ save_restore_actions.restore(config_path.filename)
+
+ # remove local file
+ if config_path.scheme != self.file_system:
+ with enable_cli_service.enter_mode(self.cli_configurator.config_mode):
+ save_restore_actions.remove_local_file(config_path.filename)
diff --git a/cloudshell/checkpoint/flows/checkpoint_enable_disable_snmp_flow.py b/cloudshell/checkpoint/flows/checkpoint_enable_disable_snmp_flow.py
new file mode 100644
index 0000000..70fae0b
--- /dev/null
+++ b/cloudshell/checkpoint/flows/checkpoint_enable_disable_snmp_flow.py
@@ -0,0 +1,103 @@
+from __future__ import annotations
+
+from typing import TYPE_CHECKING
+
+from attrs import define
+
+from cloudshell.snmp.snmp_configurator import EnableDisableSnmpFlowInterface
+
+from cloudshell.checkpoint.command_actions.enable_disable_snmp_actions import ( # noqa: E501
+ EnableDisableSnmpV2Actions,
+ EnableDisableSnmpV3Actions,
+)
+from cloudshell.checkpoint.helpers.errors import SnmpCheckpointError
+
+if TYPE_CHECKING:
+ from typing import Union
+
+ from cloudshell.cli.service.cli_service import CliService
+ from cloudshell.snmp.snmp_parameters import (
+ SNMPReadParameters,
+ SNMPV3Parameters,
+ SNMPWriteParameters,
+ )
+
+ from ..cli.checkpoint_cli_configurator import CheckpointCliConfigurator
+
+ SnmpParams = Union[SNMPReadParameters, SNMPWriteParameters, SNMPV3Parameters]
+
+
+@define
+class CheckpointEnableDisableSnmpFlow(EnableDisableSnmpFlowInterface):
+ _cli_configurator: CheckpointCliConfigurator
+
+ def enable_snmp(self, snmp_parameters: SnmpParams) -> None:
+ with self._cli_configurator.enable_mode_service() as cli_service:
+ if snmp_parameters.version == snmp_parameters.SnmpVersion.V3:
+ self._enable_snmp_v3(cli_service, snmp_parameters)
+ else:
+ self._enable_snmp_v2(cli_service, snmp_parameters)
+
+ def disable_snmp(self, snmp_parameters: SnmpParams) -> None:
+ with self._cli_configurator.enable_mode_service() as cli_service:
+ if snmp_parameters.version == snmp_parameters.SnmpVersion.V3:
+ self._disable_snmp_v3(cli_service, snmp_parameters)
+ else:
+ self._disable_snmp_v2(cli_service, snmp_parameters)
+
+ @staticmethod
+ def _enable_snmp_v2(cli_service: CliService, snmp_parameters: SnmpParams) -> str:
+ """Enable SNMPv2."""
+ snmp_community = snmp_parameters.snmp_community
+
+ if not snmp_community:
+ raise SnmpCheckpointError("SNMP community can not be empty")
+
+ snmp_v2_actions = EnableDisableSnmpV2Actions(cli_service=cli_service)
+ output = snmp_v2_actions.enable_snmp_agent()
+ output += snmp_v2_actions.set_snmp_version()
+
+ if snmp_parameters.is_read_only:
+ output += snmp_v2_actions.set_snmp_read_community(
+ snmp_community=snmp_community
+ )
+ else:
+ output += snmp_v2_actions.set_snmp_write_community(
+ snmp_community=snmp_community
+ )
+ return output
+
+ @staticmethod
+ def _enable_snmp_v3(cli_service: CliService, snmp_parameters: SnmpParams) -> str:
+ """Enable SNMPv3."""
+ snmp_v3_actions = EnableDisableSnmpV3Actions(cli_service=cli_service)
+ output = snmp_v3_actions.enable_snmp_agent()
+ output += snmp_v3_actions.set_snmp_version()
+ output += snmp_v3_actions.add_snmp_user(snmp_params=snmp_parameters)
+
+ return output
+
+ @staticmethod
+ def _disable_snmp_v2(cli_service: CliService, snmp_parameters: SnmpParams) -> str:
+ """Disable SNMPv2."""
+ snmp_community = snmp_parameters.snmp_community
+
+ if not snmp_community:
+ raise SnmpCheckpointError("SNMP community can not be empty")
+
+ snmp_v2_actions = EnableDisableSnmpV2Actions(cli_service=cli_service)
+
+ output = snmp_v2_actions.delete_snmp_community(snmp_community=snmp_community)
+ output += snmp_v2_actions.disable_snmp_agent()
+
+ return output
+
+ @staticmethod
+ def _disable_snmp_v3(cli_service: CliService, snmp_parameters: SnmpParams) -> str:
+ """Disable SNMPv3."""
+ snmp_v3_actions = EnableDisableSnmpV3Actions(cli_service)
+
+ output = snmp_v3_actions.delete_snmp_user(snmp_user=snmp_parameters.snmp_user)
+ output += snmp_v3_actions.disable_snmp_agent()
+
+ return output
diff --git a/cloudshell/checkpoint/flows/checkpoint_load_firmware_flow.py b/cloudshell/checkpoint/flows/checkpoint_load_firmware_flow.py
new file mode 100644
index 0000000..8fef13c
--- /dev/null
+++ b/cloudshell/checkpoint/flows/checkpoint_load_firmware_flow.py
@@ -0,0 +1,38 @@
+from __future__ import annotations
+
+from typing import TYPE_CHECKING
+
+from cloudshell.shell.flows.firmware.basic_flow import AbstractFirmwareFlow
+
+from cloudshell.checkpoint.helpers.errors import NotImplementedCheckpointError
+
+if TYPE_CHECKING:
+ from typing import Union
+
+ from cloudshell.shell.flows.utils.url import BasicLocalUrl, RemoteURL
+ from cloudshell.shell.standards.firewall.resource_config import (
+ FirewallResourceConfig,
+ )
+
+ from ..cli.checkpoint_cli_configurator import CheckpointCliConfigurator
+
+ Url = Union[RemoteURL, BasicLocalUrl]
+
+
+class CheckpointFirmwareFlow(AbstractFirmwareFlow):
+ def __init__(
+ self,
+ resource_config: FirewallResourceConfig,
+ cli_configurator: CheckpointCliConfigurator,
+ ):
+ super().__init__(resource_config)
+ self.cli_configurator = cli_configurator
+
+ def _load_firmware_flow(
+ self,
+ firmware_url: Url,
+ vrf_management_name: str | None,
+ timeout: int,
+ ) -> None:
+ """Load firmware."""
+ raise NotImplementedCheckpointError("Load firmware is not implemented.")
diff --git a/cloudshell/checkpoint/flows/checkpoint_state_flow.py b/cloudshell/checkpoint/flows/checkpoint_state_flow.py
new file mode 100644
index 0000000..7f56b34
--- /dev/null
+++ b/cloudshell/checkpoint/flows/checkpoint_state_flow.py
@@ -0,0 +1,12 @@
+from __future__ import annotations
+
+from cloudshell.shell.flows.state.basic_flow import StateFlow
+
+from cloudshell.checkpoint.command_actions.system_actions import SystemActions
+
+
+class CheckpointStateFlow(StateFlow):
+ def shutdown(self) -> str:
+ with self._cli_configurator.config_mode_service() as config_cli_service:
+ system_actions = SystemActions(config_cli_service)
+ return system_actions.shutdown()
diff --git a/cloudshell/checkpoint/gaia/autoload/checkpoint_gaia_snmp_autoload.py b/cloudshell/checkpoint/gaia/autoload/checkpoint_gaia_snmp_autoload.py
deleted file mode 100644
index 3c63355..0000000
--- a/cloudshell/checkpoint/gaia/autoload/checkpoint_gaia_snmp_autoload.py
+++ /dev/null
@@ -1,198 +0,0 @@
-#!/usr/bin/python
-# -*- coding: utf-8 -*-
-
-import os
-import re
-
-from cloudshell.snmp.core.domain.snmp_oid import SnmpMibObject
-
-from cloudshell.checkpoint.gaia.autoload.snmp_if_table import SnmpIfTable
-
-
-class CheckpointSNMPAutoload(object):
- CHASSIS_ID = "0"
-
- def __init__(self, snmp_service, logger):
- """Basic init with injected snmp handler and logger.
-
- :param snmp_service:
- :param logger:
- :return:
- """
- self.snmp_service = snmp_service
- self.logger = logger
-
- self._if_table = None
-
- @property
- def if_table(self):
- if not self._if_table:
- SnmpIfTable.PORT_EXCLUDE_LIST.extend(["lo", "sync"])
- self._if_table = SnmpIfTable(
- snmp_handler=self.snmp_service, logger=self.logger
- )
-
- return self._if_table
-
- def load_mibs(self):
- """Loads Checkpoint specific mibs inside snmp handler."""
- path = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "mibs"))
- self.snmp_service.add_mib_folder_path(path)
- self.logger.info("Loading mibs")
- self.snmp_service.load_mib_tables(["CHECKPOINT-MIB"])
-
- @property
- def device_info(self):
- system_description = self.snmp_service.get_property(
- SnmpMibObject("SNMPv2-MIB", "sysObjectID", "0")
- ).safe_value
- return system_description
-
- def build_ports(self, resource_model, chassis_table):
- """Get resource details and attributes for every port in self.port_list.
-
- :param cloudshell.shell.standards.firewall.autoload_model.
- FirewallResourceModel resource_model:
- :param dict chassis_table:
- """
- self.logger.info("Load Ports:")
- chassis = chassis_table.get(self.CHASSIS_ID)
-
- for port in self.if_table.if_ports.values():
-
- interface_name = port.if_name or port.if_descr_name
- if not interface_name:
- continue
-
- port_object = resource_model.entities.Port(
- port.if_index, name=interface_name
- )
-
- port_object.port_description = port.if_port_description
- port_object.l2_protocol_type = port.if_type
-
- port_object.mac_address = port.if_mac
- port_object.mtu = port.if_mtu
- port_object.bandwidth = port.if_speed
- port_object.ipv4_address = port.ipv4_address
- port_object.ipv6_address = port.ipv6_address
- port_object.duplex = port.duplex
- port_object.auto_negotiation = port.auto_negotiation
- port_object.adjacent = port.adjacent
-
- chassis.connect_port(port_object)
-
- self.logger.info("Added " + interface_name + " Port")
-
- self.logger.info("Building Ports completed")
-
- def build_port_channels(self, resource_model):
- """Get all port channels and set attributes for them.
-
- :param cloudshell.shell.standards.firewall.autoload_model.
- FirewallResourceModel resource_model:
- """
- if not self.if_table.if_port_channels:
- return
- self.logger.info("Building Port Channels")
- for if_port_channel in self.if_table.if_port_channels.values():
- interface_model = if_port_channel.if_name
- match_object = re.search(r"\d+$", interface_model)
- if match_object:
- interface_id = "{0}".format(match_object.group(0))
- associated_ports = ""
- for port in if_port_channel.associated_port_list:
- if_port_name = self.if_table.get_if_entity_by_index(port).if_name
- associated_ports += (
- if_port_name.replace("/", "-").replace(" ", "") + "; "
- )
-
- port_channel = resource_model.entities.PortChannel(
- interface_id, name=if_port_channel.if_name
- )
- port_channel.associated_ports = associated_ports.strip(" \t\n\r")
- port_channel.port_description = if_port_channel.if_port_description
- port_channel.ipv4_address = if_port_channel.ipv4_address
- port_channel.ipv6_address = if_port_channel.ipv6_address
-
- resource_model.connect_port_channel(port_channel)
-
- self.logger.info("Added " + interface_model + " Port Channel")
-
- else:
- self.logger.error(
- "Adding of {0} failed. Name is invalid".format(interface_model)
- )
-
- self.logger.info("Building Port Channels completed")
-
- def build_chassis(self, resource_model):
- """Get Chassis element attributes.
-
- :param cloudshell.shell.standards.firewall.autoload_model.
- FirewallResourceModel resource_model:
- """
- self.logger.info("Building Chassis")
-
- chassis_id = self.CHASSIS_ID
- serial_number = self.snmp_service.get_property(
- SnmpMibObject("CHECKPOINT-MIB", "svnApplianceSerialNumber", chassis_id)
- ).safe_value
- chassis_object = resource_model.entities.Chassis(chassis_id)
- chassis_object.model = self.snmp_service.get_property(
- SnmpMibObject("CHECKPOINT-MIB", "svnApplianceProductName", chassis_id)
- ).safe_value
- chassis_object.serial_number = serial_number
- resource_model.connect_chassis(chassis_object)
- self.logger.info("Added " + chassis_object.model + " Chassis")
- self.logger.info("Building Chassis completed")
- return {chassis_id: chassis_object}
-
- def build_root(self, resource_model):
- """Get root element attributes.
-
- :param cloudshell.shell.standards.firewall.autoload_model.
- FirewallResourceModel resource_model:
- """
- self.logger.info("Building Root")
- resource_model.contact_name = self.snmp_service.get_property(
- SnmpMibObject("SNMPv2-MIB", "sysContact", "0")
- ).safe_value
- resource_model.system_name = self.snmp_service.get_property(
- SnmpMibObject("SNMPv2-MIB", "sysName", "0")
- ).safe_value
- resource_model.location = self.snmp_service.get_property(
- SnmpMibObject("SNMPv2-MIB", "sysLocation", "0")
- ).safe_value
- resource_model.os_version = self.snmp_service.get_property(
- SnmpMibObject("CHECKPOINT-MIB", "svnVersion", "0")
- ).safe_value
- resource_model.vendor = "Checkpoint"
- resource_model.model = self.snmp_service.get_property(
- SnmpMibObject("CHECKPOINT-MIB", "svnApplianceProductName", "0")
- ).safe_value
-
- def build_power_modules(self, resource_model, chassis_table):
- """Get attributes for power ports provided in self.power_supply_list.
-
- :param cloudshell.shell.standards.firewall.autoload_model.
- FirewallResourceModel resource_model:
- :param dict chassis_table:
- """
- power_port_table = {}
- self.logger.info("Building PowerPorts")
- pp_table = self.snmp_service.get_table(
- SnmpMibObject("CHECKPOINT-MIB", "powerSupplyTable")
- )
- chassis = chassis_table.get(self.CHASSIS_ID)
- for port_id in pp_table:
- power_port = resource_model.entities.PowerPort(port_id)
-
- status = pp_table.get(port_id, {}).get("powerSupplyStatus", "")
- if status:
- power_port.port_description = "Power port Status - " + status
- chassis.connect_power_port(power_port)
- power_port_table[port_id] = power_port
- self.logger.info("Added Power Port")
- self.logger.info("Building Power Ports completed")
- return power_port_table
diff --git a/cloudshell/checkpoint/gaia/autoload/port_constants.py b/cloudshell/checkpoint/gaia/autoload/port_constants.py
deleted file mode 100644
index e82dece..0000000
--- a/cloudshell/checkpoint/gaia/autoload/port_constants.py
+++ /dev/null
@@ -1,12 +0,0 @@
-PORT_INDEX = ("IF-MIB", "ifIndex")
-PORT_DESCR_NAME = ("IF-MIB", "ifDescr")
-PORT_NAME = ("IF-MIB", "ifName")
-PORT_DESCRIPTION = ("IF-MIB", "ifAlias")
-PORT_TYPE = ("IF-MIB", "ifType")
-PORT_MTU = ("IF-MIB", "ifMtu")
-PORT_SPEED = ("IF-MIB", "ifHighSpeed")
-PORT_MAC = ("IF-MIB", "ifPhysAddress")
-PORT_ADJACENT_REM_TABLE = ("LLDP-MIB", "lldpRemSysName")
-PORT_ADJACENT_REM_PORT_DESCR = ("LLDP-MIB", "lldpRemPortDesc")
-PORT_ADJACENT_LOC_TABLE = ("LLDP-MIB", "lldpLocPortDesc")
-PORT_AUTO_NEG = ("MAU-MIB", "ifMauAutoNegAdminStatus")
diff --git a/cloudshell/checkpoint/gaia/autoload/snmp_if_entity.py b/cloudshell/checkpoint/gaia/autoload/snmp_if_entity.py
deleted file mode 100644
index 0f8ec07..0000000
--- a/cloudshell/checkpoint/gaia/autoload/snmp_if_entity.py
+++ /dev/null
@@ -1,105 +0,0 @@
-import binascii
-import re
-from collections import defaultdict
-from functools import lru_cache
-from ipaddress import IPv4Address, IPv6Address
-
-from cloudshell.snmp.core.domain.snmp_oid import SnmpMibObject
-
-from cloudshell.checkpoint.gaia.autoload.port_constants import (
- PORT_DESCR_NAME,
- PORT_DESCRIPTION,
- PORT_NAME,
-)
-
-
-class SnmpIfEntity(object):
- def __init__(self, snmp_handler, logger, index, port_attributes_snmp_tables):
- self.if_index = index
- self._snmp = snmp_handler
- self._port_attributes_snmp_tables = port_attributes_snmp_tables
- self._logger = logger
- self._if_alias = None
- self._if_name = None
- self._if_descr_name = None
-
- @property
- def if_name(self):
- if not self._if_name:
- self._if_name = self._snmp.get_property(
- SnmpMibObject(*PORT_NAME + (self.if_index,))
- ).safe_value
- return self._if_name
-
- @property
- def if_descr_name(self):
- if not self._if_descr_name:
- self._if_descr_name = self._snmp.get_property(
- SnmpMibObject(*PORT_DESCR_NAME + (self.if_index,))
- ).safe_value
- return self._if_descr_name
-
- @property
- def if_port_description(self):
- if not self._if_alias:
- self._if_alias = self._snmp.get_property(
- SnmpMibObject(*PORT_DESCRIPTION + (self.if_index,))
- ).safe_value
- return self._if_alias
-
- @property
- @lru_cache()
- def _ip_map(self):
- ip_map = defaultdict(list)
- for (
- ip_addr,
- index_obj,
- ) in self._port_attributes_snmp_tables.ip_mixed_dict.items():
- if str(index_obj.get("ipAddressIfIndex").safe_value) == str(self.if_index):
- ip_addr = ip_addr.strip("'")
- ip_map[ip_addr[:4]].append(ip_addr)
- return ip_map
-
- @property
- def ipv4_address(self):
- for ip_addr in self._ip_map.get("ipv4", []):
- try:
- return str(
- IPv4Address(
- binascii.unhexlify(re.sub(r"ipv4.*?\.0x", "", ip_addr))[:4]
- )
- )
- except Exception:
- continue
-
- if self._port_attributes_snmp_tables.ip_v4_old_dict:
- for (
- ip_addr,
- index,
- ) in self._port_attributes_snmp_tables.ip_v4_old_dict.items():
- if str(index.get("ipAdEntIfIndex")) == str(self.if_index):
- return ip_addr
- return ""
-
- @property
- def ipv6_address(self):
- for ip_addr in self._ip_map.get("ipv6", []):
- try:
- return str(
- IPv6Address(
- binascii.unhexlify(re.sub(r"ipv6.*?\.0x", "", ip_addr))[:16]
- )
- )
- except Exception:
- continue
-
- if self._port_attributes_snmp_tables.ip_v6_dict:
- for snmp_response in self._port_attributes_snmp_tables.ip_v6_dict:
- response = self._port_attributes_snmp_tables.ip_v6_dict.get(
- snmp_response
- )
-
- if response and snmp_response.startswith("{}.".format(self.if_index)):
- return snmp_response.replace("{}.".format(self.if_index), "")
-
- return ""
diff --git a/cloudshell/checkpoint/gaia/autoload/snmp_if_port_channel_entity.py b/cloudshell/checkpoint/gaia/autoload/snmp_if_port_channel_entity.py
deleted file mode 100644
index 4e7e056..0000000
--- a/cloudshell/checkpoint/gaia/autoload/snmp_if_port_channel_entity.py
+++ /dev/null
@@ -1,32 +0,0 @@
-from cloudshell.checkpoint.gaia.autoload.snmp_if_entity import SnmpIfEntity
-
-
-class SnmpIfPortChannel(SnmpIfEntity):
- def __init__(
- self, snmp_handler, logger, index, port_attributes_snmp_tables, name=None
- ):
- super(SnmpIfPortChannel, self).__init__(
- snmp_handler, logger, index, port_attributes_snmp_tables
- )
- self._port_channel_associated_port = ""
- self._if_name = name
-
- @property
- def associated_port_list(self):
- if not self._port_channel_associated_port:
- self._port_channel_associated_port = self._get_associated_ports()
- return self._port_channel_associated_port
-
- def _get_associated_ports(self):
- """Get all ports associated with provided port channel.
-
- :return:
- """
- result = []
- for (
- key,
- value,
- ) in self._port_attributes_snmp_tables.port_channel_ports.iteritems():
- if str(self.if_index) in value.get("dot3adAggPortAttachedAggID").safe_value:
- result.append(key)
- return result
diff --git a/cloudshell/checkpoint/gaia/autoload/snmp_if_port_entity.py b/cloudshell/checkpoint/gaia/autoload/snmp_if_port_entity.py
deleted file mode 100644
index 3f2ae69..0000000
--- a/cloudshell/checkpoint/gaia/autoload/snmp_if_port_entity.py
+++ /dev/null
@@ -1,147 +0,0 @@
-import re
-
-from cloudshell.snmp.core.domain.snmp_oid import SnmpMibObject
-
-from cloudshell.checkpoint.gaia.autoload import port_constants
-from cloudshell.checkpoint.gaia.autoload.snmp_if_entity import SnmpIfEntity
-
-
-class SnmpIfPort(SnmpIfEntity):
- IF_TYPE_REPLACE_PATTERN = re.compile("^[/']|[/']$")
- ADJACENT_TEMPLATE = "{remote_host} through {remote_port}"
-
- def __init__(self, snmp_handler, logger, index, port_attributes_snmp_tables):
- super(SnmpIfPort, self).__init__(
- snmp_handler, logger, index, port_attributes_snmp_tables
- )
- self._snmp = snmp_handler
- self._port_attributes_snmp_tables = port_attributes_snmp_tables
- self._logger = logger
- self._if_type = None
- self._if_speed = None
- self._if_mtu = None
- self._if_mac = None
- self._adjacent = None
- self._duplex = None
- self._auto_neg = None
-
- @property
- def if_type(self):
- if not self._if_type:
- self._if_type = "other"
- if_type = self._snmp.get_property(
- SnmpMibObject(*(port_constants.PORT_TYPE + (self.if_index,)))
- ).safe_value
- if if_type and if_type:
- self._if_type = if_type.replace("'", "")
- return self._if_type
-
- @property
- def if_speed(self):
- if not self._if_speed:
- self._if_speed = self._snmp.get_property(
- SnmpMibObject(*(port_constants.PORT_SPEED + (self.if_index,)))
- ).safe_value
- return self._if_speed
-
- @property
- def if_mtu(self):
- if not self._if_mtu:
- self._if_mtu = self._snmp.get_property(
- SnmpMibObject(*(port_constants.PORT_MTU + (self.if_index,)))
- ).safe_value
- return self._if_mtu
-
- @property
- def if_mac(self):
- if not self._if_mac:
- self._if_mac = self._snmp.get_property(
- SnmpMibObject(*(port_constants.PORT_MAC + (self.if_index,)))
- ).safe_value
- return self._if_mac
-
- @property
- def adjacent(self):
- if not self._adjacent:
- self._adjacent = self._get_adjacent() or ""
- return self._adjacent
-
- @property
- def duplex(self):
- if not self._duplex:
- self._duplex = self._get_duplex() or "Half"
- return self._duplex
-
- @property
- def auto_negotiation(self):
- if not self._auto_neg:
- self._auto_neg = self._get_auto_neg() or "False"
- return self._auto_neg
-
- def _get_adjacent(self):
- """Get ajacent.
-
- Get connected device interface and device name to the specified
- port id, using cdp or lldp protocols.
-
- :return: device's name and port connected to port id
- :rtype string
- """
- # ToDo rebuild this. Iterating through dictionary
- # again and again looks bad, very bad.
- if self._port_attributes_snmp_tables.lldp_local_table:
- if_name = self.if_name
- if not if_name:
- if_name = ""
- interface_name = if_name.lower()
- if interface_name:
- key = self._port_attributes_snmp_tables.lldp_local_table.get(
- interface_name, None
- )
- if key:
- for (
- port_id,
- rem_table,
- ) in self._port_attributes_snmp_tables.lldp_remote_table.items():
- if key in port_id.split("."):
- remote_sys_name = rem_table.get("lldpRemSysName")
- remote_port_name = self._snmp.get_property(
- SnmpMibObject(
- **(
- port_constants.PORT_ADJACENT_REM_PORT_DESCR
- + (port_id,)
- )
- )
- ).safe_value
- if remote_port_name and remote_sys_name:
- return self.ADJACENT_TEMPLATE.format(
- remote_host=remote_sys_name,
- remote_port=remote_port_name,
- )
-
- def _get_auto_neg(self):
- """Get port auto negotiation status.
-
- :return return "True"
- """
- index = "{}.{}".format(self.if_index, 1)
- auto_negotiation = self._snmp.get_property(
- SnmpMibObject(*(port_constants.PORT_AUTO_NEG + (index,)))
- ).safe_value
- if auto_negotiation and "enabled" in auto_negotiation.lower():
- return "True"
-
- def _get_duplex(self):
- """Get current duplex state.
-
- :return str "Full"
- """
- for key, value in self._port_attributes_snmp_tables.duplex_table.items():
- if "dot3StatsIndex" in value.keys() and value["dot3StatsIndex"] == str(
- self.if_index
- ):
- interface_duplex = self._snmp.get_property(
- SnmpMibObject("EtherLike-MIB", "dot3StatsDuplexStatus", key)
- ).safe_value
- if "fullDuplex" in interface_duplex:
- return "Full"
diff --git a/cloudshell/checkpoint/gaia/autoload/snmp_if_table.py b/cloudshell/checkpoint/gaia/autoload/snmp_if_table.py
deleted file mode 100644
index f8e340e..0000000
--- a/cloudshell/checkpoint/gaia/autoload/snmp_if_table.py
+++ /dev/null
@@ -1,140 +0,0 @@
-import re
-
-from cloudshell.snmp.core.domain.snmp_oid import SnmpMibObject
-
-from cloudshell.checkpoint.gaia.autoload import port_constants
-from cloudshell.checkpoint.gaia.autoload.snmp_if_port_channel_entity import (
- SnmpIfPortChannel,
-)
-from cloudshell.checkpoint.gaia.autoload.snmp_if_port_entity import SnmpIfPort
-from cloudshell.checkpoint.gaia.autoload.snmp_port_attr_tables import SnmpPortAttrTables
-
-
-class SnmpIfTable(object):
- IF_PORT = SnmpIfPort
- IF_PORT_CHANNEL = SnmpIfPortChannel
- PORT_CHANNEL_NAME = "bond"
- PORT_EXCLUDE_LIST = ["mgmt", "management", "loopback", "null", "."]
- PORT_NAME_PATTERN = re.compile(r"((\d+/).+)")
- PORT_NAME_SECONDARY_PATTERN = re.compile(r"\d+")
- PORT_VALID_TYPE = re.compile(
- r"ethernet|other|propPointToPointSerial|fastEther|^otn", re.IGNORECASE
- )
-
- def __init__(self, snmp_handler, logger):
- self._snmp = snmp_handler
- self._logger = logger
- self._load_snmp_tables()
- self._if_entities_dict = {}
- self._if_port_dict = {}
- self._if_port_channels_dict = {}
- self._port_exclude_list = self.PORT_EXCLUDE_LIST
- self.port_attributes_snmp_tables = SnmpPortAttrTables(snmp_handler, logger)
-
- def set_port_exclude_list(self, value):
- if value:
- self._port_exclude_list = value
-
- def set_port_attributes_service(self, value):
- self.port_attributes_snmp_tables = value
-
- @property
- def if_ports(self):
- if not self._if_port_dict:
- self._get_if_entities()
- return self._if_port_dict
-
- @property
- def if_port_channels(self):
- if not self._if_port_channels_dict:
- self._get_port_channels()
- return self._if_port_channels_dict
-
- def get_if_entity_by_index(self, if_index):
- if not self._if_entities_dict:
- self._get_if_entities()
- return self.if_ports.get(if_index) or self.if_port_channels.get(if_index)
-
- def _get_if_entities(self):
- for port in self._if_table:
- port_obj = self.IF_PORT(
- snmp_handler=self._snmp,
- logger=self._logger,
- index=port,
- port_attributes_snmp_tables=self.port_attributes_snmp_tables,
- )
- if (
- any(
- exclude_port
- for exclude_port in self._port_exclude_list
- if exclude_port in port_obj.if_descr_name.lower()
- or exclude_port in port_obj.if_name.lower()
- )
- or port_obj.if_name.lower().startswith(self.PORT_CHANNEL_NAME)
- or port_obj.if_descr_name.lower().startswith(self.PORT_CHANNEL_NAME)
- ):
- continue
- self._if_port_dict[port] = port_obj
-
- def _get_port_channels(self):
- for port in self._if_table:
- if port in self._if_port_dict:
- continue
- port_channel_obj = self.IF_PORT_CHANNEL(
- snmp_handler=self._snmp,
- logger=self._logger,
- index=port,
- port_attributes_snmp_tables=self.port_attributes_snmp_tables,
- )
- if port_channel_obj.if_name.lower().startswith(
- self.PORT_CHANNEL_NAME
- ) or port_channel_obj.if_descr_name.lower().startswith(
- self.PORT_CHANNEL_NAME
- ):
- self._if_port_channels_dict[port] = port_channel_obj
-
- def _load_snmp_tables(self):
- """Load all cisco required snmp tables.
-
- :return:
- """
- self._logger.info("Start loading MIB tables:")
- if_table = self._snmp.get_table(SnmpMibObject(*port_constants.PORT_DESCR_NAME))
- if not if_table:
- if_table = self._snmp.get_table(SnmpMibObject(*port_constants.PORT_NAME))
- if not if_table:
- if_table = self._snmp.get_table(
- SnmpMibObject(*port_constants.PORT_INDEX)
- )
- self._if_table = if_table.keys()
- self._logger.info("ifIndex table loaded")
-
- def get_if_index_from_port_name(self, port_name, port_filter_pattern):
- if_table_re = None
- port_if_match = self.PORT_NAME_PATTERN.search(port_name)
- if not port_if_match:
- port_if_re = self.PORT_NAME_SECONDARY_PATTERN.findall(port_name)
- if port_if_re:
- if_table_re = "/".join(port_if_re)
- else:
- port_if_re = port_if_match.group()
- if_table_re = port_if_re
- if if_table_re:
- for interface_id in self.if_ports:
- interface = self.if_ports.get(interface_id)
- if interface and not self.PORT_VALID_TYPE.search(interface.if_type):
- continue
- if port_filter_pattern.search(str(interface.if_name)):
- continue
- if (
- port_name == interface.if_name
- or port_name == interface.if_descr_name
- ):
- return interface
- port_pattern = re.compile(
- r"^\S*\D*{0}(/\D+|$)".format(if_table_re), re.IGNORECASE
- )
- if port_pattern.search(interface.if_name) or port_pattern.search(
- interface.if_descr_name
- ):
- return interface
diff --git a/cloudshell/checkpoint/gaia/autoload/snmp_port_attr_tables.py b/cloudshell/checkpoint/gaia/autoload/snmp_port_attr_tables.py
deleted file mode 100644
index a4d0854..0000000
--- a/cloudshell/checkpoint/gaia/autoload/snmp_port_attr_tables.py
+++ /dev/null
@@ -1,90 +0,0 @@
-from collections import defaultdict
-
-from cloudshell.snmp.core.domain.snmp_oid import SnmpMibObject
-
-from cloudshell.checkpoint.gaia.autoload import port_constants
-
-
-class SnmpPortAttrTables(object):
- def __init__(self, snmp_handler, logger):
- self._snmp = snmp_handler
- self._logger = logger
- self._lldp_remote_table = None
- self._lldp_local_table = None
- self._cdp_table = None
- self._duplex_table = None
- self._cisco_duplex_state_table = None
- self._ip_v4_old_table = None
- self._ip_mixed_table = None
- self._ip_v6_table = None
- self._port_channel_ports = None
-
- @property
- def lldp_remote_table(self):
- if self._lldp_remote_table is None:
- self._lldp_remote_table = self._snmp.get_table(
- SnmpMibObject(*port_constants.PORT_ADJACENT_REM_TABLE)
- )
- self._logger.info("lldpRemSysName table loaded")
- return self._lldp_remote_table
-
- @property
- def lldp_local_table(self):
- if self._lldp_local_table is None:
- lldp_local_table = self._snmp.get_table(
- SnmpMibObject(*port_constants.PORT_ADJACENT_LOC_TABLE)
- )
- if lldp_local_table:
- self._lldp_local_table = {
- str(v.get("lldpLocPortDesc", "")).lower(): k
- for k, v in lldp_local_table.iteritems()
- }
- else:
- self._lldp_local_table = defaultdict()
- self._logger.info("lldpLocPortDesc table loaded")
- return self._lldp_local_table
-
- @property
- def duplex_table(self):
- if self._duplex_table is None:
- self._duplex_table = self._snmp.get_table(
- SnmpMibObject("EtherLike-MIB", "dot3StatsIndex")
- )
- self._logger.info("dot3StatsIndex table loaded")
- return self._duplex_table
-
- @property
- def ip_v4_old_dict(self):
- if self._ip_v4_old_table is None:
- self._ip_v4_old_table = self._snmp.get_table(
- SnmpMibObject("IP-MIB", "ipAdEntIfIndex")
- )
- self._logger.info("ipAdEntIfIndex table loaded")
- return self._ip_v4_old_table
-
- @property
- def ip_mixed_dict(self):
- if self._ip_mixed_table is None:
- self._ip_mixed_table = self._snmp.get_table(
- SnmpMibObject("IP-MIB", "ipAddressIfIndex")
- )
- self._logger.info("ipAddressIfIndex table loaded")
- return self._ip_mixed_table
-
- @property
- def ip_v6_dict(self):
- if self._ip_v6_table is None:
- self._ip_v6_table = self._snmp.get_table(
- SnmpMibObject("IPV6-MIB", "ipv6AddrType")
- )
- self._logger.info("ipv6IfDescr table loaded")
- return self._ip_v6_table
-
- @property
- def port_channel_ports(self):
- if self._port_channel_ports is None:
- self._port_channel_ports = self._snmp.get_table(
- SnmpMibObject("IEEE8023-LAG-MIB", "dot3adAggPortAttachedAggID")
- )
- self._logger.info("dot3adAggPortAttachedAggID table loaded")
- return self._port_channel_ports
diff --git a/cloudshell/checkpoint/gaia/cli/checkpoint_cli_configurator.py b/cloudshell/checkpoint/gaia/cli/checkpoint_cli_configurator.py
deleted file mode 100644
index 5744d48..0000000
--- a/cloudshell/checkpoint/gaia/cli/checkpoint_cli_configurator.py
+++ /dev/null
@@ -1,90 +0,0 @@
-#!/usr/bin/python
-# -*- coding: utf-8 -*-
-from collections import OrderedDict
-from functools import lru_cache
-
-from cloudshell.cli.configurator import AbstractModeConfigurator
-from cloudshell.cli.service.command_mode_helper import CommandModeHelper
-
-from cloudshell.checkpoint.gaia.cli.checkpoint_command_modes import (
- EnableCommandMode,
- ExpertCommandMode,
- MaintenanceCommandMode,
-)
-from cloudshell.checkpoint.gaia.cli.sessions.console_ssh_session import (
- ConsoleSSHSession,
-)
-from cloudshell.checkpoint.gaia.cli.sessions.console_telnet_session import (
- ConsoleTelnetSession,
-)
-
-
-class CheckpointCliConfigurator(AbstractModeConfigurator):
- def __init__(self, cli, resource_config, logger):
- """Checkpoint cli configurator.
-
- :param cloudshell.cli.service.cli.CLI cli:
- :param cloudshell.shell.standards.firewall.resource_config.
- FirewallResourceConfig resource_config:
- :param logging.logger logger:
- """
- super(CheckpointCliConfigurator, self).__init__(resource_config, logger, cli)
- self.modes = CommandModeHelper.create_command_mode(resource_config)
-
- @property
- def default_mode(self):
- return self.modes[MaintenanceCommandMode]
-
- @property
- def enable_mode(self):
- return self.modes[EnableCommandMode]
-
- @property
- def config_mode(self):
- return self.modes[ExpertCommandMode]
-
- def _console_ssh_session(self, **kwargs):
- console_port = int(self.resource_config.console_port)
- session = ConsoleSSHSession(
- self.resource_config.console_server_ip_address,
- self.username,
- self.password,
- console_port,
- self.on_session_start,
- )
- return session
-
- def _console_telnet_session(self, **kwargs):
- console_port = int(self.resource_config.console_port)
- return [
- ConsoleTelnetSession(
- self.resource_config.console_server_ip_address,
- self.username,
- self.password,
- console_port,
- self.on_session_start,
- ),
- ConsoleTelnetSession(
- self.resource_config.console_server_ip_address,
- self.username,
- self.password,
- console_port,
- self.on_session_start,
- start_with_new_line=True,
- ),
- ]
-
- @property
- @lru_cache()
- def _session_dict(self):
- return OrderedDict(
- list(super(CheckpointCliConfigurator, self)._session_dict.items())
- + [("console", [self._console_ssh_session, self._console_telnet_session])]
- )
-
- def _on_session_start(self, session, logger):
- """Send default commands to configure/clear session outputs.
-
- :return:
- """
- session.send_line("set clienv rows 0", logger)
diff --git a/cloudshell/checkpoint/gaia/cli/checkpoint_command_modes.py b/cloudshell/checkpoint/gaia/cli/checkpoint_command_modes.py
deleted file mode 100644
index 3c73525..0000000
--- a/cloudshell/checkpoint/gaia/cli/checkpoint_command_modes.py
+++ /dev/null
@@ -1,144 +0,0 @@
-#!/usr/bin/python
-# -*- coding: utf-8 -*-
-import random
-import re
-from collections import OrderedDict
-
-from passlib.hash import md5_crypt
-
-from cloudshell.cli.service.command_mode import CommandMode
-
-
-class MaintenanceCommandMode(CommandMode):
- PROMPT = r"(?:(?!\)).)#\s*$" # TODO Verify prompt correctness
- ENTER_COMMAND = ""
- EXIT_COMMAND = ""
-
- def __init__(self, resource_config):
- """Initialize Default command mode."""
- """Only for cases when session started not in enable mode."""
- self.resource_config = resource_config
-
- CommandMode.__init__(
- self,
- MaintenanceCommandMode.PROMPT,
- MaintenanceCommandMode.ENTER_COMMAND,
- MaintenanceCommandMode.EXIT_COMMAND,
- )
-
- super(MaintenanceCommandMode, self).__init__(
- self.PROMPT, self.ENTER_COMMAND, self.EXIT_COMMAND
- )
-
-
-class EnableCommandMode(CommandMode):
- PROMPT = r">\s*$"
- ENTER_COMMAND = "clish"
- EXIT_COMMAND = ""
-
- def __init__(self, resource_config):
- """Initialize Enable command mode."""
- """Enable command mode - default command mode for CheckPoint Shells."""
- self.resource_config = resource_config
-
- super(EnableCommandMode, self).__init__(
- self.PROMPT, self.ENTER_COMMAND, self.EXIT_COMMAND
- )
-
-
-class ExpertCommandMode(CommandMode):
- PROMPT = r"\[Expert.*#\s*$"
- ENTER_COMMAND = "expert"
- EXIT_COMMAND = "exit"
-
- def __init__(self, resource_config):
- """Initialize Expert Command Mode.
-
- :param cloudshell.shell.standards.firewall.resource_config.
- FirewallResourceConfig resource_config:
- """
- self.resource_config = resource_config
-
- super(ExpertCommandMode, self).__init__(
- self.PROMPT,
- self.ENTER_COMMAND,
- self.EXIT_COMMAND,
- enter_error_map={r"[Ww]rong\spassword": "Wrong password."},
- enter_action_map=OrderedDict(
- [
- # Raise the error in action map
- (
- r"[Ww]rong\spassword",
- lambda s, l: self._exception("Incorrect Enable Password."),
- ),
- (
- "[Pp]assword",
- lambda session, logger: (
- session.send_line(
- self.resource_config.enable_password, logger
- ),
- session.send_line("\n", logger),
- ),
- ),
- ]
- ),
- )
-
- @staticmethod
- def _exception(message):
- raise Exception(message)
-
- @staticmethod
- def _expert_password_defined(cli_service, logger):
- """Check if expert password defined.
-
- :param cloudshell.cli.cli_service_impl.CliServiceImpl cli_service:
- :param logging.Logger logger:
- :rtype: bool
- """
- logger.debug("Check if expert password defined.")
- if isinstance(cli_service.command_mode, EnableCommandMode):
- result = cli_service.send_command("show configuration expert-password")
- return (
- re.match(r"^set\sexpert-password-hash\s.+$", result, re.MULTILINE)
- is not None
- )
- else:
- raise Exception(
- "Cannot verify expert password, command mode is not correct"
- )
-
- def _set_expert_password(self, cli_service, logger):
- """Set expert password.
-
- :param cloudshell.cli.cli_service.CliService cli_service:
- :param logging.Logger logger:
- :rtype: bool
- """
- # gen enable password hash
- enable_password_hash = md5_crypt.hash(
- self.resource_config.enable_password, salt_size=random.choice(range(5, 8))
- )
-
- error_map = OrderedDict(
- [
- ("Configuration lock present", "Configuration lock present."),
- ("Failed to maintain the lock", "Failed to maintain the lock."),
- ("Wrong password", "Wrong password."),
- ]
- )
- cli_service.send_command(
- command="set expert-password-hash {}".format(enable_password_hash),
- logger=logger,
- error_map=error_map,
- )
-
- def step_up(self, cli_service, logger):
- if not self._expert_password_defined(cli_service, logger):
- self._set_expert_password(cli_service, logger)
- super(ExpertCommandMode, self).step_up(cli_service, logger)
-
-
-CommandMode.RELATIONS_DICT = {
- MaintenanceCommandMode: {EnableCommandMode: {ExpertCommandMode: {}}}
-}
diff --git a/cloudshell/checkpoint/gaia/cli/sessions/console_ssh_session.py b/cloudshell/checkpoint/gaia/cli/sessions/console_ssh_session.py
deleted file mode 100644
index f5cb212..0000000
--- a/cloudshell/checkpoint/gaia/cli/sessions/console_ssh_session.py
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/usr/bin/python
-# -*- coding: utf-8 -*-
-
-from cloudshell.cli.session.ssh_session import SSHSession
-
-
-class ConsoleSSHSession(SSHSession):
- def __init__(
- self,
- host,
- username,
- password,
- port=None,
- on_session_start=None,
- *args,
- **kwargs,
- ):
- super(ConsoleSSHSession, self).__init__(
- host, username, password, port, on_session_start, *args, **kwargs
- )
-
- def connect(self, prompt, logger):
- """Connect to device through ssh.
-
- :param prompt: expected string in output
- :param logger: logger
- """
- try:
- super(ConsoleSSHSession, self).connect(prompt, logger)
- except Exception:
- self.disconnect()
- raise
diff --git a/cloudshell/checkpoint/gaia/cli/sessions/console_telnet_session.py b/cloudshell/checkpoint/gaia/cli/sessions/console_telnet_session.py
deleted file mode 100644
index 5fe6148..0000000
--- a/cloudshell/checkpoint/gaia/cli/sessions/console_telnet_session.py
+++ /dev/null
@@ -1,87 +0,0 @@
-#!/usr/bin/python
-# -*- coding: utf-8 -*-
-
-import telnetlib
-from collections import OrderedDict
-
-from cloudshell.cli.session.session_exceptions import SessionException
-from cloudshell.cli.session.telnet_session import TelnetSession
-
-
-class TelnetSessionException(SessionException):
- pass
-
-
-class ConsoleTelnetSession(TelnetSession):
- def __init__(
- self,
- host,
- username,
- password,
- port=None,
- on_session_start=None,
- start_with_new_line=None,
- *args,
- **kwargs,
- ):
- super(ConsoleTelnetSession, self).__init__(
- host,
- username,
- password,
- port,
- on_session_start,
- loop_detector_max_action_loops=5,
- *args,
- **kwargs,
- )
- self._start_with_new_line = start_with_new_line
-
- def connect(self, prompt, logger):
- """Open connection to device / create session.
-
- :param prompt:
- :param logger:
- """
- if not self._handler:
- self._handler = telnetlib.Telnet()
-
- self._handler.open(self.host, int(self.port), self._timeout)
- if self._handler.get_socket() is None:
- raise TelnetSessionException(
- self.__class__.__name__, "Failed to open telnet connection."
- )
-
- self._handler.get_socket().send(telnetlib.IAC + telnetlib.WILL + telnetlib.ECHO)
-
- action_map = OrderedDict()
- action_map[
- "[Ll]ogin:|[Uu]ser:|[Uu]sername:"
- ] = lambda session, logger: session.send_line(session.username, logger)
- action_map["[Pp]assword:"] = lambda session, logger: session.send_line(
- session.password, logger
- )
- empty_key = r".*"
-
- def empty_action(ses, log):
- ses.send_line("", log)
- if empty_key in action_map:
- del action_map[empty_key]
-
- action_map[empty_key] = empty_action
- cmd = None
- if self._start_with_new_line:
- cmd = ""
- try:
- self.hardware_expect(
- cmd,
- expected_string=prompt,
- timeout=self._timeout,
- logger=logger,
- action_map=action_map,
- )
- if self.on_session_start and callable(self.on_session_start):
- self.on_session_start(self, logger)
- except Exception:
- self.disconnect()
- raise
- self._active = True
diff --git a/cloudshell/checkpoint/gaia/command_actions/file_fransfer_actions.py b/cloudshell/checkpoint/gaia/command_actions/file_fransfer_actions.py
deleted file mode 100644
index c18b9cf..0000000
--- a/cloudshell/checkpoint/gaia/command_actions/file_fransfer_actions.py
+++ /dev/null
@@ -1,253 +0,0 @@
-from collections import OrderedDict
-from functools import lru_cache
-
-from cloudshell.cli.command_template.command_template import CommandTemplate
-from cloudshell.cli.command_template.command_template_executor import (
- CommandTemplateExecutor,
-)
-from cloudshell.cli.service.command_mode import CommandMode
-from cloudshell.shell.flows.utils.networking_utils import UrlParser
-
-
-class Url:
- class SCHEME:
- FTP = "ftp"
- SCP = "scp"
- LOCAL = "local"
- TFTP = "tftp"
-
- def __init__(self, url):
- self._url_object = UrlParser.parse_url(url)
-
- @staticmethod
- @lru_cache()
- def get_url_obj(url):
- return Url(url)
-
- @property
- def scheme(self):
- return self._url_object.get(UrlParser.SCHEME)
-
- @property
- def netloc(self):
- return self._url_object.get(UrlParser.NETLOC)
-
- @property
- def path(self):
- return self._url_object.get(UrlParser.PATH)
-
- @property
- def filename(self):
- return self._url_object.get(UrlParser.FILENAME)
-
- @property
- def username(self):
- return self._url_object.get(UrlParser.USERNAME)
-
- @property
- def password(self):
- return self._url_object.get(UrlParser.PASSWORD)
-
- @property
- def hostname(self):
- return self._url_object.get(UrlParser.HOSTNAME)
-
- @property
- def port(self):
- return self._url_object.get(UrlParser.PORT)
-
- def get_scp_endpoint(self):
- return "{username}@{hostname}:{path}/{filename}".format(**self._url_object)
-
- def get_ftp_path(self):
- path = self.path
- if path and path.startswith("/"):
- path = path[1:]
- return "{}/{}".format(path, self.filename) if path else self.filename
-
-
-class FileTransferActions(object):
- def __init__(self, cli_service, logger):
- """Transfer file actions init.
-
- :param cloudshell.cli.cli_service.CliServiceImpl cli_service:
- config mode cli service
- :param logger:
- """
- self._cli_service = cli_service
- self._logger = logger
-
- def upload(self, filepath, remote_url):
- scheme = Url.get_url_obj(remote_url).scheme
- upload_method = getattr(self, "{}_{}".format(scheme, "upload"))
- if not upload_method:
- raise Exception("Upload protocol {} is not supported".format(scheme))
- return upload_method(filepath, remote_url)
-
- def download(self, remote_url, filepath):
- scheme = Url.get_url_obj(remote_url).scheme
- download_method = getattr(self, "{}_{}".format(scheme, "download"))
- if not download_method:
- raise Exception("Download protocol {} is not supported".format(scheme))
- return download_method(remote_url, filepath)
-
- def _run_scp_template(
- self, url_obj, command_template, action_map=None, error_map=None, **kwargs
- ):
- """Run scp template.
-
- :param Url url_obj:
- :param cloudshell.cli.command_template.command_template.
- CommandTemplate command_template:
- :param action_map:
- :param error_map:
- :param kwargs:
- """
- scp_actions = OrderedDict(
- [
- (r"[Pp]assword:", lambda s, l: s.send_line(url_obj.password, l)),
- (r"\(yes\/no\)\?", lambda s, l: s.send_line("yes", l)),
- ]
- )
- scp_errors = OrderedDict(
- [
- ("[Nn]o such file or directory", "No such file or directory."),
- ("[Nn]ame or service not known", "Name or service not known"),
- ("[Nn]etwork is unreachable", "Network is unreachable"),
- ("[Pp]ermission denied", "Permission denied"),
- ]
- )
- action_map and scp_actions.update(action_map)
- error_map and scp_errors.update(error_map)
-
- return CommandTemplateExecutor(
- cli_service=self._cli_service,
- command_template=command_template,
- action_map=scp_actions,
- error_map=scp_errors,
- ).execute_command(**kwargs)
-
- def scp_upload(self, filepath, remote_url):
- url_obj = Url.get_url_obj(remote_url)
- command_template = CommandTemplate(
- "scp -P {scp_port} {src_location} {dst_location}"
- )
- return self._run_scp_template(
- url_obj,
- command_template,
- scp_port=url_obj.port or "22",
- src_location=filepath,
- dst_location=url_obj.get_scp_endpoint(),
- )
-
- def scp_download(self, remote_url, filepath):
- url_obj = Url.get_url_obj(remote_url)
- command_template = CommandTemplate(
- "scp -P {scp_port} {src_location} {dst_location}"
- )
- return self._run_scp_template(
- url_obj,
- command_template,
- scp_port=url_obj.port or "22",
- src_location=url_obj.get_scp_endpoint(),
- dst_location=filepath,
- )
-
- @staticmethod
- def _exception(message):
- raise Exception(message)
-
- def _run_ftp_template(
- self, url_obj, command_template, action_map=None, error_map=None, **kwargs
- ):
- ftp_action_map = OrderedDict(
- [
- (
- r"[Nn]ame|[Uu]sername|[Ll]ogin.*:",
- lambda s, l: s.send_line(url_obj.username, l),
- ),
- (r"[Pp]assword.*:", lambda s, l: s.send_line(url_obj.password, l)),
- (
- r"[Ll]ogin incorrect|failed",
- lambda s, l: self._exception("Login or Password is not correct."),
- ),
- (
- r"[Cc]onnection timed out|[Nn]ot connected",
- lambda s, l: self._exception("Cannot connect to ftp host."),
- ),
- ]
- )
- ftp_error_map = OrderedDict(
- [
- (r"[Ll]ogin incorrect|failed", "Login or Password is not correct."),
- (
- r"[Cc]onnection timed out|[Nn]ot connected",
- "Cannot connect to ftp host.",
- ),
- ]
- )
-
- ftp_command_mode = CommandMode(
- r"ftp>",
- enter_command="ftp {} {}".format(url_obj.hostname, url_obj.port or "21"),
- exit_command="exit",
- enter_action_map=ftp_action_map,
- enter_error_map=ftp_error_map,
- )
- try:
- with self._cli_service.enter_mode(ftp_command_mode):
- return CommandTemplateExecutor(
- cli_service=self._cli_service,
- error_map=error_map,
- action_map=action_map,
- command_template=command_template,
- ).execute_command(**kwargs)
- finally:
- # Fix for https://github.com/QualiSystems/cloudshell-cli/issues/113
- if self._cli_service.command_mode == ftp_command_mode:
- ftp_command_mode.step_down(self._cli_service, self._logger)
-
- def ftp_upload(self, filepath, remote_url):
- url_obj = Url.get_url_obj(remote_url)
- command_template = CommandTemplate(
- "put {src_location} {dst_location}",
- error_map=OrderedDict(
- [(r"Could not create file", "FTP: Could not create file.")]
- ),
- )
- return self._run_ftp_template(
- url_obj,
- command_template,
- src_location=filepath,
- dst_location=url_obj.get_ftp_path(),
- )
-
- def ftp_download(self, remote_url, filepath):
- url_obj = Url.get_url_obj(remote_url)
- command_template = CommandTemplate(
- "get {src_location} {dst_location}", error_map=OrderedDict([])
- )
- return self._run_ftp_template(
- url_obj,
- command_template,
- src_location=url_obj.get_ftp_path(),
- dst_location=filepath,
- )
-
- def curl_ftp_upload(self, filepath, remote_url):
- return CommandTemplateExecutor(
- cli_service=self._cli_service,
- command_template=CommandTemplate(r"curl -Ss -T {local_file} {remote_url}"),
- ).execute_command(local_file=filepath, remote_url=remote_url)
-
- def curl_ftp_download(self, remote_url, filepath):
- return CommandTemplateExecutor(
- cli_service=self._cli_service,
- command_template=CommandTemplate(r"curl -Ss -o {local_file} {remote_url}"),
- ).execute_command(local_file=filepath, remote_url=remote_url)
-
- def tftp_upload(self, filepath, remote_url):
- raise Exception("Tftp protocol is not implemented")
-
- def tftp_download(self, remote_url, filepath):
- raise Exception("Tftp protocol is not implemented")
diff --git a/cloudshell/checkpoint/gaia/command_actions/save_restore_actions.py b/cloudshell/checkpoint/gaia/command_actions/save_restore_actions.py
deleted file mode 100644
index 2382992..0000000
--- a/cloudshell/checkpoint/gaia/command_actions/save_restore_actions.py
+++ /dev/null
@@ -1,55 +0,0 @@
-from cloudshell.cli.command_template.command_template_executor import (
- CommandTemplateExecutor,
-)
-
-import cloudshell.checkpoint.gaia.command_templates.save_restore_templates as command_templates # noqa: E501
-
-
-class SaveRestoreActions(object):
- def __init__(self, cli_service, logger):
- """Save restore actions.
-
- :param cli_service: config mode cli service
- :type cli_service: CliService
- :param logger:
- :type logger: Logger
- :return:
- """
- self._cli_service = cli_service
- self._logger = logger
-
- def save_local(self, filename, action_map=None, error_map=None):
- return CommandTemplateExecutor(
- cli_service=self._cli_service,
- command_template=command_templates.SAVE_CONFIGURATION,
- action_map=action_map,
- error_map=error_map,
- timeout=300,
- ).execute_command(filename=filename)
-
- def remove_local_file(self, filepath):
- return CommandTemplateExecutor(
- cli_service=self._cli_service, command_template=command_templates.REMOVE
- ).execute_command(filename=filepath)
-
- def restore(self, filepath):
- out = ""
- out += CommandTemplateExecutor(
- cli_service=self._cli_service,
- command_template=command_templates.ON_FAILURE_CONTINUE,
- ).execute_command()
- out += CommandTemplateExecutor(
- cli_service=self._cli_service,
- command_template=command_templates.LOAD_CONFIGURATION,
- timeout=300,
- ).execute_command(filename=filepath)
- out += CommandTemplateExecutor(
- cli_service=self._cli_service,
- command_template=command_templates.ON_FAILURE_STOP,
- ).execute_command()
- out += CommandTemplateExecutor(
- cli_service=self._cli_service,
- command_template=command_templates.SAVE_CONFIG,
- ).execute_command()
-
- return out
diff --git a/cloudshell/checkpoint/gaia/command_actions/snmp_actions.py b/cloudshell/checkpoint/gaia/command_actions/snmp_actions.py
deleted file mode 100644
index 7afe74b..0000000
--- a/cloudshell/checkpoint/gaia/command_actions/snmp_actions.py
+++ /dev/null
@@ -1,206 +0,0 @@
-#!/usr/bin/python
-# -*- coding: utf-8 -*-
-
-from cloudshell.cli.command_template.command_template_executor import (
- CommandTemplateExecutor,
-)
-from cloudshell.snmp.snmp_parameters import SNMPV3Parameters
-
-from cloudshell.checkpoint.gaia.command_templates import (
- snmp_configuration_templates as enable_disable_snmp,
-)
-
-
-class BaseSnmpActions(object):
- SNMP_AGENT_VERSION = "any"
-
- def __init__(self, cli_service, logger):
- """Snmp actions.
-
- :param cli_service: config mode cli service
- :type cli_service: CliService
- :param logger:
- :type logger: Logger
- :return:
- """
- self._cli_service = cli_service
- self._logger = logger
-
- def enable_snmp_agent(self, action_map=None, error_map=None):
- """Enable snmp.
-
- :param action_map:
- :param error_map:
- :return:
- """
- return CommandTemplateExecutor(
- cli_service=self._cli_service,
- command_template=enable_disable_snmp.ENABLE_SNMP_AGENT,
- action_map=action_map,
- error_map=error_map,
- ).execute_command()
-
- def disable_snmp_agent(self, action_map=None, error_map=None):
- """Disable snmp.
-
- :param action_map:
- :param error_map:
- :return:
- """
- return CommandTemplateExecutor(
- cli_service=self._cli_service,
- command_template=enable_disable_snmp.DISABLE_SNMP_AGENT,
- action_map=action_map,
- error_map=error_map,
- ).execute_command()
-
- def set_snmp_version(self, action_map=None, error_map=None):
- """Set version.
-
- :param action_map:
- :param error_map:
- :return:
- """
- return CommandTemplateExecutor(
- cli_service=self._cli_service,
- command_template=enable_disable_snmp.SET_SNMP_VERSION,
- action_map=action_map,
- error_map=error_map,
- ).execute_command(snmp_version=self.SNMP_AGENT_VERSION)
-
-
-class SnmpV2Actions(BaseSnmpActions):
- def set_snmp_read_community(self, snmp_community, action_map=None, error_map=None):
- """Set read community.
-
- :param snmp_community:
- :param action_map:
- :param error_map:
- :return:
- """
- return CommandTemplateExecutor(
- cli_service=self._cli_service,
- command_template=enable_disable_snmp.SET_RO_SNMP_COMMUNITY,
- action_map=action_map,
- error_map=error_map,
- ).execute_command(name=snmp_community)
-
- def set_snmp_write_community(self, snmp_community, action_map=None, error_map=None):
- """Set write community.
-
- :param snmp_community:
- :param action_map:
- :param error_map:
- :return:
- """
- return CommandTemplateExecutor(
- cli_service=self._cli_service,
- command_template=enable_disable_snmp.SET_RW_SNMP_COMMUNITY,
- action_map=action_map,
- error_map=error_map,
- ).execute_command(name=snmp_community)
-
- def delete_snmp_community(self, snmp_community, action_map=None, error_map=None):
- """Delete snmp community.
-
- :param snmp_community:
- :param action_map:
- :param error_map:
- :return:
- """
- return CommandTemplateExecutor(
- cli_service=self._cli_service,
- command_template=enable_disable_snmp.DELETE_SNMP_COMMUNITY,
- action_map=action_map,
- error_map=error_map,
- ).execute_command(name=snmp_community)
-
-
-class SnmpV3Actions(BaseSnmpActions):
- SNMP_AGENT_VERSION = "v3-Only"
-
- AUTH_COMMAND_MAP = {
- SNMPV3Parameters.AUTH_MD5: "MD5",
- SNMPV3Parameters.AUTH_SHA: "SHA1",
- }
-
- PRIV_COMMAND_MAP = {
- SNMPV3Parameters.PRIV_NO_PRIV: "",
- SNMPV3Parameters.PRIV_DES: "DES",
- SNMPV3Parameters.PRIV_AES128: "AES",
- }
-
- def add_snmp_user(
- self,
- snmp_user,
- snmp_password,
- snmp_priv_key,
- snmp_auth_proto,
- snmp_priv_proto,
- action_map=None,
- error_map=None,
- ):
- """Add snmp user.
-
- :param snmp_user:
- :param snmp_password:
- :param snmp_priv_key:
- :param snmp_auth_proto:
- :param snmp_priv_proto:
- :param action_map:
- :param error_map:
- :return:
- """
- try:
- auth_command_template = self.AUTH_COMMAND_MAP[snmp_auth_proto]
- except KeyError:
- raise Exception(
- "Authentication protocol {} is not supported".format(snmp_auth_proto)
- )
-
- try:
- priv_command_template = self.PRIV_COMMAND_MAP[snmp_priv_proto]
- except KeyError:
- raise Exception(
- "Privacy Protocol {} is not supported".format(snmp_priv_proto)
- )
-
- if not priv_command_template:
- return CommandTemplateExecutor(
- cli_service=self._cli_service,
- command_template=enable_disable_snmp.SET_V3_SNMP_USER_NO_PRIV,
- action_map=action_map,
- error_map=error_map,
- ).execute_command(
- user=snmp_user,
- password=snmp_password,
- auth_protocol=auth_command_template,
- )
-
- return CommandTemplateExecutor(
- cli_service=self._cli_service,
- command_template=enable_disable_snmp.SET_V3_SNMP_USER_PRIV,
- action_map=action_map,
- error_map=error_map,
- ).execute_command(
- user=snmp_user,
- password=snmp_password,
- auth_protocol=auth_command_template,
- private_key=snmp_priv_key,
- priv_encrypt_protocol=priv_command_template,
- )
-
- def delete_snmp_user(self, snmp_user, action_map=None, error_map=None):
- """Delete snmp user.
-
- :param snmp_user:
- :param action_map:
- :param error_map:
- :return:
- """
- return CommandTemplateExecutor(
- cli_service=self._cli_service,
- command_template=enable_disable_snmp.DELETE_V3_SNMP_USER,
- action_map=action_map,
- error_map=error_map,
- ).execute_command(user=snmp_user)
diff --git a/cloudshell/checkpoint/gaia/command_actions/system_actions.py b/cloudshell/checkpoint/gaia/command_actions/system_actions.py
deleted file mode 100644
index ee34ecd..0000000
--- a/cloudshell/checkpoint/gaia/command_actions/system_actions.py
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/python
-# -*- coding: utf-8 -*-
-
-
-class SystemActions(object):
- def __init__(self, cli_service, logger):
- """Reboot actions.
-
- :param cli_service: default mode cli_service
- :type cli_service: CliService
- :param logger:
- :type logger: Logger
- :return:
- """
- self._cli_service = cli_service
- self._logger = logger
diff --git a/cloudshell/checkpoint/gaia/command_templates/error_map.py b/cloudshell/checkpoint/gaia/command_templates/error_map.py
deleted file mode 100644
index 656e63b..0000000
--- a/cloudshell/checkpoint/gaia/command_templates/error_map.py
+++ /dev/null
@@ -1,25 +0,0 @@
-from collections import OrderedDict
-
-BASIC_ERRORS = OrderedDict(
- [
- ("[Cc]onfiguration lock present", "Configuration lock present"),
- ("Failed to maintain the lock", "Failed to maintain the lock."),
- ("Incomplete command", "Incomplete command."),
- ("No such file or directory", "No such file or directory"),
- ("[Ii]nvalid command", "Invalid command"),
- ]
-)
-
-PASSWORD_ERROR_MAP = OrderedDict(
- [
- (
- "must be at least",
- "Authentication pass phrase must be at least 8 characters",
- ),
- (
- "not complex enough",
- "Password is not complex enough; try mixing more different kinds "
- "of characters (upper case, lower case, digits, and punctuation)",
- ),
- ]
-)
diff --git a/cloudshell/checkpoint/gaia/flows/__init__.py b/cloudshell/checkpoint/gaia/flows/__init__.py
deleted file mode 100644
index b36383a..0000000
--- a/cloudshell/checkpoint/gaia/flows/__init__.py
+++ /dev/null
@@ -1,3 +0,0 @@
-from pkgutil import extend_path
-
-__path__ = extend_path(__path__, __name__)
diff --git a/cloudshell/checkpoint/gaia/flows/checkpoint_autoload_flow.py b/cloudshell/checkpoint/gaia/flows/checkpoint_autoload_flow.py
deleted file mode 100644
index 260aa0b..0000000
--- a/cloudshell/checkpoint/gaia/flows/checkpoint_autoload_flow.py
+++ /dev/null
@@ -1,81 +0,0 @@
-#!/usr/bin/python
-# -*- coding: utf-8 -*-
-import re
-
-from cloudshell.shell.flows.autoload.basic_flow import AbstractAutoloadFlow
-
-from cloudshell.checkpoint.gaia.autoload.checkpoint_gaia_snmp_autoload import (
- CheckpointSNMPAutoload,
-)
-
-
-class CheckpointSnmpAutoloadFlow(AbstractAutoloadFlow):
- def __init__(self, logger, snmp_configurator):
- super().__init__(logger)
- self._snmp_configurator = snmp_configurator
-
- def _autoload_flow(self, supported_os, resource_model):
- with self._snmp_configurator.get_service() as snmp_service:
- snmp_autoload = CheckpointSNMPAutoload(snmp_service, self._logger)
- if not self._is_valid_device_os(supported_os, snmp_autoload.device_info):
- raise Exception(self.__class__.__name__, "Unsupported device OS")
-
- snmp_autoload.load_mibs()
-
- snmp_autoload.build_root(resource_model)
- chassis_table = snmp_autoload.build_chassis(resource_model)
- snmp_autoload.build_power_modules(resource_model, chassis_table)
- snmp_autoload.build_ports(resource_model, chassis_table)
- snmp_autoload.build_port_channels(resource_model)
- autoload_details = resource_model.build()
- return autoload_details
-
- def _is_valid_device_os(self, supported_os, device_info):
- """Validate device OS using snmp.
-
- :return: True or False
- """
- self._logger.debug("Detected system description: '{0}'".format(device_info))
- result = re.search(
- r"({0})".format("|".join(supported_os)),
- device_info,
- flags=re.DOTALL | re.IGNORECASE,
- )
-
- if result:
- return True
- else:
- error_message = (
- "Incompatible driver! Please use this driver "
- "for '{0}' operation system(s)".format(str(tuple(supported_os)))
- )
- self._logger.error(error_message)
- return False
-
- def _log_device_details(self, autoload_details):
- """Logging autoload details.
-
- :param autoload_details:
- :return:
- """
- self._logger.debug("-------------------- ----------------------")
- for resource in autoload_details.resources:
- self._logger.debug(
- "{0:15}, {1:20}, {2}".format(
- str(resource.relative_address),
- resource.name,
- resource.unique_identifier,
- )
- )
- self._logger.debug("-------------------- ----------------------")
-
- self._logger.debug("-------------------- ---------------------")
- for attribute in autoload_details.attributes:
- self._logger.debug(
- "-- {0:15}, {1:60}, {2}".format(
- str(attribute.relative_address),
- attribute.attribute_name,
- attribute.attribute_value,
- )
- )
- self._logger.debug("-------------------- ---------------------")
diff --git a/cloudshell/checkpoint/gaia/flows/checkpoint_configuration_flow.py b/cloudshell/checkpoint/gaia/flows/checkpoint_configuration_flow.py
deleted file mode 100644
index 054a28e..0000000
--- a/cloudshell/checkpoint/gaia/flows/checkpoint_configuration_flow.py
+++ /dev/null
@@ -1,64 +0,0 @@
-#!/usr/bin/python
-# -*- coding: utf-8 -*-
-
-from cloudshell.shell.flows.configuration.basic_flow import AbstractConfigurationFlow
-
-from cloudshell.checkpoint.gaia.command_actions.file_fransfer_actions import (
- FileTransferActions,
- Url,
-)
-from cloudshell.checkpoint.gaia.command_actions.save_restore_actions import (
- SaveRestoreActions,
-)
-
-
-class CheckpointConfigurationFlow(AbstractConfigurationFlow):
- def __init__(self, logger, resource_config, cli_configurator):
- super(CheckpointConfigurationFlow, self).__init__(logger, resource_config)
- self._cli_configurator = cli_configurator
-
- def _save_flow(self, folder_path, configuration_type, vrf_management_name):
- with self._cli_configurator.enable_mode_service() as cli_service:
- save_restore_actions = SaveRestoreActions(cli_service, self._logger)
- file_transfer_actions = FileTransferActions(cli_service, self._logger)
-
- url_obj = Url.get_url_obj(folder_path)
-
- # save config to local fs
- save_restore_actions.save_local(url_obj.filename)
-
- if url_obj.scheme == self._file_system:
- return
-
- with cli_service.enter_mode(self._cli_configurator.config_mode):
- # Transfer config to remote
- try:
- file_transfer_actions.upload(url_obj.filename, folder_path)
- finally:
- # remove local file
- save_restore_actions.remove_local_file(url_obj.filename)
-
- def _restore_flow(
- self, path, configuration_type, restore_method, vrf_management_name
- ):
- with self._cli_configurator.enable_mode_service() as cli_service:
- save_restore_actions = SaveRestoreActions(cli_service, self._logger)
- file_transfer_actions = FileTransferActions(cli_service, self._logger)
-
- url_obj = Url.get_url_obj(path)
-
- if url_obj.scheme != url_obj.SCHEME.LOCAL:
- with cli_service.enter_mode(self._cli_configurator.config_mode):
- file_transfer_actions.download(path, url_obj.filename)
-
- # restore local
- save_restore_actions.restore(url_obj.filename)
-
- # remove local file
- if url_obj.scheme != url_obj.SCHEME.LOCAL:
- with cli_service.enter_mode(self._cli_configurator.config_mode):
- save_restore_actions.remove_local_file(url_obj.filename)
-
- @property
- def _file_system(self):
- return Url.SCHEME.LOCAL
diff --git a/cloudshell/checkpoint/gaia/flows/checkpoint_enable_disable_snmp_flow.py b/cloudshell/checkpoint/gaia/flows/checkpoint_enable_disable_snmp_flow.py
deleted file mode 100644
index 9b61921..0000000
--- a/cloudshell/checkpoint/gaia/flows/checkpoint_enable_disable_snmp_flow.py
+++ /dev/null
@@ -1,115 +0,0 @@
-from cloudshell.snmp.snmp_configurator import EnableDisableSnmpFlowInterface
-
-from cloudshell.checkpoint.gaia.command_actions.snmp_actions import (
- SnmpV2Actions,
- SnmpV3Actions,
-)
-
-
-class CheckpointEnableDisableSnmpFlow(EnableDisableSnmpFlowInterface):
- def __init__(self, cli_configurator, logger):
- """Enable Disable snmp flow.
- :param cloudshell.checkpoint.gaia.cli.checkpoint_cli_configurator.CheckpointCliConfigurator cli_configurator: # noqa
- :param logging.Logger logger:
- :return:
- """
- self._cli_configurator = cli_configurator
- self._logger = logger
-
- def enable_snmp(self, snmp_parameters):
- with self._cli_configurator.enable_mode_service() as cli_service:
- if snmp_parameters.version == snmp_parameters.SnmpVersion.V3:
- enable_snmp_func = self._enable_snmp_v3
- else:
- enable_snmp_func = self._enable_snmp_v2
-
- enable_snmp_func(cli_service=cli_service, snmp_parameters=snmp_parameters)
-
- def disable_snmp(self, snmp_parameters):
- with self._cli_configurator.enable_mode_service() as cli_service:
- if snmp_parameters.version == snmp_parameters.SnmpVersion.V3:
- disable_snmp_func = self._disable_snmp_v3
- else:
- disable_snmp_func = self._disable_snmp_v2
-
- disable_snmp_func(cli_service=cli_service, snmp_parameters=snmp_parameters)
-
- def _enable_snmp_v2(self, cli_service, snmp_parameters):
- """Enable SNMPv2.
-
- :param cloudshell.cli.cli_service_impl.CliServiceImpl cli_service:
- :param cloudshell.snmp.snmp_parameters.SNMPReadParameters snmp_parameters:
- :return: commands output
- """
- snmp_community = snmp_parameters.snmp_community
-
- if not snmp_community:
- raise Exception("SNMP community can not be empty")
-
- snmp_v2_actions = SnmpV2Actions(cli_service=cli_service, logger=self._logger)
- output = snmp_v2_actions.enable_snmp_agent()
- output += snmp_v2_actions.set_snmp_version()
-
- if snmp_parameters.is_read_only:
- output += snmp_v2_actions.set_snmp_read_community(
- snmp_community=snmp_community
- )
- else:
- output += snmp_v2_actions.set_snmp_write_community(
- snmp_community=snmp_community
- )
- return output
-
- def _enable_snmp_v3(self, cli_service, snmp_parameters):
- """Enable SNMPv3.
-
- :param cloudshell.cli.cli_service_impl.CliServiceImpl cli_service:
- :param cloudshell.snmp.snmp_parameters.SNMPV3Parameters snmp_parameters:
- :return: commands output
- """
- snmp_v3_actions = SnmpV3Actions(cli_service=cli_service, logger=self._logger)
- output = snmp_v3_actions.enable_snmp_agent()
- output += snmp_v3_actions.set_snmp_version()
-
- output += snmp_v3_actions.add_snmp_user(
- snmp_user=snmp_parameters.snmp_user,
- snmp_password=snmp_parameters.snmp_password,
- snmp_priv_key=snmp_parameters.snmp_private_key,
- snmp_auth_proto=snmp_parameters.snmp_auth_protocol,
- snmp_priv_proto=snmp_parameters.snmp_private_key_protocol,
- )
-
- return output
-
- def _disable_snmp_v2(self, cli_service, snmp_parameters):
- """Disable SNMPv2.
-
- :param cloudshell.cli.cli_service_impl.CliServiceImpl cli_service:
- :param cloudshell.snmp.snmp_parameters.SNMPReadParameters snmp_parameters:
- :return: commands output
- """
- snmp_community = snmp_parameters.snmp_community
-
- if not snmp_community:
- raise Exception("SNMP community can not be empty")
-
- snmp_v2_actions = SnmpV2Actions(cli_service=cli_service, logger=self._logger)
-
- output = snmp_v2_actions.delete_snmp_community(snmp_community=snmp_community)
- output += snmp_v2_actions.disable_snmp_agent()
-
- return output
-
- def _disable_snmp_v3(self, cli_service, snmp_parameters):
- """Disable SNMPv3.
-
- :param cloudshell.cli.cli_service_impl.CliServiceImpl cli_service:
- :param cloudshell.snmp.snmp_parameters.SNMPV3Parameters snmp_parameters:
- :return: commands output
- """
- snmp_v3_actions = SnmpV3Actions(cli_service, self._logger)
-
- output = snmp_v3_actions.delete_snmp_user(snmp_user=snmp_parameters.snmp_user)
- output += snmp_v3_actions.disable_snmp_agent()
-
- return output
diff --git a/cloudshell/checkpoint/gaia/flows/checkpoint_load_firmware_flow.py b/cloudshell/checkpoint/gaia/flows/checkpoint_load_firmware_flow.py
deleted file mode 100644
index 4f3e7fa..0000000
--- a/cloudshell/checkpoint/gaia/flows/checkpoint_load_firmware_flow.py
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/python
-# -*- coding: utf-8 -*-
-
-from cloudshell.shell.flows.firmware.basic_flow import AbstractFirmwareFlow
-
-
-class CheckpointLoadFirmwareFlow(AbstractFirmwareFlow):
- def _load_firmware_flow(self, path, vrf_management_name, timeout):
- raise NotImplementedError("Load firmware is not implemented")
diff --git a/cloudshell/checkpoint/gaia/flows/checkpoint_state_flow.py b/cloudshell/checkpoint/gaia/flows/checkpoint_state_flow.py
deleted file mode 100644
index 9601f48..0000000
--- a/cloudshell/checkpoint/gaia/flows/checkpoint_state_flow.py
+++ /dev/null
@@ -1,20 +0,0 @@
-from cloudshell.shell.flows.state.basic_flow import StateFlow
-
-
-class ShutdownOkException(Exception):
- pass
-
-
-class CheckpointStateFlow(StateFlow):
- def shutdown(self):
- def exit_with_exception(session, logger):
- raise ShutdownOkException()
-
- with self._cli_configurator.config_mode_service() as cli_service:
- try:
- return cli_service.send_command(
- "shutdown -h now",
- action_map={r"system is going down": exit_with_exception},
- )
- except ShutdownOkException:
- return "Shutdown process is running"
diff --git a/cloudshell/checkpoint/gaia/mibs/CHECKPOINT-MIB.py b/cloudshell/checkpoint/gaia/mibs/CHECKPOINT-MIB.py
deleted file mode 100644
index acc6dd6..0000000
--- a/cloudshell/checkpoint/gaia/mibs/CHECKPOINT-MIB.py
+++ /dev/null
@@ -1,2613 +0,0 @@
-#
-# PySNMP MIB module CHECKPOINT-MIB (http://pysnmp.sf.net)
-# ASN.1 source http://mibs.snmplabs.com:80/asn1/CHECKPOINT-MIB
-# Produced by pysmi-0.1.3 at Tue Aug 20 12:40:20 2019
-# On host ? platform ? version ? by user ?
-# Using Python version 2.7.14 (v2.7.14:84471935ed, Sep 16 2017, 20:19:30) [MSC v.1500 32 bit (Intel)]
-#
-Integer, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString")
-NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
-ConstraintsUnion, SingleValueConstraint, ConstraintsIntersection, ValueSizeConstraint, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "SingleValueConstraint", "ConstraintsIntersection", "ValueSizeConstraint", "ValueRangeConstraint")
-NotificationGroup, ModuleCompliance, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance", "ObjectGroup")
-Integer32, MibScalar, MibTable, MibTableRow, MibTableColumn, NotificationType, MibIdentifier, Bits, TimeTicks, Counter64, Unsigned32, enterprises, ModuleIdentity, Gauge32, iso, ObjectIdentity, IpAddress, Counter32 = mibBuilder.importSymbols("SNMPv2-SMI", "Integer32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "NotificationType", "MibIdentifier", "Bits", "TimeTicks", "Counter64", "Unsigned32", "enterprises", "ModuleIdentity", "Gauge32", "iso", "ObjectIdentity", "IpAddress", "Counter32")
-DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
-checkpoint = ModuleIdentity((1, 3, 6, 1, 4, 1, 2620))
-if mibBuilder.loadTexts: checkpoint.setRevisions(('2013-12-26 13:09',))
-if mibBuilder.loadTexts: checkpoint.setLastUpdated('201312261309Z')
-products = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1))
-tables = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 500))
-fw = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 1))
-vpn = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 2))
-fg = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 3))
-ha = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 5))
-svn = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 6))
-mngmt = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 7))
-wam = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 8))
-dtps = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 9))
-ls = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 11))
-vsx = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 16))
-smartDefense = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17))
-avi = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 24))
-eventiaAnalyzer = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 25))
-uf = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 29))
-ms = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 30))
-voip = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 31))
-identityAwareness = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 38))
-applicationControl = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 39))
-thresholds = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 42))
-advancedUrlFiltering = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 43))
-dlp = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 44))
-amw = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 46))
-te = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 49))
-sxl = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 36))
-vsxVsSupported = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 16, 11), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxVsSupported.setStatus('current')
-vsxVsConfigured = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 16, 12), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxVsConfigured.setStatus('current')
-vsxVsInstalled = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 16, 13), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxVsInstalled.setStatus('current')
-vsxStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 16, 22))
-vsxStatusTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 16, 22, 1), )
-if mibBuilder.loadTexts: vsxStatusTable.setStatus('current')
-vsxStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 16, 22, 1, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "vsxStatusVSId"))
-if mibBuilder.loadTexts: vsxStatusEntry.setStatus('current')
-vsxStatusVSId = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 22, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxStatusVSId.setStatus('current')
-vsxStatusVRId = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 22, 1, 1, 2), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxStatusVRId.setStatus('current')
-vsxStatusVsName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 22, 1, 1, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxStatusVsName.setStatus('current')
-vsxStatusVsType = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 22, 1, 1, 4), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxStatusVsType.setStatus('current')
-vsxStatusMainIP = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 22, 1, 1, 5), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxStatusMainIP.setStatus('current')
-vsxStatusPolicyName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 22, 1, 1, 6), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxStatusPolicyName.setStatus('current')
-vsxStatusVsPolicyType = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 22, 1, 1, 7), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxStatusVsPolicyType.setStatus('current')
-vsxStatusSicTrustState = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 22, 1, 1, 8), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxStatusSicTrustState.setStatus('current')
-vsxStatusHAState = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 22, 1, 1, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxStatusHAState.setStatus('current')
-vsxStatusVSWeight = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 22, 1, 1, 10), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxStatusVSWeight.setStatus('current')
-vsxStatusCPUUsageTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 16, 22, 2), )
-if mibBuilder.loadTexts: vsxStatusCPUUsageTable.setStatus('current')
-vsxStatusCPUUsageEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 16, 22, 2, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "vsxStatusVSId"))
-if mibBuilder.loadTexts: vsxStatusCPUUsageEntry.setStatus('current')
-vsxStatusCPUUsage1sec = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 22, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxStatusCPUUsage1sec.setStatus('current')
-vsxStatusCPUUsage10sec = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 22, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxStatusCPUUsage10sec.setStatus('current')
-vsxStatusCPUUsage1min = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 22, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxStatusCPUUsage1min.setStatus('current')
-vsxStatusCPUUsage1hr = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 22, 2, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxStatusCPUUsage1hr.setStatus('current')
-vsxStatusCPUUsage24hr = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 22, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxStatusCPUUsage24hr.setStatus('current')
-vsxStatusCPUUsageVSId = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 22, 2, 1, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxStatusCPUUsageVSId.setStatus('current')
-vsxCounters = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 16, 23))
-vsxCountersTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 16, 23, 1), )
-if mibBuilder.loadTexts: vsxCountersTable.setStatus('current')
-vsxCountersEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 16, 23, 1, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "vsxStatusVSId"))
-if mibBuilder.loadTexts: vsxCountersEntry.setStatus('current')
-vsxCountersVSId = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 23, 1, 1, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxCountersVSId.setStatus('current')
-vsxCountersConnNum = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 23, 1, 1, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxCountersConnNum.setStatus('current')
-vsxCountersConnPeakNum = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 23, 1, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxCountersConnPeakNum.setStatus('current')
-vsxCountersConnTableLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 23, 1, 1, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxCountersConnTableLimit.setStatus('current')
-vsxCountersPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 23, 1, 1, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxCountersPackets.setStatus('current')
-vsxCountersDroppedTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 23, 1, 1, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxCountersDroppedTotal.setStatus('current')
-vsxCountersAcceptedTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 23, 1, 1, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxCountersAcceptedTotal.setStatus('current')
-vsxCountersRejectedTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 23, 1, 1, 8), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxCountersRejectedTotal.setStatus('current')
-vsxCountersBytesAcceptedTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 23, 1, 1, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxCountersBytesAcceptedTotal.setStatus('current')
-vsxCountersBytesDroppedTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 23, 1, 1, 10), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxCountersBytesDroppedTotal.setStatus('current')
-vsxCountersBytesRejectedTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 23, 1, 1, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxCountersBytesRejectedTotal.setStatus('current')
-vsxCountersLoggedTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 23, 1, 1, 12), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxCountersLoggedTotal.setStatus('current')
-vsxCountersIsDataValid = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 16, 23, 1, 1, 13), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("invalid", 0), ("valid", 1)))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsxCountersIsDataValid.setStatus('current')
-raUsersTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 500, 9000), )
-if mibBuilder.loadTexts: raUsersTable.setStatus('current')
-raUsersEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 500, 9000, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "raInternalIpAddr"))
-if mibBuilder.loadTexts: raUsersEntry.setStatus('current')
-raInternalIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9000, 1, 1), IpAddress()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raInternalIpAddr.setStatus('current')
-raExternalIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9000, 1, 19), IpAddress()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raExternalIpAddr.setStatus('current')
-raUserState = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9000, 1, 20), Integer32().subtype(subtypeSpec=SingleValueConstraint(3, 4, 129, 130, 131, 132)).clone(namedValues=NamedValues(("active", 3), ("destroy", 4), ("idle", 129), ("phase1", 130), ("down", 131), ("init", 132)))).setMaxAccess("readwrite")
-if mibBuilder.loadTexts: raUserState.setStatus('current')
-raOfficeMode = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9000, 1, 21), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raOfficeMode.setStatus('current')
-raIkeOverTCP = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9000, 1, 22), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raIkeOverTCP.setStatus('current')
-raUseUDPEncap = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9000, 1, 23), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raUseUDPEncap.setStatus('current')
-raVisitorMode = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9000, 1, 24), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raVisitorMode.setStatus('current')
-raRouteTraffic = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9000, 1, 25), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raRouteTraffic.setStatus('current')
-raCommunity = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9000, 1, 26), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raCommunity.setStatus('current')
-raTunnelEncAlgorithm = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9000, 1, 27), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 5, 7, 9, 129, 130)).clone(namedValues=NamedValues(("espDES", 1), ("esp3DES", 2), ("espCAST", 5), ("esp3IDEA", 7), ("espNULL", 9), ("espAES128", 129), ("espAES256", 130)))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raTunnelEncAlgorithm.setStatus('current')
-raTunnelAuthMethod = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9000, 1, 28), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3, 4, 5, 129, 130)).clone(namedValues=NamedValues(("preshared-key", 1), ("dss-signature", 2), ("rsa-signature", 3), ("rsa-encryption", 4), ("rev-rsa-encryption", 5), ("xauth", 129), ("crack", 130)))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raTunnelAuthMethod.setStatus('current')
-raLogonTime = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9000, 1, 29), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raLogonTime.setStatus('current')
-tunnelTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 500, 9002), )
-if mibBuilder.loadTexts: tunnelTable.setStatus('current')
-tunnelEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 500, 9002, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "tunnelPeerIpAddr"))
-if mibBuilder.loadTexts: tunnelEntry.setStatus('current')
-tunnelPeerIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9002, 1, 1), IpAddress()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: tunnelPeerIpAddr.setStatus('current')
-tunnelPeerObjName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9002, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: tunnelPeerObjName.setStatus('current')
-tunnelState = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9002, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(3, 4, 129, 130, 131, 132)).clone(namedValues=NamedValues(("active", 3), ("destroy", 4), ("idle", 129), ("phase1", 130), ("down", 131), ("init", 132)))).setMaxAccess("readwrite")
-if mibBuilder.loadTexts: tunnelState.setStatus('current')
-tunnelCommunity = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9002, 1, 4), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: tunnelCommunity.setStatus('current')
-tunnelNextHop = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9002, 1, 5), IpAddress()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: tunnelNextHop.setStatus('current')
-tunnelInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9002, 1, 6), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: tunnelInterface.setStatus('current')
-tunnelSourceIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9002, 1, 7), IpAddress()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: tunnelSourceIpAddr.setStatus('current')
-tunnelLinkPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9002, 1, 8), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("primary", 0), ("backup", 1), ("on-demand", 2)))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: tunnelLinkPriority.setStatus('current')
-tunnelProbState = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9002, 1, 9), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("unknown", 0), ("alive", 1), ("dead", 2)))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: tunnelProbState.setStatus('current')
-tunnelPeerType = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9002, 1, 10), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3)).clone(namedValues=NamedValues(("regular", 1), ("daip", 2), ("robo", 3)))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: tunnelPeerType.setStatus('current')
-tunnelType = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9002, 1, 11), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2)).clone(namedValues=NamedValues(("regular", 1), ("permanent", 2)))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: tunnelType.setStatus('current')
-permanentTunnelTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 500, 9003), )
-if mibBuilder.loadTexts: permanentTunnelTable.setStatus('current')
-permanentTunnelEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 500, 9003, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "permanentTunnelPeerIpAddr"))
-if mibBuilder.loadTexts: permanentTunnelEntry.setStatus('current')
-permanentTunnelPeerIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9003, 1, 1), IpAddress()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: permanentTunnelPeerIpAddr.setStatus('current')
-permanentTunnelPeerObjName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9003, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: permanentTunnelPeerObjName.setStatus('current')
-permanentTunnelState = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9003, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(3, 4, 129, 130, 131, 132)).clone(namedValues=NamedValues(("active", 3), ("destroy", 4), ("idle", 129), ("phase1", 130), ("down", 131), ("init", 132)))).setMaxAccess("readwrite")
-if mibBuilder.loadTexts: permanentTunnelState.setStatus('current')
-permanentTunnelCommunity = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9003, 1, 4), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: permanentTunnelCommunity.setStatus('current')
-permanentTunnelNextHop = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9003, 1, 5), IpAddress()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: permanentTunnelNextHop.setStatus('current')
-permanentTunnelInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9003, 1, 6), IpAddress()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: permanentTunnelInterface.setStatus('current')
-permanentTunnelSourceIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9003, 1, 7), IpAddress()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: permanentTunnelSourceIpAddr.setStatus('current')
-permanentTunnelLinkPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9003, 1, 8), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("primary", 0), ("backup", 1), ("on-demand", 2)))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: permanentTunnelLinkPriority.setStatus('current')
-permanentTunnelProbState = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9003, 1, 9), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("unknown", 0), ("alive", 1), ("dead", 2)))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: permanentTunnelProbState.setStatus('current')
-permanentTunnelPeerType = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 500, 9003, 1, 10), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3)).clone(namedValues=NamedValues(("regular", 1), ("daip", 2), ("robo", 3)))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: permanentTunnelPeerType.setStatus('current')
-fwPolicyStat = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 1, 25))
-fwPerfStat = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26))
-fwHmem = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 1))
-fwKmem = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 2))
-fwInspect = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 3))
-fwCookies = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 4))
-fwChains = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 5))
-fwFragments = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 6))
-fwUfp = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 8))
-fwSS = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9))
-fwConnectionsStat = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 11))
-fwHmem64 = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 12))
-fwSS_http = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1)).setLabel("fwSS-http")
-fwSS_ftp = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2)).setLabel("fwSS-ftp")
-fwSS_telnet = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 3)).setLabel("fwSS-telnet")
-fwSS_rlogin = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 4)).setLabel("fwSS-rlogin")
-fwSS_ufp = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 5)).setLabel("fwSS-ufp")
-fwSS_smtp = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6)).setLabel("fwSS-smtp")
-fwSS_POP3 = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7)).setLabel("fwSS-POP3")
-fwSS_av_total = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 10)).setLabel("fwSS-av-total")
-fwModuleState = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwModuleState.setStatus('current')
-fwFilterName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwFilterName.setStatus('current')
-fwFilterDate = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwFilterDate.setStatus('current')
-fwAccepted = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwAccepted.setStatus('current')
-fwRejected = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwRejected.setStatus('current')
-fwDropped = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwDropped.setStatus('current')
-fwLogged = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 7), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwLogged.setStatus('current')
-fwMajor = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 8), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwMajor.setStatus('current')
-fwMinor = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 9), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwMinor.setStatus('current')
-fwProduct = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 10), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwProduct.setStatus('current')
-fwEvent = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwEvent.setStatus('current')
-fwSICTrustState = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 12), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSICTrustState.setStatus('current')
-fwTrapPrefix = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 1, 0))
-fwTrap = NotificationType((1, 3, 6, 1, 4, 1, 2620, 1, 1, 0, 1)).setObjects(("CHECKPOINT-MIB", "fwEvent"))
-if mibBuilder.loadTexts: fwTrap.setStatus('current')
-fwProdName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 21), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwProdName.setStatus('current')
-fwVerMajor = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 22), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwVerMajor.setStatus('current')
-fwVerMinor = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 23), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwVerMinor.setStatus('current')
-fwKernelBuild = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 24), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwKernelBuild.setStatus('current')
-fwPolicyName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 25, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwPolicyName.setStatus('current')
-fwInstallTime = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 25, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwInstallTime.setStatus('current')
-fwNumConn = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 25, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwNumConn.setStatus('current')
-fwPeakNumConn = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 25, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwPeakNumConn.setStatus('current')
-fwIfTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 1, 25, 5), )
-if mibBuilder.loadTexts: fwIfTable.setStatus('current')
-fwConnTableLimit = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 25, 10), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwConnTableLimit.setStatus('current')
-fwIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 1, 25, 5, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "fwIfIndex"))
-if mibBuilder.loadTexts: fwIfEntry.setStatus('current')
-fwIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 25, 5, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwIfIndex.setStatus('current')
-fwIfName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 25, 5, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwIfName.setStatus('current')
-fwAcceptPcktsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 25, 5, 1, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwAcceptPcktsIn.setStatus('current')
-fwAcceptPcktsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 25, 5, 1, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwAcceptPcktsOut.setStatus('current')
-fwAcceptBytesIn = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 25, 5, 1, 7), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwAcceptBytesIn.setStatus('current')
-fwAcceptBytesOut = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 25, 5, 1, 8), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwAcceptBytesOut.setStatus('current')
-fwDropPcktsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 25, 5, 1, 9), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwDropPcktsIn.setStatus('current')
-fwDropPcktsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 25, 5, 1, 10), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwDropPcktsOut.setStatus('current')
-fwRejectPcktsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 25, 5, 1, 11), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwRejectPcktsIn.setStatus('current')
-fwRejectPcktsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 25, 5, 1, 12), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwRejectPcktsOut.setStatus('current')
-fwLogIn = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 25, 5, 1, 13), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwLogIn.setStatus('current')
-fwLogOut = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 25, 5, 1, 14), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwLogOut.setStatus('current')
-fwPacketsRate = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 25, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwPacketsRate.setStatus('current')
-fwDroppedTotalRate = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 25, 16), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwDroppedTotalRate.setStatus('current')
-fwAcceptedBytesTotalRate = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 25, 8), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwAcceptedBytesTotalRate.setStatus('current')
-fwDroppedBytesTotalRate = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 25, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwDroppedBytesTotalRate.setStatus('current')
-fwHmem_block_size = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 1, 1), Integer32()).setLabel("fwHmem-block-size").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem_block_size.setStatus('current')
-fwHmem_requested_bytes = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 1, 2), Integer32()).setLabel("fwHmem-requested-bytes").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem_requested_bytes.setStatus('current')
-fwHmem_initial_allocated_bytes = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 1, 3), Integer32()).setLabel("fwHmem-initial-allocated-bytes").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem_initial_allocated_bytes.setStatus('current')
-fwHmem_initial_allocated_blocks = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 1, 4), Integer32()).setLabel("fwHmem-initial-allocated-blocks").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem_initial_allocated_blocks.setStatus('current')
-fwHmem_initial_allocated_pools = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 1, 5), Integer32()).setLabel("fwHmem-initial-allocated-pools").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem_initial_allocated_pools.setStatus('current')
-fwHmem_current_allocated_bytes = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 1, 6), Integer32()).setLabel("fwHmem-current-allocated-bytes").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem_current_allocated_bytes.setStatus('current')
-fwHmem_current_allocated_blocks = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 1, 7), Integer32()).setLabel("fwHmem-current-allocated-blocks").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem_current_allocated_blocks.setStatus('current')
-fwHmem_current_allocated_pools = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 1, 8), Integer32()).setLabel("fwHmem-current-allocated-pools").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem_current_allocated_pools.setStatus('current')
-fwHmem_maximum_bytes = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 1, 9), Integer32()).setLabel("fwHmem-maximum-bytes").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem_maximum_bytes.setStatus('current')
-fwHmem_maximum_pools = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 1, 10), Integer32()).setLabel("fwHmem-maximum-pools").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem_maximum_pools.setStatus('current')
-fwHmem_bytes_used = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 1, 11), Integer32()).setLabel("fwHmem-bytes-used").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem_bytes_used.setStatus('current')
-fwHmem_blocks_used = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 1, 12), Integer32()).setLabel("fwHmem-blocks-used").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem_blocks_used.setStatus('current')
-fwHmem_bytes_unused = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 1, 13), Integer32()).setLabel("fwHmem-bytes-unused").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem_bytes_unused.setStatus('current')
-fwHmem_blocks_unused = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 1, 14), Integer32()).setLabel("fwHmem-blocks-unused").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem_blocks_unused.setStatus('current')
-fwHmem_bytes_peak = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 1, 15), Integer32()).setLabel("fwHmem-bytes-peak").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem_bytes_peak.setStatus('current')
-fwHmem_blocks_peak = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 1, 16), Integer32()).setLabel("fwHmem-blocks-peak").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem_blocks_peak.setStatus('current')
-fwHmem_bytes_internal_use = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 1, 17), Integer32()).setLabel("fwHmem-bytes-internal-use").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem_bytes_internal_use.setStatus('current')
-fwHmem_number_of_items = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 1, 18), Integer32()).setLabel("fwHmem-number-of-items").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem_number_of_items.setStatus('current')
-fwHmem_alloc_operations = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 1, 19), Integer32()).setLabel("fwHmem-alloc-operations").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem_alloc_operations.setStatus('current')
-fwHmem_free_operations = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 1, 20), Integer32()).setLabel("fwHmem-free-operations").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem_free_operations.setStatus('current')
-fwHmem_failed_alloc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 1, 21), Integer32()).setLabel("fwHmem-failed-alloc").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem_failed_alloc.setStatus('current')
-fwHmem_failed_free = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 1, 22), Integer32()).setLabel("fwHmem-failed-free").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem_failed_free.setStatus('current')
-fwKmem_system_physical_mem = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 2, 1), Integer32()).setLabel("fwKmem-system-physical-mem").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwKmem_system_physical_mem.setStatus('current')
-fwKmem_available_physical_mem = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 2, 2), Integer32()).setLabel("fwKmem-available-physical-mem").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwKmem_available_physical_mem.setStatus('current')
-fwKmem_aix_heap_size = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 2, 3), Integer32()).setLabel("fwKmem-aix-heap-size").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwKmem_aix_heap_size.setStatus('current')
-fwKmem_bytes_used = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 2, 4), Integer32()).setLabel("fwKmem-bytes-used").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwKmem_bytes_used.setStatus('current')
-fwKmem_blocking_bytes_used = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 2, 5), Integer32()).setLabel("fwKmem-blocking-bytes-used").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwKmem_blocking_bytes_used.setStatus('current')
-fwKmem_non_blocking_bytes_used = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 2, 6), Integer32()).setLabel("fwKmem-non-blocking-bytes-used").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwKmem_non_blocking_bytes_used.setStatus('current')
-fwKmem_bytes_unused = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 2, 7), Integer32()).setLabel("fwKmem-bytes-unused").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwKmem_bytes_unused.setStatus('current')
-fwKmem_bytes_peak = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 2, 8), Integer32()).setLabel("fwKmem-bytes-peak").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwKmem_bytes_peak.setStatus('current')
-fwKmem_blocking_bytes_peak = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 2, 9), Integer32()).setLabel("fwKmem-blocking-bytes-peak").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwKmem_blocking_bytes_peak.setStatus('current')
-fwKmem_non_blocking_bytes_peak = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 2, 10), Integer32()).setLabel("fwKmem-non-blocking-bytes-peak").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwKmem_non_blocking_bytes_peak.setStatus('current')
-fwKmem_bytes_internal_use = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 2, 11), Integer32()).setLabel("fwKmem-bytes-internal-use").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwKmem_bytes_internal_use.setStatus('current')
-fwKmem_number_of_items = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 2, 12), Integer32()).setLabel("fwKmem-number-of-items").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwKmem_number_of_items.setStatus('current')
-fwKmem_alloc_operations = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 2, 13), Integer32()).setLabel("fwKmem-alloc-operations").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwKmem_alloc_operations.setStatus('current')
-fwKmem_free_operations = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 2, 14), Integer32()).setLabel("fwKmem-free-operations").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwKmem_free_operations.setStatus('current')
-fwKmem_failed_alloc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 2, 15), Integer32()).setLabel("fwKmem-failed-alloc").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwKmem_failed_alloc.setStatus('current')
-fwKmem_failed_free = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 2, 16), Integer32()).setLabel("fwKmem-failed-free").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwKmem_failed_free.setStatus('current')
-fwInspect_packets = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 3, 1), Integer32()).setLabel("fwInspect-packets").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwInspect_packets.setStatus('current')
-fwInspect_operations = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 3, 2), Integer32()).setLabel("fwInspect-operations").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwInspect_operations.setStatus('current')
-fwInspect_lookups = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 3, 3), Integer32()).setLabel("fwInspect-lookups").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwInspect_lookups.setStatus('current')
-fwInspect_record = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 3, 4), Integer32()).setLabel("fwInspect-record").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwInspect_record.setStatus('current')
-fwInspect_extract = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 3, 5), Integer32()).setLabel("fwInspect-extract").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwInspect_extract.setStatus('current')
-fwCookies_total = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 4, 1), Integer32()).setLabel("fwCookies-total").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwCookies_total.setStatus('current')
-fwCookies_allocfwCookies_total = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 4, 2), Integer32()).setLabel("fwCookies-allocfwCookies-total").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwCookies_allocfwCookies_total.setStatus('current')
-fwCookies_freefwCookies_total = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 4, 3), Integer32()).setLabel("fwCookies-freefwCookies-total").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwCookies_freefwCookies_total.setStatus('current')
-fwCookies_dupfwCookies_total = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 4, 4), Integer32()).setLabel("fwCookies-dupfwCookies-total").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwCookies_dupfwCookies_total.setStatus('current')
-fwCookies_getfwCookies_total = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 4, 5), Integer32()).setLabel("fwCookies-getfwCookies-total").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwCookies_getfwCookies_total.setStatus('current')
-fwCookies_putfwCookies_total = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 4, 6), Integer32()).setLabel("fwCookies-putfwCookies-total").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwCookies_putfwCookies_total.setStatus('current')
-fwCookies_lenfwCookies_total = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 4, 7), Integer32()).setLabel("fwCookies-lenfwCookies-total").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwCookies_lenfwCookies_total.setStatus('current')
-fwChains_alloc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 5, 1), Integer32()).setLabel("fwChains-alloc").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwChains_alloc.setStatus('current')
-fwChains_free = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 5, 2), Integer32()).setLabel("fwChains-free").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwChains_free.setStatus('current')
-fwFrag_fragments = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 6, 1), Integer32()).setLabel("fwFrag-fragments").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwFrag_fragments.setStatus('current')
-fwFrag_expired = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 6, 2), Integer32()).setLabel("fwFrag-expired").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwFrag_expired.setStatus('current')
-fwFrag_packets = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 6, 3), Integer32()).setLabel("fwFrag-packets").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwFrag_packets.setStatus('current')
-fwUfpHitRatio = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 8, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwUfpHitRatio.setStatus('current')
-fwUfpInspected = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 8, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwUfpInspected.setStatus('current')
-fwUfpHits = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 8, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwUfpHits.setStatus('current')
-fwSS_http_pid = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 1), Integer32()).setLabel("fwSS-http-pid").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_pid.setStatus('current')
-fwSS_http_proto = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 2), Integer32()).setLabel("fwSS-http-proto").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_proto.setStatus('current')
-fwSS_http_port = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 3), Integer32()).setLabel("fwSS-http-port").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_port.setStatus('current')
-fwSS_http_logical_port = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 4), Integer32()).setLabel("fwSS-http-logical-port").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_logical_port.setStatus('current')
-fwSS_http_max_avail_socket = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 5), Integer32()).setLabel("fwSS-http-max-avail-socket").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_max_avail_socket.setStatus('current')
-fwSS_http_socket_in_use_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 6), Integer32()).setLabel("fwSS-http-socket-in-use-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_socket_in_use_max.setStatus('current')
-fwSS_http_socket_in_use_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 7), Integer32()).setLabel("fwSS-http-socket-in-use-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_socket_in_use_curr.setStatus('current')
-fwSS_http_socket_in_use_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 8), Integer32()).setLabel("fwSS-http-socket-in-use-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_socket_in_use_count.setStatus('current')
-fwSS_http_sess_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 9), Integer32()).setLabel("fwSS-http-sess-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_sess_max.setStatus('current')
-fwSS_http_sess_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 10), Integer32()).setLabel("fwSS-http-sess-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_sess_curr.setStatus('current')
-fwSS_http_sess_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 11), Integer32()).setLabel("fwSS-http-sess-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_sess_count.setStatus('current')
-fwSS_http_auth_sess_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 12), Integer32()).setLabel("fwSS-http-auth-sess-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_auth_sess_max.setStatus('current')
-fwSS_http_auth_sess_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 13), Integer32()).setLabel("fwSS-http-auth-sess-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_auth_sess_curr.setStatus('current')
-fwSS_http_auth_sess_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 14), Integer32()).setLabel("fwSS-http-auth-sess-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_auth_sess_count.setStatus('current')
-fwSS_http_accepted_sess = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 15), Integer32()).setLabel("fwSS-http-accepted-sess").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_accepted_sess.setStatus('current')
-fwSS_http_rejected_sess = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 16), Integer32()).setLabel("fwSS-http-rejected-sess").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_rejected_sess.setStatus('current')
-fwSS_http_auth_failures = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 17), Integer32()).setLabel("fwSS-http-auth-failures").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_auth_failures.setStatus('current')
-fwSS_http_ops_cvp_sess_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 18), Integer32()).setLabel("fwSS-http-ops-cvp-sess-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_ops_cvp_sess_max.setStatus('current')
-fwSS_http_ops_cvp_sess_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 19), Integer32()).setLabel("fwSS-http-ops-cvp-sess-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_ops_cvp_sess_curr.setStatus('current')
-fwSS_http_ops_cvp_sess_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 20), Integer32()).setLabel("fwSS-http-ops-cvp-sess-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_ops_cvp_sess_count.setStatus('current')
-fwSS_http_ops_cvp_rej_sess = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 21), Integer32()).setLabel("fwSS-http-ops-cvp-rej-sess").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_ops_cvp_rej_sess.setStatus('current')
-fwSS_http_ssl_encryp_sess_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 22), Integer32()).setLabel("fwSS-http-ssl-encryp-sess-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_ssl_encryp_sess_max.setStatus('current')
-fwSS_http_ssl_encryp_sess_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 23), Integer32()).setLabel("fwSS-http-ssl-encryp-sess-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_ssl_encryp_sess_curr.setStatus('current')
-fwSS_http_ssl_encryp_sess_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 24), Integer32()).setLabel("fwSS-http-ssl-encryp-sess-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_ssl_encryp_sess_count.setStatus('current')
-fwSS_http_transp_sess_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 25), Integer32()).setLabel("fwSS-http-transp-sess-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_transp_sess_max.setStatus('current')
-fwSS_http_transp_sess_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 26), Integer32()).setLabel("fwSS-http-transp-sess-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_transp_sess_curr.setStatus('current')
-fwSS_http_transp_sess_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 27), Integer32()).setLabel("fwSS-http-transp-sess-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_transp_sess_count.setStatus('current')
-fwSS_http_proxied_sess_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 28), Integer32()).setLabel("fwSS-http-proxied-sess-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_proxied_sess_max.setStatus('current')
-fwSS_http_proxied_sess_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 29), Integer32()).setLabel("fwSS-http-proxied-sess-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_proxied_sess_curr.setStatus('current')
-fwSS_http_proxied_sess_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 30), Integer32()).setLabel("fwSS-http-proxied-sess-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_proxied_sess_count.setStatus('current')
-fwSS_http_tunneled_sess_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 31), Integer32()).setLabel("fwSS-http-tunneled-sess-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_tunneled_sess_max.setStatus('current')
-fwSS_http_tunneled_sess_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 32), Integer32()).setLabel("fwSS-http-tunneled-sess-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_tunneled_sess_curr.setStatus('current')
-fwSS_http_tunneled_sess_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 33), Integer32()).setLabel("fwSS-http-tunneled-sess-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_tunneled_sess_count.setStatus('current')
-fwSS_http_ftp_sess_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 34), Integer32()).setLabel("fwSS-http-ftp-sess-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_ftp_sess_max.setStatus('current')
-fwSS_http_ftp_sess_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 35), Integer32()).setLabel("fwSS-http-ftp-sess-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_ftp_sess_curr.setStatus('current')
-fwSS_http_ftp_sess_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 36), Integer32()).setLabel("fwSS-http-ftp-sess-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_ftp_sess_count.setStatus('current')
-fwSS_http_time_stamp = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 37), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setLabel("fwSS-http-time-stamp").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_time_stamp.setStatus('current')
-fwSS_http_is_alive = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 38), Integer32()).setLabel("fwSS-http-is-alive").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_is_alive.setStatus('current')
-fwSS_http_blocked_cnt = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 39), Integer32()).setLabel("fwSS-http-blocked-cnt").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_blocked_cnt.setStatus('current')
-fwSS_http_blocked_total = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 40), Integer32()).setLabel("fwSS-http-blocked-total").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_blocked_total.setStatus('current')
-fwSS_http_scanned_total = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 41), Integer32()).setLabel("fwSS-http-scanned-total").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_scanned_total.setStatus('current')
-fwSS_http_blocked_by_file_type = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 42), Integer32()).setLabel("fwSS-http-blocked-by-file-type").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_blocked_by_file_type.setStatus('current')
-fwSS_http_blocked_by_size_limit = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 43), Integer32()).setLabel("fwSS-http-blocked-by-size-limit").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_blocked_by_size_limit.setStatus('current')
-fwSS_http_blocked_by_archive_limit = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 44), Integer32()).setLabel("fwSS-http-blocked-by-archive-limit").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_blocked_by_archive_limit.setStatus('current')
-fwSS_http_blocked_by_internal_error = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 45), Integer32()).setLabel("fwSS-http-blocked-by-internal-error").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_blocked_by_internal_error.setStatus('current')
-fwSS_http_passed_cnt = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 46), Integer32()).setLabel("fwSS-http-passed-cnt").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_passed_cnt.setStatus('current')
-fwSS_http_passed_by_file_type = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 47), Integer32()).setLabel("fwSS-http-passed-by-file-type").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_passed_by_file_type.setStatus('current')
-fwSS_http_passed_by_size_limit = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 48), Integer32()).setLabel("fwSS-http-passed-by-size-limit").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_passed_by_size_limit.setStatus('current')
-fwSS_http_passed_by_archive_limit = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 49), Integer32()).setLabel("fwSS-http-passed-by-archive-limit").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_passed_by_archive_limit.setStatus('current')
-fwSS_http_passed_by_internal_error = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 50), Integer32()).setLabel("fwSS-http-passed-by-internal-error").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_passed_by_internal_error.setStatus('current')
-fwSS_http_passed_total = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 51), Integer32()).setLabel("fwSS-http-passed-total").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_passed_total.setStatus('current')
-fwSS_http_blocked_by_AV_settings = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 52), Integer32()).setLabel("fwSS-http-blocked-by-AV-settings").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_blocked_by_AV_settings.setStatus('current')
-fwSS_http_passed_by_AV_settings = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 53), Integer32()).setLabel("fwSS-http-passed-by-AV-settings").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_passed_by_AV_settings.setStatus('current')
-fwSS_http_blocked_by_URL_filter_category = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 54), Integer32()).setLabel("fwSS-http-blocked-by-URL-filter-category").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_blocked_by_URL_filter_category.setStatus('current')
-fwSS_http_blocked_by_URL_block_list = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 55), Integer32()).setLabel("fwSS-http-blocked-by-URL-block-list").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_blocked_by_URL_block_list.setStatus('current')
-fwSS_http_passed_by_URL_allow_list = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 56), Integer32()).setLabel("fwSS-http-passed-by-URL-allow-list").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_passed_by_URL_allow_list.setStatus('current')
-fwSS_http_passed_by_URL_filter_category = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 1, 57), Integer32()).setLabel("fwSS-http-passed-by-URL-filter-category").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_http_passed_by_URL_filter_category.setStatus('current')
-fwSS_ftp_pid = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 1), Integer32()).setLabel("fwSS-ftp-pid").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_pid.setStatus('current')
-fwSS_ftp_proto = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 2), Integer32()).setLabel("fwSS-ftp-proto").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_proto.setStatus('current')
-fwSS_ftp_port = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 3), Integer32()).setLabel("fwSS-ftp-port").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_port.setStatus('current')
-fwSS_ftp_logical_port = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 4), Integer32()).setLabel("fwSS-ftp-logical-port").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_logical_port.setStatus('current')
-fwSS_ftp_max_avail_socket = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 5), Integer32()).setLabel("fwSS-ftp-max-avail-socket").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_max_avail_socket.setStatus('current')
-fwSS_ftp_socket_in_use_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 6), Integer32()).setLabel("fwSS-ftp-socket-in-use-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_socket_in_use_max.setStatus('current')
-fwSS_ftp_socket_in_use_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 7), Integer32()).setLabel("fwSS-ftp-socket-in-use-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_socket_in_use_curr.setStatus('current')
-fwSS_ftp_socket_in_use_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 8), Integer32()).setLabel("fwSS-ftp-socket-in-use-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_socket_in_use_count.setStatus('current')
-fwSS_ftp_sess_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 9), Integer32()).setLabel("fwSS-ftp-sess-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_sess_max.setStatus('current')
-fwSS_ftp_sess_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 10), Integer32()).setLabel("fwSS-ftp-sess-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_sess_curr.setStatus('current')
-fwSS_ftp_sess_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 11), Integer32()).setLabel("fwSS-ftp-sess-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_sess_count.setStatus('current')
-fwSS_ftp_auth_sess_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 12), Integer32()).setLabel("fwSS-ftp-auth-sess-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_auth_sess_max.setStatus('current')
-fwSS_ftp_auth_sess_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 13), Integer32()).setLabel("fwSS-ftp-auth-sess-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_auth_sess_curr.setStatus('current')
-fwSS_ftp_auth_sess_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 14), Integer32()).setLabel("fwSS-ftp-auth-sess-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_auth_sess_count.setStatus('current')
-fwSS_ftp_accepted_sess = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 15), Integer32()).setLabel("fwSS-ftp-accepted-sess").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_accepted_sess.setStatus('current')
-fwSS_ftp_rejected_sess = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 16), Integer32()).setLabel("fwSS-ftp-rejected-sess").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_rejected_sess.setStatus('current')
-fwSS_ftp_auth_failures = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 17), Integer32()).setLabel("fwSS-ftp-auth-failures").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_auth_failures.setStatus('current')
-fwSS_ftp_ops_cvp_sess_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 18), Integer32()).setLabel("fwSS-ftp-ops-cvp-sess-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_ops_cvp_sess_max.setStatus('current')
-fwSS_ftp_ops_cvp_sess_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 19), Integer32()).setLabel("fwSS-ftp-ops-cvp-sess-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_ops_cvp_sess_curr.setStatus('current')
-fwSS_ftp_ops_cvp_sess_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 20), Integer32()).setLabel("fwSS-ftp-ops-cvp-sess-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_ops_cvp_sess_count.setStatus('current')
-fwSS_ftp_ops_cvp_rej_sess = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 21), Integer32()).setLabel("fwSS-ftp-ops-cvp-rej-sess").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_ops_cvp_rej_sess.setStatus('current')
-fwSS_ftp_time_stamp = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 22), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setLabel("fwSS-ftp-time-stamp").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_time_stamp.setStatus('current')
-fwSS_ftp_is_alive = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 23), Integer32()).setLabel("fwSS-ftp-is-alive").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_is_alive.setStatus('current')
-fwSS_ftp_blocked_cnt = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 24), Integer32()).setLabel("fwSS-ftp-blocked-cnt").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_blocked_cnt.setStatus('current')
-fwSS_ftp_blocked_total = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 25), Integer32()).setLabel("fwSS-ftp-blocked-total").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_blocked_total.setStatus('current')
-fwSS_ftp_scanned_total = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 26), Integer32()).setLabel("fwSS-ftp-scanned-total").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_scanned_total.setStatus('current')
-fwSS_ftp_blocked_by_file_type = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 27), Integer32()).setLabel("fwSS-ftp-blocked-by-file-type").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_blocked_by_file_type.setStatus('current')
-fwSS_ftp_blocked_by_size_limit = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 28), Integer32()).setLabel("fwSS-ftp-blocked-by-size-limit").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_blocked_by_size_limit.setStatus('current')
-fwSS_ftp_blocked_by_archive_limit = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 29), Integer32()).setLabel("fwSS-ftp-blocked-by-archive-limit").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_blocked_by_archive_limit.setStatus('current')
-fwSS_ftp_blocked_by_internal_error = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 30), Integer32()).setLabel("fwSS-ftp-blocked-by-internal-error").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_blocked_by_internal_error.setStatus('current')
-fwSS_ftp_passed_cnt = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 31), Integer32()).setLabel("fwSS-ftp-passed-cnt").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_passed_cnt.setStatus('current')
-fwSS_ftp_passed_by_file_type = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 32), Integer32()).setLabel("fwSS-ftp-passed-by-file-type").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_passed_by_file_type.setStatus('current')
-fwSS_ftp_passed_by_size_limit = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 33), Integer32()).setLabel("fwSS-ftp-passed-by-size-limit").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_passed_by_size_limit.setStatus('current')
-fwSS_ftp_passed_by_archive_limit = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 34), Integer32()).setLabel("fwSS-ftp-passed-by-archive-limit").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_passed_by_archive_limit.setStatus('current')
-fwSS_ftp_passed_by_internal_error = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 35), Integer32()).setLabel("fwSS-ftp-passed-by-internal-error").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_passed_by_internal_error.setStatus('current')
-fwSS_ftp_passed_total = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 36), Integer32()).setLabel("fwSS-ftp-passed-total").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_passed_total.setStatus('current')
-fwSS_ftp_blocked_by_AV_settings = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 37), Integer32()).setLabel("fwSS-ftp-blocked-by-AV-settings").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_blocked_by_AV_settings.setStatus('current')
-fwSS_ftp_passed_by_AV_settings = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 2, 38), Integer32()).setLabel("fwSS-ftp-passed-by-AV-settings").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ftp_passed_by_AV_settings.setStatus('current')
-fwSS_telnet_pid = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 3, 1), Integer32()).setLabel("fwSS-telnet-pid").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_telnet_pid.setStatus('current')
-fwSS_telnet_proto = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 3, 2), Integer32()).setLabel("fwSS-telnet-proto").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_telnet_proto.setStatus('current')
-fwSS_telnet_port = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 3, 3), Integer32()).setLabel("fwSS-telnet-port").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_telnet_port.setStatus('current')
-fwSS_telnet_logical_port = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 3, 4), Integer32()).setLabel("fwSS-telnet-logical-port").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_telnet_logical_port.setStatus('current')
-fwSS_telnet_max_avail_socket = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 3, 5), Integer32()).setLabel("fwSS-telnet-max-avail-socket").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_telnet_max_avail_socket.setStatus('current')
-fwSS_telnet_socket_in_use_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 3, 6), Integer32()).setLabel("fwSS-telnet-socket-in-use-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_telnet_socket_in_use_max.setStatus('current')
-fwSS_telnet_socket_in_use_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 3, 7), Integer32()).setLabel("fwSS-telnet-socket-in-use-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_telnet_socket_in_use_curr.setStatus('current')
-fwSS_telnet_socket_in_use_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 3, 8), Integer32()).setLabel("fwSS-telnet-socket-in-use-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_telnet_socket_in_use_count.setStatus('current')
-fwSS_telnet_sess_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 3, 9), Integer32()).setLabel("fwSS-telnet-sess-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_telnet_sess_max.setStatus('current')
-fwSS_telnet_sess_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 3, 10), Integer32()).setLabel("fwSS-telnet-sess-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_telnet_sess_curr.setStatus('current')
-fwSS_telnet_sess_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 3, 11), Integer32()).setLabel("fwSS-telnet-sess-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_telnet_sess_count.setStatus('current')
-fwSS_telnet_auth_sess_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 3, 12), Integer32()).setLabel("fwSS-telnet-auth-sess-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_telnet_auth_sess_max.setStatus('current')
-fwSS_telnet_auth_sess_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 3, 13), Integer32()).setLabel("fwSS-telnet-auth-sess-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_telnet_auth_sess_curr.setStatus('current')
-fwSS_telnet_auth_sess_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 3, 14), Integer32()).setLabel("fwSS-telnet-auth-sess-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_telnet_auth_sess_count.setStatus('current')
-fwSS_telnet_accepted_sess = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 3, 15), Integer32()).setLabel("fwSS-telnet-accepted-sess").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_telnet_accepted_sess.setStatus('current')
-fwSS_telnet_rejected_sess = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 3, 16), Integer32()).setLabel("fwSS-telnet-rejected-sess").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_telnet_rejected_sess.setStatus('current')
-fwSS_telnet_auth_failures = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 3, 17), Integer32()).setLabel("fwSS-telnet-auth-failures").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_telnet_auth_failures.setStatus('current')
-fwSS_telnet_time_stamp = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 3, 18), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setLabel("fwSS-telnet-time-stamp").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_telnet_time_stamp.setStatus('current')
-fwSS_telnet_is_alive = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 3, 19), Integer32()).setLabel("fwSS-telnet-is-alive").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_telnet_is_alive.setStatus('current')
-fwSS_rlogin_pid = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 4, 1), Integer32()).setLabel("fwSS-rlogin-pid").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_rlogin_pid.setStatus('current')
-fwSS_rlogin_proto = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 4, 2), Integer32()).setLabel("fwSS-rlogin-proto").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_rlogin_proto.setStatus('current')
-fwSS_rlogin_port = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 4, 3), Integer32()).setLabel("fwSS-rlogin-port").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_rlogin_port.setStatus('current')
-fwSS_rlogin_logical_port = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 4, 4), Integer32()).setLabel("fwSS-rlogin-logical-port").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_rlogin_logical_port.setStatus('current')
-fwSS_rlogin_max_avail_socket = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 4, 5), Integer32()).setLabel("fwSS-rlogin-max-avail-socket").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_rlogin_max_avail_socket.setStatus('current')
-fwSS_rlogin_socket_in_use_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 4, 6), Integer32()).setLabel("fwSS-rlogin-socket-in-use-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_rlogin_socket_in_use_max.setStatus('current')
-fwSS_rlogin_socket_in_use_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 4, 7), Integer32()).setLabel("fwSS-rlogin-socket-in-use-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_rlogin_socket_in_use_curr.setStatus('current')
-fwSS_rlogin_socket_in_use_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 4, 8), Integer32()).setLabel("fwSS-rlogin-socket-in-use-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_rlogin_socket_in_use_count.setStatus('current')
-fwSS_rlogin_sess_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 4, 9), Integer32()).setLabel("fwSS-rlogin-sess-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_rlogin_sess_max.setStatus('current')
-fwSS_rlogin_sess_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 4, 10), Integer32()).setLabel("fwSS-rlogin-sess-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_rlogin_sess_curr.setStatus('current')
-fwSS_rlogin_sess_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 4, 11), Integer32()).setLabel("fwSS-rlogin-sess-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_rlogin_sess_count.setStatus('current')
-fwSS_rlogin_auth_sess_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 4, 12), Integer32()).setLabel("fwSS-rlogin-auth-sess-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_rlogin_auth_sess_max.setStatus('current')
-fwSS_rlogin_auth_sess_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 4, 13), Integer32()).setLabel("fwSS-rlogin-auth-sess-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_rlogin_auth_sess_curr.setStatus('current')
-fwSS_rlogin_auth_sess_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 4, 14), Integer32()).setLabel("fwSS-rlogin-auth-sess-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_rlogin_auth_sess_count.setStatus('current')
-fwSS_rlogin_accepted_sess = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 4, 15), Integer32()).setLabel("fwSS-rlogin-accepted-sess").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_rlogin_accepted_sess.setStatus('current')
-fwSS_rlogin_rejected_sess = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 4, 16), Integer32()).setLabel("fwSS-rlogin-rejected-sess").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_rlogin_rejected_sess.setStatus('current')
-fwSS_rlogin_auth_failures = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 4, 17), Integer32()).setLabel("fwSS-rlogin-auth-failures").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_rlogin_auth_failures.setStatus('current')
-fwSS_rlogin_time_stamp = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 4, 18), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setLabel("fwSS-rlogin-time-stamp").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_rlogin_time_stamp.setStatus('current')
-fwSS_rlogin_is_alive = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 4, 19), Integer32()).setLabel("fwSS-rlogin-is-alive").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_rlogin_is_alive.setStatus('current')
-fwSS_ufp_ops_ufp_sess_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 5, 1), Integer32()).setLabel("fwSS-ufp-ops-ufp-sess-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ufp_ops_ufp_sess_max.setStatus('current')
-fwSS_ufp_ops_ufp_sess_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 5, 2), Integer32()).setLabel("fwSS-ufp-ops-ufp-sess-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ufp_ops_ufp_sess_curr.setStatus('current')
-fwSS_ufp_ops_ufp_sess_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 5, 3), Integer32()).setLabel("fwSS-ufp-ops-ufp-sess-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ufp_ops_ufp_sess_count.setStatus('current')
-fwSS_ufp_ops_ufp_rej_sess = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 5, 4), Integer32()).setLabel("fwSS-ufp-ops-ufp-rej-sess").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ufp_ops_ufp_rej_sess.setStatus('current')
-fwSS_ufp_time_stamp = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 5, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setLabel("fwSS-ufp-time-stamp").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ufp_time_stamp.setStatus('current')
-fwSS_ufp_is_alive = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 5, 6), Integer32()).setLabel("fwSS-ufp-is-alive").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_ufp_is_alive.setStatus('current')
-fwSS_smtp_pid = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 1), Integer32()).setLabel("fwSS-smtp-pid").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_pid.setStatus('current')
-fwSS_smtp_proto = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 2), Integer32()).setLabel("fwSS-smtp-proto").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_proto.setStatus('current')
-fwSS_smtp_port = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 3), Integer32()).setLabel("fwSS-smtp-port").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_port.setStatus('current')
-fwSS_smtp_logical_port = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 4), Integer32()).setLabel("fwSS-smtp-logical-port").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_logical_port.setStatus('current')
-fwSS_smtp_max_avail_socket = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 5), Integer32()).setLabel("fwSS-smtp-max-avail-socket").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_max_avail_socket.setStatus('current')
-fwSS_smtp_socket_in_use_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 6), Integer32()).setLabel("fwSS-smtp-socket-in-use-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_socket_in_use_max.setStatus('current')
-fwSS_smtp_socket_in_use_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 7), Integer32()).setLabel("fwSS-smtp-socket-in-use-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_socket_in_use_curr.setStatus('current')
-fwSS_smtp_socket_in_use_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 8), Integer32()).setLabel("fwSS-smtp-socket-in-use-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_socket_in_use_count.setStatus('current')
-fwSS_smtp_sess_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 9), Integer32()).setLabel("fwSS-smtp-sess-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_sess_max.setStatus('current')
-fwSS_smtp_sess_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 10), Integer32()).setLabel("fwSS-smtp-sess-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_sess_curr.setStatus('current')
-fwSS_smtp_sess_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 11), Integer32()).setLabel("fwSS-smtp-sess-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_sess_count.setStatus('current')
-fwSS_smtp_auth_sess_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 12), Integer32()).setLabel("fwSS-smtp-auth-sess-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_auth_sess_max.setStatus('current')
-fwSS_smtp_auth_sess_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 13), Integer32()).setLabel("fwSS-smtp-auth-sess-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_auth_sess_curr.setStatus('current')
-fwSS_smtp_auth_sess_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 14), Integer32()).setLabel("fwSS-smtp-auth-sess-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_auth_sess_count.setStatus('current')
-fwSS_smtp_accepted_sess = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 15), Integer32()).setLabel("fwSS-smtp-accepted-sess").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_accepted_sess.setStatus('current')
-fwSS_smtp_rejected_sess = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 16), Integer32()).setLabel("fwSS-smtp-rejected-sess").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_rejected_sess.setStatus('current')
-fwSS_smtp_auth_failures = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 17), Integer32()).setLabel("fwSS-smtp-auth-failures").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_auth_failures.setStatus('current')
-fwSS_smtp_mail_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 18), Integer32()).setLabel("fwSS-smtp-mail-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_mail_max.setStatus('current')
-fwSS_smtp_mail_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 19), Integer32()).setLabel("fwSS-smtp-mail-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_mail_curr.setStatus('current')
-fwSS_smtp_mail_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 20), Integer32()).setLabel("fwSS-smtp-mail-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_mail_count.setStatus('current')
-fwSS_smtp_outgoing_mail_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 21), Integer32()).setLabel("fwSS-smtp-outgoing-mail-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_outgoing_mail_max.setStatus('current')
-fwSS_smtp_outgoing_mail_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 22), Integer32()).setLabel("fwSS-smtp-outgoing-mail-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_outgoing_mail_curr.setStatus('current')
-fwSS_smtp_outgoing_mail_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 23), Integer32()).setLabel("fwSS-smtp-outgoing-mail-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_outgoing_mail_count.setStatus('current')
-fwSS_smtp_max_mail_on_conn = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 24), Integer32()).setLabel("fwSS-smtp-max-mail-on-conn").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_max_mail_on_conn.setStatus('current')
-fwSS_smtp_total_mails = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 25), Integer32()).setLabel("fwSS-smtp-total-mails").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_total_mails.setStatus('current')
-fwSS_smtp_time_stamp = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 26), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setLabel("fwSS-smtp-time-stamp").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_time_stamp.setStatus('current')
-fwSS_smtp_is_alive = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 27), Integer32()).setLabel("fwSS-smtp-is-alive").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_is_alive.setStatus('current')
-fwSS_smtp_blocked_cnt = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 28), Integer32()).setLabel("fwSS-smtp-blocked-cnt").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_blocked_cnt.setStatus('current')
-fwSS_smtp_blocked_total = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 29), Integer32()).setLabel("fwSS-smtp-blocked-total").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_blocked_total.setStatus('current')
-fwSS_smtp_scanned_total = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 30), Integer32()).setLabel("fwSS-smtp-scanned-total").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_scanned_total.setStatus('current')
-fwSS_smtp_blocked_by_file_type = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 31), Integer32()).setLabel("fwSS-smtp-blocked-by-file-type").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_blocked_by_file_type.setStatus('current')
-fwSS_smtp_blocked_by_size_limit = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 32), Integer32()).setLabel("fwSS-smtp-blocked-by-size-limit").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_blocked_by_size_limit.setStatus('current')
-fwSS_smtp_blocked_by_archive_limit = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 33), Integer32()).setLabel("fwSS-smtp-blocked-by-archive-limit").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_blocked_by_archive_limit.setStatus('current')
-fwSS_smtp_blocked_by_internal_error = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 34), Integer32()).setLabel("fwSS-smtp-blocked-by-internal-error").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_blocked_by_internal_error.setStatus('current')
-fwSS_smtp_passed_cnt = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 35), Integer32()).setLabel("fwSS-smtp-passed-cnt").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_passed_cnt.setStatus('current')
-fwSS_smtp_passed_by_file_type = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 36), Integer32()).setLabel("fwSS-smtp-passed-by-file-type").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_passed_by_file_type.setStatus('current')
-fwSS_smtp_passed_by_size_limit = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 37), Integer32()).setLabel("fwSS-smtp-passed-by-size-limit").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_passed_by_size_limit.setStatus('current')
-fwSS_smtp_passed_by_archive_limit = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 38), Integer32()).setLabel("fwSS-smtp-passed-by-archive-limit").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_passed_by_archive_limit.setStatus('current')
-fwSS_smtp_passed_by_internal_error = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 39), Integer32()).setLabel("fwSS-smtp-passed-by-internal-error").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_passed_by_internal_error.setStatus('current')
-fwSS_smtp_passed_total = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 40), Integer32()).setLabel("fwSS-smtp-passed-total").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_passed_total.setStatus('current')
-fwSS_smtp_blocked_by_AV_settings = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 41), Integer32()).setLabel("fwSS-smtp-blocked-by-AV-settings").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_blocked_by_AV_settings.setStatus('current')
-fwSS_smtp_passed_by_AV_settings = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 6, 42), Integer32()).setLabel("fwSS-smtp-passed-by-AV-settings").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_smtp_passed_by_AV_settings.setStatus('current')
-fwSS_POP3_pid = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 1), Integer32()).setLabel("fwSS-POP3-pid").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_pid.setStatus('current')
-fwSS_POP3_proto = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 2), Integer32()).setLabel("fwSS-POP3-proto").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_proto.setStatus('current')
-fwSS_POP3_port = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 3), Integer32()).setLabel("fwSS-POP3-port").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_port.setStatus('current')
-fwSS_POP3_logical_port = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 4), Integer32()).setLabel("fwSS-POP3-logical-port").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_logical_port.setStatus('current')
-fwSS_POP3_max_avail_socket = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 5), Integer32()).setLabel("fwSS-POP3-max-avail-socket").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_max_avail_socket.setStatus('current')
-fwSS_POP3_socket_in_use_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 6), Integer32()).setLabel("fwSS-POP3-socket-in-use-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_socket_in_use_max.setStatus('current')
-fwSS_POP3_socket_in_use_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 7), Integer32()).setLabel("fwSS-POP3-socket-in-use-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_socket_in_use_curr.setStatus('current')
-fwSS_POP3_socket_in_use_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 8), Integer32()).setLabel("fwSS-POP3-socket-in-use-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_socket_in_use_count.setStatus('current')
-fwSS_POP3_sess_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 9), Integer32()).setLabel("fwSS-POP3-sess-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_sess_max.setStatus('current')
-fwSS_POP3_sess_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 10), Integer32()).setLabel("fwSS-POP3-sess-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_sess_curr.setStatus('current')
-fwSS_POP3_sess_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 11), Integer32()).setLabel("fwSS-POP3-sess-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_sess_count.setStatus('current')
-fwSS_POP3_auth_sess_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 12), Integer32()).setLabel("fwSS-POP3-auth-sess-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_auth_sess_max.setStatus('current')
-fwSS_POP3_auth_sess_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 13), Integer32()).setLabel("fwSS-POP3-auth-sess-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_auth_sess_curr.setStatus('current')
-fwSS_POP3_auth_sess_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 14), Integer32()).setLabel("fwSS-POP3-auth-sess-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_auth_sess_count.setStatus('current')
-fwSS_POP3_accepted_sess = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 15), Integer32()).setLabel("fwSS-POP3-accepted-sess").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_accepted_sess.setStatus('current')
-fwSS_POP3_rejected_sess = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 16), Integer32()).setLabel("fwSS-POP3-rejected-sess").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_rejected_sess.setStatus('current')
-fwSS_POP3_auth_failures = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 17), Integer32()).setLabel("fwSS-POP3-auth-failures").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_auth_failures.setStatus('current')
-fwSS_POP3_mail_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 18), Integer32()).setLabel("fwSS-POP3-mail-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_mail_max.setStatus('current')
-fwSS_POP3_mail_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 19), Integer32()).setLabel("fwSS-POP3-mail-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_mail_curr.setStatus('current')
-fwSS_POP3_mail_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 20), Integer32()).setLabel("fwSS-POP3-mail-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_mail_count.setStatus('current')
-fwSS_POP3_outgoing_mail_max = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 21), Integer32()).setLabel("fwSS-POP3-outgoing-mail-max").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_outgoing_mail_max.setStatus('current')
-fwSS_POP3_outgoing_mail_curr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 22), Integer32()).setLabel("fwSS-POP3-outgoing-mail-curr").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_outgoing_mail_curr.setStatus('current')
-fwSS_POP3_outgoing_mail_count = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 23), Integer32()).setLabel("fwSS-POP3-outgoing-mail-count").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_outgoing_mail_count.setStatus('current')
-fwSS_POP3_max_mail_on_conn = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 24), Integer32()).setLabel("fwSS-POP3-max-mail-on-conn").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_max_mail_on_conn.setStatus('current')
-fwSS_POP3_total_mails = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 25), Integer32()).setLabel("fwSS-POP3-total-mails").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_total_mails.setStatus('current')
-fwSS_POP3_time_stamp = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 26), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setLabel("fwSS-POP3-time-stamp").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_time_stamp.setStatus('current')
-fwSS_POP3_is_alive = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 27), Integer32()).setLabel("fwSS-POP3-is-alive").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_is_alive.setStatus('current')
-fwSS_POP3_blocked_cnt = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 28), Integer32()).setLabel("fwSS-POP3-blocked-cnt").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_blocked_cnt.setStatus('current')
-fwSS_POP3_blocked_total = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 29), Integer32()).setLabel("fwSS-POP3-blocked-total").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_blocked_total.setStatus('current')
-fwSS_POP3_scanned_total = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 30), Integer32()).setLabel("fwSS-POP3-scanned-total").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_scanned_total.setStatus('current')
-fwSS_POP3_blocked_by_file_type = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 31), Integer32()).setLabel("fwSS-POP3-blocked-by-file-type").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_blocked_by_file_type.setStatus('current')
-fwSS_POP3_blocked_by_size_limit = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 32), Integer32()).setLabel("fwSS-POP3-blocked-by-size-limit").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_blocked_by_size_limit.setStatus('current')
-fwSS_POP3_blocked_by_archive_limit = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 33), Integer32()).setLabel("fwSS-POP3-blocked-by-archive-limit").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_blocked_by_archive_limit.setStatus('current')
-fwSS_POP3_blocked_by_internal_error = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 34), Integer32()).setLabel("fwSS-POP3-blocked-by-internal-error").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_blocked_by_internal_error.setStatus('current')
-fwSS_POP3_passed_cnt = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 35), Integer32()).setLabel("fwSS-POP3-passed-cnt").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_passed_cnt.setStatus('current')
-fwSS_POP3_passed_by_file_type = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 36), Integer32()).setLabel("fwSS-POP3-passed-by-file-type").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_passed_by_file_type.setStatus('current')
-fwSS_POP3_passed_by_size_limit = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 37), Integer32()).setLabel("fwSS-POP3-passed-by-size-limit").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_passed_by_size_limit.setStatus('current')
-fwSS_POP3_passed_by_archive_limit = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 38), Integer32()).setLabel("fwSS-POP3-passed-by-archive-limit").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_passed_by_archive_limit.setStatus('current')
-fwSS_POP3_passed_by_internal_error = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 39), Integer32()).setLabel("fwSS-POP3-passed-by-internal-error").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_passed_by_internal_error.setStatus('current')
-fwSS_POP3_passed_total = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 40), Integer32()).setLabel("fwSS-POP3-passed-total").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_passed_total.setStatus('current')
-fwSS_POP3_blocked_by_AV_settings = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 41), Integer32()).setLabel("fwSS-POP3-blocked-by-AV-settings").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_blocked_by_AV_settings.setStatus('current')
-fwSS_POP3_passed_by_AV_settings = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 7, 42), Integer32()).setLabel("fwSS-POP3-passed-by-AV-settings").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_POP3_passed_by_AV_settings.setStatus('current')
-fwSS_total_blocked_by_av = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 10, 1), Integer32()).setLabel("fwSS-total-blocked-by-av").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_total_blocked_by_av.setStatus('current')
-fwSS_total_blocked = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 10, 2), Integer32()).setLabel("fwSS-total-blocked").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_total_blocked.setStatus('current')
-fwSS_total_scanned = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 10, 3), Integer32()).setLabel("fwSS-total-scanned").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_total_scanned.setStatus('current')
-fwSS_total_blocked_by_file_type = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 10, 4), Integer32()).setLabel("fwSS-total-blocked-by-file-type").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_total_blocked_by_file_type.setStatus('current')
-fwSS_total_blocked_by_size_limit = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 10, 5), Integer32()).setLabel("fwSS-total-blocked-by-size-limit").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_total_blocked_by_size_limit.setStatus('current')
-fwSS_total_blocked_by_archive_limit = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 10, 6), Integer32()).setLabel("fwSS-total-blocked-by-archive-limit").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_total_blocked_by_archive_limit.setStatus('current')
-fwSS_total_blocked_by_interal_error = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 10, 7), Integer32()).setLabel("fwSS-total-blocked-by-interal-error").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_total_blocked_by_interal_error.setStatus('current')
-fwSS_total_passed_by_av = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 10, 8), Integer32()).setLabel("fwSS-total-passed-by-av").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_total_passed_by_av.setStatus('current')
-fwSS_total_passed_by_file_type = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 10, 9), Integer32()).setLabel("fwSS-total-passed-by-file-type").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_total_passed_by_file_type.setStatus('current')
-fwSS_total_passed_by_size_limit = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 10, 10), Integer32()).setLabel("fwSS-total-passed-by-size-limit").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_total_passed_by_size_limit.setStatus('current')
-fwSS_total_passed_by_archive_limit = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 10, 11), Integer32()).setLabel("fwSS-total-passed-by-archive-limit").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_total_passed_by_archive_limit.setStatus('current')
-fwSS_total_passed_by_interal_error = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 10, 12), Integer32()).setLabel("fwSS-total-passed-by-interal-error").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_total_passed_by_interal_error.setStatus('current')
-fwSS_total_passed = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 10, 13), Integer32()).setLabel("fwSS-total-passed").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_total_passed.setStatus('current')
-fwSS_total_blocked_by_av_settings = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 10, 14), Integer32()).setLabel("fwSS-total-blocked-by-av-settings").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_total_blocked_by_av_settings.setStatus('current')
-fwSS_total_passed_by_av_settings = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 9, 10, 15), Integer32()).setLabel("fwSS-total-passed-by-av-settings").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSS_total_passed_by_av_settings.setStatus('current')
-fwConnectionsStatConnectionsTcp = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 11, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwConnectionsStatConnectionsTcp.setStatus('current')
-fwConnectionsStatConnectionsUdp = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 11, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwConnectionsStatConnectionsUdp.setStatus('current')
-fwConnectionsStatConnectionsIcmp = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 11, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwConnectionsStatConnectionsIcmp.setStatus('current')
-fwConnectionsStatConnectionsOther = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 11, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwConnectionsStatConnectionsOther.setStatus('current')
-fwConnectionsStatConnections = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 11, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwConnectionsStatConnections.setStatus('current')
-fwConnectionsStatConnectionRate = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 11, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwConnectionsStatConnectionRate.setStatus('current')
-fwHmem64_block_size = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 12, 1), DisplayString()).setLabel("fwHmem64-block-size").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem64_block_size.setStatus('current')
-fwHmem64_requested_bytes = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 12, 2), DisplayString()).setLabel("fwHmem64-requested-bytes").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem64_requested_bytes.setStatus('current')
-fwHmem64_initial_allocated_bytes = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 12, 3), DisplayString()).setLabel("fwHmem64-initial-allocated-bytes").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem64_initial_allocated_bytes.setStatus('current')
-fwHmem64_initial_allocated_blocks = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 12, 4), Integer32()).setLabel("fwHmem64-initial-allocated-blocks").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem64_initial_allocated_blocks.setStatus('current')
-fwHmem64_initial_allocated_pools = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 12, 5), Integer32()).setLabel("fwHmem64-initial-allocated-pools").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem64_initial_allocated_pools.setStatus('current')
-fwHmem64_current_allocated_bytes = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 12, 6), DisplayString()).setLabel("fwHmem64-current-allocated-bytes").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem64_current_allocated_bytes.setStatus('current')
-fwHmem64_current_allocated_blocks = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 12, 7), Integer32()).setLabel("fwHmem64-current-allocated-blocks").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem64_current_allocated_blocks.setStatus('current')
-fwHmem64_current_allocated_pools = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 12, 8), Integer32()).setLabel("fwHmem64-current-allocated-pools").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem64_current_allocated_pools.setStatus('current')
-fwHmem64_maximum_bytes = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 12, 9), DisplayString()).setLabel("fwHmem64-maximum-bytes").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem64_maximum_bytes.setStatus('current')
-fwHmem64_maximum_pools = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 12, 10), Integer32()).setLabel("fwHmem64-maximum-pools").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem64_maximum_pools.setStatus('current')
-fwHmem64_bytes_used = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 12, 11), DisplayString()).setLabel("fwHmem64-bytes-used").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem64_bytes_used.setStatus('current')
-fwHmem64_blocks_used = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 12, 12), Integer32()).setLabel("fwHmem64-blocks-used").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem64_blocks_used.setStatus('current')
-fwHmem64_bytes_unused = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 12, 13), DisplayString()).setLabel("fwHmem64-bytes-unused").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem64_bytes_unused.setStatus('current')
-fwHmem64_blocks_unused = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 12, 14), Integer32()).setLabel("fwHmem64-blocks-unused").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem64_blocks_unused.setStatus('current')
-fwHmem64_bytes_peak = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 12, 15), DisplayString()).setLabel("fwHmem64-bytes-peak").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem64_bytes_peak.setStatus('current')
-fwHmem64_blocks_peak = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 12, 16), Integer32()).setLabel("fwHmem64-blocks-peak").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem64_blocks_peak.setStatus('current')
-fwHmem64_bytes_internal_use = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 12, 17), Integer32()).setLabel("fwHmem64-bytes-internal-use").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem64_bytes_internal_use.setStatus('current')
-fwHmem64_number_of_items = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 12, 18), DisplayString()).setLabel("fwHmem64-number-of-items").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem64_number_of_items.setStatus('current')
-fwHmem64_alloc_operations = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 12, 19), Integer32()).setLabel("fwHmem64-alloc-operations").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem64_alloc_operations.setStatus('current')
-fwHmem64_free_operations = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 12, 20), Integer32()).setLabel("fwHmem64-free-operations").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem64_free_operations.setStatus('current')
-fwHmem64_failed_alloc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 12, 21), Integer32()).setLabel("fwHmem64-failed-alloc").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem64_failed_alloc.setStatus('current')
-fwHmem64_failed_free = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 26, 12, 22), Integer32()).setLabel("fwHmem64-failed-free").setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwHmem64_failed_free.setStatus('current')
-fwNetIfTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 1, 27), )
-if mibBuilder.loadTexts: fwNetIfTable.setStatus('current')
-fwNetIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 1, 27, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "fwNetIfIndex"))
-if mibBuilder.loadTexts: fwNetIfEntry.setStatus('current')
-fwNetIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 27, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwNetIfIndex.setStatus('current')
-fwNetIfName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 27, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwNetIfName.setStatus('current')
-fwNetIfIPAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 27, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwNetIfIPAddr.setStatus('current')
-fwNetIfNetmask = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 27, 1, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwNetIfNetmask.setStatus('current')
-fwNetIfFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 27, 1, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwNetIfFlags.setStatus('current')
-fwNetIfPeerName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 27, 1, 6), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwNetIfPeerName.setStatus('current')
-fwNetIfRemoteIp = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 27, 1, 7), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwNetIfRemoteIp.setStatus('current')
-fwNetIfTopology = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 27, 1, 8), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwNetIfTopology.setStatus('current')
-fwNetIfProxyName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 27, 1, 9), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwNetIfProxyName.setStatus('current')
-fwNetIfSlaves = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 27, 1, 10), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwNetIfSlaves.setStatus('current')
-fwNetIfPorts = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 27, 1, 11), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwNetIfPorts.setStatus('current')
-fwLSConn = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 1, 30))
-fwLSConnOverall = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 30, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwLSConnOverall.setStatus('current')
-fwLSConnOverallDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 30, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwLSConnOverallDesc.setStatus('current')
-fwLSConnTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 1, 30, 3), )
-if mibBuilder.loadTexts: fwLSConnTable.setStatus('current')
-fwLocalLoggingDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 30, 4), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwLocalLoggingDesc.setStatus('current')
-fwLocalLoggingStat = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 1, 30, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwLocalLoggingStat.setStatus('current')
-fwLSConnEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 1, 30, 3, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "fwLSConnIndex"))
-if mibBuilder.loadTexts: fwLSConnEntry.setStatus('current')
-fwLSConnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 30, 3, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwLSConnIndex.setStatus('current')
-fwLSConnName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 30, 3, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwLSConnName.setStatus('current')
-fwLSConnState = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 30, 3, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwLSConnState.setStatus('current')
-fwLSConnStateDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 1, 30, 3, 1, 4), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwLSConnStateDesc.setStatus('current')
-fwSXLGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 36, 1))
-fwSXLStatus = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 36, 1, 1), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSXLStatus.setStatus('current')
-fwSXLConnsExisting = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 36, 1, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSXLConnsExisting.setStatus('current')
-fwSXLConnsAdded = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 36, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSXLConnsAdded.setStatus('current')
-fwSXLConnsDeleted = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 36, 1, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fwSXLConnsDeleted.setStatus('current')
-cpvGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 2, 4))
-cpvIpsec = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5))
-cpvFwz = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 2, 6))
-cpvAccelerator = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 2, 8))
-cpvIKE = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 2, 9))
-cpvIPsec = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 2, 10))
-cpvStatistics = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 2, 4, 1))
-cpvErrors = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 2, 4, 2))
-cpvSaStatistics = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 2))
-cpvSaErrors = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 3))
-cpvIpsecStatistics = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 4))
-cpvFwzStatistics = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 2, 6, 1))
-cpvFwzErrors = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 2, 6, 2))
-cpvHwAccelGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 2, 8, 1))
-cpvHwAccelStatistics = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 2, 8, 2))
-cpvIKEglobals = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 2, 9, 1))
-cpvIKEerrors = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 2, 9, 2))
-cpvIPsecNIC = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 2, 10, 1))
-cpvProdName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvProdName.setStatus('current')
-cpvVerMajor = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvVerMajor.setStatus('current')
-cpvVerMinor = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvVerMinor.setStatus('current')
-cpvEncPackets = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 4, 1, 1), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvEncPackets.setStatus('current')
-cpvDecPackets = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 4, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvDecPackets.setStatus('current')
-cpvErrOut = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 4, 2, 1), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvErrOut.setStatus('current')
-cpvErrIn = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 4, 2, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvErrIn.setStatus('current')
-cpvErrIke = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 4, 2, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvErrIke.setStatus('current')
-cpvErrPolicy = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 4, 2, 4), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvErrPolicy.setStatus('current')
-cpvCurrEspSAsIn = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 2, 1), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvCurrEspSAsIn.setStatus('current')
-cpvTotalEspSAsIn = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 2, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvTotalEspSAsIn.setStatus('current')
-cpvCurrEspSAsOut = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 2, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvCurrEspSAsOut.setStatus('current')
-cpvTotalEspSAsOut = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 2, 4), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvTotalEspSAsOut.setStatus('current')
-cpvCurrAhSAsIn = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 2, 5), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvCurrAhSAsIn.setStatus('current')
-cpvTotalAhSAsIn = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 2, 6), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvTotalAhSAsIn.setStatus('current')
-cpvCurrAhSAsOut = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 2, 7), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvCurrAhSAsOut.setStatus('current')
-cpvTotalAhSAsOut = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 2, 8), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvTotalAhSAsOut.setStatus('current')
-cpvMaxConncurEspSAsIn = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 2, 9), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvMaxConncurEspSAsIn.setStatus('current')
-cpvMaxConncurEspSAsOut = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 2, 10), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvMaxConncurEspSAsOut.setStatus('current')
-cpvMaxConncurAhSAsIn = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 2, 11), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvMaxConncurAhSAsIn.setStatus('current')
-cpvMaxConncurAhSAsOut = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 2, 12), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvMaxConncurAhSAsOut.setStatus('current')
-cpvSaDecrErr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 3, 1), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvSaDecrErr.setStatus('current')
-cpvSaAuthErr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 3, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvSaAuthErr.setStatus('current')
-cpvSaReplayErr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 3, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvSaReplayErr.setStatus('current')
-cpvSaPolicyErr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 3, 4), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvSaPolicyErr.setStatus('current')
-cpvSaOtherErrIn = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 3, 5), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvSaOtherErrIn.setStatus('current')
-cpvSaOtherErrOut = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 3, 6), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvSaOtherErrOut.setStatus('current')
-cpvSaUnknownSpiErr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 3, 7), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvSaUnknownSpiErr.setStatus('current')
-cpvIpsecUdpEspEncPkts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 4, 1), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIpsecUdpEspEncPkts.setStatus('current')
-cpvIpsecUdpEspDecPkts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 4, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIpsecUdpEspDecPkts.setStatus('current')
-cpvIpsecAhEncPkts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 4, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIpsecAhEncPkts.setStatus('current')
-cpvIpsecAhDecPkts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 4, 4), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIpsecAhDecPkts.setStatus('current')
-cpvIpsecEspEncPkts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 4, 5), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIpsecEspEncPkts.setStatus('current')
-cpvIpsecEspDecPkts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 4, 6), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIpsecEspDecPkts.setStatus('current')
-cpvIpsecDecomprBytesBefore = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 4, 7), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIpsecDecomprBytesBefore.setStatus('current')
-cpvIpsecDecomprBytesAfter = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 4, 8), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIpsecDecomprBytesAfter.setStatus('current')
-cpvIpsecDecomprOverhead = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 4, 9), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIpsecDecomprOverhead.setStatus('current')
-cpvIpsecDecomprPkts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 4, 10), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIpsecDecomprPkts.setStatus('current')
-cpvIpsecDecomprErr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 4, 11), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIpsecDecomprErr.setStatus('current')
-cpvIpsecComprBytesBefore = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 4, 12), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIpsecComprBytesBefore.setStatus('current')
-cpvIpsecComprBytesAfter = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 4, 13), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIpsecComprBytesAfter.setStatus('current')
-cpvIpsecComprOverhead = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 4, 14), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIpsecComprOverhead.setStatus('current')
-cpvIpsecNonCompressibleBytes = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 4, 15), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIpsecNonCompressibleBytes.setStatus('current')
-cpvIpsecCompressiblePkts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 4, 16), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIpsecCompressiblePkts.setStatus('current')
-cpvIpsecNonCompressiblePkts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 4, 17), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIpsecNonCompressiblePkts.setStatus('current')
-cpvIpsecComprErrors = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 4, 18), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIpsecComprErrors.setStatus('current')
-cpvIpsecEspEncBytes = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 4, 19), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIpsecEspEncBytes.setStatus('current')
-cpvIpsecEspDecBytes = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 5, 4, 20), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIpsecEspDecBytes.setStatus('current')
-cpvFwzEncapsEncPkts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 6, 1, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvFwzEncapsEncPkts.setStatus('current')
-cpvFwzEncapsDecPkts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 6, 1, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvFwzEncapsDecPkts.setStatus('current')
-cpvFwzEncPkts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 6, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvFwzEncPkts.setStatus('current')
-cpvFwzDecPkts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 6, 1, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvFwzDecPkts.setStatus('current')
-cpvFwzEncapsEncErrs = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 6, 2, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvFwzEncapsEncErrs.setStatus('current')
-cpvFwzEncapsDecErrs = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 6, 2, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvFwzEncapsDecErrs.setStatus('current')
-cpvFwzEncErrs = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 6, 2, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvFwzEncErrs.setStatus('current')
-cpvFwzDecErrs = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 6, 2, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvFwzDecErrs.setStatus('current')
-cpvHwAccelVendor = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 8, 1, 1), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvHwAccelVendor.setStatus('current')
-cpvHwAccelStatus = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 8, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvHwAccelStatus.setStatus('current')
-cpvHwAccelDriverMajorVer = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 8, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvHwAccelDriverMajorVer.setStatus('current')
-cpvHwAccelDriverMinorVer = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 8, 1, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvHwAccelDriverMinorVer.setStatus('current')
-cpvHwAccelEspEncPkts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 8, 2, 1), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvHwAccelEspEncPkts.setStatus('current')
-cpvHwAccelEspDecPkts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 8, 2, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvHwAccelEspDecPkts.setStatus('current')
-cpvHwAccelEspEncBytes = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 8, 2, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvHwAccelEspEncBytes.setStatus('current')
-cpvHwAccelEspDecBytes = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 8, 2, 4), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvHwAccelEspDecBytes.setStatus('current')
-cpvHwAccelAhEncPkts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 8, 2, 5), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvHwAccelAhEncPkts.setStatus('current')
-cpvHwAccelAhDecPkts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 8, 2, 6), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvHwAccelAhDecPkts.setStatus('current')
-cpvHwAccelAhEncBytes = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 8, 2, 7), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvHwAccelAhEncBytes.setStatus('current')
-cpvHwAccelAhDecBytes = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 8, 2, 8), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvHwAccelAhDecBytes.setStatus('current')
-cpvIKECurrSAs = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 9, 1, 1), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIKECurrSAs.setStatus('current')
-cpvIKECurrInitSAs = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 9, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIKECurrInitSAs.setStatus('current')
-cpvIKECurrRespSAs = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 9, 1, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIKECurrRespSAs.setStatus('current')
-cpvIKETotalSAs = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 9, 1, 4), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIKETotalSAs.setStatus('current')
-cpvIKETotalInitSAs = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 9, 1, 5), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIKETotalInitSAs.setStatus('current')
-cpvIKETotalRespSAs = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 9, 1, 6), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIKETotalRespSAs.setStatus('current')
-cpvIKETotalSAsAttempts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 9, 1, 7), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIKETotalSAsAttempts.setStatus('current')
-cpvIKETotalSAsInitAttempts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 9, 1, 8), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIKETotalSAsInitAttempts.setStatus('current')
-cpvIKETotalSAsRespAttempts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 9, 1, 9), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIKETotalSAsRespAttempts.setStatus('current')
-cpvIKEMaxConncurSAs = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 9, 1, 10), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIKEMaxConncurSAs.setStatus('current')
-cpvIKEMaxConncurInitSAs = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 9, 1, 11), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIKEMaxConncurInitSAs.setStatus('current')
-cpvIKEMaxConncurRespSAs = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 9, 1, 12), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIKEMaxConncurRespSAs.setStatus('current')
-cpvIKETotalFailuresInit = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 9, 2, 1), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIKETotalFailuresInit.setStatus('current')
-cpvIKENoResp = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 9, 2, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIKENoResp.setStatus('current')
-cpvIKETotalFailuresResp = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 9, 2, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIKETotalFailuresResp.setStatus('current')
-cpvIPsecNICsNum = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 10, 1, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIPsecNICsNum.setStatus('current')
-cpvIPsecNICTotalDownLoadedSAs = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 10, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIPsecNICTotalDownLoadedSAs.setStatus('current')
-cpvIPsecNICCurrDownLoadedSAs = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 10, 1, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIPsecNICCurrDownLoadedSAs.setStatus('current')
-cpvIPsecNICDecrBytes = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 10, 1, 4), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIPsecNICDecrBytes.setStatus('current')
-cpvIPsecNICEncrBytes = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 10, 1, 5), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIPsecNICEncrBytes.setStatus('current')
-cpvIPsecNICDecrPackets = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 10, 1, 6), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIPsecNICDecrPackets.setStatus('current')
-cpvIPsecNICEncrPackets = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 2, 10, 1, 7), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpvIPsecNICEncrPackets.setStatus('current')
-fgProdName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 3, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fgProdName.setStatus('current')
-fgVerMajor = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 3, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fgVerMajor.setStatus('current')
-fgVerMinor = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 3, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fgVerMinor.setStatus('current')
-fgVersionString = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 3, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fgVersionString.setStatus('current')
-fgModuleKernelBuild = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 3, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fgModuleKernelBuild.setStatus('current')
-fgStrPolicyName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 3, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fgStrPolicyName.setStatus('current')
-fgInstallTime = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 3, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fgInstallTime.setStatus('current')
-fgNumInterfaces = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 3, 8), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fgNumInterfaces.setStatus('current')
-fgIfTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 3, 9), )
-if mibBuilder.loadTexts: fgIfTable.setStatus('current')
-fgIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 3, 9, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "fgIfIndex"))
-if mibBuilder.loadTexts: fgIfEntry.setStatus('current')
-fgIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 3, 9, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fgIfIndex.setStatus('current')
-fgIfName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 3, 9, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fgIfName.setStatus('current')
-fgPolicyName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 3, 9, 1, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fgPolicyName.setStatus('current')
-fgRateLimitIn = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 3, 9, 1, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fgRateLimitIn.setStatus('current')
-fgRateLimitOut = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 3, 9, 1, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fgRateLimitOut.setStatus('current')
-fgAvrRateIn = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 3, 9, 1, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fgAvrRateIn.setStatus('current')
-fgAvrRateOut = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 3, 9, 1, 7), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fgAvrRateOut.setStatus('current')
-fgRetransPcktsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 3, 9, 1, 8), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fgRetransPcktsIn.setStatus('current')
-fgRetransPcktsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 3, 9, 1, 9), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fgRetransPcktsOut.setStatus('current')
-fgPendPcktsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 3, 9, 1, 10), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fgPendPcktsIn.setStatus('current')
-fgPendPcktsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 3, 9, 1, 11), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fgPendPcktsOut.setStatus('current')
-fgPendBytesIn = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 3, 9, 1, 12), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fgPendBytesIn.setStatus('current')
-fgPendBytesOut = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 3, 9, 1, 13), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fgPendBytesOut.setStatus('current')
-fgNumConnIn = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 3, 9, 1, 14), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fgNumConnIn.setStatus('current')
-fgNumConnOut = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 3, 9, 1, 15), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fgNumConnOut.setStatus('current')
-haProdName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 5, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haProdName.setStatus('current')
-haInstalled = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 5, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haInstalled.setStatus('current')
-haVerMajor = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 5, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haVerMajor.setStatus('current')
-haVerMinor = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 5, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haVerMinor.setStatus('current')
-haStarted = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 5, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haStarted.setStatus('current')
-haState = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 5, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haState.setStatus('current')
-haBlockState = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 5, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haBlockState.setStatus('current')
-haIdentifier = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 5, 8), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haIdentifier.setStatus('current')
-haProtoVersion = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 5, 10), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haProtoVersion.setStatus('current')
-haWorkMode = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 5, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haWorkMode.setStatus('current')
-haVersionSting = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 5, 14), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haVersionSting.setStatus('current')
-haStatCode = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 5, 101), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haStatCode.setStatus('current')
-haStatShort = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 5, 102), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haStatShort.setStatus('current')
-haStatLong = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 5, 103), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haStatLong.setStatus('current')
-haServicePack = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 5, 999), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haServicePack.setStatus('current')
-haIfTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 5, 12), )
-if mibBuilder.loadTexts: haIfTable.setStatus('current')
-haIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 5, 12, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "haIfIndex"))
-if mibBuilder.loadTexts: haIfEntry.setStatus('current')
-haIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 5, 12, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haIfIndex.setStatus('current')
-haIfName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 5, 12, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haIfName.setStatus('current')
-haIP = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 5, 12, 1, 3), IpAddress()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haIP.setStatus('current')
-haStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 5, 12, 1, 4), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haStatus.setStatus('current')
-haVerified = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 5, 12, 1, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haVerified.setStatus('current')
-haTrusted = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 5, 12, 1, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haTrusted.setStatus('current')
-haShared = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 5, 12, 1, 7), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haShared.setStatus('current')
-haProblemTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 5, 13), )
-if mibBuilder.loadTexts: haProblemTable.setStatus('current')
-haProblemEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 5, 13, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "haIfIndex"))
-if mibBuilder.loadTexts: haProblemEntry.setStatus('current')
-haProblemIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 5, 13, 1, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haProblemIndex.setStatus('current')
-haProblemName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 5, 13, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haProblemName.setStatus('current')
-haProblemStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 5, 13, 1, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haProblemStatus.setStatus('current')
-haProblemPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 5, 13, 1, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haProblemPriority.setStatus('current')
-haProblemVerified = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 5, 13, 1, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haProblemVerified.setStatus('current')
-haProblemDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 5, 13, 1, 6), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haProblemDescr.setStatus('current')
-haClusterIpTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 5, 15), )
-if mibBuilder.loadTexts: haClusterIpTable.setStatus('current')
-haClusterIpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 5, 15, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "haClusterIpIndex"))
-if mibBuilder.loadTexts: haClusterIpEntry.setStatus('current')
-haClusterIpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 5, 15, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haClusterIpIndex.setStatus('current')
-haClusterIpIfName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 5, 15, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haClusterIpIfName.setStatus('current')
-haClusterIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 5, 15, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haClusterIpAddr.setStatus('current')
-haClusterIpNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 5, 15, 1, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haClusterIpNetMask.setStatus('current')
-haClusterIpMemberNet = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 5, 15, 1, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haClusterIpMemberNet.setStatus('current')
-haClusterIpMemberNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 5, 15, 1, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haClusterIpMemberNetMask.setStatus('current')
-haClusterSyncTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 5, 16), )
-if mibBuilder.loadTexts: haClusterSyncTable.setStatus('current')
-haClusterSyncEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 5, 16, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "haClusterSyncIndex"))
-if mibBuilder.loadTexts: haClusterSyncEntry.setStatus('current')
-haClusterSyncIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 5, 16, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haClusterSyncIndex.setStatus('current')
-haClusterSyncName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 5, 16, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haClusterSyncName.setStatus('current')
-haClusterSyncAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 5, 16, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haClusterSyncAddr.setStatus('current')
-haClusterSyncNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 5, 16, 1, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: haClusterSyncNetMask.setStatus('current')
-svnInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 6, 4))
-svnOSInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 6, 5))
-svnPerf = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7))
-svnApplianceInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 6, 16))
-svnMem = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 1))
-svnProc = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 2))
-svnDisk = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 3))
-svnMem64 = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 4))
-svnRoutingModify = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 6, 9))
-svnLogDaemon = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 6, 11))
-svnProdName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnProdName.setStatus('current')
-svnProdVerMajor = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnProdVerMajor.setStatus('current')
-svnProdVerMinor = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnProdVerMinor.setStatus('current')
-svnVersion = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 4, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnVersion.setStatus('current')
-svnBuild = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 4, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnBuild.setStatus('current')
-osName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 5, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: osName.setStatus('current')
-osMajorVer = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 5, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: osMajorVer.setStatus('current')
-osMinorVer = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 5, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: osMinorVer.setStatus('current')
-osBuildNum = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 5, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: osBuildNum.setStatus('current')
-osSPmajor = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 5, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: osSPmajor.setStatus('current')
-osSPminor = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 5, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: osSPminor.setStatus('current')
-osVersionLevel = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 5, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: osVersionLevel.setStatus('current')
-svnApplianceSerialNumber = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 16, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnApplianceSerialNumber.setStatus('current')
-svnApplianceManufacturer = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 16, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnApplianceManufacturer.setStatus('current')
-svnApplianceProductName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 16, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnApplianceProductName.setStatus('current')
-memTotalVirtual = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 1, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: memTotalVirtual.setStatus('current')
-memActiveVirtual = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 1, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: memActiveVirtual.setStatus('current')
-memTotalReal = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: memTotalReal.setStatus('current')
-memActiveReal = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 1, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: memActiveReal.setStatus('current')
-memFreeReal = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 1, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: memFreeReal.setStatus('current')
-memSwapsSec = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 1, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: memSwapsSec.setStatus('current')
-memDiskTransfers = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 1, 7), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: memDiskTransfers.setStatus('current')
-procUsrTime = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 2, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: procUsrTime.setStatus('current')
-procSysTime = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 2, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: procSysTime.setStatus('current')
-procIdleTime = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 2, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: procIdleTime.setStatus('current')
-procUsage = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 2, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: procUsage.setStatus('current')
-procQueue = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 2, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: procQueue.setStatus('current')
-procInterrupts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 2, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: procInterrupts.setStatus('current')
-procNum = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 2, 7), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: procNum.setStatus('current')
-diskTime = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 3, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: diskTime.setStatus('current')
-diskQueue = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 3, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: diskQueue.setStatus('current')
-diskPercent = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 3, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: diskPercent.setStatus('current')
-diskFreeTotal = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 3, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: diskFreeTotal.setStatus('current')
-diskFreeAvail = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 3, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: diskFreeAvail.setStatus('current')
-diskTotal = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 3, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: diskTotal.setStatus('current')
-memTotalVirtual64 = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 4, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: memTotalVirtual64.setStatus('current')
-memActiveVirtual64 = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 4, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: memActiveVirtual64.setStatus('current')
-memTotalReal64 = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 4, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: memTotalReal64.setStatus('current')
-memActiveReal64 = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 4, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: memActiveReal64.setStatus('current')
-memFreeReal64 = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 4, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: memFreeReal64.setStatus('current')
-memSwapsSec64 = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 4, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: memSwapsSec64.setStatus('current')
-memDiskTransfers64 = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 4, 7), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: memDiskTransfers64.setStatus('current')
-multiProcTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 5), )
-if mibBuilder.loadTexts: multiProcTable.setStatus('current')
-multiProcEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 5, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "multiProcIndex"))
-if mibBuilder.loadTexts: multiProcEntry.setStatus('current')
-multiProcIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 5, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: multiProcIndex.setStatus('current')
-multiProcUserTime = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 5, 1, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: multiProcUserTime.setStatus('current')
-multiProcSystemTime = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 5, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: multiProcSystemTime.setStatus('current')
-multiProcIdleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 5, 1, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: multiProcIdleTime.setStatus('current')
-multiProcUsage = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 5, 1, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: multiProcUsage.setStatus('current')
-multiProcRunQueue = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 5, 1, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: multiProcRunQueue.setStatus('current')
-multiProcInterrupts = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 5, 1, 7), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: multiProcInterrupts.setStatus('current')
-multiDiskTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 6), )
-if mibBuilder.loadTexts: multiDiskTable.setStatus('current')
-multiDiskEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 6, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "multiDiskIndex"))
-if mibBuilder.loadTexts: multiDiskEntry.setStatus('current')
-multiDiskIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 6, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: multiDiskIndex.setStatus('current')
-multiDiskName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 6, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: multiDiskName.setStatus('current')
-multiDiskSize = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 6, 1, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: multiDiskSize.setStatus('current')
-multiDiskUsed = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 6, 1, 4), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: multiDiskUsed.setStatus('current')
-multiDiskFreeTotalBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 6, 1, 5), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: multiDiskFreeTotalBytes.setStatus('current')
-multiDiskFreeTotalPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 6, 1, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: multiDiskFreeTotalPercent.setStatus('current')
-multiDiskFreeAvailableBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 6, 1, 7), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: multiDiskFreeAvailableBytes.setStatus('current')
-multiDiskFreeAvailablePercent = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 6, 1, 8), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: multiDiskFreeAvailablePercent.setStatus('current')
-raidInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7))
-sensorInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8))
-powerSupplyInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 9))
-raidVolumeTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7, 1), )
-if mibBuilder.loadTexts: raidVolumeTable.setStatus('current')
-raidVolumeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7, 1, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "raidVolumeIndex"))
-if mibBuilder.loadTexts: raidVolumeEntry.setStatus('current')
-raidVolumeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raidVolumeIndex.setStatus('current')
-raidVolumeID = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7, 1, 1, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raidVolumeID.setStatus('current')
-raidVolumeType = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7, 1, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raidVolumeType.setStatus('current')
-numOfDisksOnRaid = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7, 1, 1, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: numOfDisksOnRaid.setStatus('current')
-raidVolumeMaxLBA = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7, 1, 1, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raidVolumeMaxLBA.setStatus('current')
-raidVolumeState = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7, 1, 1, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raidVolumeState.setStatus('current')
-raidVolumeFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7, 1, 1, 7), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raidVolumeFlags.setStatus('current')
-raidVolumeSize = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7, 1, 1, 8), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raidVolumeSize.setStatus('current')
-raidDiskTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7, 2), )
-if mibBuilder.loadTexts: raidDiskTable.setStatus('current')
-raidDiskEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7, 2, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "raidDiskIndex"))
-if mibBuilder.loadTexts: raidDiskEntry.setStatus('current')
-raidDiskIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7, 2, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raidDiskIndex.setStatus('current')
-raidDiskVolumeID = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7, 2, 1, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raidDiskVolumeID.setStatus('current')
-raidDiskID = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7, 2, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raidDiskID.setStatus('current')
-raidDiskNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7, 2, 1, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raidDiskNumber.setStatus('current')
-raidDiskVendor = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7, 2, 1, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raidDiskVendor.setStatus('current')
-raidDiskProductID = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7, 2, 1, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raidDiskProductID.setStatus('current')
-raidDiskRevision = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7, 2, 1, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raidDiskRevision.setStatus('current')
-raidDiskMaxLBA = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7, 2, 1, 8), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raidDiskMaxLBA.setStatus('current')
-raidDiskState = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7, 2, 1, 9), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raidDiskState.setStatus('current')
-raidDiskFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7, 2, 1, 10), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raidDiskFlags.setStatus('current')
-raidDiskSyncState = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7, 2, 1, 11), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raidDiskSyncState.setStatus('current')
-raidDiskSize = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 7, 2, 1, 12), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: raidDiskSize.setStatus('current')
-tempertureSensorTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8, 1), )
-if mibBuilder.loadTexts: tempertureSensorTable.setStatus('current')
-tempertureSensorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8, 1, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "tempertureSensorIndex"))
-if mibBuilder.loadTexts: tempertureSensorEntry.setStatus('current')
-tempertureSensorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: tempertureSensorIndex.setStatus('current')
-tempertureSensorName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: tempertureSensorName.setStatus('current')
-tempertureSensorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8, 1, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: tempertureSensorValue.setStatus('current')
-tempertureSensorUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8, 1, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: tempertureSensorUnit.setStatus('current')
-tempertureSensorType = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8, 1, 1, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: tempertureSensorType.setStatus('current')
-tempertureSensorStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8, 1, 1, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: tempertureSensorStatus.setStatus('current')
-fanSpeedSensorTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8, 2), )
-if mibBuilder.loadTexts: fanSpeedSensorTable.setStatus('current')
-fanSpeedSensorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8, 2, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "fanSpeedSensorIndex"))
-if mibBuilder.loadTexts: fanSpeedSensorEntry.setStatus('current')
-fanSpeedSensorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8, 2, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fanSpeedSensorIndex.setStatus('current')
-fanSpeedSensorName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fanSpeedSensorName.setStatus('current')
-fanSpeedSensorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8, 2, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fanSpeedSensorValue.setStatus('current')
-fanSpeedSensorUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8, 2, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fanSpeedSensorUnit.setStatus('current')
-fanSpeedSensorType = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8, 2, 1, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fanSpeedSensorType.setStatus('current')
-fanSpeedSensorStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8, 2, 1, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: fanSpeedSensorStatus.setStatus('current')
-voltageSensorTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8, 3), )
-if mibBuilder.loadTexts: voltageSensorTable.setStatus('current')
-voltageSensorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8, 3, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "voltageSensorIndex"))
-if mibBuilder.loadTexts: voltageSensorEntry.setStatus('current')
-voltageSensorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8, 3, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voltageSensorIndex.setStatus('current')
-voltageSensorName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8, 3, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voltageSensorName.setStatus('current')
-voltageSensorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8, 3, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voltageSensorValue.setStatus('current')
-voltageSensorUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8, 3, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voltageSensorUnit.setStatus('current')
-voltageSensorType = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8, 3, 1, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voltageSensorType.setStatus('current')
-voltageSensorStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 8, 3, 1, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voltageSensorStatus.setStatus('current')
-powerSupplyTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 9, 1), )
-if mibBuilder.loadTexts: powerSupplyTable.setStatus('current')
-powerSupplyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 9, 1, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "powerSupplyIndex"))
-if mibBuilder.loadTexts: powerSupplyEntry.setStatus('current')
-powerSupplyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 9, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: powerSupplyIndex.setStatus('current')
-powerSupplyStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 7, 9, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: powerSupplyStatus.setStatus('current')
-routingTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 6, 6), )
-if mibBuilder.loadTexts: routingTable.setStatus('current')
-routingEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 6, 6, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "routingIndex"))
-if mibBuilder.loadTexts: routingEntry.setStatus('current')
-routingIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 6, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: routingIndex.setStatus('current')
-routingDest = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 6, 1, 2), IpAddress()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: routingDest.setStatus('current')
-routingMask = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 6, 1, 3), IpAddress()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: routingMask.setStatus('current')
-routingGatweway = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 6, 1, 4), IpAddress()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: routingGatweway.setStatus('current')
-routingIntrfName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 6, 1, 5), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: routingIntrfName.setStatus('current')
-svnSysTime = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 8), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnSysTime.setStatus('current')
-svnRouteModDest = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 9, 2), IpAddress()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnRouteModDest.setStatus('current')
-svnRouteModMask = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 9, 3), IpAddress()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnRouteModMask.setStatus('current')
-svnRouteModGateway = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 9, 4), IpAddress()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnRouteModGateway.setStatus('current')
-svnRouteModIfIndex = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 9, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnRouteModIfIndex.setStatus('current')
-svnRouteModIfName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 9, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnRouteModIfName.setStatus('current')
-svnRouteModAction = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 9, 10), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnRouteModAction.setStatus('current')
-svnUTCTimeOffset = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 10), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnUTCTimeOffset.setStatus('current')
-svnLogDStat = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 11, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnLogDStat.setStatus('current')
-svnSysStartTime = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 12), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnSysStartTime.setStatus('current')
-svnSysUniqId = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 13), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnSysUniqId.setStatus('current')
-svnWebUIPort = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 15), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnWebUIPort.setStatus('current')
-svnNetStat = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 6, 50))
-svnNetIfTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 6, 50, 1), )
-if mibBuilder.loadTexts: svnNetIfTable.setStatus('current')
-svnNetIfTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 6, 50, 1, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "svnNetIfIndex"))
-if mibBuilder.loadTexts: svnNetIfTableEntry.setStatus('current')
-svnNetIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 50, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnNetIfIndex.setStatus('current')
-svnNetIfVsid = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 50, 1, 1, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnNetIfVsid.setStatus('current')
-svnNetIfName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 50, 1, 1, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnNetIfName.setStatus('current')
-svnNetIfAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 50, 1, 1, 4), IpAddress()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnNetIfAddress.setStatus('current')
-svnNetIfMask = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 50, 1, 1, 5), IpAddress()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnNetIfMask.setStatus('current')
-svnNetIfMTU = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 50, 1, 1, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnNetIfMTU.setStatus('current')
-svnNetIfState = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 50, 1, 1, 7), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnNetIfState.setStatus('current')
-svnNetIfMAC = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 50, 1, 1, 8), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnNetIfMAC.setStatus('current')
-svnNetIfDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 50, 1, 1, 9), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnNetIfDescription.setStatus('current')
-svnNetIfOperState = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 50, 1, 1, 10), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnNetIfOperState.setStatus('current')
-vsRoutingTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 6, 51), )
-if mibBuilder.loadTexts: vsRoutingTable.setStatus('current')
-vsRoutingEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 6, 51, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "vsRoutingIndex"))
-if mibBuilder.loadTexts: vsRoutingEntry.setStatus('current')
-vsRoutingIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 51, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsRoutingIndex.setStatus('current')
-vsRoutingDest = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 51, 1, 2), IpAddress()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsRoutingDest.setStatus('current')
-vsRoutingMask = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 51, 1, 3), IpAddress()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsRoutingMask.setStatus('current')
-vsRoutingGateway = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 51, 1, 4), IpAddress()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsRoutingGateway.setStatus('current')
-vsRoutingIntrfName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 51, 1, 5), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsRoutingIntrfName.setStatus('current')
-vsRoutingVsId = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 6, 51, 1, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: vsRoutingVsId.setStatus('current')
-svnStatCode = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 101), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnStatCode.setStatus('current')
-svnStatShortDescr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 102), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnStatShortDescr.setStatus('current')
-svnStatLongDescr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 103), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnStatLongDescr.setStatus('current')
-svnServicePack = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 6, 999), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: svnServicePack.setStatus('current')
-mgProdName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 7, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: mgProdName.setStatus('current')
-mgVerMajor = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 7, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: mgVerMajor.setStatus('current')
-mgVerMinor = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 7, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: mgVerMinor.setStatus('current')
-mgBuildNumber = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 7, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: mgBuildNumber.setStatus('current')
-mgActiveStatus = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 7, 5), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: mgActiveStatus.setStatus('current')
-mgFwmIsAlive = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 7, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: mgFwmIsAlive.setStatus('current')
-mgConnectedClientsTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 7, 7), )
-if mibBuilder.loadTexts: mgConnectedClientsTable.setStatus('current')
-mgConnectedClientsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 7, 7, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "mgIndex"))
-if mibBuilder.loadTexts: mgConnectedClientsEntry.setStatus('current')
-mgIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 7, 7, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: mgIndex.setStatus('current')
-mgClientName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 7, 7, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: mgClientName.setStatus('current')
-mgClientHost = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 7, 7, 1, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: mgClientHost.setStatus('current')
-mgClientDbLock = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 7, 7, 1, 4), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: mgClientDbLock.setStatus('current')
-mgApplicationType = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 7, 7, 1, 5), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: mgApplicationType.setStatus('current')
-mgStatCode = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 7, 101), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: mgStatCode.setStatus('current')
-mgStatShortDescr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 7, 102), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: mgStatShortDescr.setStatus('current')
-mgStatLongDescr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 7, 103), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: mgStatLongDescr.setStatus('current')
-wamPluginPerformance = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 8, 6))
-wamPolicy = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 8, 7))
-wamUagQueries = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 8, 8))
-wamGlobalPerformance = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 8, 9))
-wamProdName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 8, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: wamProdName.setStatus('current')
-wamVerMajor = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 8, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: wamVerMajor.setStatus('current')
-wamVerMinor = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 8, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: wamVerMinor.setStatus('current')
-wamState = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 8, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: wamState.setStatus('current')
-wamName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 8, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: wamName.setStatus('current')
-wamStatCode = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 8, 101), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: wamStatCode.setStatus('current')
-wamStatShortDescr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 8, 102), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: wamStatShortDescr.setStatus('current')
-wamStatLongDescr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 8, 103), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: wamStatLongDescr.setStatus('current')
-wamAcceptReq = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 8, 6, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: wamAcceptReq.setStatus('current')
-wamRejectReq = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 8, 6, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: wamRejectReq.setStatus('current')
-wamPolicyName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 8, 7, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: wamPolicyName.setStatus('current')
-wamPolicyUpdate = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 8, 7, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: wamPolicyUpdate.setStatus('current')
-wamUagHost = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 8, 8, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: wamUagHost.setStatus('current')
-wamUagIp = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 8, 8, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: wamUagIp.setStatus('current')
-wamUagPort = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 8, 8, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: wamUagPort.setStatus('current')
-wamUagNoQueries = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 8, 8, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: wamUagNoQueries.setStatus('current')
-wamUagLastQuery = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 8, 8, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: wamUagLastQuery.setStatus('current')
-wamOpenSessions = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 8, 9, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: wamOpenSessions.setStatus('current')
-wamLastSession = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 8, 9, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: wamLastSession.setStatus('current')
-dtpsProdName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 9, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dtpsProdName.setStatus('current')
-dtpsVerMajor = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 9, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dtpsVerMajor.setStatus('current')
-dtpsVerMinor = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 9, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dtpsVerMinor.setStatus('current')
-dtpsLicensedUsers = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 9, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dtpsLicensedUsers.setStatus('current')
-dtpsConnectedUsers = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 9, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dtpsConnectedUsers.setStatus('current')
-dtpsStatCode = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 9, 101), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dtpsStatCode.setStatus('current')
-dtpsStatShortDescr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 9, 102), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dtpsStatShortDescr.setStatus('current')
-dtpsStatLongDescr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 9, 103), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dtpsStatLongDescr.setStatus('current')
-lsProdName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 11, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: lsProdName.setStatus('current')
-lsVerMajor = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 11, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: lsVerMajor.setStatus('current')
-lsVerMinor = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 11, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: lsVerMinor.setStatus('current')
-lsBuildNumber = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 11, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: lsBuildNumber.setStatus('current')
-lsFwmIsAlive = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 11, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: lsFwmIsAlive.setStatus('current')
-lsStatCode = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 11, 101), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: lsStatCode.setStatus('current')
-lsStatShortDescr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 11, 102), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: lsStatShortDescr.setStatus('current')
-lsStatLongDescr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 11, 103), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: lsStatLongDescr.setStatus('current')
-lsConnectedClientsTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 11, 7), )
-if mibBuilder.loadTexts: lsConnectedClientsTable.setStatus('current')
-lsConnectedClientsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 11, 7, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "lsIndex"))
-if mibBuilder.loadTexts: lsConnectedClientsEntry.setStatus('current')
-lsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 11, 7, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: lsIndex.setStatus('current')
-lsClientName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 11, 7, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: lsClientName.setStatus('current')
-lsClientHost = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 11, 7, 1, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: lsClientHost.setStatus('current')
-lsClientDbLock = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 11, 7, 1, 4), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: lsClientDbLock.setStatus('current')
-lsApplicationType = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 11, 7, 1, 5), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: lsApplicationType.setStatus('current')
-asmAttacks = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1))
-asmLayer3 = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 1))
-asmLayer4 = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 2))
-asmTCP = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 2, 1))
-asmSynatk = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 2, 1, 1))
-asmSmallPmtu = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 2, 1, 2))
-asmSeqval = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 2, 1, 3))
-asmUDP = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 2, 2))
-asmScans = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 2, 3))
-asmHostPortScan = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 2, 3, 1))
-asmIPSweep = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 2, 3, 2))
-asmLayer5 = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3))
-asmHTTP = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 1))
-asmHttpWorms = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 1, 1))
-asmHttpFormatViolatoin = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 1, 2))
-asmHttpAsciiViolation = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 1, 3))
-asmHttpP2PHeaderFilter = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 1, 4))
-asmCIFS = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 2))
-asmCIFSWorms = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 2, 1))
-asmCIFSNullSession = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 2, 2))
-asmCIFSBlockedPopUps = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 2, 3))
-asmCIFSBlockedCommands = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 2, 4))
-asmCIFSPasswordLengthViolations = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 2, 5))
-asmP2P = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 3))
-asmP2POtherConAttempts = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 3, 1))
-asmP2PKazaaConAttempts = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 3, 2))
-asmP2PeMuleConAttempts = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 3, 3))
-asmP2PGnutellaConAttempts = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 3, 4))
-asmP2PSkypeCon = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 3, 5))
-asmP2PBitTorrentCon = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 3, 6))
-asmSynatkSynAckTimeout = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 2, 1, 1, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: asmSynatkSynAckTimeout.setStatus('current')
-asmSynatkSynAckReset = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 2, 1, 1, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: asmSynatkSynAckReset.setStatus('current')
-asmSynatkModeChange = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 2, 1, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: asmSynatkModeChange.setStatus('current')
-asmSynatkCurrentMode = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 2, 1, 1, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: asmSynatkCurrentMode.setStatus('current')
-asmSynatkNumberofunAckedSyns = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 2, 1, 1, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: asmSynatkNumberofunAckedSyns.setStatus('current')
-smallPMTUNumberOfAttacks = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 2, 1, 2, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: smallPMTUNumberOfAttacks.setStatus('current')
-smallPMTUValueOfMinimalMTUsize = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 2, 1, 2, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: smallPMTUValueOfMinimalMTUsize.setStatus('current')
-sequenceVerifierInvalidAck = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 2, 1, 3, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: sequenceVerifierInvalidAck.setStatus('current')
-sequenceVerifierInvalidSequence = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 2, 1, 3, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: sequenceVerifierInvalidSequence.setStatus('current')
-sequenceVerifierInvalidretransmit = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 2, 1, 3, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: sequenceVerifierInvalidretransmit.setStatus('current')
-httpWorms = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 1, 1, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: httpWorms.setStatus('current')
-numOfhostPortScan = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 2, 3, 1, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: numOfhostPortScan.setStatus('current')
-numOfIpSweep = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 2, 3, 2, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: numOfIpSweep.setStatus('current')
-httpURLLengthViolation = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 1, 2, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: httpURLLengthViolation.setStatus('current')
-httpHeaderLengthViolations = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 1, 2, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: httpHeaderLengthViolations.setStatus('current')
-httpMaxHeaderReached = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 1, 2, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: httpMaxHeaderReached.setStatus('current')
-numOfHttpASCIIViolations = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 1, 3, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: numOfHttpASCIIViolations.setStatus('current')
-numOfHttpP2PHeaders = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 1, 4, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: numOfHttpP2PHeaders.setStatus('current')
-numOfCIFSworms = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 2, 1, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: numOfCIFSworms.setStatus('current')
-numOfCIFSNullSessions = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 2, 2, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: numOfCIFSNullSessions.setStatus('current')
-numOfCIFSBlockedPopUps = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 2, 3, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: numOfCIFSBlockedPopUps.setStatus('current')
-numOfCIFSBlockedCommands = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 2, 4, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: numOfCIFSBlockedCommands.setStatus('current')
-numOfCIFSPasswordLengthViolations = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 2, 5, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: numOfCIFSPasswordLengthViolations.setStatus('current')
-numOfP2POtherConAttempts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 3, 1, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: numOfP2POtherConAttempts.setStatus('current')
-numOfP2PKazaaConAttempts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 3, 2, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: numOfP2PKazaaConAttempts.setStatus('current')
-numOfP2PeMuleConAttempts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 3, 3, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: numOfP2PeMuleConAttempts.setStatus('current')
-numOfGnutellaConAttempts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 3, 4, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: numOfGnutellaConAttempts.setStatus('current')
-numOfP2PSkypeCon = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 3, 5, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: numOfP2PSkypeCon.setStatus('current')
-numOfBitTorrentCon = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 17, 1, 3, 3, 6, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: numOfBitTorrentCon.setStatus('current')
-aviEngines = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 24, 1))
-aviTopViruses = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 24, 2))
-aviTopEverViruses = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 24, 3))
-aviServices = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4))
-aviServicesHTTP = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 1))
-aviServicesFTP = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 2))
-aviServicesSMTP = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 3))
-aviServicesPOP3 = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 4))
-aviStatCode = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 24, 101), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviStatCode.setStatus('current')
-aviStatShortDescr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 24, 102), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviStatShortDescr.setStatus('current')
-aviStatLongDescr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 24, 103), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviStatLongDescr.setStatus('current')
-aviEngineTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 24, 1, 1), )
-if mibBuilder.loadTexts: aviEngineTable.setStatus('current')
-aviEngineEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 24, 1, 1, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "aviEngineIndex"))
-if mibBuilder.loadTexts: aviEngineEntry.setStatus('current')
-aviEngineIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 1, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviEngineIndex.setStatus('current')
-aviEngineName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 1, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviEngineName.setStatus('current')
-aviEngineVer = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 1, 1, 1, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviEngineVer.setStatus('current')
-aviEngineDate = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 1, 1, 1, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviEngineDate.setStatus('current')
-aviSignatureName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 1, 1, 1, 5), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviSignatureName.setStatus('current')
-aviSignatureVer = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 1, 1, 1, 6), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviSignatureVer.setStatus('current')
-aviSignatureDate = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 1, 1, 1, 7), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviSignatureDate.setStatus('current')
-aviLastSigCheckTime = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 1, 1, 1, 8), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviLastSigCheckTime.setStatus('current')
-aviLastSigLocation = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 1, 1, 1, 9), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviLastSigLocation.setStatus('current')
-aviLastLicExp = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 1, 1, 1, 10), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviLastLicExp.setStatus('current')
-aviTopVirusesTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 24, 2, 1), )
-if mibBuilder.loadTexts: aviTopVirusesTable.setStatus('current')
-aviTopVirusesEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 24, 2, 1, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "aviTopVirusesIndex"))
-if mibBuilder.loadTexts: aviTopVirusesEntry.setStatus('current')
-aviTopVirusesIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 2, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviTopVirusesIndex.setStatus('current')
-aviTopVirusesName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 2, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviTopVirusesName.setStatus('current')
-aviTopVirusesCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 2, 1, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviTopVirusesCnt.setStatus('current')
-aviTopEverVirusesTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 24, 3, 1), )
-if mibBuilder.loadTexts: aviTopEverVirusesTable.setStatus('current')
-aviTopEverVirusesEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 24, 3, 1, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "aviTopEverVirusesIndex"))
-if mibBuilder.loadTexts: aviTopEverVirusesEntry.setStatus('current')
-aviTopEverVirusesIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 3, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviTopEverVirusesIndex.setStatus('current')
-aviTopEverVirusesName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 3, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviTopEverVirusesName.setStatus('current')
-aviTopEverVirusesCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 3, 1, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviTopEverVirusesCnt.setStatus('current')
-aviHTTPState = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 1, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviHTTPState.setStatus('current')
-aviHTTPLastVirusName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviHTTPLastVirusName.setStatus('current')
-aviHTTPLastVirusTime = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviHTTPLastVirusTime.setStatus('current')
-aviHTTPTopVirusesTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 1, 4), )
-if mibBuilder.loadTexts: aviHTTPTopVirusesTable.setStatus('current')
-aviHTTPTopVirusesEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 1, 4, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "aviHTTPTopVirusesIndex"))
-if mibBuilder.loadTexts: aviHTTPTopVirusesEntry.setStatus('current')
-aviHTTPTopVirusesIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 1, 4, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviHTTPTopVirusesIndex.setStatus('current')
-aviHTTPTopVirusesName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 1, 4, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviHTTPTopVirusesName.setStatus('current')
-aviHTTPTopVirusesCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 1, 4, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviHTTPTopVirusesCnt.setStatus('current')
-aviFTPState = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 2, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviFTPState.setStatus('current')
-aviFTPLastVirusName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 2, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviFTPLastVirusName.setStatus('current')
-aviFTPLastVirusTime = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 2, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviFTPLastVirusTime.setStatus('current')
-aviFTPTopVirusesTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 2, 4), )
-if mibBuilder.loadTexts: aviFTPTopVirusesTable.setStatus('current')
-aviFTPTopVirusesEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 2, 4, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "aviFTPTopVirusesIndex"))
-if mibBuilder.loadTexts: aviFTPTopVirusesEntry.setStatus('current')
-aviFTPTopVirusesIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 2, 4, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviFTPTopVirusesIndex.setStatus('current')
-aviFTPTopVirusesName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 2, 4, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviFTPTopVirusesName.setStatus('current')
-aviFTPTopVirusesCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 2, 4, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviFTPTopVirusesCnt.setStatus('current')
-aviSMTPState = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 3, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviSMTPState.setStatus('current')
-aviSMTPLastVirusName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 3, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviSMTPLastVirusName.setStatus('current')
-aviSMTPLastVirusTime = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 3, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviSMTPLastVirusTime.setStatus('current')
-aviSMTPTopVirusesTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 3, 4), )
-if mibBuilder.loadTexts: aviSMTPTopVirusesTable.setStatus('current')
-aviSMTPTopVirusesEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 3, 4, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "aviSMTPTopVirusesIndex"))
-if mibBuilder.loadTexts: aviSMTPTopVirusesEntry.setStatus('current')
-aviSMTPTopVirusesIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 3, 4, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviSMTPTopVirusesIndex.setStatus('current')
-aviSMTPTopVirusesName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 3, 4, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviSMTPTopVirusesName.setStatus('current')
-aviSMTPTopVirusesCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 3, 4, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviSMTPTopVirusesCnt.setStatus('current')
-aviPOP3State = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 4, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviPOP3State.setStatus('current')
-aviPOP3LastVirusName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 4, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviPOP3LastVirusName.setStatus('current')
-aviPOP3LastVirusTime = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 4, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviPOP3LastVirusTime.setStatus('current')
-aviPOP3TopVirusesTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 4, 4), )
-if mibBuilder.loadTexts: aviPOP3TopVirusesTable.setStatus('current')
-aviPOP3TopVirusesEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 4, 4, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "aviPOP3TopVirusesIndex"))
-if mibBuilder.loadTexts: aviPOP3TopVirusesEntry.setStatus('current')
-aviPOP3TopVirusesIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 4, 4, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviPOP3TopVirusesIndex.setStatus('current')
-aviPOP3TopVirusesName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 4, 4, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviPOP3TopVirusesName.setStatus('current')
-aviPOP3TopVirusesCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 24, 4, 4, 4, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: aviPOP3TopVirusesCnt.setStatus('current')
-cpsemd = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 25, 1))
-cpsead = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 25, 2))
-cpsemdStatCode = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 25, 1, 101), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpsemdStatCode.setStatus('current')
-cpsemdStatShortDescr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 25, 1, 102), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpsemdStatShortDescr.setStatus('current')
-cpsemdStatLongDescr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 25, 1, 103), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpsemdStatLongDescr.setStatus('current')
-cpsemdProcAlive = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 25, 1, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpsemdProcAlive.setStatus('current')
-cpsemdNewEventsHandled = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 25, 1, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpsemdNewEventsHandled.setStatus('current')
-cpsemdUpdatesHandled = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 25, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpsemdUpdatesHandled.setStatus('current')
-cpsemdLastEventTime = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 25, 1, 4), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpsemdLastEventTime.setStatus('current')
-cpsemdCurrentDBSize = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 25, 1, 5), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpsemdCurrentDBSize.setStatus('current')
-cpsemdDBCapacity = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 25, 1, 6), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpsemdDBCapacity.setStatus('current')
-cpsemdNumEvents = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 25, 1, 7), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpsemdNumEvents.setStatus('current')
-cpsemdDBDiskSpace = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 25, 1, 8), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpsemdDBDiskSpace.setStatus('current')
-cpsemdCorrelationUnitTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 25, 1, 9), )
-if mibBuilder.loadTexts: cpsemdCorrelationUnitTable.setStatus('current')
-cpsemdDBIsFull = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 25, 1, 10), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpsemdDBIsFull.setStatus('current')
-cpsemdCorrelationUnitEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 25, 1, 9, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "cpsemdCorrelationUnitIndex"))
-if mibBuilder.loadTexts: cpsemdCorrelationUnitEntry.setStatus('current')
-cpsemdCorrelationUnitIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 25, 1, 9, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpsemdCorrelationUnitIndex.setStatus('current')
-cpsemdCorrelationUnitIP = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 25, 1, 9, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpsemdCorrelationUnitIP.setStatus('current')
-cpsemdCorrelationUnitLastRcvdTime = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 25, 1, 9, 1, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpsemdCorrelationUnitLastRcvdTime.setStatus('current')
-cpsemdCorrelationUnitNumEventsRcvd = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 25, 1, 9, 1, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpsemdCorrelationUnitNumEventsRcvd.setStatus('current')
-cpsemdConnectionDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 25, 1, 9, 1, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpsemdConnectionDuration.setStatus('current')
-cpseadStatCode = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 25, 2, 101), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpseadStatCode.setStatus('current')
-cpseadStatShortDescr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 25, 2, 102), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpseadStatShortDescr.setStatus('current')
-cpseadStatLongDescr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 25, 2, 103), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpseadStatLongDescr.setStatus('current')
-cpseadProcAlive = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 25, 2, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpseadProcAlive.setStatus('current')
-cpseadConnectedToSem = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 25, 2, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpseadConnectedToSem.setStatus('current')
-cpseadNumProcessedLogs = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 25, 2, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpseadNumProcessedLogs.setStatus('current')
-cpseadJobsTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 25, 2, 4), )
-if mibBuilder.loadTexts: cpseadJobsTable.setStatus('current')
-cpseadJobsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 25, 2, 4, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "cpseadJobIndex"))
-if mibBuilder.loadTexts: cpseadJobsEntry.setStatus('current')
-cpseadJobIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 25, 2, 4, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpseadJobIndex.setStatus('current')
-cpseadJobID = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 25, 2, 4, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpseadJobID.setStatus('current')
-cpseadJobName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 25, 2, 4, 1, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpseadJobName.setStatus('current')
-cpseadJobState = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 25, 2, 4, 1, 4), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpseadJobState.setStatus('current')
-cpseadJobIsOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 25, 2, 4, 1, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpseadJobIsOnline.setStatus('current')
-cpseadJobLogServer = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 25, 2, 4, 1, 6), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpseadJobLogServer.setStatus('current')
-cpseadJobDataType = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 25, 2, 4, 1, 7), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpseadJobDataType.setStatus('current')
-cpseadConnectedToLogServer = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 25, 2, 4, 1, 8), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpseadConnectedToLogServer.setStatus('current')
-cpseadNumAnalyzedLogs = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 25, 2, 4, 1, 9), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpseadNumAnalyzedLogs.setStatus('current')
-cpseadFileName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 25, 2, 4, 1, 10), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpseadFileName.setStatus('current')
-cpseadFileCurrentPosition = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 25, 2, 4, 1, 11), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpseadFileCurrentPosition.setStatus('current')
-cpseadStateDescriptionCode = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 25, 2, 4, 1, 12), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpseadStateDescriptionCode.setStatus('current')
-cpseadStateDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 25, 2, 4, 1, 13), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpseadStateDescription.setStatus('current')
-cpseadNoFreeDiskSpace = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 25, 2, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: cpseadNoFreeDiskSpace.setStatus('current')
-ufEngine = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 29, 1))
-ufSS = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 29, 2))
-ufStatCode = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 29, 101), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ufStatCode.setStatus('current')
-ufStatShortDescr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 29, 102), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ufStatShortDescr.setStatus('current')
-ufStatLongDescr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 29, 103), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ufStatLongDescr.setStatus('current')
-ufEngineName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 29, 1, 1), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ufEngineName.setStatus('current')
-ufEngineVer = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 29, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ufEngineVer.setStatus('current')
-ufEngineDate = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 29, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ufEngineDate.setStatus('current')
-ufSignatureDate = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 29, 1, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ufSignatureDate.setStatus('current')
-ufSignatureVer = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 29, 1, 5), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ufSignatureVer.setStatus('current')
-ufLastSigCheckTime = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 29, 1, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ufLastSigCheckTime.setStatus('current')
-ufLastSigLocation = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 29, 1, 7), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ufLastSigLocation.setStatus('current')
-ufLastLicExp = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 29, 1, 8), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ufLastLicExp.setStatus('current')
-ufIsMonitor = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 29, 2, 1), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ufIsMonitor.setStatus('current')
-ufScannedCnt = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 29, 2, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ufScannedCnt.setStatus('current')
-ufBlockedCnt = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 29, 2, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ufBlockedCnt.setStatus('current')
-ufTopBlockedCatTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 29, 2, 4), )
-if mibBuilder.loadTexts: ufTopBlockedCatTable.setStatus('current')
-ufTopBlockedCatEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 29, 2, 4, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "ufTopBlockedCatIndex"))
-if mibBuilder.loadTexts: ufTopBlockedCatEntry.setStatus('current')
-ufTopBlockedCatIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 29, 2, 4, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ufTopBlockedCatIndex.setStatus('current')
-ufTopBlockedCatName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 29, 2, 4, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ufTopBlockedCatName.setStatus('current')
-ufTopBlockedCatCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 29, 2, 4, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ufTopBlockedCatCnt.setStatus('current')
-ufTopBlockedSiteTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 29, 2, 5), )
-if mibBuilder.loadTexts: ufTopBlockedSiteTable.setStatus('current')
-ufTopBlockedSiteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 29, 2, 5, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "ufTopBlockedSiteIndex"))
-if mibBuilder.loadTexts: ufTopBlockedSiteEntry.setStatus('current')
-ufTopBlockedSiteIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 29, 2, 5, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ufTopBlockedSiteIndex.setStatus('current')
-ufTopBlockedSiteName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 29, 2, 5, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ufTopBlockedSiteName.setStatus('current')
-ufTopBlockedSiteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 29, 2, 5, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ufTopBlockedSiteCnt.setStatus('current')
-ufTopBlockedUserTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 29, 2, 6), )
-if mibBuilder.loadTexts: ufTopBlockedUserTable.setStatus('current')
-ufTopBlockedUserEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 29, 2, 6, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "ufTopBlockedUserIndex"))
-if mibBuilder.loadTexts: ufTopBlockedUserEntry.setStatus('current')
-ufTopBlockedUserIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 29, 2, 6, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ufTopBlockedUserIndex.setStatus('current')
-ufTopBlockedUserName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 29, 2, 6, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ufTopBlockedUserName.setStatus('current')
-ufTopBlockedUserCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 29, 2, 6, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ufTopBlockedUserCnt.setStatus('current')
-msProductName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 30, 1), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: msProductName.setStatus('current')
-msMajorVersion = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 30, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: msMajorVersion.setStatus('current')
-msMinorVersion = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 30, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: msMinorVersion.setStatus('current')
-msBuildNumber = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 30, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: msBuildNumber.setStatus('current')
-msVersionStr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 30, 5), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: msVersionStr.setStatus('current')
-msSpam = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 30, 6))
-msSpamNumScannedEmails = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 30, 6, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: msSpamNumScannedEmails.setStatus('current')
-msSpamNumSpamEmails = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 30, 6, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: msSpamNumSpamEmails.setStatus('current')
-msSpamNumHandledSpamEmails = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 30, 6, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: msSpamNumHandledSpamEmails.setStatus('current')
-msSpamControls = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 30, 6, 4))
-msSpamControlsSpamEngine = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 30, 6, 4, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: msSpamControlsSpamEngine.setStatus('current')
-msSpamControlsIpRepuatation = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 30, 6, 4, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: msSpamControlsIpRepuatation.setStatus('current')
-msSpamControlsSPF = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 30, 6, 4, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: msSpamControlsSPF.setStatus('current')
-msSpamControlsDomainKeys = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 30, 6, 4, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: msSpamControlsDomainKeys.setStatus('current')
-msSpamControlsRDNS = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 30, 6, 4, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: msSpamControlsRDNS.setStatus('current')
-msSpamControlsRBL = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 30, 6, 4, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: msSpamControlsRBL.setStatus('current')
-msExpirationDate = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 30, 7), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: msExpirationDate.setStatus('current')
-msEngineVer = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 30, 8), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: msEngineVer.setStatus('current')
-msEngineDate = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 30, 9), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: msEngineDate.setStatus('current')
-msStatCode = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 30, 101), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: msStatCode.setStatus('current')
-msStatShortDescr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 30, 102), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: msStatShortDescr.setStatus('current')
-msStatLongDescr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 30, 103), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: msStatLongDescr.setStatus('current')
-msServicePack = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 30, 999), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: msServicePack.setStatus('current')
-voipProductName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 31, 1), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipProductName.setStatus('current')
-voipMajorVersion = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 31, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipMajorVersion.setStatus('current')
-voipMinorVersion = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 31, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipMinorVersion.setStatus('current')
-voipBuildNumber = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 31, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipBuildNumber.setStatus('current')
-voipVersionStr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 31, 5), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipVersionStr.setStatus('current')
-voipDOS = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 31, 6))
-voipDOSSip = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 31, 6, 1))
-voipDOSSipNetwork = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 31, 6, 1, 1))
-voipDOSSipNetworkReqInterval = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 31, 6, 1, 1, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipDOSSipNetworkReqInterval.setStatus('current')
-voipDOSSipNetworkReqConfThreshold = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 31, 6, 1, 1, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipDOSSipNetworkReqConfThreshold.setStatus('current')
-voipDOSSipNetworkReqCurrentVal = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 31, 6, 1, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipDOSSipNetworkReqCurrentVal.setStatus('current')
-voipDOSSipNetworkRegInterval = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 31, 6, 1, 1, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipDOSSipNetworkRegInterval.setStatus('current')
-voipDOSSipNetworkRegConfThreshold = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 31, 6, 1, 1, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipDOSSipNetworkRegConfThreshold.setStatus('current')
-voipDOSSipNetworkRegCurrentVal = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 31, 6, 1, 1, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipDOSSipNetworkRegCurrentVal.setStatus('current')
-voipDOSSipNetworkCallInitInterval = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 31, 6, 1, 1, 7), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipDOSSipNetworkCallInitInterval.setStatus('current')
-voipDOSSipNetworkCallInitConfThreshold = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 31, 6, 1, 1, 8), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipDOSSipNetworkCallInitConfThreshold.setStatus('current')
-voipDOSSipNetworkCallInitICurrentVal = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 31, 6, 1, 1, 9), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipDOSSipNetworkCallInitICurrentVal.setStatus('current')
-voipDOSSipRateLimitingTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 31, 6, 1, 2), )
-if mibBuilder.loadTexts: voipDOSSipRateLimitingTable.setStatus('current')
-voipDOSSipRateLimitingEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 31, 6, 1, 2, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "voipDOSSipRateLimitingTableIndex"))
-if mibBuilder.loadTexts: voipDOSSipRateLimitingEntry.setStatus('current')
-voipDOSSipRateLimitingTableIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 31, 6, 1, 2, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipDOSSipRateLimitingTableIndex.setStatus('current')
-voipDOSSipRateLimitingTableIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 31, 6, 1, 2, 1, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipDOSSipRateLimitingTableIpAddress.setStatus('current')
-voipDOSSipRateLimitingTableInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 31, 6, 1, 2, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipDOSSipRateLimitingTableInterval.setStatus('current')
-voipDOSSipRateLimitingTableConfThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 31, 6, 1, 2, 1, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipDOSSipRateLimitingTableConfThreshold.setStatus('current')
-voipDOSSipRateLimitingTableNumDOSSipRequests = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 31, 6, 1, 2, 1, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipDOSSipRateLimitingTableNumDOSSipRequests.setStatus('current')
-voipDOSSipRateLimitingTableNumTrustedRequests = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 31, 6, 1, 2, 1, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipDOSSipRateLimitingTableNumTrustedRequests.setStatus('current')
-voipDOSSipRateLimitingTableNumNonTrustedRequests = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 31, 6, 1, 2, 1, 7), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipDOSSipRateLimitingTableNumNonTrustedRequests.setStatus('current')
-voipDOSSipRateLimitingTableNumRequestsfromServers = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 31, 6, 1, 2, 1, 8), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipDOSSipRateLimitingTableNumRequestsfromServers.setStatus('current')
-voipCAC = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 31, 7))
-voipCACConcurrentCalls = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 31, 7, 1))
-voipCACConcurrentCallsConfThreshold = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 31, 7, 1, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipCACConcurrentCallsConfThreshold.setStatus('current')
-voipCACConcurrentCallsCurrentVal = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 31, 7, 1, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipCACConcurrentCallsCurrentVal.setStatus('current')
-voipStatCode = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 31, 101), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipStatCode.setStatus('current')
-voipStatShortDescr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 31, 102), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipStatShortDescr.setStatus('current')
-voipStatLongDescr = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 31, 103), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipStatLongDescr.setStatus('current')
-voipServicePack = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 31, 999), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: voipServicePack.setStatus('current')
-identityAwarenessProductName = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 1), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessProductName.setStatus('current')
-identityAwarenessAuthUsers = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessAuthUsers.setStatus('current')
-identityAwarenessUnAuthUsers = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessUnAuthUsers.setStatus('current')
-identityAwarenessAuthUsersKerberos = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessAuthUsersKerberos.setStatus('current')
-identityAwarenessAuthMachKerberos = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessAuthMachKerberos.setStatus('current')
-identityAwarenessAuthUsersPass = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessAuthUsersPass.setStatus('current')
-identityAwarenessAuthUsersADQuery = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 7), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessAuthUsersADQuery.setStatus('current')
-identityAwarenessAuthMachADQuery = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 8), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessAuthMachADQuery.setStatus('current')
-identityAwarenessLoggedInAgent = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 9), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessLoggedInAgent.setStatus('current')
-identityAwarenessLoggedInCaptivePortal = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 10), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessLoggedInCaptivePortal.setStatus('current')
-identityAwarenessLoggedInADQuery = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 11), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessLoggedInADQuery.setStatus('current')
-identityAwarenessAntiSpoffProtection = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 12), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessAntiSpoffProtection.setStatus('current')
-identityAwarenessSuccUserLoginKerberos = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 13), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessSuccUserLoginKerberos.setStatus('current')
-identityAwarenessSuccMachLoginKerberos = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 14), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessSuccMachLoginKerberos.setStatus('current')
-identityAwarenessSuccUserLoginPass = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 15), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessSuccUserLoginPass.setStatus('current')
-identityAwarenessSuccUserLoginADQuery = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 16), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessSuccUserLoginADQuery.setStatus('current')
-identityAwarenessSuccMachLoginADQuery = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 17), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessSuccMachLoginADQuery.setStatus('current')
-identityAwarenessUnSuccUserLoginKerberos = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 18), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessUnSuccUserLoginKerberos.setStatus('current')
-identityAwarenessUnSuccMachLoginKerberos = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 19), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessUnSuccMachLoginKerberos.setStatus('current')
-identityAwarenessUnSuccUserLoginPass = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 20), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessUnSuccUserLoginPass.setStatus('current')
-identityAwarenessSuccUserLDAP = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 21), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessSuccUserLDAP.setStatus('current')
-identityAwarenessUnSuccUserLDAP = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 22), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessUnSuccUserLDAP.setStatus('current')
-identityAwarenessDataTrans = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 23), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessDataTrans.setStatus('current')
-identityAwarenessDistributedEnvTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 38, 24), )
-if mibBuilder.loadTexts: identityAwarenessDistributedEnvTable.setStatus('current')
-identityAwarenessDistributedEnvEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 38, 24, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "identityAwarenessDistributedEnvTableIndex"))
-if mibBuilder.loadTexts: identityAwarenessDistributedEnvEntry.setStatus('current')
-identityAwarenessDistributedEnvTableIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 38, 24, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessDistributedEnvTableIndex.setStatus('current')
-identityAwarenessDistributedEnvTableGwName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 38, 24, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessDistributedEnvTableGwName.setStatus('current')
-identityAwarenessDistributedEnvTableDisconnections = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 38, 24, 1, 3), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessDistributedEnvTableDisconnections.setStatus('current')
-identityAwarenessDistributedEnvTableBruteForceAtt = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 38, 24, 1, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessDistributedEnvTableBruteForceAtt.setStatus('current')
-identityAwarenessDistributedEnvTableStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 38, 24, 1, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessDistributedEnvTableStatus.setStatus('current')
-identityAwarenessDistributedEnvTableIsLocal = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 38, 24, 1, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessDistributedEnvTableIsLocal.setStatus('current')
-identityAwarenessADQueryStatusTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 38, 25), )
-if mibBuilder.loadTexts: identityAwarenessADQueryStatusTable.setStatus('current')
-identityAwarenessADQueryStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 38, 25, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "identityAwarenessADQueryStatusTableIndex"))
-if mibBuilder.loadTexts: identityAwarenessADQueryStatusEntry.setStatus('current')
-identityAwarenessADQueryStatusTableIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 38, 25, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessADQueryStatusTableIndex.setStatus('current')
-identityAwarenessADQueryStatusCurrStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 38, 25, 1, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessADQueryStatusCurrStatus.setStatus('current')
-identityAwarenessADQueryStatusDomainName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 38, 25, 1, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessADQueryStatusDomainName.setStatus('current')
-identityAwarenessADQueryStatusDomainIP = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 38, 25, 1, 4), IpAddress()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessADQueryStatusDomainIP.setStatus('current')
-identityAwarenessADQueryStatusEvents = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 38, 25, 1, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessADQueryStatusEvents.setStatus('current')
-identityAwarenessStatus = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 101), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessStatus.setStatus('current')
-identityAwarenessStatusShortDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 102), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessStatusShortDesc.setStatus('current')
-identityAwarenessStatusLongDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 38, 103), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: identityAwarenessStatusLongDesc.setStatus('current')
-applicationControlSubscription = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 39, 1))
-applicationControlSubscriptionStatus = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 39, 1, 1), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: applicationControlSubscriptionStatus.setStatus('current')
-applicationControlSubscriptionExpDate = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 39, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: applicationControlSubscriptionExpDate.setStatus('current')
-applicationControlSubscriptionDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 39, 1, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: applicationControlSubscriptionDesc.setStatus('current')
-applicationControlUpdate = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 39, 2))
-applicationControlUpdateStatus = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 39, 2, 1), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: applicationControlUpdateStatus.setStatus('current')
-applicationControlUpdateDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 39, 2, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: applicationControlUpdateDesc.setStatus('current')
-applicationControlNextUpdate = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 39, 2, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: applicationControlNextUpdate.setStatus('current')
-applicationControlVersion = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 39, 2, 4), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: applicationControlVersion.setStatus('current')
-applicationControlStatusCode = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 39, 101), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: applicationControlStatusCode.setStatus('current')
-applicationControlStatusShortDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 39, 102), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: applicationControlStatusShortDesc.setStatus('current')
-applicationControlStatusLongDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 39, 103), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: applicationControlStatusLongDesc.setStatus('current')
-exchangeAgents = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 44, 1))
-exchangeAgentsTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 44, 1, 1), )
-if mibBuilder.loadTexts: exchangeAgentsTable.setStatus('current')
-exchangeAgentsStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 44, 1, 1, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "exchangeAgentsStatusTableIndex"))
-if mibBuilder.loadTexts: exchangeAgentsStatusEntry.setStatus('current')
-exchangeAgentsStatusTableIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 44, 1, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: exchangeAgentsStatusTableIndex.setStatus('current')
-exchangeAgentName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 44, 1, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: exchangeAgentName.setStatus('current')
-exchangeAgentStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 44, 1, 1, 1, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: exchangeAgentStatus.setStatus('current')
-exchangeAgentTotalMsg = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 44, 1, 1, 1, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: exchangeAgentTotalMsg.setStatus('current')
-exchangeAgentTotalScannedMsg = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 44, 1, 1, 1, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: exchangeAgentTotalScannedMsg.setStatus('current')
-exchangeAgentDroppedMsg = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 44, 1, 1, 1, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: exchangeAgentDroppedMsg.setStatus('current')
-exchangeAgentUpTime = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 44, 1, 1, 1, 7), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: exchangeAgentUpTime.setStatus('current')
-exchangeAgentTimeSinceLastMsg = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 44, 1, 1, 1, 8), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: exchangeAgentTimeSinceLastMsg.setStatus('current')
-exchangeAgentQueueLen = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 44, 1, 1, 1, 9), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: exchangeAgentQueueLen.setStatus('current')
-exchangeQueueLen = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 44, 1, 1, 1, 10), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: exchangeQueueLen.setStatus('current')
-exchangeAgentAvgTimePerMsg = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 44, 1, 1, 1, 11), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: exchangeAgentAvgTimePerMsg.setStatus('current')
-exchangeAgentAvgTimePerScannedMsg = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 44, 1, 1, 1, 12), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: exchangeAgentAvgTimePerScannedMsg.setStatus('current')
-exchangeAgentVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 44, 1, 1, 1, 13), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: exchangeAgentVersion.setStatus('current')
-exchangeCPUUsage = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 44, 1, 1, 1, 14), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: exchangeCPUUsage.setStatus('current')
-exchangeMemoryUsage = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 44, 1, 1, 1, 15), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: exchangeMemoryUsage.setStatus('current')
-exchangeAgentPolicyTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 44, 1, 1, 1, 16), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: exchangeAgentPolicyTimeStamp.setStatus('current')
-dlpVersionString = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 11), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpVersionString.setStatus('current')
-dlpLicenseStatus = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 12), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpLicenseStatus.setStatus('current')
-dlpLdapStatus = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 13), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpLdapStatus.setStatus('current')
-dlpTotalScans = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 14), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpTotalScans.setStatus('current')
-dlpSMTPScans = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 15), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpSMTPScans.setStatus('current')
-dlpSMTPIncidents = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 16), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpSMTPIncidents.setStatus('current')
-dlpLastSMTPScan = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 17), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpLastSMTPScan.setStatus('current')
-dlpNumQuarantined = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 18), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpNumQuarantined.setStatus('current')
-dlpQrntMsgsSize = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 19), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpQrntMsgsSize.setStatus('current')
-dlpSentEMails = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 20), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpSentEMails.setStatus('current')
-dlpExpiredEMails = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 21), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpExpiredEMails.setStatus('current')
-dlpDiscardEMails = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 22), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpDiscardEMails.setStatus('current')
-dlpPostfixQLen = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 23), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpPostfixQLen.setStatus('current')
-dlpPostfixErrors = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 24), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpPostfixErrors.setStatus('current')
-dlpPostfixQOldMsg = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 25), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpPostfixQOldMsg.setStatus('current')
-dlpPostfixQMsgsSz = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 26), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpPostfixQMsgsSz.setStatus('current')
-dlpPostfixQFreeSp = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 27), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpPostfixQFreeSp.setStatus('current')
-dlpQrntFreeSpace = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 28), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpQrntFreeSpace.setStatus('current')
-dlpQrntStatus = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 29), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpQrntStatus.setStatus('current')
-dlpHttpScans = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 30), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpHttpScans.setStatus('current')
-dlpHttpIncidents = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 31), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpHttpIncidents.setStatus('current')
-dlpHttpLastScan = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 32), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpHttpLastScan.setStatus('current')
-dlpFtpScans = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 33), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpFtpScans.setStatus('current')
-dlpFtpIncidents = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 34), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpFtpIncidents.setStatus('current')
-dlpFtpLastScan = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 35), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpFtpLastScan.setStatus('current')
-dlpBypassStatus = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 36), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpBypassStatus.setStatus('current')
-dlpUserCheckClnts = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 37), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpUserCheckClnts.setStatus('current')
-dlpLastPolStatus = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 38), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpLastPolStatus.setStatus('current')
-dlpStatusCode = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 101), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpStatusCode.setStatus('current')
-dlpStatusShortDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 102), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpStatusShortDesc.setStatus('current')
-dlpStatusLongDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 44, 103), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: dlpStatusLongDesc.setStatus('current')
-thresholdPolicy = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 42, 1), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdPolicy.setStatus('current')
-thresholdState = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 42, 2), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdState.setStatus('current')
-thresholdStateDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 42, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdStateDesc.setStatus('current')
-thresholdEnabled = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 42, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdEnabled.setStatus('current')
-thresholdActive = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 42, 5), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdActive.setStatus('current')
-thresholdEventsSinceStartup = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 42, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdEventsSinceStartup.setStatus('current')
-thresholdActiveEventsTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 42, 7), )
-if mibBuilder.loadTexts: thresholdActiveEventsTable.setStatus('current')
-thresholdActiveEventsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 42, 7, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "thresholdActiveEventsIndex"))
-if mibBuilder.loadTexts: thresholdActiveEventsEntry.setStatus('current')
-thresholdActiveEventsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 42, 7, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdActiveEventsIndex.setStatus('current')
-thresholdActiveEventName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 42, 7, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdActiveEventName.setStatus('current')
-thresholdActiveEventCategory = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 42, 7, 1, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdActiveEventCategory.setStatus('current')
-thresholdActiveEventSeverity = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 42, 7, 1, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdActiveEventSeverity.setStatus('current')
-thresholdActiveEventSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 42, 7, 1, 5), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdActiveEventSubject.setStatus('current')
-thresholdActiveEventSubjectValue = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 42, 7, 1, 6), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdActiveEventSubjectValue.setStatus('current')
-thresholdActiveEventActivationTime = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 42, 7, 1, 7), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdActiveEventActivationTime.setStatus('current')
-thresholdActiveEventState = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 42, 7, 1, 8), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdActiveEventState.setStatus('current')
-thresholdDestinationsTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 42, 8), )
-if mibBuilder.loadTexts: thresholdDestinationsTable.setStatus('current')
-thresholdDestinationsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 42, 8, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "thresholdDestinationIndex"))
-if mibBuilder.loadTexts: thresholdDestinationsEntry.setStatus('current')
-thresholdDestinationIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 42, 8, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdDestinationIndex.setStatus('current')
-thresholdDestinationName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 42, 8, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdDestinationName.setStatus('current')
-thresholdDestinationType = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 42, 8, 1, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdDestinationType.setStatus('current')
-thresholdSendingState = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 42, 8, 1, 4), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdSendingState.setStatus('current')
-thresholdSendingStateDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 42, 8, 1, 5), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdSendingStateDesc.setStatus('current')
-thresholdAlertCount = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 42, 8, 1, 6), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdAlertCount.setStatus('current')
-thresholdErrorsTable = MibTable((1, 3, 6, 1, 4, 1, 2620, 1, 42, 9), )
-if mibBuilder.loadTexts: thresholdErrorsTable.setStatus('current')
-thresholdErrorsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2620, 1, 42, 9, 1), ).setIndexNames((0, "CHECKPOINT-MIB", "thresholdErrorIndex"))
-if mibBuilder.loadTexts: thresholdErrorsEntry.setStatus('current')
-thresholdErrorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 42, 9, 1, 1), Unsigned32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdErrorIndex.setStatus('current')
-thresholdName = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 42, 9, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdName.setStatus('current')
-thresholdThresholdOID = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 42, 9, 1, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdThresholdOID.setStatus('current')
-thresholdErrorDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 42, 9, 1, 4), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdErrorDesc.setStatus('current')
-thresholdErrorTime = MibTableColumn((1, 3, 6, 1, 4, 1, 2620, 1, 42, 9, 1, 5), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: thresholdErrorTime.setStatus('current')
-advancedUrlFilteringSubscription = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 43, 1))
-advancedUrlFilteringSubscriptionStatus = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 43, 1, 1), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: advancedUrlFilteringSubscriptionStatus.setStatus('current')
-advancedUrlFilteringSubscriptionExpDate = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 43, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: advancedUrlFilteringSubscriptionExpDate.setStatus('current')
-advancedUrlFilteringSubscriptionDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 43, 1, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: advancedUrlFilteringSubscriptionDesc.setStatus('current')
-advancedUrlFilteringUpdate = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 43, 2))
-advancedUrlFilteringUpdateStatus = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 43, 2, 1), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: advancedUrlFilteringUpdateStatus.setStatus('current')
-advancedUrlFilteringUpdateDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 43, 2, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: advancedUrlFilteringUpdateDesc.setStatus('current')
-advancedUrlFilteringNextUpdate = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 43, 2, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: advancedUrlFilteringNextUpdate.setStatus('current')
-advancedUrlFilteringVersion = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 43, 2, 4), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: advancedUrlFilteringVersion.setStatus('current')
-advancedUrlFilteringRADStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 43, 3))
-advancedUrlFilteringRADStatusCode = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 43, 3, 1), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: advancedUrlFilteringRADStatusCode.setStatus('current')
-advancedUrlFilteringRADStatusDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 43, 3, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: advancedUrlFilteringRADStatusDesc.setStatus('current')
-advancedUrlFilteringStatusCode = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 43, 101), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: advancedUrlFilteringStatusCode.setStatus('current')
-advancedUrlFilteringStatusShortDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 43, 102), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: advancedUrlFilteringStatusShortDesc.setStatus('current')
-advancedUrlFilteringStatusLongDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 43, 103), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: advancedUrlFilteringStatusLongDesc.setStatus('current')
-antiBotSubscription = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 46, 2))
-antiBotSubscriptionStatus = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 46, 2, 1), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: antiBotSubscriptionStatus.setStatus('current')
-antiBotSubscriptionExpDate = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 46, 2, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: antiBotSubscriptionExpDate.setStatus('current')
-antiBotSubscriptionDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 46, 2, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: antiBotSubscriptionDesc.setStatus('current')
-antiVirusSubscription = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 46, 3))
-antiVirusSubscriptionStatus = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 46, 3, 1), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: antiVirusSubscriptionStatus.setStatus('current')
-antiVirusSubscriptionExpDate = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 46, 3, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: antiVirusSubscriptionExpDate.setStatus('current')
-antiVirusSubscriptionDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 46, 3, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: antiVirusSubscriptionDesc.setStatus('current')
-antiSpamSubscription = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 46, 4))
-antiSpamSubscriptionStatus = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 46, 4, 1), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: antiSpamSubscriptionStatus.setStatus('current')
-antiSpamSubscriptionExpDate = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 46, 4, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: antiSpamSubscriptionExpDate.setStatus('current')
-antiSpamSubscriptionDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 46, 4, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: antiSpamSubscriptionDesc.setStatus('current')
-amwABUpdate = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 46, 1))
-amwABUpdateStatus = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 46, 1, 1), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: amwABUpdateStatus.setStatus('current')
-amwABUpdateDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 46, 1, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: amwABUpdateDesc.setStatus('current')
-amwABNextUpdate = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 46, 1, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: amwABNextUpdate.setStatus('current')
-amwABVersion = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 46, 1, 4), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: amwABVersion.setStatus('current')
-amwAVUpdate = MibIdentifier((1, 3, 6, 1, 4, 1, 2620, 1, 46, 5))
-amwAVUpdateStatus = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 46, 5, 1), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: amwAVUpdateStatus.setStatus('current')
-amwAVUpdateDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 46, 5, 2), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: amwAVUpdateDesc.setStatus('current')
-amwAVNextUpdate = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 46, 5, 3), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: amwAVNextUpdate.setStatus('current')
-amwAVVersion = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 46, 5, 4), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: amwAVVersion.setStatus('current')
-amwStatusCode = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 46, 101), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: amwStatusCode.setStatus('current')
-amwStatusShortDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 46, 102), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: amwStatusShortDesc.setStatus('current')
-amwStatusLongDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 46, 103), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: amwStatusLongDesc.setStatus('current')
-teSubscriptionStatus = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 49, 25), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: teSubscriptionStatus.setStatus('current')
-teCloudSubscriptionStatus = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 49, 26), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: teCloudSubscriptionStatus.setStatus('current')
-teSubscriptionExpDate = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 49, 20), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: teSubscriptionExpDate.setStatus('current')
-teSubscriptionDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 49, 27), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: teSubscriptionDesc.setStatus('current')
-teUpdateStatus = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 49, 16), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: teUpdateStatus.setStatus('current')
-teUpdateDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 49, 17), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: teUpdateDesc.setStatus('current')
-teStatusCode = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 49, 101), Integer32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: teStatusCode.setStatus('current')
-teStatusShortDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 49, 102), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: teStatusShortDesc.setStatus('current')
-teStatusLongDesc = MibScalar((1, 3, 6, 1, 4, 1, 2620, 1, 49, 103), DisplayString()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: teStatusLongDesc.setStatus('current')
-mibBuilder.exportSymbols("CHECKPOINT-MIB", fwFrag_expired=fwFrag_expired, aviTopEverVirusesCnt=aviTopEverVirusesCnt, cpsemdLastEventTime=cpsemdLastEventTime, cpvIKETotalSAsInitAttempts=cpvIKETotalSAsInitAttempts, fwHmem64_alloc_operations=fwHmem64_alloc_operations, fwDroppedBytesTotalRate=fwDroppedBytesTotalRate, voipDOSSip=voipDOSSip, asmIPSweep=asmIPSweep, numOfGnutellaConAttempts=numOfGnutellaConAttempts, haInstalled=haInstalled, fwKmem_number_of_items=fwKmem_number_of_items, voipMinorVersion=voipMinorVersion, ufEngineVer=ufEngineVer, fwHmem64_maximum_bytes=fwHmem64_maximum_bytes, voipDOSSipRateLimitingTable=voipDOSSipRateLimitingTable, voltageSensorUnit=voltageSensorUnit, cpsemdNewEventsHandled=cpsemdNewEventsHandled, wamUagIp=wamUagIp, lsConnectedClientsTable=lsConnectedClientsTable, identityAwarenessStatus=identityAwarenessStatus, cpvIpsecDecomprBytesBefore=cpvIpsecDecomprBytesBefore, fwSS_http_auth_failures=fwSS_http_auth_failures, httpHeaderLengthViolations=httpHeaderLengthViolations, dlpDiscardEMails=dlpDiscardEMails, fwSS_http_ftp_sess_count=fwSS_http_ftp_sess_count, exchangeAgentName=exchangeAgentName, lsClientDbLock=lsClientDbLock, fwFragments=fwFragments, exchangeAgentTotalScannedMsg=exchangeAgentTotalScannedMsg, fwSS_ftp_rejected_sess=fwSS_ftp_rejected_sess, ufTopBlockedSiteEntry=ufTopBlockedSiteEntry, raidVolumeSize=raidVolumeSize, identityAwarenessDistributedEnvTableIsLocal=identityAwarenessDistributedEnvTableIsLocal, aviServices=aviServices, vpn=vpn, voipDOSSipNetworkReqInterval=voipDOSSipNetworkReqInterval, fanSpeedSensorType=fanSpeedSensorType, osSPminor=osSPminor, exchangeAgents=exchangeAgents, aviPOP3LastVirusName=aviPOP3LastVirusName, cpvHwAccelEspDecBytes=cpvHwAccelEspDecBytes, fwUfpHitRatio=fwUfpHitRatio, dlpHttpIncidents=dlpHttpIncidents, cpvIpsecEspDecBytes=cpvIpsecEspDecBytes, fwDroppedTotalRate=fwDroppedTotalRate, aviFTPTopVirusesTable=aviFTPTopVirusesTable, vsxVsSupported=vsxVsSupported, fwSS_rlogin_is_alive=fwSS_rlogin_is_alive, fwSS_POP3_logical_port=fwSS_POP3_logical_port, dlpBypassStatus=dlpBypassStatus, fwSS_smtp_outgoing_mail_max=fwSS_smtp_outgoing_mail_max, cpsemdCorrelationUnitLastRcvdTime=cpsemdCorrelationUnitLastRcvdTime, fwSS_POP3=fwSS_POP3, procInterrupts=procInterrupts, haClusterSyncEntry=haClusterSyncEntry, permanentTunnelInterface=permanentTunnelInterface, raUseUDPEncap=raUseUDPEncap, antiBotSubscription=antiBotSubscription, identityAwarenessADQueryStatusEvents=identityAwarenessADQueryStatusEvents, fwSS_http_ssl_encryp_sess_max=fwSS_http_ssl_encryp_sess_max, cpvSaOtherErrIn=cpvSaOtherErrIn, fwNetIfFlags=fwNetIfFlags, fwInspect_lookups=fwInspect_lookups, multiDiskSize=multiDiskSize, fwHmem_failed_free=fwHmem_failed_free, cpvErrors=cpvErrors, fwSS_http_rejected_sess=fwSS_http_rejected_sess, fwSS_POP3_outgoing_mail_max=fwSS_POP3_outgoing_mail_max, wamStatLongDescr=wamStatLongDescr, memSwapsSec=memSwapsSec, haProblemTable=haProblemTable, dlpPostfixErrors=dlpPostfixErrors, ufSS=ufSS, procIdleTime=procIdleTime, wamUagQueries=wamUagQueries, haProblemIndex=haProblemIndex, fwEvent=fwEvent, fwSS_http_ftp_sess_curr=fwSS_http_ftp_sess_curr, dtpsStatLongDescr=dtpsStatLongDescr, antiBotSubscriptionStatus=antiBotSubscriptionStatus, tempertureSensorEntry=tempertureSensorEntry, fwSS_telnet=fwSS_telnet, cpsemdNumEvents=cpsemdNumEvents, cpvIKETotalFailuresInit=cpvIKETotalFailuresInit, raInternalIpAddr=raInternalIpAddr, fwMinor=fwMinor, vsxCountersLoggedTotal=vsxCountersLoggedTotal, ufTopBlockedUserIndex=ufTopBlockedUserIndex, cpvIpsecAhEncPkts=cpvIpsecAhEncPkts, fwSS_total_blocked_by_av=fwSS_total_blocked_by_av, amwABNextUpdate=amwABNextUpdate, dtpsLicensedUsers=dtpsLicensedUsers, fwUfpInspected=fwUfpInspected, fwSS_ftp_blocked_by_size_limit=fwSS_ftp_blocked_by_size_limit, fwHmem_initial_allocated_pools=fwHmem_initial_allocated_pools, raCommunity=raCommunity, fwNetIfTable=fwNetIfTable, fwSS_rlogin_time_stamp=fwSS_rlogin_time_stamp, aviTopEverVirusesEntry=aviTopEverVirusesEntry, exchangeAgentsTable=exchangeAgentsTable, identityAwarenessSuccMachLoginKerberos=identityAwarenessSuccMachLoginKerberos, cpsemdCorrelationUnitNumEventsRcvd=cpsemdCorrelationUnitNumEventsRcvd, fwSS_rlogin_auth_sess_curr=fwSS_rlogin_auth_sess_curr, msSpamControls=msSpamControls, raidDiskSyncState=raidDiskSyncState, exchangeCPUUsage=exchangeCPUUsage, routingIndex=routingIndex, thresholdState=thresholdState, fwKmem_failed_alloc=fwKmem_failed_alloc, raidDiskEntry=raidDiskEntry, fwSS_http_blocked_by_file_type=fwSS_http_blocked_by_file_type, cpseadNumProcessedLogs=cpseadNumProcessedLogs, cpvIPsecNICsNum=cpvIPsecNICsNum, fwSS_smtp_passed_by_size_limit=fwSS_smtp_passed_by_size_limit, fwHmem_current_allocated_bytes=fwHmem_current_allocated_bytes, voltageSensorType=voltageSensorType, thresholdErrorDesc=thresholdErrorDesc, fwSS_POP3_socket_in_use_max=fwSS_POP3_socket_in_use_max, haProtoVersion=haProtoVersion, fwNetIfName=fwNetIfName, cpvIpsecDecomprErr=cpvIpsecDecomprErr, svnRouteModIfIndex=svnRouteModIfIndex, multiDiskName=multiDiskName, fwLSConnName=fwLSConnName, vsxCountersEntry=vsxCountersEntry, multiProcUserTime=multiProcUserTime, memTotalReal64=memTotalReal64, fwSS_POP3_passed_cnt=fwSS_POP3_passed_cnt, cpsemdUpdatesHandled=cpsemdUpdatesHandled, fwSS_rlogin_sess_max=fwSS_rlogin_sess_max, fwSS_http_passed_by_internal_error=fwSS_http_passed_by_internal_error, cpvIpsecComprOverhead=cpvIpsecComprOverhead, fwSS_ftp_socket_in_use_max=fwSS_ftp_socket_in_use_max, fwSS_smtp_passed_cnt=fwSS_smtp_passed_cnt, permanentTunnelProbState=permanentTunnelProbState, ufScannedCnt=ufScannedCnt, advancedUrlFilteringUpdateDesc=advancedUrlFilteringUpdateDesc, ufTopBlockedCatName=ufTopBlockedCatName, dlpHttpScans=dlpHttpScans, fwSS_http_proxied_sess_max=fwSS_http_proxied_sess_max, fwConnectionsStatConnectionsOther=fwConnectionsStatConnectionsOther, fwFilterDate=fwFilterDate, voipDOSSipNetworkReqConfThreshold=voipDOSSipNetworkReqConfThreshold, numOfP2PSkypeCon=numOfP2PSkypeCon, memTotalVirtual64=memTotalVirtual64, fwSS_rlogin_socket_in_use_count=fwSS_rlogin_socket_in_use_count, teStatusShortDesc=teStatusShortDesc, thresholdDestinationsEntry=thresholdDestinationsEntry, dlpLdapStatus=dlpLdapStatus, fwSS_smtp_is_alive=fwSS_smtp_is_alive, fwHmem64_bytes_used=fwHmem64_bytes_used, fwSS_ftp_auth_sess_max=fwSS_ftp_auth_sess_max, numOfP2PKazaaConAttempts=numOfP2PKazaaConAttempts, cpseadStatCode=cpseadStatCode, fwSS_telnet_logical_port=fwSS_telnet_logical_port, vsxStatusPolicyName=vsxStatusPolicyName, cpvIpsecDecomprOverhead=cpvIpsecDecomprOverhead, fwKmem_free_operations=fwKmem_free_operations, vsRoutingVsId=vsRoutingVsId, fwConnectionsStat=fwConnectionsStat, cpsemd=cpsemd, raidDiskVolumeID=raidDiskVolumeID, applicationControlStatusLongDesc=applicationControlStatusLongDesc, fwSS_rlogin_pid=fwSS_rlogin_pid, thresholdActiveEventSeverity=thresholdActiveEventSeverity, asmP2PeMuleConAttempts=asmP2PeMuleConAttempts, mgConnectedClientsEntry=mgConnectedClientsEntry, fwSS_http_sess_curr=fwSS_http_sess_curr, memDiskTransfers=memDiskTransfers, raidDiskMaxLBA=raidDiskMaxLBA, cpseadJobName=cpseadJobName, thresholdPolicy=thresholdPolicy, aviTopEverViruses=aviTopEverViruses, fwSS_ftp_passed_by_size_limit=fwSS_ftp_passed_by_size_limit, cpvTotalEspSAsIn=cpvTotalEspSAsIn, fwLSConnOverall=fwLSConnOverall, fwNetIfIndex=fwNetIfIndex, fwHmem64_block_size=fwHmem64_block_size, voipDOSSipNetwork=voipDOSSipNetwork, applicationControlNextUpdate=applicationControlNextUpdate, ufLastLicExp=ufLastLicExp, haIfTable=haIfTable, mgStatCode=mgStatCode, fwSS_POP3_sess_curr=fwSS_POP3_sess_curr, fwChains_free=fwChains_free, thresholdErrorTime=thresholdErrorTime, fwSS_telnet_sess_max=fwSS_telnet_sess_max, fwKmem_bytes_internal_use=fwKmem_bytes_internal_use, raidInfo=raidInfo, tempertureSensorIndex=tempertureSensorIndex, fw=fw, fwSS_POP3_accepted_sess=fwSS_POP3_accepted_sess, fwLSConnState=fwLSConnState, cpvHwAccelEspDecPkts=cpvHwAccelEspDecPkts, fwSXLStatus=fwSXLStatus, raIkeOverTCP=raIkeOverTCP, vsx=vsx, advancedUrlFilteringNextUpdate=advancedUrlFilteringNextUpdate, svnNetStat=svnNetStat, antiVirusSubscriptionStatus=antiVirusSubscriptionStatus, aviEngineName=aviEngineName, vsxStatusVRId=vsxStatusVRId, cpvHwAccelStatus=cpvHwAccelStatus, fgRetransPcktsIn=fgRetransPcktsIn, multiDiskTable=multiDiskTable, aviServicesPOP3=aviServicesPOP3, applicationControlSubscriptionStatus=applicationControlSubscriptionStatus, aviPOP3TopVirusesIndex=aviPOP3TopVirusesIndex, fwSS_POP3_auth_sess_curr=fwSS_POP3_auth_sess_curr, dlpStatusShortDesc=dlpStatusShortDesc, fwModuleState=fwModuleState, fwSS_POP3_total_mails=fwSS_POP3_total_mails, fwSS_http_ops_cvp_sess_max=fwSS_http_ops_cvp_sess_max, fwAcceptPcktsOut=fwAcceptPcktsOut, fwHmem_bytes_unused=fwHmem_bytes_unused, fwSS_POP3_sess_max=fwSS_POP3_sess_max, antiSpamSubscriptionExpDate=antiSpamSubscriptionExpDate, voipDOSSipNetworkRegConfThreshold=voipDOSSipNetworkRegConfThreshold, fwSS_smtp_blocked_by_size_limit=fwSS_smtp_blocked_by_size_limit, cpvIpsecAhDecPkts=cpvIpsecAhDecPkts, cpseadJobState=cpseadJobState, permanentTunnelNextHop=permanentTunnelNextHop, aviSignatureName=aviSignatureName, cpseadJobsTable=cpseadJobsTable, haVersionSting=haVersionSting, svnPerf=svnPerf, cpvErrIke=cpvErrIke, fwSS_POP3_blocked_by_internal_error=fwSS_POP3_blocked_by_internal_error, cpvStatistics=cpvStatistics, lsClientName=lsClientName, dlpLastPolStatus=dlpLastPolStatus, cpseadJobsEntry=cpseadJobsEntry, identityAwarenessLoggedInAgent=identityAwarenessLoggedInAgent, voip=voip, vsxCountersConnNum=vsxCountersConnNum, cpsemdStatShortDescr=cpsemdStatShortDescr, dtpsVerMajor=dtpsVerMajor, cpvIKECurrSAs=cpvIKECurrSAs, voipDOSSipRateLimitingTableConfThreshold=voipDOSSipRateLimitingTableConfThreshold, procUsrTime=procUsrTime, amwAVUpdateDesc=amwAVUpdateDesc, fwSS_POP3_blocked_by_archive_limit=fwSS_POP3_blocked_by_archive_limit, msEngineVer=msEngineVer, cpseadFileName=cpseadFileName, cpvSaOtherErrOut=cpvSaOtherErrOut, identityAwarenessProductName=identityAwarenessProductName, voipBuildNumber=voipBuildNumber, cpvIPsecNICEncrPackets=cpvIPsecNICEncrPackets, identityAwarenessAuthUsersADQuery=identityAwarenessAuthUsersADQuery, exchangeQueueLen=exchangeQueueLen, svnApplianceInfo=svnApplianceInfo, memTotalReal=memTotalReal, raidVolumeState=raidVolumeState, asmTCP=asmTCP)
-mibBuilder.exportSymbols("CHECKPOINT-MIB", applicationControlSubscriptionDesc=applicationControlSubscriptionDesc, asmCIFSWorms=asmCIFSWorms, wamName=wamName, raidDiskSize=raidDiskSize, dlpUserCheckClnts=dlpUserCheckClnts, mgClientDbLock=mgClientDbLock, identityAwarenessUnSuccMachLoginKerberos=identityAwarenessUnSuccMachLoginKerberos, identityAwarenessAntiSpoffProtection=identityAwarenessAntiSpoffProtection, raTunnelAuthMethod=raTunnelAuthMethod, asmP2PSkypeCon=asmP2PSkypeCon, fwLSConnOverallDesc=fwLSConnOverallDesc, fwCookies_allocfwCookies_total=fwCookies_allocfwCookies_total, diskPercent=diskPercent, exchangeAgentAvgTimePerScannedMsg=exchangeAgentAvgTimePerScannedMsg, asmUDP=asmUDP, fwSS_rlogin_port=fwSS_rlogin_port, fwSS_POP3_auth_failures=fwSS_POP3_auth_failures, vsRoutingTable=vsRoutingTable, identityAwarenessAuthUsersPass=identityAwarenessAuthUsersPass, aviEngineIndex=aviEngineIndex, fwHmem_blocks_peak=fwHmem_blocks_peak, te=te, aviTopEverVirusesName=aviTopEverVirusesName, fwSS_POP3_passed_by_file_type=fwSS_POP3_passed_by_file_type, lsClientHost=lsClientHost, raidVolumeTable=raidVolumeTable, dlpSMTPScans=dlpSMTPScans, fwSS_telnet_auth_sess_max=fwSS_telnet_auth_sess_max, cpvFwzDecErrs=cpvFwzDecErrs, identityAwarenessUnSuccUserLoginKerberos=identityAwarenessUnSuccUserLoginKerberos, wamRejectReq=wamRejectReq, identityAwarenessDistributedEnvTableStatus=identityAwarenessDistributedEnvTableStatus, voipStatCode=voipStatCode, applicationControlSubscriptionExpDate=applicationControlSubscriptionExpDate, aviPOP3State=aviPOP3State, svnSysUniqId=svnSysUniqId, fwSS_POP3_port=fwSS_POP3_port, svnNetIfState=svnNetIfState, aviFTPTopVirusesEntry=aviFTPTopVirusesEntry, vsxCountersPackets=vsxCountersPackets, teStatusCode=teStatusCode, dtpsStatShortDescr=dtpsStatShortDescr, permanentTunnelPeerType=permanentTunnelPeerType, aviEngineTable=aviEngineTable, fwSS_total_passed_by_av_settings=fwSS_total_passed_by_av_settings, voltageSensorStatus=voltageSensorStatus, vsxStatusCPUUsage10sec=vsxStatusCPUUsage10sec, voltageSensorEntry=voltageSensorEntry, antiVirusSubscriptionExpDate=antiVirusSubscriptionExpDate, cpvIPsecNICDecrPackets=cpvIPsecNICDecrPackets, routingEntry=routingEntry, cpvIKECurrInitSAs=cpvIKECurrInitSAs, fwSS_telnet_sess_curr=fwSS_telnet_sess_curr, thresholdActive=thresholdActive, fwKmem_bytes_used=fwKmem_bytes_used, numOfBitTorrentCon=numOfBitTorrentCon, fwConnTableLimit=fwConnTableLimit, fwHmem64_free_operations=fwHmem64_free_operations, cpvHwAccelAhDecBytes=cpvHwAccelAhDecBytes, fwIfTable=fwIfTable, aviServicesFTP=aviServicesFTP, thresholdStateDesc=thresholdStateDesc, multiProcSystemTime=multiProcSystemTime, numOfCIFSBlockedPopUps=numOfCIFSBlockedPopUps, identityAwarenessDistributedEnvTableIndex=identityAwarenessDistributedEnvTableIndex, fwSS_rlogin=fwSS_rlogin, multiProcTable=multiProcTable, wamPolicy=wamPolicy, aviSignatureVer=aviSignatureVer, fwNumConn=fwNumConn, fwSS_telnet_socket_in_use_curr=fwSS_telnet_socket_in_use_curr, cpvFwzEncapsEncErrs=cpvFwzEncapsEncErrs, procQueue=procQueue, fwSS_ftp_passed_by_archive_limit=fwSS_ftp_passed_by_archive_limit, antiSpamSubscriptionStatus=antiSpamSubscriptionStatus, fwSS_total_blocked_by_size_limit=fwSS_total_blocked_by_size_limit, raExternalIpAddr=raExternalIpAddr, cpvIKETotalSAs=cpvIKETotalSAs, voipDOSSipNetworkRegInterval=voipDOSSipNetworkRegInterval, diskTime=diskTime, dlpFtpScans=dlpFtpScans, haStatLong=haStatLong, cpvIpsecDecomprBytesAfter=cpvIpsecDecomprBytesAfter, fwSS_ftp_passed_by_internal_error=fwSS_ftp_passed_by_internal_error, asmLayer5=asmLayer5, fwSS_http_ops_cvp_sess_curr=fwSS_http_ops_cvp_sess_curr, advancedUrlFilteringStatusLongDesc=advancedUrlFilteringStatusLongDesc, wamPluginPerformance=wamPluginPerformance, ufTopBlockedCatTable=ufTopBlockedCatTable, fwSS_smtp_time_stamp=fwSS_smtp_time_stamp, fwSS_smtp_mail_count=fwSS_smtp_mail_count, fwSS_POP3_pid=fwSS_POP3_pid, haWorkMode=haWorkMode, fwSS_http_blocked_by_AV_settings=fwSS_http_blocked_by_AV_settings, cpvIKETotalSAsRespAttempts=cpvIKETotalSAsRespAttempts, ufTopBlockedCatCnt=ufTopBlockedCatCnt, svnMem=svnMem, raUsersEntry=raUsersEntry, thresholdActiveEventsEntry=thresholdActiveEventsEntry, permanentTunnelCommunity=permanentTunnelCommunity, fwSS_smtp_mail_curr=fwSS_smtp_mail_curr, identityAwarenessSuccMachLoginADQuery=identityAwarenessSuccMachLoginADQuery, asmLayer3=asmLayer3, aviSMTPTopVirusesName=aviSMTPTopVirusesName, multiProcEntry=multiProcEntry, fwHmem64_number_of_items=fwHmem64_number_of_items, fwSS_telnet_accepted_sess=fwSS_telnet_accepted_sess, fwNetIfSlaves=fwNetIfSlaves, vsxStatusCPUUsage1min=vsxStatusCPUUsage1min, fwHmem_blocks_used=fwHmem_blocks_used, mgStatLongDescr=mgStatLongDescr, asmHttpFormatViolatoin=asmHttpFormatViolatoin, mgVerMajor=mgVerMajor, fwLSConnStateDesc=fwLSConnStateDesc, advancedUrlFilteringUpdateStatus=advancedUrlFilteringUpdateStatus, fwSS_http_proto=fwSS_http_proto, fgIfIndex=fgIfIndex, dlpQrntMsgsSize=dlpQrntMsgsSize, fwInspect_packets=fwInspect_packets, fwAcceptBytesOut=fwAcceptBytesOut, vsxCounters=vsxCounters, haTrusted=haTrusted, fwConnectionsStatConnectionRate=fwConnectionsStatConnectionRate, identityAwarenessAuthUsers=identityAwarenessAuthUsers, cpvTotalAhSAsIn=cpvTotalAhSAsIn, fwSS_ftp_blocked_by_internal_error=fwSS_ftp_blocked_by_internal_error, aviHTTPLastVirusName=aviHTTPLastVirusName, smallPMTUValueOfMinimalMTUsize=smallPMTUValueOfMinimalMTUsize, vsxStatusVsType=vsxStatusVsType, fwChains=fwChains, asmP2PKazaaConAttempts=asmP2PKazaaConAttempts, fwSS_http_transp_sess_max=fwSS_http_transp_sess_max, haStatus=haStatus, asmCIFSBlockedCommands=asmCIFSBlockedCommands, sequenceVerifierInvalidretransmit=sequenceVerifierInvalidretransmit, fwSS_ftp_is_alive=fwSS_ftp_is_alive, sequenceVerifierInvalidSequence=sequenceVerifierInvalidSequence, haShared=haShared, fwSS_http_sess_max=fwSS_http_sess_max, dlpFtpLastScan=dlpFtpLastScan, fwSS_telnet_socket_in_use_count=fwSS_telnet_socket_in_use_count, fwSS_http_ftp_sess_max=fwSS_http_ftp_sess_max, svnNetIfMAC=svnNetIfMAC, numOfHttpASCIIViolations=numOfHttpASCIIViolations, aviTopVirusesTable=aviTopVirusesTable, cpvIpsecEspDecPkts=cpvIpsecEspDecPkts, numOfP2POtherConAttempts=numOfP2POtherConAttempts, tunnelTable=tunnelTable, fwSS_POP3_max_avail_socket=fwSS_POP3_max_avail_socket, fanSpeedSensorIndex=fanSpeedSensorIndex, haProblemVerified=haProblemVerified, dtpsConnectedUsers=dtpsConnectedUsers, fwSS_POP3_mail_max=fwSS_POP3_mail_max, dlpVersionString=dlpVersionString, msProductName=msProductName, routingTable=routingTable, fwPolicyStat=fwPolicyStat, aviFTPTopVirusesCnt=aviFTPTopVirusesCnt, numOfCIFSBlockedCommands=numOfCIFSBlockedCommands, raidDiskNumber=raidDiskNumber, antiBotSubscriptionExpDate=antiBotSubscriptionExpDate, fwSS_ftp_socket_in_use_curr=fwSS_ftp_socket_in_use_curr, permanentTunnelState=permanentTunnelState, vsxStatus=vsxStatus, fwLogOut=fwLogOut, raOfficeMode=raOfficeMode, cpvIpsecUdpEspEncPkts=cpvIpsecUdpEspEncPkts, teUpdateDesc=teUpdateDesc, fwLSConnEntry=fwLSConnEntry, asmSynatk=asmSynatk, cpsemdDBIsFull=cpsemdDBIsFull, fwSS_total_passed_by_size_limit=fwSS_total_passed_by_size_limit, fanSpeedSensorStatus=fanSpeedSensorStatus, dtpsProdName=dtpsProdName, antiSpamSubscriptionDesc=antiSpamSubscriptionDesc, wamLastSession=wamLastSession, haClusterSyncAddr=haClusterSyncAddr, dlpTotalScans=dlpTotalScans, fwSS_http_auth_sess_max=fwSS_http_auth_sess_max, fwSS_http_is_alive=fwSS_http_is_alive, osMinorVer=osMinorVer, dlpStatusLongDesc=dlpStatusLongDesc, exchangeMemoryUsage=exchangeMemoryUsage, memFreeReal=memFreeReal, fwHmem64_initial_allocated_blocks=fwHmem64_initial_allocated_blocks, raidDiskFlags=raidDiskFlags, tempertureSensorStatus=tempertureSensorStatus, wamVerMajor=wamVerMajor, fwLSConn=fwLSConn, cpvIPsecNIC=cpvIPsecNIC, fwSS_http_tunneled_sess_max=fwSS_http_tunneled_sess_max, fwSS_smtp_auth_failures=fwSS_smtp_auth_failures, antiVirusSubscriptionDesc=antiVirusSubscriptionDesc, svnDisk=svnDisk, fwSS_total_passed=fwSS_total_passed, vsxStatusCPUUsage1hr=vsxStatusCPUUsage1hr, identityAwarenessUnAuthUsers=identityAwarenessUnAuthUsers, fwSS_http_ssl_encryp_sess_curr=fwSS_http_ssl_encryp_sess_curr, mgClientName=mgClientName, fgVersionString=fgVersionString, fwConnectionsStatConnectionsTcp=fwConnectionsStatConnectionsTcp, voipServicePack=voipServicePack, msSpamControlsRDNS=msSpamControlsRDNS, cpvGeneral=cpvGeneral, numOfP2PeMuleConAttempts=numOfP2PeMuleConAttempts, cpvIpsecComprBytesAfter=cpvIpsecComprBytesAfter, amwABUpdate=amwABUpdate, vsxStatusVSId=vsxStatusVSId, dlpPostfixQLen=dlpPostfixQLen, tunnelLinkPriority=tunnelLinkPriority, thresholdActiveEventActivationTime=thresholdActiveEventActivationTime, fwSS_ftp_auth_failures=fwSS_ftp_auth_failures, fwSS_ufp_ops_ufp_sess_count=fwSS_ufp_ops_ufp_sess_count, svnProc=svnProc, svnRouteModIfName=svnRouteModIfName, thresholdDestinationIndex=thresholdDestinationIndex, advancedUrlFilteringSubscription=advancedUrlFilteringSubscription, haClusterSyncIndex=haClusterSyncIndex, fwSS_total_passed_by_file_type=fwSS_total_passed_by_file_type, svnLogDStat=svnLogDStat, ms=ms, tempertureSensorUnit=tempertureSensorUnit, numOfIpSweep=numOfIpSweep, raidVolumeEntry=raidVolumeEntry, haClusterIpNetMask=haClusterIpNetMask, powerSupplyIndex=powerSupplyIndex, fwHmem_bytes_used=fwHmem_bytes_used, thresholdName=thresholdName, wamVerMinor=wamVerMinor, tunnelEntry=tunnelEntry, fwKmem_aix_heap_size=fwKmem_aix_heap_size, fwSS_POP3_sess_count=fwSS_POP3_sess_count, cpvSaUnknownSpiErr=cpvSaUnknownSpiErr, fwSS_http_tunneled_sess_curr=fwSS_http_tunneled_sess_curr, fwSS_av_total=fwSS_av_total, fwKmem_failed_free=fwKmem_failed_free, cpseadFileCurrentPosition=cpseadFileCurrentPosition, fwSS_ftp_blocked_by_AV_settings=fwSS_ftp_blocked_by_AV_settings, cpsemdCorrelationUnitEntry=cpsemdCorrelationUnitEntry, fwSS_http_passed_cnt=fwSS_http_passed_cnt, fgIfTable=fgIfTable, fwSS_http_logical_port=fwSS_http_logical_port, fwInstallTime=fwInstallTime, cpvHwAccelEspEncPkts=cpvHwAccelEspEncPkts, fwSS_smtp_blocked_by_internal_error=fwSS_smtp_blocked_by_internal_error, teSubscriptionDesc=teSubscriptionDesc, voipDOSSipRateLimitingTableIpAddress=voipDOSSipRateLimitingTableIpAddress, identityAwarenessADQueryStatusDomainIP=identityAwarenessADQueryStatusDomainIP, asmCIFS=asmCIFS, thresholdDestinationType=thresholdDestinationType, cpvVerMajor=cpvVerMajor, fwSS_total_blocked=fwSS_total_blocked, msServicePack=msServicePack, cpvIPsecNICTotalDownLoadedSAs=cpvIPsecNICTotalDownLoadedSAs)
-mibBuilder.exportSymbols("CHECKPOINT-MIB", applicationControlUpdateStatus=applicationControlUpdateStatus, svnRouteModAction=svnRouteModAction, cpvSaStatistics=cpvSaStatistics, diskTotal=diskTotal, dtpsVerMinor=dtpsVerMinor, asmHttpAsciiViolation=asmHttpAsciiViolation, fwHmem_alloc_operations=fwHmem_alloc_operations, cpsead=cpsead, fwKmem_system_physical_mem=fwKmem_system_physical_mem, haClusterIpMemberNetMask=haClusterIpMemberNetMask, cpvIpsec=cpvIpsec, asmHttpP2PHeaderFilter=asmHttpP2PHeaderFilter, fwSS_http_pid=fwSS_http_pid, fwKmem_alloc_operations=fwKmem_alloc_operations, fwSS_smtp_passed_by_archive_limit=fwSS_smtp_passed_by_archive_limit, msSpamControlsIpRepuatation=msSpamControlsIpRepuatation, fwPacketsRate=fwPacketsRate, fwSS_ftp_passed_cnt=fwSS_ftp_passed_cnt, fwSS_smtp_auth_sess_curr=fwSS_smtp_auth_sess_curr, cpvHwAccelDriverMinorVer=cpvHwAccelDriverMinorVer, vsRoutingEntry=vsRoutingEntry, msStatLongDescr=msStatLongDescr, fanSpeedSensorEntry=fanSpeedSensorEntry, fwHmem64_maximum_pools=fwHmem64_maximum_pools, fwRejectPcktsOut=fwRejectPcktsOut, svnRouteModMask=svnRouteModMask, fwInspect=fwInspect, memSwapsSec64=memSwapsSec64, vsxCountersRejectedTotal=vsxCountersRejectedTotal, cpvCurrAhSAsIn=cpvCurrAhSAsIn, applicationControlUpdateDesc=applicationControlUpdateDesc, cpsemdProcAlive=cpsemdProcAlive, fwSS_http_time_stamp=fwSS_http_time_stamp, thresholdActiveEventsTable=thresholdActiveEventsTable, cpsemdStatCode=cpsemdStatCode, cpsemdCorrelationUnitIP=cpsemdCorrelationUnitIP, svnUTCTimeOffset=svnUTCTimeOffset, lsStatCode=lsStatCode, ha=ha, cpseadJobIndex=cpseadJobIndex, cpvIPsec=cpvIPsec, fwKmem_non_blocking_bytes_peak=fwKmem_non_blocking_bytes_peak, fwSS_rlogin_socket_in_use_curr=fwSS_rlogin_socket_in_use_curr, fwHmem_maximum_bytes=fwHmem_maximum_bytes, memTotalVirtual=memTotalVirtual, haProblemDescr=haProblemDescr, fwSS_http_socket_in_use_count=fwSS_http_socket_in_use_count, voipCACConcurrentCallsCurrentVal=voipCACConcurrentCallsCurrentVal, haStatCode=haStatCode, cpvHwAccelStatistics=cpvHwAccelStatistics, cpvFwzEncErrs=cpvFwzEncErrs, ufEngine=ufEngine, cpvIpsecNonCompressiblePkts=cpvIpsecNonCompressiblePkts, wamPolicyName=wamPolicyName, fwSS_smtp_blocked_by_file_type=fwSS_smtp_blocked_by_file_type, identityAwarenessSuccUserLoginPass=identityAwarenessSuccUserLoginPass, cpvIpsecEspEncPkts=cpvIpsecEspEncPkts, haProdName=haProdName, thresholdSendingStateDesc=thresholdSendingStateDesc, multiProcInterrupts=multiProcInterrupts, fwCookies_freefwCookies_total=fwCookies_freefwCookies_total, permanentTunnelPeerIpAddr=permanentTunnelPeerIpAddr, fwSS_smtp=fwSS_smtp, fwSS_smtp_passed_by_file_type=fwSS_smtp_passed_by_file_type, haClusterIpIndex=haClusterIpIndex, fwLogIn=fwLogIn, aviSMTPTopVirusesIndex=aviSMTPTopVirusesIndex, fwSS_http_max_avail_socket=fwSS_http_max_avail_socket, exchangeAgentsStatusTableIndex=exchangeAgentsStatusTableIndex, vsxStatusCPUUsage1sec=vsxStatusCPUUsage1sec, fwSS_rlogin_logical_port=fwSS_rlogin_logical_port, aviLastSigLocation=aviLastSigLocation, aviHTTPTopVirusesCnt=aviHTTPTopVirusesCnt, aviTopViruses=aviTopViruses, identityAwarenessAuthMachKerberos=identityAwarenessAuthMachKerberos, cpvIKETotalSAsAttempts=cpvIKETotalSAsAttempts, cpvIPsecNICEncrBytes=cpvIPsecNICEncrBytes, haBlockState=haBlockState, ufTopBlockedCatEntry=ufTopBlockedCatEntry, aviPOP3TopVirusesEntry=aviPOP3TopVirusesEntry, numOfCIFSNullSessions=numOfCIFSNullSessions, fanSpeedSensorName=fanSpeedSensorName, raidVolumeFlags=raidVolumeFlags, diskFreeAvail=diskFreeAvail, vsxStatusCPUUsage24hr=vsxStatusCPUUsage24hr, svn=svn, fwHmem64_initial_allocated_bytes=fwHmem64_initial_allocated_bytes, fwHmem64_failed_alloc=fwHmem64_failed_alloc, wamState=wamState, fwSS_telnet_max_avail_socket=fwSS_telnet_max_avail_socket, cpsemdCurrentDBSize=cpsemdCurrentDBSize, wamUagNoQueries=wamUagNoQueries, svnNetIfVsid=svnNetIfVsid, numOfCIFSworms=numOfCIFSworms, fwSS_rlogin_auth_sess_max=fwSS_rlogin_auth_sess_max, vsxVsInstalled=vsxVsInstalled, fwSS_http=fwSS_http, identityAwarenessADQueryStatusCurrStatus=identityAwarenessADQueryStatusCurrStatus, fwFrag_packets=fwFrag_packets, PYSNMP_MODULE_ID=checkpoint, identityAwarenessAuthUsersKerberos=identityAwarenessAuthUsersKerberos, fwSS_smtp_socket_in_use_count=fwSS_smtp_socket_in_use_count, cpseadStatShortDescr=cpseadStatShortDescr, fwSS_POP3_mail_curr=fwSS_POP3_mail_curr, cpvIpsecEspEncBytes=cpvIpsecEspEncBytes, cpvSaReplayErr=cpvSaReplayErr, lsStatShortDescr=lsStatShortDescr, fwSS_ftp_ops_cvp_sess_curr=fwSS_ftp_ops_cvp_sess_curr, voipDOSSipRateLimitingTableNumRequestsfromServers=voipDOSSipRateLimitingTableNumRequestsfromServers, osBuildNum=osBuildNum, applicationControlStatusShortDesc=applicationControlStatusShortDesc, fwSS_POP3_time_stamp=fwSS_POP3_time_stamp, fwSS_POP3_passed_by_AV_settings=fwSS_POP3_passed_by_AV_settings, asmP2P=asmP2P, identityAwarenessADQueryStatusTableIndex=identityAwarenessADQueryStatusTableIndex, exchangeAgentVersion=exchangeAgentVersion, cpvErrOut=cpvErrOut, fwSS_rlogin_auth_sess_count=fwSS_rlogin_auth_sess_count, cpsemdCorrelationUnitIndex=cpsemdCorrelationUnitIndex, lsConnectedClientsEntry=lsConnectedClientsEntry, fgPolicyName=fgPolicyName, fwLocalLoggingStat=fwLocalLoggingStat, msMajorVersion=msMajorVersion, identityAwarenessLoggedInADQuery=identityAwarenessLoggedInADQuery, dlpSentEMails=dlpSentEMails, advancedUrlFilteringStatusShortDesc=advancedUrlFilteringStatusShortDesc, fwSS_http_blocked_by_URL_block_list=fwSS_http_blocked_by_URL_block_list, fwNetIfPorts=fwNetIfPorts, vsRoutingIntrfName=vsRoutingIntrfName, fwCookies=fwCookies, aviTopVirusesCnt=aviTopVirusesCnt, haClusterIpEntry=haClusterIpEntry, dlpPostfixQFreeSp=dlpPostfixQFreeSp, raVisitorMode=raVisitorMode, fwSS_http_passed_total=fwSS_http_passed_total, fwSS_telnet_auth_sess_count=fwSS_telnet_auth_sess_count, aviTopVirusesName=aviTopVirusesName, svnVersion=svnVersion, aviEngineVer=aviEngineVer, dlpPostfixQMsgsSz=dlpPostfixQMsgsSz, voipStatLongDescr=voipStatLongDescr, identityAwareness=identityAwareness, procUsage=procUsage, identityAwarenessStatusShortDesc=identityAwarenessStatusShortDesc, vsxCountersConnTableLimit=vsxCountersConnTableLimit, fwSS_telnet_rejected_sess=fwSS_telnet_rejected_sess, vsxStatusHAState=vsxStatusHAState, cpvEncPackets=cpvEncPackets, fwLogged=fwLogged, haStarted=haStarted, voipDOS=voipDOS, aviServicesHTTP=aviServicesHTTP, httpURLLengthViolation=httpURLLengthViolation, fwSS_smtp_socket_in_use_max=fwSS_smtp_socket_in_use_max, fwInspect_operations=fwInspect_operations, procSysTime=procSysTime, cpvFwzEncapsEncPkts=cpvFwzEncapsEncPkts, fwHmem64_blocks_unused=fwHmem64_blocks_unused, fwIfIndex=fwIfIndex, fwSS_POP3_is_alive=fwSS_POP3_is_alive, asmP2PGnutellaConAttempts=asmP2PGnutellaConAttempts, fwNetIfRemoteIp=fwNetIfRemoteIp, amwStatusCode=amwStatusCode, fwHmem64_blocks_used=fwHmem64_blocks_used, raUsersTable=raUsersTable, powerSupplyInfo=powerSupplyInfo, numOfCIFSPasswordLengthViolations=numOfCIFSPasswordLengthViolations, fgRateLimitOut=fgRateLimitOut, cpvSaErrors=cpvSaErrors, cpvIKE=cpvIKE, fwSS_ftp_blocked_by_file_type=fwSS_ftp_blocked_by_file_type, asmSmallPmtu=asmSmallPmtu, fwSS_ftp_blocked_cnt=fwSS_ftp_blocked_cnt, svnOSInfo=svnOSInfo, mgApplicationType=mgApplicationType, aviHTTPState=aviHTTPState, aviEngines=aviEngines, fgNumConnIn=fgNumConnIn, cpvIKENoResp=cpvIKENoResp, aviPOP3TopVirusesCnt=aviPOP3TopVirusesCnt, ufTopBlockedCatIndex=ufTopBlockedCatIndex, fwSS_http_proxied_sess_count=fwSS_http_proxied_sess_count, identityAwarenessUnSuccUserLoginPass=identityAwarenessUnSuccUserLoginPass, dlpPostfixQOldMsg=dlpPostfixQOldMsg, wamAcceptReq=wamAcceptReq, aviSMTPTopVirusesCnt=aviSMTPTopVirusesCnt, raidDiskTable=raidDiskTable, fwSS_POP3_blocked_cnt=fwSS_POP3_blocked_cnt, vsxStatusVsPolicyType=vsxStatusVsPolicyType, fwSS_http_transp_sess_count=fwSS_http_transp_sess_count, fwSS_POP3_mail_count=fwSS_POP3_mail_count, aviFTPLastVirusName=aviFTPLastVirusName, thresholdAlertCount=thresholdAlertCount, aviPOP3TopVirusesTable=aviPOP3TopVirusesTable, cpvIpsecStatistics=cpvIpsecStatistics, fwSS_telnet_port=fwSS_telnet_port, voipCACConcurrentCalls=voipCACConcurrentCalls, msMinorVersion=msMinorVersion, cpvSaDecrErr=cpvSaDecrErr, fwSS_smtp_passed_total=fwSS_smtp_passed_total, vsxCountersDroppedTotal=vsxCountersDroppedTotal, vsxStatusVsName=vsxStatusVsName, fwSS=fwSS, fwVerMajor=fwVerMajor, asmP2POtherConAttempts=asmP2POtherConAttempts, voipDOSSipRateLimitingTableNumNonTrustedRequests=voipDOSSipRateLimitingTableNumNonTrustedRequests, fwProduct=fwProduct, thresholdActiveEventState=thresholdActiveEventState, fwDropPcktsOut=fwDropPcktsOut, cpvErrPolicy=cpvErrPolicy, vsxStatusTable=vsxStatusTable, raidDiskRevision=raidDiskRevision, lsVerMajor=lsVerMajor, msSpamControlsRBL=msSpamControlsRBL, exchangeAgentAvgTimePerMsg=exchangeAgentAvgTimePerMsg, svnNetIfOperState=svnNetIfOperState, fwSS_ftp_auth_sess_curr=fwSS_ftp_auth_sess_curr, svnNetIfAddress=svnNetIfAddress, fwFrag_fragments=fwFrag_fragments, products=products, lsIndex=lsIndex, fwAcceptBytesIn=fwAcceptBytesIn, fwKmem_bytes_peak=fwKmem_bytes_peak, cpvMaxConncurAhSAsOut=cpvMaxConncurAhSAsOut, fwUfpHits=fwUfpHits, fwSS_ftp_accepted_sess=fwSS_ftp_accepted_sess, cpvIKECurrRespSAs=cpvIKECurrRespSAs, fwSS_POP3_blocked_total=fwSS_POP3_blocked_total, dlp=dlp, fwSS_rlogin_socket_in_use_max=fwSS_rlogin_socket_in_use_max, fgInstallTime=fgInstallTime, cpvCurrEspSAsOut=cpvCurrEspSAsOut, msStatCode=msStatCode, tunnelPeerIpAddr=tunnelPeerIpAddr, dlpExpiredEMails=dlpExpiredEMails, fwKmem_available_physical_mem=fwKmem_available_physical_mem, cpvIpsecNonCompressibleBytes=cpvIpsecNonCompressibleBytes, ls=ls, svnStatLongDescr=svnStatLongDescr, fwSS_http_accepted_sess=fwSS_http_accepted_sess, cpvFwzEncPkts=cpvFwzEncPkts, thresholdSendingState=thresholdSendingState, fwSXLConnsExisting=fwSXLConnsExisting, fwFilterName=fwFilterName, fwSS_POP3_blocked_by_AV_settings=fwSS_POP3_blocked_by_AV_settings, cpvHwAccelAhEncBytes=cpvHwAccelAhEncBytes, ufSignatureVer=ufSignatureVer, numOfhostPortScan=numOfhostPortScan, fwSS_http_blocked_by_archive_limit=fwSS_http_blocked_by_archive_limit, fwNetIfIPAddr=fwNetIfIPAddr, svnServicePack=svnServicePack, powerSupplyStatus=powerSupplyStatus, fwSS_smtp_max_mail_on_conn=fwSS_smtp_max_mail_on_conn, raidDiskState=raidDiskState)
-mibBuilder.exportSymbols("CHECKPOINT-MIB", dlpQrntStatus=dlpQrntStatus, memActiveVirtual=memActiveVirtual, fwSS_smtp_passed_by_internal_error=fwSS_smtp_passed_by_internal_error, svnRouteModGateway=svnRouteModGateway, aviHTTPTopVirusesEntry=aviHTTPTopVirusesEntry, vsRoutingDest=vsRoutingDest, vsxCountersConnPeakNum=vsxCountersConnPeakNum, ufTopBlockedSiteCnt=ufTopBlockedSiteCnt, fwSS_POP3_socket_in_use_count=fwSS_POP3_socket_in_use_count, thresholdErrorsEntry=thresholdErrorsEntry, fwSS_http_blocked_by_URL_filter_category=fwSS_http_blocked_by_URL_filter_category, fwSS_POP3_max_mail_on_conn=fwSS_POP3_max_mail_on_conn, fwSS_rlogin_auth_failures=fwSS_rlogin_auth_failures, mgStatShortDescr=mgStatShortDescr, fwSS_ufp_ops_ufp_sess_curr=fwSS_ufp_ops_ufp_sess_curr, fwSS_smtp_scanned_total=fwSS_smtp_scanned_total, thresholdActiveEventSubject=thresholdActiveEventSubject, cpvIpsecUdpEspDecPkts=cpvIpsecUdpEspDecPkts, asmLayer4=asmLayer4, haClusterIpIfName=haClusterIpIfName, tunnelProbState=tunnelProbState, identityAwarenessADQueryStatusDomainName=identityAwarenessADQueryStatusDomainName, fwSS_smtp_outgoing_mail_count=fwSS_smtp_outgoing_mail_count, cpvCurrEspSAsIn=cpvCurrEspSAsIn, teSubscriptionStatus=teSubscriptionStatus, fwInspect_extract=fwInspect_extract, lsApplicationType=lsApplicationType, cpvFwz=cpvFwz, thresholds=thresholds, asmP2PBitTorrentCon=asmP2PBitTorrentCon, multiProcIndex=multiProcIndex, smallPMTUNumberOfAttacks=smallPMTUNumberOfAttacks, msStatShortDescr=msStatShortDescr, asmSynatkModeChange=asmSynatkModeChange, advancedUrlFilteringSubscriptionExpDate=advancedUrlFilteringSubscriptionExpDate, fwHmem=fwHmem, aviEngineDate=aviEngineDate, amwABUpdateDesc=amwABUpdateDesc, sxl=sxl, amwAVNextUpdate=amwAVNextUpdate, haClusterIpAddr=haClusterIpAddr, fwHmem_maximum_pools=fwHmem_maximum_pools, avi=avi, multiProcIdleTime=multiProcIdleTime, svnApplianceSerialNumber=svnApplianceSerialNumber, amwAVVersion=amwAVVersion, fwCookies_getfwCookies_total=fwCookies_getfwCookies_total, memActiveReal64=memActiveReal64, fwSS_POP3_auth_sess_count=fwSS_POP3_auth_sess_count, fwSS_POP3_socket_in_use_curr=fwSS_POP3_socket_in_use_curr, cpvTotalEspSAsOut=cpvTotalEspSAsOut, fwSS_http_auth_sess_curr=fwSS_http_auth_sess_curr, vsxCountersBytesAcceptedTotal=vsxCountersBytesAcceptedTotal, voipDOSSipRateLimitingTableNumTrustedRequests=voipDOSSipRateLimitingTableNumTrustedRequests, msSpamControlsSpamEngine=msSpamControlsSpamEngine, cpvAccelerator=cpvAccelerator, msEngineDate=msEngineDate, identityAwarenessLoggedInCaptivePortal=identityAwarenessLoggedInCaptivePortal, cpvIKEMaxConncurRespSAs=cpvIKEMaxConncurRespSAs, aviPOP3TopVirusesName=aviPOP3TopVirusesName, tunnelType=tunnelType, amwAVUpdateStatus=amwAVUpdateStatus, fwHmem_bytes_peak=fwHmem_bytes_peak, applicationControlUpdate=applicationControlUpdate, fwSS_smtp_blocked_cnt=fwSS_smtp_blocked_cnt, exchangeAgentStatus=exchangeAgentStatus, lsProdName=lsProdName, thresholdEventsSinceStartup=thresholdEventsSinceStartup, fwSS_smtp_auth_sess_count=fwSS_smtp_auth_sess_count, fwCookies_dupfwCookies_total=fwCookies_dupfwCookies_total, teSubscriptionExpDate=teSubscriptionExpDate, cpsemdDBCapacity=cpsemdDBCapacity, osName=osName, fwSS_smtp_socket_in_use_curr=fwSS_smtp_socket_in_use_curr, aviTopVirusesEntry=aviTopVirusesEntry, fwNetIfPeerName=fwNetIfPeerName, fwKmem=fwKmem, cpvIKETotalInitSAs=cpvIKETotalInitSAs, permanentTunnelPeerObjName=permanentTunnelPeerObjName, mgClientHost=mgClientHost, fwNetIfProxyName=fwNetIfProxyName, asmHTTP=asmHTTP, vsxStatusCPUUsageTable=vsxStatusCPUUsageTable, fgAvrRateOut=fgAvrRateOut, vsRoutingMask=vsRoutingMask, raUserState=raUserState, exchangeAgentPolicyTimeStamp=exchangeAgentPolicyTimeStamp, fwSS_ftp_logical_port=fwSS_ftp_logical_port, cpvSaAuthErr=cpvSaAuthErr, numOfHttpP2PHeaders=numOfHttpP2PHeaders, fwSS_smtp_sess_curr=fwSS_smtp_sess_curr, fwSS_smtp_blocked_by_AV_settings=fwSS_smtp_blocked_by_AV_settings, fwSS_POP3_blocked_by_size_limit=fwSS_POP3_blocked_by_size_limit, fwSS_telnet_auth_failures=fwSS_telnet_auth_failures, identityAwarenessDistributedEnvEntry=identityAwarenessDistributedEnvEntry, exchangeAgentsStatusEntry=exchangeAgentsStatusEntry, permanentTunnelLinkPriority=permanentTunnelLinkPriority, fwSS_http_ssl_encryp_sess_count=fwSS_http_ssl_encryp_sess_count, routingMask=routingMask, cpvHwAccelDriverMajorVer=cpvHwAccelDriverMajorVer, fwSS_smtp_total_mails=fwSS_smtp_total_mails, cpseadStateDescription=cpseadStateDescription, permanentTunnelSourceIpAddr=permanentTunnelSourceIpAddr, ufTopBlockedUserCnt=ufTopBlockedUserCnt, voipDOSSipNetworkCallInitConfThreshold=voipDOSSipNetworkCallInitConfThreshold, multiProcRunQueue=multiProcRunQueue, fwHmem_current_allocated_blocks=fwHmem_current_allocated_blocks, memActiveVirtual64=memActiveVirtual64, cpvMaxConncurEspSAsIn=cpvMaxConncurEspSAsIn, cpvIpsecComprErrors=cpvIpsecComprErrors, svnRouteModDest=svnRouteModDest, fwNetIfEntry=fwNetIfEntry, wamProdName=wamProdName, dlpQrntFreeSpace=dlpQrntFreeSpace, msSpam=msSpam, fwSS_http_socket_in_use_max=fwSS_http_socket_in_use_max, asmAttacks=asmAttacks, msVersionStr=msVersionStr, haServicePack=haServicePack, wamGlobalPerformance=wamGlobalPerformance, cpvHwAccelAhDecPkts=cpvHwAccelAhDecPkts, tunnelSourceIpAddr=tunnelSourceIpAddr, cpseadNoFreeDiskSpace=cpseadNoFreeDiskSpace, fwConnectionsStatConnections=fwConnectionsStatConnections, fwSS_ftp_socket_in_use_count=fwSS_ftp_socket_in_use_count, cpvFwzErrors=cpvFwzErrors, fwConnectionsStatConnectionsIcmp=fwConnectionsStatConnectionsIcmp, fwMajor=fwMajor, ufTopBlockedUserTable=ufTopBlockedUserTable, cpvFwzEncapsDecPkts=cpvFwzEncapsDecPkts, identityAwarenessSuccUserLoginKerberos=identityAwarenessSuccUserLoginKerberos, fwSS_ftp_time_stamp=fwSS_ftp_time_stamp, mgIndex=mgIndex, identityAwarenessDistributedEnvTable=identityAwarenessDistributedEnvTable, fwHmem64_blocks_peak=fwHmem64_blocks_peak, fwSS_ftp_auth_sess_count=fwSS_ftp_auth_sess_count, fwSS_POP3_auth_sess_max=fwSS_POP3_auth_sess_max, antiBotSubscriptionDesc=antiBotSubscriptionDesc, raidDiskIndex=raidDiskIndex, fwSS_total_passed_by_av=fwSS_total_passed_by_av, fwSS_ftp_pid=fwSS_ftp_pid, fwSS_http_blocked_by_size_limit=fwSS_http_blocked_by_size_limit, multiDiskFreeAvailablePercent=multiDiskFreeAvailablePercent, lsFwmIsAlive=lsFwmIsAlive, tempertureSensorTable=tempertureSensorTable, tunnelState=tunnelState, voipCACConcurrentCallsConfThreshold=voipCACConcurrentCallsConfThreshold, vsxStatusMainIP=vsxStatusMainIP, exchangeAgentQueueLen=exchangeAgentQueueLen, mngmt=mngmt, cpseadJobID=cpseadJobID, wamUagLastQuery=wamUagLastQuery, fwSS_telnet_is_alive=fwSS_telnet_is_alive, svnStatShortDescr=svnStatShortDescr, asmScans=asmScans, raLogonTime=raLogonTime, cpseadConnectedToSem=cpseadConnectedToSem, fwIfName=fwIfName, fwSS_smtp_rejected_sess=fwSS_smtp_rejected_sess, cpsemdDBDiskSpace=cpsemdDBDiskSpace, voipStatShortDescr=voipStatShortDescr, cpsemdConnectionDuration=cpsemdConnectionDuration, fgIfEntry=fgIfEntry, fwTrap=fwTrap, fwHmem_free_operations=fwHmem_free_operations, fwNetIfNetmask=fwNetIfNetmask, cpseadConnectedToLogServer=cpseadConnectedToLogServer, fgNumInterfaces=fgNumInterfaces, fwSS_smtp_passed_by_AV_settings=fwSS_smtp_passed_by_AV_settings, smartDefense=smartDefense, cpvIpsecComprBytesBefore=cpvIpsecComprBytesBefore, cpvTotalAhSAsOut=cpvTotalAhSAsOut, fanSpeedSensorTable=fanSpeedSensorTable, fwHmem64=fwHmem64, haVerMinor=haVerMinor, cpvDecPackets=cpvDecPackets, aviSMTPState=aviSMTPState, fwSS_total_blocked_by_interal_error=fwSS_total_blocked_by_interal_error, fanSpeedSensorUnit=fanSpeedSensorUnit, fwHmem64_current_allocated_blocks=fwHmem64_current_allocated_blocks, amwABVersion=amwABVersion, ufStatLongDescr=ufStatLongDescr, fwSS_smtp_pid=fwSS_smtp_pid, ufSignatureDate=ufSignatureDate, svnNetIfName=svnNetIfName, antiVirusSubscription=antiVirusSubscription, procNum=procNum, teStatusLongDesc=teStatusLongDesc, identityAwarenessDataTrans=identityAwarenessDataTrans, fwSS_http_passed_by_AV_settings=fwSS_http_passed_by_AV_settings, asmSynatkNumberofunAckedSyns=asmSynatkNumberofunAckedSyns, aviPOP3LastVirusTime=aviPOP3LastVirusTime, thresholdEnabled=thresholdEnabled, fwUfp=fwUfp, svnProdVerMinor=svnProdVerMinor, fwHmem64_requested_bytes=fwHmem64_requested_bytes, identityAwarenessUnSuccUserLDAP=identityAwarenessUnSuccUserLDAP, fwHmem_requested_bytes=fwHmem_requested_bytes, cpseadProcAlive=cpseadProcAlive, haStatShort=haStatShort, fwHmem_initial_allocated_bytes=fwHmem_initial_allocated_bytes, fwLocalLoggingDesc=fwLocalLoggingDesc, vsxCountersVSId=vsxCountersVSId, fwRejected=fwRejected, fwSS_POP3_passed_by_archive_limit=fwSS_POP3_passed_by_archive_limit, identityAwarenessDistributedEnvTableBruteForceAtt=identityAwarenessDistributedEnvTableBruteForceAtt, svnNetIfMask=svnNetIfMask, fwSS_http_passed_by_URL_allow_list=fwSS_http_passed_by_URL_allow_list, fgPendBytesOut=fgPendBytesOut, checkpoint=checkpoint, fwInspect_record=fwInspect_record, ufStatCode=ufStatCode, aviEngineEntry=aviEngineEntry, vsxStatusCPUUsageVSId=vsxStatusCPUUsageVSId, ufTopBlockedSiteTable=ufTopBlockedSiteTable, aviFTPTopVirusesIndex=aviFTPTopVirusesIndex, httpMaxHeaderReached=httpMaxHeaderReached, fwIfEntry=fwIfEntry, fwSS_ftp=fwSS_ftp, fwSS_total_blocked_by_av_settings=fwSS_total_blocked_by_av_settings, tables=tables, fwSS_POP3_outgoing_mail_curr=fwSS_POP3_outgoing_mail_curr, fwSS_ftp_scanned_total=fwSS_ftp_scanned_total, thresholdActiveEventsIndex=thresholdActiveEventsIndex, voltageSensorValue=voltageSensorValue, dlpLicenseStatus=dlpLicenseStatus, aviHTTPLastVirusTime=aviHTTPLastVirusTime, svnNetIfTable=svnNetIfTable, svnWebUIPort=svnWebUIPort, fwSS_http_ops_cvp_rej_sess=fwSS_http_ops_cvp_rej_sess, voipDOSSipNetworkRegCurrentVal=voipDOSSipNetworkRegCurrentVal, mgConnectedClientsTable=mgConnectedClientsTable, advancedUrlFilteringStatusCode=advancedUrlFilteringStatusCode, dlpLastSMTPScan=dlpLastSMTPScan, fwHmem_block_size=fwHmem_block_size, fwNetIfTopology=fwNetIfTopology, diskFreeTotal=diskFreeTotal, aviStatShortDescr=aviStatShortDescr, permanentTunnelEntry=permanentTunnelEntry, thresholdActiveEventName=thresholdActiveEventName, aviHTTPTopVirusesName=aviHTTPTopVirusesName, httpWorms=httpWorms, wamUagPort=wamUagPort, fwSS_smtp_port=fwSS_smtp_port, haClusterSyncName=haClusterSyncName, advancedUrlFilteringSubscriptionDesc=advancedUrlFilteringSubscriptionDesc, cpvFwzDecPkts=cpvFwzDecPkts, asmCIFSNullSession=asmCIFSNullSession, fwSS_http_sess_count=fwSS_http_sess_count, haState=haState, wamPolicyUpdate=wamPolicyUpdate, vsxCountersAcceptedTotal=vsxCountersAcceptedTotal, aviLastLicExp=aviLastLicExp, fwSS_POP3_blocked_by_file_type=fwSS_POP3_blocked_by_file_type)
-mibBuilder.exportSymbols("CHECKPOINT-MIB", fwSS_ftp_sess_curr=fwSS_ftp_sess_curr, fgIfName=fgIfName, fwSS_smtp_max_avail_socket=fwSS_smtp_max_avail_socket, fwSS_rlogin_sess_count=fwSS_rlogin_sess_count, fwSS_ftp_blocked_total=fwSS_ftp_blocked_total, applicationControlStatusCode=applicationControlStatusCode, cpseadNumAnalyzedLogs=cpseadNumAnalyzedLogs, aviSMTPLastVirusName=aviSMTPLastVirusName, fwCookies_lenfwCookies_total=fwCookies_lenfwCookies_total, fwSS_http_blocked_by_internal_error=fwSS_http_blocked_by_internal_error, ufStatShortDescr=ufStatShortDescr, msSpamNumScannedEmails=msSpamNumScannedEmails, svnApplianceManufacturer=svnApplianceManufacturer, aviTopEverVirusesTable=aviTopEverVirusesTable, applicationControl=applicationControl, multiDiskIndex=multiDiskIndex, msSpamNumHandledSpamEmails=msSpamNumHandledSpamEmails, fwSS_total_passed_by_interal_error=fwSS_total_passed_by_interal_error, tunnelPeerType=tunnelPeerType, exchangeAgentTimeSinceLastMsg=exchangeAgentTimeSinceLastMsg, ufEngineDate=ufEngineDate, fwHmem64_bytes_internal_use=fwHmem64_bytes_internal_use, fanSpeedSensorValue=fanSpeedSensorValue, cpseadJobDataType=cpseadJobDataType, aviFTPState=aviFTPState, svnProdVerMajor=svnProdVerMajor, tunnelCommunity=tunnelCommunity, advancedUrlFilteringSubscriptionStatus=advancedUrlFilteringSubscriptionStatus, aviStatLongDescr=aviStatLongDescr, mgFwmIsAlive=mgFwmIsAlive, wam=wam, aviHTTPTopVirusesIndex=aviHTTPTopVirusesIndex, eventiaAnalyzer=eventiaAnalyzer, fgProdName=fgProdName, osSPmajor=osSPmajor, haIdentifier=haIdentifier, thresholdActiveEventSubjectValue=thresholdActiveEventSubjectValue, fwSS_ufp_ops_ufp_sess_max=fwSS_ufp_ops_ufp_sess_max, tunnelNextHop=tunnelNextHop, dtps=dtps, svnNetIfIndex=svnNetIfIndex, voipDOSSipNetworkCallInitInterval=voipDOSSipNetworkCallInitInterval, fwKmem_non_blocking_bytes_used=fwKmem_non_blocking_bytes_used, fwHmem_failed_alloc=fwHmem_failed_alloc, voipDOSSipRateLimitingEntry=voipDOSSipRateLimitingEntry, fwPolicyName=fwPolicyName, fwSS_rlogin_proto=fwSS_rlogin_proto, fwSS_ftp_blocked_by_archive_limit=fwSS_ftp_blocked_by_archive_limit, fwSS_telnet_pid=fwSS_telnet_pid, svnNetIfMTU=svnNetIfMTU, aviHTTPTopVirusesTable=aviHTTPTopVirusesTable, cpvFwzEncapsDecErrs=cpvFwzEncapsDecErrs, fwSS_telnet_proto=fwSS_telnet_proto, thresholdActiveEventCategory=thresholdActiveEventCategory, voipDOSSipRateLimitingTableInterval=voipDOSSipRateLimitingTableInterval, svnSysTime=svnSysTime, fwSS_total_blocked_by_file_type=fwSS_total_blocked_by_file_type, multiDiskFreeAvailableBytes=multiDiskFreeAvailableBytes, svnBuild=svnBuild, fwSS_rlogin_rejected_sess=fwSS_rlogin_rejected_sess, fwSS_ufp_ops_ufp_rej_sess=fwSS_ufp_ops_ufp_rej_sess, voipMajorVersion=voipMajorVersion, cpsemdCorrelationUnitTable=cpsemdCorrelationUnitTable, antiSpamSubscription=antiSpamSubscription, fwSS_telnet_socket_in_use_max=fwSS_telnet_socket_in_use_max, fwHmem64_initial_allocated_pools=fwHmem64_initial_allocated_pools, fwCookies_total=fwCookies_total, haProblemName=haProblemName, cpvFwzStatistics=cpvFwzStatistics, routingIntrfName=routingIntrfName, dlpSMTPIncidents=dlpSMTPIncidents, fwHmem_current_allocated_pools=fwHmem_current_allocated_pools, msSpamControlsDomainKeys=msSpamControlsDomainKeys, fgAvrRateIn=fgAvrRateIn, fwHmem64_current_allocated_pools=fwHmem64_current_allocated_pools, fwSS_ftp_sess_max=fwSS_ftp_sess_max, fgPendPcktsOut=fgPendPcktsOut, fwSS_http_blocked_cnt=fwSS_http_blocked_cnt, applicationControlSubscription=applicationControlSubscription, fwSXLGroup=fwSXLGroup, msBuildNumber=msBuildNumber, fwKmem_blocking_bytes_used=fwKmem_blocking_bytes_used, vsxStatusVSWeight=vsxStatusVSWeight, fwDropped=fwDropped, ufEngineName=ufEngineName, raidDiskVendor=raidDiskVendor, fwHmem64_bytes_peak=fwHmem64_bytes_peak, memDiskTransfers64=memDiskTransfers64, fwSICTrustState=fwSICTrustState, identityAwarenessADQueryStatusEntry=identityAwarenessADQueryStatusEntry, powerSupplyTable=powerSupplyTable, ufIsMonitor=ufIsMonitor, fwSS_smtp_outgoing_mail_curr=fwSS_smtp_outgoing_mail_curr, asmCIFSPasswordLengthViolations=asmCIFSPasswordLengthViolations, routingGatweway=routingGatweway, fwSS_POP3_scanned_total=fwSS_POP3_scanned_total, fwSS_ftp_passed_by_file_type=fwSS_ftp_passed_by_file_type, vsxCountersIsDataValid=vsxCountersIsDataValid, asmSynatkSynAckTimeout=asmSynatkSynAckTimeout, fwRejectPcktsIn=fwRejectPcktsIn, fwSS_ftp_ops_cvp_rej_sess=fwSS_ftp_ops_cvp_rej_sess, fwSS_http_port=fwSS_http_port, cpvIPsecNICDecrBytes=cpvIPsecNICDecrBytes, fwPeakNumConn=fwPeakNumConn, cpvIKEMaxConncurInitSAs=cpvIKEMaxConncurInitSAs, fwSS_http_blocked_total=fwSS_http_blocked_total, fwAcceptedBytesTotalRate=fwAcceptedBytesTotalRate, advancedUrlFilteringRADStatusCode=advancedUrlFilteringRADStatusCode, fwSS_http_passed_by_file_type=fwSS_http_passed_by_file_type, fwCookies_putfwCookies_total=fwCookies_putfwCookies_total, fgRateLimitIn=fgRateLimitIn, fwKmem_bytes_unused=fwKmem_bytes_unused, aviStatCode=aviStatCode, fwSS_ftp_sess_count=fwSS_ftp_sess_count, fwSS_http_passed_by_size_limit=fwSS_http_passed_by_size_limit, powerSupplyEntry=powerSupplyEntry, vsxStatusSicTrustState=vsxStatusSicTrustState, svnMem64=svnMem64, fwSS_rlogin_sess_curr=fwSS_rlogin_sess_curr, fwSS_telnet_time_stamp=fwSS_telnet_time_stamp, asmSynatkCurrentMode=asmSynatkCurrentMode, fwSS_telnet_auth_sess_curr=fwSS_telnet_auth_sess_curr, fwSS_ftp_ops_cvp_sess_max=fwSS_ftp_ops_cvp_sess_max, advancedUrlFiltering=advancedUrlFiltering, cpvIpsecCompressiblePkts=cpvIpsecCompressiblePkts, haIfEntry=haIfEntry, fwSS_rlogin_max_avail_socket=fwSS_rlogin_max_avail_socket, amwStatusLongDesc=amwStatusLongDesc, vsxStatusCPUUsageEntry=vsxStatusCPUUsageEntry, ufLastSigLocation=ufLastSigLocation, fgRetransPcktsOut=fgRetransPcktsOut, fgNumConnOut=fgNumConnOut, aviSMTPTopVirusesEntry=aviSMTPTopVirusesEntry, fwSS_smtp_blocked_by_archive_limit=fwSS_smtp_blocked_by_archive_limit, thresholdErrorIndex=thresholdErrorIndex, fgVerMajor=fgVerMajor, fwHmem_number_of_items=fwHmem_number_of_items, cpvMaxConncurEspSAsOut=cpvMaxConncurEspSAsOut, exchangeAgentDroppedMsg=exchangeAgentDroppedMsg, permanentTunnelTable=permanentTunnelTable, lsStatLongDescr=lsStatLongDescr, fwSS_http_tunneled_sess_count=fwSS_http_tunneled_sess_count, cpvVerMinor=cpvVerMinor, svnStatCode=svnStatCode, aviFTPTopVirusesName=aviFTPTopVirusesName, numOfDisksOnRaid=numOfDisksOnRaid, cpseadStatLongDescr=cpseadStatLongDescr, fwConnectionsStatConnectionsUdp=fwConnectionsStatConnectionsUdp, haIfIndex=haIfIndex, amwStatusShortDesc=amwStatusShortDesc, ufBlockedCnt=ufBlockedCnt, uf=uf, fwSS_POP3_rejected_sess=fwSS_POP3_rejected_sess, voltageSensorTable=voltageSensorTable, svnLogDaemon=svnLogDaemon, svnInfo=svnInfo, ufTopBlockedSiteName=ufTopBlockedSiteName, tempertureSensorName=tempertureSensorName, memActiveReal=memActiveReal, haClusterSyncNetMask=haClusterSyncNetMask, fwSXLConnsAdded=fwSXLConnsAdded, fwSS_ftp_port=fwSS_ftp_port, haVerMajor=haVerMajor, fwHmem_blocks_unused=fwHmem_blocks_unused, wamOpenSessions=wamOpenSessions, raidDiskProductID=raidDiskProductID, lsVerMinor=lsVerMinor, fwSS_ftp_passed_total=fwSS_ftp_passed_total, diskQueue=diskQueue, fwSS_telnet_sess_count=fwSS_telnet_sess_count, dtpsStatCode=dtpsStatCode, cpvIpsecDecomprPkts=cpvIpsecDecomprPkts, vsxCountersBytesRejectedTotal=vsxCountersBytesRejectedTotal, advancedUrlFilteringRADStatus=advancedUrlFilteringRADStatus, multiDiskEntry=multiDiskEntry, vsxCountersBytesDroppedTotal=vsxCountersBytesDroppedTotal, fwHmem_initial_allocated_blocks=fwHmem_initial_allocated_blocks, fwChains_alloc=fwChains_alloc, msSpamControlsSPF=msSpamControlsSPF, thresholdErrorsTable=thresholdErrorsTable, teCloudSubscriptionStatus=teCloudSubscriptionStatus, cpvHwAccelVendor=cpvHwAccelVendor, ufTopBlockedUserName=ufTopBlockedUserName, fwHmem_bytes_internal_use=fwHmem_bytes_internal_use, cpvIPsecNICCurrDownLoadedSAs=cpvIPsecNICCurrDownLoadedSAs, voipDOSSipRateLimitingTableNumDOSSipRequests=voipDOSSipRateLimitingTableNumDOSSipRequests, ufTopBlockedUserEntry=ufTopBlockedUserEntry, fwSS_http_transp_sess_curr=fwSS_http_transp_sess_curr, cpvProdName=cpvProdName, fwProdName=fwProdName, osMajorVer=osMajorVer, svnNetIfTableEntry=svnNetIfTableEntry, svnRoutingModify=svnRoutingModify, fwSS_smtp_auth_sess_max=fwSS_smtp_auth_sess_max, fwHmem64_current_allocated_bytes=fwHmem64_current_allocated_bytes, msSpamNumSpamEmails=msSpamNumSpamEmails, cpvIKETotalRespSAs=cpvIKETotalRespSAs, thresholdDestinationsTable=thresholdDestinationsTable, haIP=haIP, vsxStatusEntry=vsxStatusEntry, voipCAC=voipCAC, raRouteTraffic=raRouteTraffic, applicationControlVersion=applicationControlVersion, thresholdDestinationName=thresholdDestinationName, fwSS_smtp_sess_max=fwSS_smtp_sess_max, fwKmem_blocking_bytes_peak=fwKmem_blocking_bytes_peak, aviTopVirusesIndex=aviTopVirusesIndex, cpsemdStatLongDescr=cpsemdStatLongDescr, cpseadJobIsOnline=cpseadJobIsOnline, identityAwarenessDistributedEnvTableDisconnections=identityAwarenessDistributedEnvTableDisconnections, fwLSConnTable=fwLSConnTable, fwSS_POP3_proto=fwSS_POP3_proto, vsRoutingIndex=vsRoutingIndex, osVersionLevel=osVersionLevel, fgModuleKernelBuild=fgModuleKernelBuild, voltageSensorIndex=voltageSensorIndex, fwHmem64_bytes_unused=fwHmem64_bytes_unused, fwSS_rlogin_accepted_sess=fwSS_rlogin_accepted_sess, fwSS_total_passed_by_archive_limit=fwSS_total_passed_by_archive_limit, mgBuildNumber=mgBuildNumber, fgVerMinor=fgVerMinor, msExpirationDate=msExpirationDate, fwSS_smtp_mail_max=fwSS_smtp_mail_max, fwTrapPrefix=fwTrapPrefix, fwSS_ftp_ops_cvp_sess_count=fwSS_ftp_ops_cvp_sess_count, voipVersionStr=voipVersionStr, cpvHwAccelEspEncBytes=cpvHwAccelEspEncBytes, tunnelPeerObjName=tunnelPeerObjName, identityAwarenessStatusLongDesc=identityAwarenessStatusLongDesc, fwSS_total_blocked_by_archive_limit=fwSS_total_blocked_by_archive_limit, vsxVsConfigured=vsxVsConfigured, fwSS_ftp_max_avail_socket=fwSS_ftp_max_avail_socket, mgProdName=mgProdName, advancedUrlFilteringUpdate=advancedUrlFilteringUpdate, cpvIKEMaxConncurSAs=cpvIKEMaxConncurSAs, exchangeAgentTotalMsg=exchangeAgentTotalMsg, haClusterSyncTable=haClusterSyncTable, fwSS_smtp_accepted_sess=fwSS_smtp_accepted_sess, fwDropPcktsIn=fwDropPcktsIn, svnSysStartTime=svnSysStartTime, svnProdName=svnProdName, voipDOSSipNetworkCallInitICurrentVal=voipDOSSipNetworkCallInitICurrentVal, asmCIFSBlockedPopUps=asmCIFSBlockedPopUps, fwSS_ufp_time_stamp=fwSS_ufp_time_stamp, sequenceVerifierInvalidAck=sequenceVerifierInvalidAck, cpvHwAccelAhEncPkts=cpvHwAccelAhEncPkts, aviLastSigCheckTime=aviLastSigCheckTime, tempertureSensorType=tempertureSensorType, identityAwarenessSuccUserLoginADQuery=identityAwarenessSuccUserLoginADQuery, svnNetIfDescription=svnNetIfDescription, asmHttpWorms=asmHttpWorms, sensorInfo=sensorInfo, cpvHwAccelGeneral=cpvHwAccelGeneral, asmSeqval=asmSeqval)
-mibBuilder.exportSymbols("CHECKPOINT-MIB", lsBuildNumber=lsBuildNumber, fwSS_total_scanned=fwSS_total_scanned, tunnelInterface=tunnelInterface, fwSS_smtp_sess_count=fwSS_smtp_sess_count, haProblemEntry=haProblemEntry, dlpFtpIncidents=dlpFtpIncidents, dlpStatusCode=dlpStatusCode, vsRoutingGateway=vsRoutingGateway, fwPerfStat=fwPerfStat, raidDiskID=raidDiskID, cpseadJobLogServer=cpseadJobLogServer, raidVolumeID=raidVolumeID, cpvErrIn=cpvErrIn, aviTopEverVirusesIndex=aviTopEverVirusesIndex, amwABUpdateStatus=amwABUpdateStatus, fwLSConnIndex=fwLSConnIndex, raTunnelEncAlgorithm=raTunnelEncAlgorithm, fwKernelBuild=fwKernelBuild, identityAwarenessADQueryStatusTable=identityAwarenessADQueryStatusTable, cpvCurrAhSAsOut=cpvCurrAhSAsOut, multiDiskFreeTotalPercent=multiDiskFreeTotalPercent, aviSMTPLastVirusTime=aviSMTPLastVirusTime, voipDOSSipNetworkReqCurrentVal=voipDOSSipNetworkReqCurrentVal, memFreeReal64=memFreeReal64, fwAcceptPcktsIn=fwAcceptPcktsIn, fwSS_POP3_outgoing_mail_count=fwSS_POP3_outgoing_mail_count, aviFTPLastVirusTime=aviFTPLastVirusTime, fwSS_http_ops_cvp_sess_count=fwSS_http_ops_cvp_sess_count, raidVolumeMaxLBA=raidVolumeMaxLBA, haClusterIpMemberNet=haClusterIpMemberNet, identityAwarenessAuthMachADQuery=identityAwarenessAuthMachADQuery, fwSS_http_proxied_sess_curr=fwSS_http_proxied_sess_curr, wamStatCode=wamStatCode, fwSS_ftp_passed_by_AV_settings=fwSS_ftp_passed_by_AV_settings, fwSS_POP3_passed_by_internal_error=fwSS_POP3_passed_by_internal_error, ufLastSigCheckTime=ufLastSigCheckTime, haProblemStatus=haProblemStatus, cpseadStateDescriptionCode=cpseadStateDescriptionCode, fgPendPcktsIn=fgPendPcktsIn, fwSS_POP3_passed_by_size_limit=fwSS_POP3_passed_by_size_limit, mgActiveStatus=mgActiveStatus, fwSS_ftp_proto=fwSS_ftp_proto, teUpdateStatus=teUpdateStatus, cpvIKEglobals=cpvIKEglobals, exchangeAgentUpTime=exchangeAgentUpTime, haProblemPriority=haProblemPriority, asmHostPortScan=asmHostPortScan, fwSS_http_socket_in_use_curr=fwSS_http_socket_in_use_curr, advancedUrlFilteringVersion=advancedUrlFilteringVersion, haClusterIpTable=haClusterIpTable, fwHmem64_failed_free=fwHmem64_failed_free, vsxCountersTable=vsxCountersTable, fwAccepted=fwAccepted, fwSS_smtp_logical_port=fwSS_smtp_logical_port, fwSS_http_passed_by_URL_filter_category=fwSS_http_passed_by_URL_filter_category, fwSS_ufp_is_alive=fwSS_ufp_is_alive, tempertureSensorValue=tempertureSensorValue, fwSS_http_auth_sess_count=fwSS_http_auth_sess_count, wamUagHost=wamUagHost, multiProcUsage=multiProcUsage, haVerified=haVerified, mgVerMinor=mgVerMinor, raidVolumeIndex=raidVolumeIndex, fwSS_smtp_proto=fwSS_smtp_proto, fwVerMinor=fwVerMinor, svnApplianceProductName=svnApplianceProductName, voipDOSSipRateLimitingTableIndex=voipDOSSipRateLimitingTableIndex, multiDiskUsed=multiDiskUsed, identityAwarenessDistributedEnvTableGwName=identityAwarenessDistributedEnvTableGwName, haIfName=haIfName, routingDest=routingDest, fwSS_ufp=fwSS_ufp, voipProductName=voipProductName, fwSS_http_scanned_total=fwSS_http_scanned_total, multiDiskFreeTotalBytes=multiDiskFreeTotalBytes, dlpHttpLastScan=dlpHttpLastScan, fwSXLConnsDeleted=fwSXLConnsDeleted, thresholdThresholdOID=thresholdThresholdOID, asmSynatkSynAckReset=asmSynatkSynAckReset, amw=amw, fg=fg, cpvIKETotalFailuresResp=cpvIKETotalFailuresResp, fwSS_POP3_passed_total=fwSS_POP3_passed_total, amwAVUpdate=amwAVUpdate, fwSS_smtp_blocked_total=fwSS_smtp_blocked_total, aviServicesSMTP=aviServicesSMTP, aviSignatureDate=aviSignatureDate, raidVolumeType=raidVolumeType, aviSMTPTopVirusesTable=aviSMTPTopVirusesTable, fgPendBytesIn=fgPendBytesIn, voltageSensorName=voltageSensorName, dlpNumQuarantined=dlpNumQuarantined, fwSS_http_passed_by_archive_limit=fwSS_http_passed_by_archive_limit, cpvIKEerrors=cpvIKEerrors, cpvMaxConncurAhSAsIn=cpvMaxConncurAhSAsIn, advancedUrlFilteringRADStatusDesc=advancedUrlFilteringRADStatusDesc, ufTopBlockedSiteIndex=ufTopBlockedSiteIndex, identityAwarenessSuccUserLDAP=identityAwarenessSuccUserLDAP, cpvSaPolicyErr=cpvSaPolicyErr, fgStrPolicyName=fgStrPolicyName, wamStatShortDescr=wamStatShortDescr)
diff --git a/cloudshell/checkpoint/gaia/mibs/IP-MIB.py b/cloudshell/checkpoint/gaia/mibs/IP-MIB.py
deleted file mode 100644
index aae632f..0000000
--- a/cloudshell/checkpoint/gaia/mibs/IP-MIB.py
+++ /dev/null
@@ -1,617 +0,0 @@
-#
-# PySNMP MIB module IP-MIB (http://pysnmp.sf.net)
-# ASN.1 source http://mibs.snmplabs.com:80/asn1/IP-MIB
-# Produced by pysmi-0.1.3 at Fri Jun 07 16:59:33 2019
-# On host ? platform ? version ? by user ?
-# Using Python version 2.7.14 (v2.7.14:84471935ed, Sep 16 2017, 20:19:30) [MSC v.1500 32 bit (Intel)]
-#
-Integer, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString")
-NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
-ConstraintsUnion, SingleValueConstraint, ConstraintsIntersection, ValueSizeConstraint, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "SingleValueConstraint", "ConstraintsIntersection", "ValueSizeConstraint", "ValueRangeConstraint")
-InterfaceIndex, = mibBuilder.importSymbols("IF-MIB", "InterfaceIndex")
-InetAddress, InetZoneIndex, InetAddressType, InetVersion, InetAddressPrefixLength = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddress", "InetZoneIndex", "InetAddressType", "InetVersion", "InetAddressPrefixLength")
-NotificationGroup, ModuleCompliance, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance", "ObjectGroup")
-Integer32, MibScalar, MibTable, MibTableRow, MibTableColumn, NotificationType, MibIdentifier, mib_2, Bits, TimeTicks, Counter64, Unsigned32, ModuleIdentity, Gauge32, zeroDotZero, iso, ObjectIdentity, IpAddress, Counter32 = mibBuilder.importSymbols("SNMPv2-SMI", "Integer32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "NotificationType", "MibIdentifier", "mib-2", "Bits", "TimeTicks", "Counter64", "Unsigned32", "ModuleIdentity", "Gauge32", "zeroDotZero", "iso", "ObjectIdentity", "IpAddress", "Counter32")
-RowPointer, TruthValue, TimeStamp, TestAndIncr, StorageType, RowStatus, DisplayString, PhysAddress, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "RowPointer", "TruthValue", "TimeStamp", "TestAndIncr", "StorageType", "RowStatus", "DisplayString", "PhysAddress", "TextualConvention")
-ipMIB = ModuleIdentity((1, 3, 6, 1, 2, 1, 48))
-if mibBuilder.loadTexts: ipMIB.setRevisions(('2006-02-02 00:00', '1994-11-01 00:00', '1991-03-31 00:00',))
-if mibBuilder.loadTexts: ipMIB.setLastUpdated('200602020000Z')
-class IpAddressOriginTC(TextualConvention, Integer32):
- status = 'current'
- subtypeSpec = Integer32.subtypeSpec + SingleValueConstraint(1, 2, 4, 5, 6)
- namedValues = NamedValues(("other", 1), ("manual", 2), ("dhcp", 4), ("linklayer", 5), ("random", 6))
-
-class IpAddressStatusTC(TextualConvention, Integer32):
- reference = 'RFC 2462'
- status = 'current'
- subtypeSpec = Integer32.subtypeSpec + SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8)
- namedValues = NamedValues(("preferred", 1), ("deprecated", 2), ("invalid", 3), ("inaccessible", 4), ("unknown", 5), ("tentative", 6), ("duplicate", 7), ("optimistic", 8))
-
-class IpAddressPrefixOriginTC(TextualConvention, Integer32):
- status = 'current'
- subtypeSpec = Integer32.subtypeSpec + SingleValueConstraint(1, 2, 3, 4, 5)
- namedValues = NamedValues(("other", 1), ("manual", 2), ("wellknown", 3), ("dhcp", 4), ("routeradv", 5))
-
-class Ipv6AddressIfIdentifierTC(TextualConvention, OctetString):
- status = 'current'
- displayHint = '2x:'
- subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(0, 8)
-
-ip = MibIdentifier((1, 3, 6, 1, 2, 1, 4))
-ipForwarding = MibScalar((1, 3, 6, 1, 2, 1, 4, 1), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2)).clone(namedValues=NamedValues(("forwarding", 1), ("notForwarding", 2)))).setMaxAccess("readwrite")
-if mibBuilder.loadTexts: ipForwarding.setStatus('current')
-ipDefaultTTL = MibScalar((1, 3, 6, 1, 2, 1, 4, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite")
-if mibBuilder.loadTexts: ipDefaultTTL.setStatus('current')
-ipReasmTimeout = MibScalar((1, 3, 6, 1, 2, 1, 4, 13), Integer32()).setUnits('seconds').setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipReasmTimeout.setStatus('current')
-ipv6IpForwarding = MibScalar((1, 3, 6, 1, 2, 1, 4, 25), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2)).clone(namedValues=NamedValues(("forwarding", 1), ("notForwarding", 2)))).setMaxAccess("readwrite")
-if mibBuilder.loadTexts: ipv6IpForwarding.setStatus('current')
-ipv6IpDefaultHopLimit = MibScalar((1, 3, 6, 1, 2, 1, 4, 26), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
-if mibBuilder.loadTexts: ipv6IpDefaultHopLimit.setReference('RFC 2461 Section 6.3.2')
-if mibBuilder.loadTexts: ipv6IpDefaultHopLimit.setStatus('current')
-ipv4InterfaceTableLastChange = MibScalar((1, 3, 6, 1, 2, 1, 4, 27), TimeStamp()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipv4InterfaceTableLastChange.setStatus('current')
-ipv4InterfaceTable = MibTable((1, 3, 6, 1, 2, 1, 4, 28), )
-if mibBuilder.loadTexts: ipv4InterfaceTable.setStatus('current')
-ipv4InterfaceEntry = MibTableRow((1, 3, 6, 1, 2, 1, 4, 28, 1), ).setIndexNames((0, "IP-MIB", "ipv4InterfaceIfIndex"))
-if mibBuilder.loadTexts: ipv4InterfaceEntry.setStatus('current')
-ipv4InterfaceIfIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 28, 1, 1), InterfaceIndex())
-if mibBuilder.loadTexts: ipv4InterfaceIfIndex.setStatus('current')
-ipv4InterfaceReasmMaxSize = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 28, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipv4InterfaceReasmMaxSize.setStatus('current')
-ipv4InterfaceEnableStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 28, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2)).clone(namedValues=NamedValues(("up", 1), ("down", 2)))).setMaxAccess("readwrite")
-if mibBuilder.loadTexts: ipv4InterfaceEnableStatus.setStatus('current')
-ipv4InterfaceRetransmitTime = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 28, 1, 4), Unsigned32().clone(1000)).setUnits('milliseconds').setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipv4InterfaceRetransmitTime.setReference('RFC 1122')
-if mibBuilder.loadTexts: ipv4InterfaceRetransmitTime.setStatus('current')
-ipv6InterfaceTableLastChange = MibScalar((1, 3, 6, 1, 2, 1, 4, 29), TimeStamp()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipv6InterfaceTableLastChange.setStatus('current')
-ipv6InterfaceTable = MibTable((1, 3, 6, 1, 2, 1, 4, 30), )
-if mibBuilder.loadTexts: ipv6InterfaceTable.setStatus('current')
-ipv6InterfaceEntry = MibTableRow((1, 3, 6, 1, 2, 1, 4, 30, 1), ).setIndexNames((0, "IP-MIB", "ipv6InterfaceIfIndex"))
-if mibBuilder.loadTexts: ipv6InterfaceEntry.setStatus('current')
-ipv6InterfaceIfIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 30, 1, 1), InterfaceIndex())
-if mibBuilder.loadTexts: ipv6InterfaceIfIndex.setStatus('current')
-ipv6InterfaceReasmMaxSize = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 30, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1500, 65535))).setUnits('octets').setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipv6InterfaceReasmMaxSize.setStatus('current')
-ipv6InterfaceIdentifier = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 30, 1, 3), Ipv6AddressIfIdentifierTC()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipv6InterfaceIdentifier.setStatus('current')
-ipv6InterfaceEnableStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 30, 1, 5), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2)).clone(namedValues=NamedValues(("up", 1), ("down", 2)))).setMaxAccess("readwrite")
-if mibBuilder.loadTexts: ipv6InterfaceEnableStatus.setStatus('current')
-ipv6InterfaceReachableTime = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 30, 1, 6), Unsigned32()).setUnits('milliseconds').setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipv6InterfaceReachableTime.setReference('RFC 2461, Section 6.3.2')
-if mibBuilder.loadTexts: ipv6InterfaceReachableTime.setStatus('current')
-ipv6InterfaceRetransmitTime = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 30, 1, 7), Unsigned32()).setUnits('milliseconds').setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipv6InterfaceRetransmitTime.setReference('RFC 2461, Section 6.3.2')
-if mibBuilder.loadTexts: ipv6InterfaceRetransmitTime.setStatus('current')
-ipv6InterfaceForwarding = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 30, 1, 8), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2)).clone(namedValues=NamedValues(("forwarding", 1), ("notForwarding", 2)))).setMaxAccess("readwrite")
-if mibBuilder.loadTexts: ipv6InterfaceForwarding.setStatus('current')
-ipTrafficStats = MibIdentifier((1, 3, 6, 1, 2, 1, 4, 31))
-ipSystemStatsTable = MibTable((1, 3, 6, 1, 2, 1, 4, 31, 1), )
-if mibBuilder.loadTexts: ipSystemStatsTable.setStatus('current')
-ipSystemStatsEntry = MibTableRow((1, 3, 6, 1, 2, 1, 4, 31, 1, 1), ).setIndexNames((0, "IP-MIB", "ipSystemStatsIPVersion"))
-if mibBuilder.loadTexts: ipSystemStatsEntry.setStatus('current')
-ipSystemStatsIPVersion = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 1), InetVersion())
-if mibBuilder.loadTexts: ipSystemStatsIPVersion.setStatus('current')
-ipSystemStatsInReceives = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 3), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsInReceives.setStatus('current')
-ipSystemStatsHCInReceives = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 4), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsHCInReceives.setStatus('current')
-ipSystemStatsInOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 5), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsInOctets.setStatus('current')
-ipSystemStatsHCInOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 6), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsHCInOctets.setStatus('current')
-ipSystemStatsInHdrErrors = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 7), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsInHdrErrors.setStatus('current')
-ipSystemStatsInNoRoutes = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 8), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsInNoRoutes.setStatus('current')
-ipSystemStatsInAddrErrors = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 9), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsInAddrErrors.setStatus('current')
-ipSystemStatsInUnknownProtos = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 10), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsInUnknownProtos.setStatus('current')
-ipSystemStatsInTruncatedPkts = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 11), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsInTruncatedPkts.setStatus('current')
-ipSystemStatsInForwDatagrams = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 12), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsInForwDatagrams.setStatus('current')
-ipSystemStatsHCInForwDatagrams = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 13), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsHCInForwDatagrams.setStatus('current')
-ipSystemStatsReasmReqds = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 14), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsReasmReqds.setStatus('current')
-ipSystemStatsReasmOKs = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 15), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsReasmOKs.setStatus('current')
-ipSystemStatsReasmFails = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 16), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsReasmFails.setStatus('current')
-ipSystemStatsInDiscards = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 17), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsInDiscards.setStatus('current')
-ipSystemStatsInDelivers = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 18), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsInDelivers.setStatus('current')
-ipSystemStatsHCInDelivers = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 19), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsHCInDelivers.setStatus('current')
-ipSystemStatsOutRequests = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 20), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsOutRequests.setStatus('current')
-ipSystemStatsHCOutRequests = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 21), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsHCOutRequests.setStatus('current')
-ipSystemStatsOutNoRoutes = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 22), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsOutNoRoutes.setStatus('current')
-ipSystemStatsOutForwDatagrams = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 23), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsOutForwDatagrams.setStatus('current')
-ipSystemStatsHCOutForwDatagrams = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 24), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsHCOutForwDatagrams.setStatus('current')
-ipSystemStatsOutDiscards = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 25), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsOutDiscards.setStatus('current')
-ipSystemStatsOutFragReqds = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 26), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsOutFragReqds.setStatus('current')
-ipSystemStatsOutFragOKs = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 27), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsOutFragOKs.setStatus('current')
-ipSystemStatsOutFragFails = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 28), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsOutFragFails.setStatus('current')
-ipSystemStatsOutFragCreates = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 29), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsOutFragCreates.setStatus('current')
-ipSystemStatsOutTransmits = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 30), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsOutTransmits.setStatus('current')
-ipSystemStatsHCOutTransmits = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 31), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsHCOutTransmits.setStatus('current')
-ipSystemStatsOutOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 32), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsOutOctets.setStatus('current')
-ipSystemStatsHCOutOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 33), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsHCOutOctets.setStatus('current')
-ipSystemStatsInMcastPkts = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 34), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsInMcastPkts.setStatus('current')
-ipSystemStatsHCInMcastPkts = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 35), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsHCInMcastPkts.setStatus('current')
-ipSystemStatsInMcastOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 36), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsInMcastOctets.setStatus('current')
-ipSystemStatsHCInMcastOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 37), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsHCInMcastOctets.setStatus('current')
-ipSystemStatsOutMcastPkts = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 38), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsOutMcastPkts.setStatus('current')
-ipSystemStatsHCOutMcastPkts = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 39), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsHCOutMcastPkts.setStatus('current')
-ipSystemStatsOutMcastOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 40), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsOutMcastOctets.setStatus('current')
-ipSystemStatsHCOutMcastOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 41), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsHCOutMcastOctets.setStatus('current')
-ipSystemStatsInBcastPkts = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 42), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsInBcastPkts.setStatus('current')
-ipSystemStatsHCInBcastPkts = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 43), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsHCInBcastPkts.setStatus('current')
-ipSystemStatsOutBcastPkts = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 44), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsOutBcastPkts.setStatus('current')
-ipSystemStatsHCOutBcastPkts = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 45), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsHCOutBcastPkts.setStatus('current')
-ipSystemStatsDiscontinuityTime = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 46), TimeStamp()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsDiscontinuityTime.setStatus('current')
-ipSystemStatsRefreshRate = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 1, 1, 47), Unsigned32()).setUnits('milli-seconds').setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipSystemStatsRefreshRate.setStatus('current')
-ipIfStatsTableLastChange = MibScalar((1, 3, 6, 1, 2, 1, 4, 31, 2), TimeStamp()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsTableLastChange.setStatus('current')
-ipIfStatsTable = MibTable((1, 3, 6, 1, 2, 1, 4, 31, 3), )
-if mibBuilder.loadTexts: ipIfStatsTable.setStatus('current')
-ipIfStatsEntry = MibTableRow((1, 3, 6, 1, 2, 1, 4, 31, 3, 1), ).setIndexNames((0, "IP-MIB", "ipIfStatsIPVersion"), (0, "IP-MIB", "ipIfStatsIfIndex"))
-if mibBuilder.loadTexts: ipIfStatsEntry.setStatus('current')
-ipIfStatsIPVersion = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 1), InetVersion())
-if mibBuilder.loadTexts: ipIfStatsIPVersion.setStatus('current')
-ipIfStatsIfIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 2), InterfaceIndex())
-if mibBuilder.loadTexts: ipIfStatsIfIndex.setStatus('current')
-ipIfStatsInReceives = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 3), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsInReceives.setStatus('current')
-ipIfStatsHCInReceives = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 4), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsHCInReceives.setStatus('current')
-ipIfStatsInOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 5), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsInOctets.setStatus('current')
-ipIfStatsHCInOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 6), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsHCInOctets.setStatus('current')
-ipIfStatsInHdrErrors = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 7), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsInHdrErrors.setStatus('current')
-ipIfStatsInNoRoutes = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 8), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsInNoRoutes.setStatus('current')
-ipIfStatsInAddrErrors = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 9), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsInAddrErrors.setStatus('current')
-ipIfStatsInUnknownProtos = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 10), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsInUnknownProtos.setStatus('current')
-ipIfStatsInTruncatedPkts = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 11), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsInTruncatedPkts.setStatus('current')
-ipIfStatsInForwDatagrams = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 12), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsInForwDatagrams.setStatus('current')
-ipIfStatsHCInForwDatagrams = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 13), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsHCInForwDatagrams.setStatus('current')
-ipIfStatsReasmReqds = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 14), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsReasmReqds.setStatus('current')
-ipIfStatsReasmOKs = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 15), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsReasmOKs.setStatus('current')
-ipIfStatsReasmFails = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 16), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsReasmFails.setStatus('current')
-ipIfStatsInDiscards = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 17), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsInDiscards.setStatus('current')
-ipIfStatsInDelivers = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 18), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsInDelivers.setStatus('current')
-ipIfStatsHCInDelivers = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 19), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsHCInDelivers.setStatus('current')
-ipIfStatsOutRequests = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 20), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsOutRequests.setStatus('current')
-ipIfStatsHCOutRequests = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 21), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsHCOutRequests.setStatus('current')
-ipIfStatsOutForwDatagrams = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 23), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsOutForwDatagrams.setStatus('current')
-ipIfStatsHCOutForwDatagrams = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 24), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsHCOutForwDatagrams.setStatus('current')
-ipIfStatsOutDiscards = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 25), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsOutDiscards.setStatus('current')
-ipIfStatsOutFragReqds = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 26), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsOutFragReqds.setStatus('current')
-ipIfStatsOutFragOKs = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 27), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsOutFragOKs.setStatus('current')
-ipIfStatsOutFragFails = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 28), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsOutFragFails.setStatus('current')
-ipIfStatsOutFragCreates = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 29), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsOutFragCreates.setStatus('current')
-ipIfStatsOutTransmits = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 30), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsOutTransmits.setStatus('current')
-ipIfStatsHCOutTransmits = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 31), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsHCOutTransmits.setStatus('current')
-ipIfStatsOutOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 32), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsOutOctets.setStatus('current')
-ipIfStatsHCOutOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 33), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsHCOutOctets.setStatus('current')
-ipIfStatsInMcastPkts = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 34), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsInMcastPkts.setStatus('current')
-ipIfStatsHCInMcastPkts = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 35), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsHCInMcastPkts.setStatus('current')
-ipIfStatsInMcastOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 36), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsInMcastOctets.setStatus('current')
-ipIfStatsHCInMcastOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 37), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsHCInMcastOctets.setStatus('current')
-ipIfStatsOutMcastPkts = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 38), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsOutMcastPkts.setStatus('current')
-ipIfStatsHCOutMcastPkts = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 39), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsHCOutMcastPkts.setStatus('current')
-ipIfStatsOutMcastOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 40), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsOutMcastOctets.setStatus('current')
-ipIfStatsHCOutMcastOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 41), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsHCOutMcastOctets.setStatus('current')
-ipIfStatsInBcastPkts = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 42), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsInBcastPkts.setStatus('current')
-ipIfStatsHCInBcastPkts = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 43), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsHCInBcastPkts.setStatus('current')
-ipIfStatsOutBcastPkts = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 44), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsOutBcastPkts.setStatus('current')
-ipIfStatsHCOutBcastPkts = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 45), Counter64()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsHCOutBcastPkts.setStatus('current')
-ipIfStatsDiscontinuityTime = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 46), TimeStamp()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsDiscontinuityTime.setStatus('current')
-ipIfStatsRefreshRate = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 31, 3, 1, 47), Unsigned32()).setUnits('milli-seconds').setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipIfStatsRefreshRate.setStatus('current')
-ipAddressPrefixTable = MibTable((1, 3, 6, 1, 2, 1, 4, 32), )
-if mibBuilder.loadTexts: ipAddressPrefixTable.setStatus('current')
-ipAddressPrefixEntry = MibTableRow((1, 3, 6, 1, 2, 1, 4, 32, 1), ).setIndexNames((0, "IP-MIB", "ipAddressPrefixIfIndex"), (0, "IP-MIB", "ipAddressPrefixType"), (0, "IP-MIB", "ipAddressPrefixPrefix"), (0, "IP-MIB", "ipAddressPrefixLength"))
-if mibBuilder.loadTexts: ipAddressPrefixEntry.setStatus('current')
-ipAddressPrefixIfIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 32, 1, 1), InterfaceIndex())
-if mibBuilder.loadTexts: ipAddressPrefixIfIndex.setStatus('current')
-ipAddressPrefixType = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 32, 1, 2), InetAddressType())
-if mibBuilder.loadTexts: ipAddressPrefixType.setStatus('current')
-ipAddressPrefixPrefix = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 32, 1, 3), InetAddress())
-if mibBuilder.loadTexts: ipAddressPrefixPrefix.setStatus('current')
-ipAddressPrefixLength = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 32, 1, 4), InetAddressPrefixLength())
-if mibBuilder.loadTexts: ipAddressPrefixLength.setStatus('current')
-ipAddressPrefixOrigin = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 32, 1, 5), IpAddressPrefixOriginTC()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipAddressPrefixOrigin.setStatus('current')
-ipAddressPrefixOnLinkFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 32, 1, 6), TruthValue()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipAddressPrefixOnLinkFlag.setReference('For IPv6 RFC 2461, especially sections 2 and 4.6.2 and RFC 2462')
-if mibBuilder.loadTexts: ipAddressPrefixOnLinkFlag.setStatus('current')
-ipAddressPrefixAutonomousFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 32, 1, 7), TruthValue()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipAddressPrefixAutonomousFlag.setReference('For IPv6 RFC 2461, especially sections 2 and 4.6.2 and RFC 2462')
-if mibBuilder.loadTexts: ipAddressPrefixAutonomousFlag.setStatus('current')
-ipAddressPrefixAdvPreferredLifetime = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 32, 1, 8), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipAddressPrefixAdvPreferredLifetime.setReference('For IPv6 RFC 2461, especially sections 2 and 4.6.2 and RFC 2462')
-if mibBuilder.loadTexts: ipAddressPrefixAdvPreferredLifetime.setStatus('current')
-ipAddressPrefixAdvValidLifetime = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 32, 1, 9), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipAddressPrefixAdvValidLifetime.setReference('For IPv6 RFC 2461, especially sections 2 and 4.6.2 and RFC 2462')
-if mibBuilder.loadTexts: ipAddressPrefixAdvValidLifetime.setStatus('current')
-ipAddressSpinLock = MibScalar((1, 3, 6, 1, 2, 1, 4, 33), TestAndIncr()).setMaxAccess("readwrite")
-if mibBuilder.loadTexts: ipAddressSpinLock.setStatus('current')
-ipAddressTable = MibTable((1, 3, 6, 1, 2, 1, 4, 34), )
-if mibBuilder.loadTexts: ipAddressTable.setStatus('current')
-ipAddressEntry = MibTableRow((1, 3, 6, 1, 2, 1, 4, 34, 1), ).setIndexNames((0, "IP-MIB", "ipAddressAddrType"), (0, "IP-MIB", "ipAddressAddr"))
-if mibBuilder.loadTexts: ipAddressEntry.setStatus('current')
-ipAddressAddrType = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 34, 1, 1), InetAddressType())
-if mibBuilder.loadTexts: ipAddressAddrType.setStatus('current')
-ipAddressAddr = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 34, 1, 2), InetAddress())
-if mibBuilder.loadTexts: ipAddressAddr.setStatus('current')
-ipAddressIfIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 34, 1, 3), InterfaceIndex()).setMaxAccess("readcreate")
-if mibBuilder.loadTexts: ipAddressIfIndex.setStatus('current')
-ipAddressType = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 34, 1, 4), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3)).clone(namedValues=NamedValues(("unicast", 1), ("anycast", 2), ("broadcast", 3))).clone('unicast')).setMaxAccess("readcreate")
-if mibBuilder.loadTexts: ipAddressType.setStatus('current')
-ipAddressPrefix = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 34, 1, 5), RowPointer().clone((0, 0))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipAddressPrefix.setStatus('current')
-ipAddressOrigin = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 34, 1, 6), IpAddressOriginTC()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipAddressOrigin.setStatus('current')
-ipAddressStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 34, 1, 7), IpAddressStatusTC().clone('preferred')).setMaxAccess("readcreate")
-if mibBuilder.loadTexts: ipAddressStatus.setStatus('current')
-ipAddressCreated = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 34, 1, 8), TimeStamp()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipAddressCreated.setStatus('current')
-ipAddressLastChanged = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 34, 1, 9), TimeStamp()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipAddressLastChanged.setStatus('current')
-ipAddressRowStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 34, 1, 10), RowStatus()).setMaxAccess("readcreate")
-if mibBuilder.loadTexts: ipAddressRowStatus.setStatus('current')
-ipAddressStorageType = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 34, 1, 11), StorageType().clone('volatile')).setMaxAccess("readcreate")
-if mibBuilder.loadTexts: ipAddressStorageType.setStatus('current')
-ipNetToPhysicalTable = MibTable((1, 3, 6, 1, 2, 1, 4, 35), )
-if mibBuilder.loadTexts: ipNetToPhysicalTable.setReference('RFC 826 and RFC 2461')
-if mibBuilder.loadTexts: ipNetToPhysicalTable.setStatus('current')
-ipNetToPhysicalEntry = MibTableRow((1, 3, 6, 1, 2, 1, 4, 35, 1), ).setIndexNames((0, "IP-MIB", "ipNetToPhysicalIfIndex"), (0, "IP-MIB", "ipNetToPhysicalNetAddressType"), (0, "IP-MIB", "ipNetToPhysicalNetAddress"))
-if mibBuilder.loadTexts: ipNetToPhysicalEntry.setStatus('current')
-ipNetToPhysicalIfIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 35, 1, 1), InterfaceIndex())
-if mibBuilder.loadTexts: ipNetToPhysicalIfIndex.setStatus('current')
-ipNetToPhysicalNetAddressType = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 35, 1, 2), InetAddressType())
-if mibBuilder.loadTexts: ipNetToPhysicalNetAddressType.setStatus('current')
-ipNetToPhysicalNetAddress = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 35, 1, 3), InetAddress())
-if mibBuilder.loadTexts: ipNetToPhysicalNetAddress.setStatus('current')
-ipNetToPhysicalPhysAddress = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 35, 1, 4), PhysAddress().subtype(subtypeSpec=ValueSizeConstraint(0, 65535))).setMaxAccess("readcreate")
-if mibBuilder.loadTexts: ipNetToPhysicalPhysAddress.setStatus('current')
-ipNetToPhysicalLastUpdated = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 35, 1, 5), TimeStamp()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipNetToPhysicalLastUpdated.setStatus('current')
-ipNetToPhysicalType = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 35, 1, 6), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3, 4, 5)).clone(namedValues=NamedValues(("other", 1), ("invalid", 2), ("dynamic", 3), ("static", 4), ("local", 5))).clone('static')).setMaxAccess("readcreate")
-if mibBuilder.loadTexts: ipNetToPhysicalType.setStatus('current')
-ipNetToPhysicalState = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 35, 1, 7), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3, 4, 5, 6, 7)).clone(namedValues=NamedValues(("reachable", 1), ("stale", 2), ("delay", 3), ("probe", 4), ("invalid", 5), ("unknown", 6), ("incomplete", 7)))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipNetToPhysicalState.setReference('RFC 2461')
-if mibBuilder.loadTexts: ipNetToPhysicalState.setStatus('current')
-ipNetToPhysicalRowStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 35, 1, 8), RowStatus()).setMaxAccess("readcreate")
-if mibBuilder.loadTexts: ipNetToPhysicalRowStatus.setStatus('current')
-ipv6ScopeZoneIndexTable = MibTable((1, 3, 6, 1, 2, 1, 4, 36), )
-if mibBuilder.loadTexts: ipv6ScopeZoneIndexTable.setReference('Section 2.7 of RFC 4291')
-if mibBuilder.loadTexts: ipv6ScopeZoneIndexTable.setStatus('current')
-ipv6ScopeZoneIndexEntry = MibTableRow((1, 3, 6, 1, 2, 1, 4, 36, 1), ).setIndexNames((0, "IP-MIB", "ipv6ScopeZoneIndexIfIndex"))
-if mibBuilder.loadTexts: ipv6ScopeZoneIndexEntry.setStatus('current')
-ipv6ScopeZoneIndexIfIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 36, 1, 1), InterfaceIndex())
-if mibBuilder.loadTexts: ipv6ScopeZoneIndexIfIndex.setStatus('current')
-ipv6ScopeZoneIndexLinkLocal = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 36, 1, 2), InetZoneIndex()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipv6ScopeZoneIndexLinkLocal.setStatus('current')
-ipv6ScopeZoneIndex3 = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 36, 1, 3), InetZoneIndex()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipv6ScopeZoneIndex3.setStatus('current')
-ipv6ScopeZoneIndexAdminLocal = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 36, 1, 4), InetZoneIndex()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipv6ScopeZoneIndexAdminLocal.setStatus('current')
-ipv6ScopeZoneIndexSiteLocal = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 36, 1, 5), InetZoneIndex()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipv6ScopeZoneIndexSiteLocal.setStatus('current')
-ipv6ScopeZoneIndex6 = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 36, 1, 6), InetZoneIndex()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipv6ScopeZoneIndex6.setStatus('current')
-ipv6ScopeZoneIndex7 = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 36, 1, 7), InetZoneIndex()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipv6ScopeZoneIndex7.setStatus('current')
-ipv6ScopeZoneIndexOrganizationLocal = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 36, 1, 8), InetZoneIndex()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipv6ScopeZoneIndexOrganizationLocal.setStatus('current')
-ipv6ScopeZoneIndex9 = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 36, 1, 9), InetZoneIndex()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipv6ScopeZoneIndex9.setStatus('current')
-ipv6ScopeZoneIndexA = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 36, 1, 10), InetZoneIndex()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipv6ScopeZoneIndexA.setStatus('current')
-ipv6ScopeZoneIndexB = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 36, 1, 11), InetZoneIndex()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipv6ScopeZoneIndexB.setStatus('current')
-ipv6ScopeZoneIndexC = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 36, 1, 12), InetZoneIndex()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipv6ScopeZoneIndexC.setStatus('current')
-ipv6ScopeZoneIndexD = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 36, 1, 13), InetZoneIndex()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipv6ScopeZoneIndexD.setStatus('current')
-ipDefaultRouterTable = MibTable((1, 3, 6, 1, 2, 1, 4, 37), )
-if mibBuilder.loadTexts: ipDefaultRouterTable.setStatus('current')
-ipDefaultRouterEntry = MibTableRow((1, 3, 6, 1, 2, 1, 4, 37, 1), ).setIndexNames((0, "IP-MIB", "ipDefaultRouterAddressType"), (0, "IP-MIB", "ipDefaultRouterAddress"), (0, "IP-MIB", "ipDefaultRouterIfIndex"))
-if mibBuilder.loadTexts: ipDefaultRouterEntry.setStatus('current')
-ipDefaultRouterAddressType = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 37, 1, 1), InetAddressType())
-if mibBuilder.loadTexts: ipDefaultRouterAddressType.setStatus('current')
-ipDefaultRouterAddress = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 37, 1, 2), InetAddress())
-if mibBuilder.loadTexts: ipDefaultRouterAddress.setStatus('current')
-ipDefaultRouterIfIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 37, 1, 3), InterfaceIndex())
-if mibBuilder.loadTexts: ipDefaultRouterIfIndex.setStatus('current')
-ipDefaultRouterLifetime = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 37, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setUnits('seconds').setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipDefaultRouterLifetime.setReference('For IPv6 RFC 2462 sections 4.2 and 6.3.4')
-if mibBuilder.loadTexts: ipDefaultRouterLifetime.setStatus('current')
-ipDefaultRouterPreference = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 37, 1, 5), Integer32().subtype(subtypeSpec=SingleValueConstraint(-2, -1, 0, 1)).clone(namedValues=NamedValues(("reserved", -2), ("low", -1), ("medium", 0), ("high", 1)))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipDefaultRouterPreference.setReference('RFC 4291, section 2.1')
-if mibBuilder.loadTexts: ipDefaultRouterPreference.setStatus('current')
-ipv6RouterAdvertSpinLock = MibScalar((1, 3, 6, 1, 2, 1, 4, 38), TestAndIncr()).setMaxAccess("readwrite")
-if mibBuilder.loadTexts: ipv6RouterAdvertSpinLock.setStatus('current')
-ipv6RouterAdvertTable = MibTable((1, 3, 6, 1, 2, 1, 4, 39), )
-if mibBuilder.loadTexts: ipv6RouterAdvertTable.setStatus('current')
-ipv6RouterAdvertEntry = MibTableRow((1, 3, 6, 1, 2, 1, 4, 39, 1), ).setIndexNames((0, "IP-MIB", "ipv6RouterAdvertIfIndex"))
-if mibBuilder.loadTexts: ipv6RouterAdvertEntry.setStatus('current')
-ipv6RouterAdvertIfIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 39, 1, 1), InterfaceIndex())
-if mibBuilder.loadTexts: ipv6RouterAdvertIfIndex.setStatus('current')
-ipv6RouterAdvertSendAdverts = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 39, 1, 2), TruthValue().clone('false')).setMaxAccess("readcreate")
-if mibBuilder.loadTexts: ipv6RouterAdvertSendAdverts.setReference('RFC 2461 Section 6.2.1')
-if mibBuilder.loadTexts: ipv6RouterAdvertSendAdverts.setStatus('current')
-ipv6RouterAdvertMaxInterval = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 39, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(4, 1800)).clone(600)).setUnits('seconds').setMaxAccess("readcreate")
-if mibBuilder.loadTexts: ipv6RouterAdvertMaxInterval.setReference('RFC 2461 Section 6.2.1')
-if mibBuilder.loadTexts: ipv6RouterAdvertMaxInterval.setStatus('current')
-ipv6RouterAdvertMinInterval = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 39, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(3, 1350))).setUnits('seconds').setMaxAccess("readcreate")
-if mibBuilder.loadTexts: ipv6RouterAdvertMinInterval.setReference('RFC 2461 Section 6.2.1')
-if mibBuilder.loadTexts: ipv6RouterAdvertMinInterval.setStatus('current')
-ipv6RouterAdvertManagedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 39, 1, 5), TruthValue().clone('false')).setMaxAccess("readcreate")
-if mibBuilder.loadTexts: ipv6RouterAdvertManagedFlag.setReference('RFC 2461 Section 6.2.1')
-if mibBuilder.loadTexts: ipv6RouterAdvertManagedFlag.setStatus('current')
-ipv6RouterAdvertOtherConfigFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 39, 1, 6), TruthValue().clone('false')).setMaxAccess("readcreate")
-if mibBuilder.loadTexts: ipv6RouterAdvertOtherConfigFlag.setReference('RFC 2461 Section 6.2.1')
-if mibBuilder.loadTexts: ipv6RouterAdvertOtherConfigFlag.setStatus('current')
-ipv6RouterAdvertLinkMTU = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 39, 1, 7), Unsigned32()).setMaxAccess("readcreate")
-if mibBuilder.loadTexts: ipv6RouterAdvertLinkMTU.setReference('RFC 2461 Section 6.2.1')
-if mibBuilder.loadTexts: ipv6RouterAdvertLinkMTU.setStatus('current')
-ipv6RouterAdvertReachableTime = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 39, 1, 8), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600000))).setUnits('milliseconds').setMaxAccess("readcreate")
-if mibBuilder.loadTexts: ipv6RouterAdvertReachableTime.setReference('RFC 2461 Section 6.2.1')
-if mibBuilder.loadTexts: ipv6RouterAdvertReachableTime.setStatus('current')
-ipv6RouterAdvertRetransmitTime = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 39, 1, 9), Unsigned32()).setUnits('milliseconds').setMaxAccess("readcreate")
-if mibBuilder.loadTexts: ipv6RouterAdvertRetransmitTime.setReference('RFC 2461 Section 6.2.1')
-if mibBuilder.loadTexts: ipv6RouterAdvertRetransmitTime.setStatus('current')
-ipv6RouterAdvertCurHopLimit = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 39, 1, 10), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readcreate")
-if mibBuilder.loadTexts: ipv6RouterAdvertCurHopLimit.setReference('RFC 2461 Section 6.2.1')
-if mibBuilder.loadTexts: ipv6RouterAdvertCurHopLimit.setStatus('current')
-ipv6RouterAdvertDefaultLifetime = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 39, 1, 11), Unsigned32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 0), ValueRangeConstraint(4, 9000), ))).setUnits('seconds').setMaxAccess("readcreate")
-if mibBuilder.loadTexts: ipv6RouterAdvertDefaultLifetime.setReference('RFC 2461 Section 6.2.1')
-if mibBuilder.loadTexts: ipv6RouterAdvertDefaultLifetime.setStatus('current')
-ipv6RouterAdvertRowStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 39, 1, 12), RowStatus()).setMaxAccess("readcreate")
-if mibBuilder.loadTexts: ipv6RouterAdvertRowStatus.setStatus('current')
-icmp = MibIdentifier((1, 3, 6, 1, 2, 1, 5))
-icmpStatsTable = MibTable((1, 3, 6, 1, 2, 1, 5, 29), )
-if mibBuilder.loadTexts: icmpStatsTable.setStatus('current')
-icmpStatsEntry = MibTableRow((1, 3, 6, 1, 2, 1, 5, 29, 1), ).setIndexNames((0, "IP-MIB", "icmpStatsIPVersion"))
-if mibBuilder.loadTexts: icmpStatsEntry.setStatus('current')
-icmpStatsIPVersion = MibTableColumn((1, 3, 6, 1, 2, 1, 5, 29, 1, 1), InetVersion())
-if mibBuilder.loadTexts: icmpStatsIPVersion.setStatus('current')
-icmpStatsInMsgs = MibTableColumn((1, 3, 6, 1, 2, 1, 5, 29, 1, 2), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpStatsInMsgs.setStatus('current')
-icmpStatsInErrors = MibTableColumn((1, 3, 6, 1, 2, 1, 5, 29, 1, 3), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpStatsInErrors.setStatus('current')
-icmpStatsOutMsgs = MibTableColumn((1, 3, 6, 1, 2, 1, 5, 29, 1, 4), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpStatsOutMsgs.setStatus('current')
-icmpStatsOutErrors = MibTableColumn((1, 3, 6, 1, 2, 1, 5, 29, 1, 5), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpStatsOutErrors.setStatus('current')
-icmpMsgStatsTable = MibTable((1, 3, 6, 1, 2, 1, 5, 30), )
-if mibBuilder.loadTexts: icmpMsgStatsTable.setStatus('current')
-icmpMsgStatsEntry = MibTableRow((1, 3, 6, 1, 2, 1, 5, 30, 1), ).setIndexNames((0, "IP-MIB", "icmpMsgStatsIPVersion"), (0, "IP-MIB", "icmpMsgStatsType"))
-if mibBuilder.loadTexts: icmpMsgStatsEntry.setStatus('current')
-icmpMsgStatsIPVersion = MibTableColumn((1, 3, 6, 1, 2, 1, 5, 30, 1, 1), InetVersion())
-if mibBuilder.loadTexts: icmpMsgStatsIPVersion.setStatus('current')
-icmpMsgStatsType = MibTableColumn((1, 3, 6, 1, 2, 1, 5, 30, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)))
-if mibBuilder.loadTexts: icmpMsgStatsType.setReference('http://www.iana.org/assignments/icmp-parameters and http://www.iana.org/assignments/icmpv6-parameters')
-if mibBuilder.loadTexts: icmpMsgStatsType.setStatus('current')
-icmpMsgStatsInPkts = MibTableColumn((1, 3, 6, 1, 2, 1, 5, 30, 1, 3), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpMsgStatsInPkts.setStatus('current')
-icmpMsgStatsOutPkts = MibTableColumn((1, 3, 6, 1, 2, 1, 5, 30, 1, 4), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpMsgStatsOutPkts.setStatus('current')
-ipMIBConformance = MibIdentifier((1, 3, 6, 1, 2, 1, 48, 2))
-ipMIBCompliances = MibIdentifier((1, 3, 6, 1, 2, 1, 48, 2, 1))
-ipMIBGroups = MibIdentifier((1, 3, 6, 1, 2, 1, 48, 2, 2))
-ipMIBCompliance2 = ModuleCompliance((1, 3, 6, 1, 2, 1, 48, 2, 1, 2)).setObjects(("IP-MIB", "ipSystemStatsGroup"), ("IP-MIB", "ipAddressGroup"), ("IP-MIB", "ipNetToPhysicalGroup"), ("IP-MIB", "ipDefaultRouterGroup"), ("IP-MIB", "icmpStatsGroup"), ("IP-MIB", "ipSystemStatsHCOctetGroup"), ("IP-MIB", "ipSystemStatsHCPacketGroup"), ("IP-MIB", "ipIfStatsGroup"), ("IP-MIB", "ipIfStatsHCOctetGroup"), ("IP-MIB", "ipIfStatsHCPacketGroup"), ("IP-MIB", "ipv4GeneralGroup"), ("IP-MIB", "ipv4IfGroup"), ("IP-MIB", "ipv4SystemStatsGroup"), ("IP-MIB", "ipv4SystemStatsHCPacketGroup"), ("IP-MIB", "ipv4IfStatsGroup"), ("IP-MIB", "ipv4IfStatsHCPacketGroup"), ("IP-MIB", "ipv6GeneralGroup2"), ("IP-MIB", "ipv6IfGroup"), ("IP-MIB", "ipAddressPrefixGroup"), ("IP-MIB", "ipv6ScopeGroup"), ("IP-MIB", "ipv6RouterAdvertGroup"), ("IP-MIB", "ipLastChangeGroup"))
-ipv4GeneralGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 48, 2, 2, 3)).setObjects(("IP-MIB", "ipForwarding"), ("IP-MIB", "ipDefaultTTL"), ("IP-MIB", "ipReasmTimeout"))
-ipv4IfGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 48, 2, 2, 4)).setObjects(("IP-MIB", "ipv4InterfaceReasmMaxSize"), ("IP-MIB", "ipv4InterfaceEnableStatus"), ("IP-MIB", "ipv4InterfaceRetransmitTime"))
-ipv6GeneralGroup2 = ObjectGroup((1, 3, 6, 1, 2, 1, 48, 2, 2, 5)).setObjects(("IP-MIB", "ipv6IpForwarding"), ("IP-MIB", "ipv6IpDefaultHopLimit"))
-ipv6IfGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 48, 2, 2, 6)).setObjects(("IP-MIB", "ipv6InterfaceReasmMaxSize"), ("IP-MIB", "ipv6InterfaceIdentifier"), ("IP-MIB", "ipv6InterfaceEnableStatus"), ("IP-MIB", "ipv6InterfaceReachableTime"), ("IP-MIB", "ipv6InterfaceRetransmitTime"), ("IP-MIB", "ipv6InterfaceForwarding"))
-ipLastChangeGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 48, 2, 2, 7)).setObjects(("IP-MIB", "ipv4InterfaceTableLastChange"), ("IP-MIB", "ipv6InterfaceTableLastChange"), ("IP-MIB", "ipIfStatsTableLastChange"))
-ipSystemStatsGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 48, 2, 2, 8)).setObjects(("IP-MIB", "ipSystemStatsInReceives"), ("IP-MIB", "ipSystemStatsInOctets"), ("IP-MIB", "ipSystemStatsInHdrErrors"), ("IP-MIB", "ipSystemStatsInNoRoutes"), ("IP-MIB", "ipSystemStatsInAddrErrors"), ("IP-MIB", "ipSystemStatsInUnknownProtos"), ("IP-MIB", "ipSystemStatsInTruncatedPkts"), ("IP-MIB", "ipSystemStatsInForwDatagrams"), ("IP-MIB", "ipSystemStatsReasmReqds"), ("IP-MIB", "ipSystemStatsReasmOKs"), ("IP-MIB", "ipSystemStatsReasmFails"), ("IP-MIB", "ipSystemStatsInDiscards"), ("IP-MIB", "ipSystemStatsInDelivers"), ("IP-MIB", "ipSystemStatsOutRequests"), ("IP-MIB", "ipSystemStatsOutNoRoutes"), ("IP-MIB", "ipSystemStatsOutForwDatagrams"), ("IP-MIB", "ipSystemStatsOutDiscards"), ("IP-MIB", "ipSystemStatsOutFragReqds"), ("IP-MIB", "ipSystemStatsOutFragOKs"), ("IP-MIB", "ipSystemStatsOutFragFails"), ("IP-MIB", "ipSystemStatsOutFragCreates"), ("IP-MIB", "ipSystemStatsOutTransmits"), ("IP-MIB", "ipSystemStatsOutOctets"), ("IP-MIB", "ipSystemStatsInMcastPkts"), ("IP-MIB", "ipSystemStatsInMcastOctets"), ("IP-MIB", "ipSystemStatsOutMcastPkts"), ("IP-MIB", "ipSystemStatsOutMcastOctets"), ("IP-MIB", "ipSystemStatsDiscontinuityTime"), ("IP-MIB", "ipSystemStatsRefreshRate"))
-ipv4SystemStatsGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 48, 2, 2, 9)).setObjects(("IP-MIB", "ipSystemStatsInBcastPkts"), ("IP-MIB", "ipSystemStatsOutBcastPkts"))
-ipSystemStatsHCOctetGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 48, 2, 2, 10)).setObjects(("IP-MIB", "ipSystemStatsHCInOctets"), ("IP-MIB", "ipSystemStatsHCOutOctets"), ("IP-MIB", "ipSystemStatsHCInMcastOctets"), ("IP-MIB", "ipSystemStatsHCOutMcastOctets"))
-ipSystemStatsHCPacketGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 48, 2, 2, 11)).setObjects(("IP-MIB", "ipSystemStatsHCInReceives"), ("IP-MIB", "ipSystemStatsHCInForwDatagrams"), ("IP-MIB", "ipSystemStatsHCInDelivers"), ("IP-MIB", "ipSystemStatsHCOutRequests"), ("IP-MIB", "ipSystemStatsHCOutForwDatagrams"), ("IP-MIB", "ipSystemStatsHCOutTransmits"), ("IP-MIB", "ipSystemStatsHCInMcastPkts"), ("IP-MIB", "ipSystemStatsHCOutMcastPkts"))
-ipv4SystemStatsHCPacketGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 48, 2, 2, 12)).setObjects(("IP-MIB", "ipSystemStatsHCInBcastPkts"), ("IP-MIB", "ipSystemStatsHCOutBcastPkts"))
-ipIfStatsGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 48, 2, 2, 13)).setObjects(("IP-MIB", "ipIfStatsInReceives"), ("IP-MIB", "ipIfStatsInOctets"), ("IP-MIB", "ipIfStatsInHdrErrors"), ("IP-MIB", "ipIfStatsInNoRoutes"), ("IP-MIB", "ipIfStatsInAddrErrors"), ("IP-MIB", "ipIfStatsInUnknownProtos"), ("IP-MIB", "ipIfStatsInTruncatedPkts"), ("IP-MIB", "ipIfStatsInForwDatagrams"), ("IP-MIB", "ipIfStatsReasmReqds"), ("IP-MIB", "ipIfStatsReasmOKs"), ("IP-MIB", "ipIfStatsReasmFails"), ("IP-MIB", "ipIfStatsInDiscards"), ("IP-MIB", "ipIfStatsInDelivers"), ("IP-MIB", "ipIfStatsOutRequests"), ("IP-MIB", "ipIfStatsOutForwDatagrams"), ("IP-MIB", "ipIfStatsOutDiscards"), ("IP-MIB", "ipIfStatsOutFragReqds"), ("IP-MIB", "ipIfStatsOutFragOKs"), ("IP-MIB", "ipIfStatsOutFragFails"), ("IP-MIB", "ipIfStatsOutFragCreates"), ("IP-MIB", "ipIfStatsOutTransmits"), ("IP-MIB", "ipIfStatsOutOctets"), ("IP-MIB", "ipIfStatsInMcastPkts"), ("IP-MIB", "ipIfStatsInMcastOctets"), ("IP-MIB", "ipIfStatsOutMcastPkts"), ("IP-MIB", "ipIfStatsOutMcastOctets"), ("IP-MIB", "ipIfStatsDiscontinuityTime"), ("IP-MIB", "ipIfStatsRefreshRate"))
-ipv4IfStatsGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 48, 2, 2, 14)).setObjects(("IP-MIB", "ipIfStatsInBcastPkts"), ("IP-MIB", "ipIfStatsOutBcastPkts"))
-ipIfStatsHCOctetGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 48, 2, 2, 15)).setObjects(("IP-MIB", "ipIfStatsHCInOctets"), ("IP-MIB", "ipIfStatsHCOutOctets"), ("IP-MIB", "ipIfStatsHCInMcastOctets"), ("IP-MIB", "ipIfStatsHCOutMcastOctets"))
-ipIfStatsHCPacketGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 48, 2, 2, 16)).setObjects(("IP-MIB", "ipIfStatsHCInReceives"), ("IP-MIB", "ipIfStatsHCInForwDatagrams"), ("IP-MIB", "ipIfStatsHCInDelivers"), ("IP-MIB", "ipIfStatsHCOutRequests"), ("IP-MIB", "ipIfStatsHCOutForwDatagrams"), ("IP-MIB", "ipIfStatsHCOutTransmits"), ("IP-MIB", "ipIfStatsHCInMcastPkts"), ("IP-MIB", "ipIfStatsHCOutMcastPkts"))
-ipv4IfStatsHCPacketGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 48, 2, 2, 17)).setObjects(("IP-MIB", "ipIfStatsHCInBcastPkts"), ("IP-MIB", "ipIfStatsHCOutBcastPkts"))
-ipAddressPrefixGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 48, 2, 2, 18)).setObjects(("IP-MIB", "ipAddressPrefixOrigin"), ("IP-MIB", "ipAddressPrefixOnLinkFlag"), ("IP-MIB", "ipAddressPrefixAutonomousFlag"), ("IP-MIB", "ipAddressPrefixAdvPreferredLifetime"), ("IP-MIB", "ipAddressPrefixAdvValidLifetime"))
-ipAddressGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 48, 2, 2, 19)).setObjects(("IP-MIB", "ipAddressSpinLock"), ("IP-MIB", "ipAddressIfIndex"), ("IP-MIB", "ipAddressType"), ("IP-MIB", "ipAddressPrefix"), ("IP-MIB", "ipAddressOrigin"), ("IP-MIB", "ipAddressStatus"), ("IP-MIB", "ipAddressCreated"), ("IP-MIB", "ipAddressLastChanged"), ("IP-MIB", "ipAddressRowStatus"), ("IP-MIB", "ipAddressStorageType"))
-ipNetToPhysicalGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 48, 2, 2, 20)).setObjects(("IP-MIB", "ipNetToPhysicalPhysAddress"), ("IP-MIB", "ipNetToPhysicalLastUpdated"), ("IP-MIB", "ipNetToPhysicalType"), ("IP-MIB", "ipNetToPhysicalState"), ("IP-MIB", "ipNetToPhysicalRowStatus"))
-ipv6ScopeGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 48, 2, 2, 21)).setObjects(("IP-MIB", "ipv6ScopeZoneIndexLinkLocal"), ("IP-MIB", "ipv6ScopeZoneIndex3"), ("IP-MIB", "ipv6ScopeZoneIndexAdminLocal"), ("IP-MIB", "ipv6ScopeZoneIndexSiteLocal"), ("IP-MIB", "ipv6ScopeZoneIndex6"), ("IP-MIB", "ipv6ScopeZoneIndex7"), ("IP-MIB", "ipv6ScopeZoneIndexOrganizationLocal"), ("IP-MIB", "ipv6ScopeZoneIndex9"), ("IP-MIB", "ipv6ScopeZoneIndexA"), ("IP-MIB", "ipv6ScopeZoneIndexB"), ("IP-MIB", "ipv6ScopeZoneIndexC"), ("IP-MIB", "ipv6ScopeZoneIndexD"))
-ipDefaultRouterGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 48, 2, 2, 22)).setObjects(("IP-MIB", "ipDefaultRouterLifetime"), ("IP-MIB", "ipDefaultRouterPreference"))
-ipv6RouterAdvertGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 48, 2, 2, 23)).setObjects(("IP-MIB", "ipv6RouterAdvertSpinLock"), ("IP-MIB", "ipv6RouterAdvertSendAdverts"), ("IP-MIB", "ipv6RouterAdvertMaxInterval"), ("IP-MIB", "ipv6RouterAdvertMinInterval"), ("IP-MIB", "ipv6RouterAdvertManagedFlag"), ("IP-MIB", "ipv6RouterAdvertOtherConfigFlag"), ("IP-MIB", "ipv6RouterAdvertLinkMTU"), ("IP-MIB", "ipv6RouterAdvertReachableTime"), ("IP-MIB", "ipv6RouterAdvertRetransmitTime"), ("IP-MIB", "ipv6RouterAdvertCurHopLimit"), ("IP-MIB", "ipv6RouterAdvertDefaultLifetime"), ("IP-MIB", "ipv6RouterAdvertRowStatus"))
-icmpStatsGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 48, 2, 2, 24)).setObjects(("IP-MIB", "icmpStatsInMsgs"), ("IP-MIB", "icmpStatsInErrors"), ("IP-MIB", "icmpStatsOutMsgs"), ("IP-MIB", "icmpStatsOutErrors"), ("IP-MIB", "icmpMsgStatsInPkts"), ("IP-MIB", "icmpMsgStatsOutPkts"))
-ipInReceives = MibScalar((1, 3, 6, 1, 2, 1, 4, 3), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipInReceives.setStatus('deprecated')
-ipInHdrErrors = MibScalar((1, 3, 6, 1, 2, 1, 4, 4), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipInHdrErrors.setStatus('deprecated')
-ipInAddrErrors = MibScalar((1, 3, 6, 1, 2, 1, 4, 5), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipInAddrErrors.setStatus('deprecated')
-ipForwDatagrams = MibScalar((1, 3, 6, 1, 2, 1, 4, 6), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipForwDatagrams.setStatus('deprecated')
-ipInUnknownProtos = MibScalar((1, 3, 6, 1, 2, 1, 4, 7), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipInUnknownProtos.setStatus('deprecated')
-ipInDiscards = MibScalar((1, 3, 6, 1, 2, 1, 4, 8), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipInDiscards.setStatus('deprecated')
-ipInDelivers = MibScalar((1, 3, 6, 1, 2, 1, 4, 9), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipInDelivers.setStatus('deprecated')
-ipOutRequests = MibScalar((1, 3, 6, 1, 2, 1, 4, 10), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipOutRequests.setStatus('deprecated')
-ipOutDiscards = MibScalar((1, 3, 6, 1, 2, 1, 4, 11), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipOutDiscards.setStatus('deprecated')
-ipOutNoRoutes = MibScalar((1, 3, 6, 1, 2, 1, 4, 12), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipOutNoRoutes.setStatus('deprecated')
-ipReasmReqds = MibScalar((1, 3, 6, 1, 2, 1, 4, 14), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipReasmReqds.setStatus('deprecated')
-ipReasmOKs = MibScalar((1, 3, 6, 1, 2, 1, 4, 15), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipReasmOKs.setStatus('deprecated')
-ipReasmFails = MibScalar((1, 3, 6, 1, 2, 1, 4, 16), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipReasmFails.setStatus('deprecated')
-ipFragOKs = MibScalar((1, 3, 6, 1, 2, 1, 4, 17), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipFragOKs.setStatus('deprecated')
-ipFragFails = MibScalar((1, 3, 6, 1, 2, 1, 4, 18), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipFragFails.setStatus('deprecated')
-ipFragCreates = MibScalar((1, 3, 6, 1, 2, 1, 4, 19), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipFragCreates.setStatus('deprecated')
-ipRoutingDiscards = MibScalar((1, 3, 6, 1, 2, 1, 4, 23), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipRoutingDiscards.setStatus('deprecated')
-ipAddrTable = MibTable((1, 3, 6, 1, 2, 1, 4, 20), )
-if mibBuilder.loadTexts: ipAddrTable.setStatus('deprecated')
-ipAddrEntry = MibTableRow((1, 3, 6, 1, 2, 1, 4, 20, 1), ).setIndexNames((0, "IP-MIB", "ipAdEntAddr"))
-if mibBuilder.loadTexts: ipAddrEntry.setStatus('deprecated')
-ipAdEntAddr = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 20, 1, 1), IpAddress()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipAdEntAddr.setStatus('deprecated')
-ipAdEntIfIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 20, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipAdEntIfIndex.setStatus('deprecated')
-ipAdEntNetMask = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 20, 1, 3), IpAddress()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipAdEntNetMask.setStatus('deprecated')
-ipAdEntBcastAddr = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 20, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipAdEntBcastAddr.setStatus('deprecated')
-ipAdEntReasmMaxSize = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 20, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
-if mibBuilder.loadTexts: ipAdEntReasmMaxSize.setStatus('deprecated')
-ipNetToMediaTable = MibTable((1, 3, 6, 1, 2, 1, 4, 22), )
-if mibBuilder.loadTexts: ipNetToMediaTable.setStatus('deprecated')
-ipNetToMediaEntry = MibTableRow((1, 3, 6, 1, 2, 1, 4, 22, 1), ).setIndexNames((0, "IP-MIB", "ipNetToMediaIfIndex"), (0, "IP-MIB", "ipNetToMediaNetAddress"))
-if mibBuilder.loadTexts: ipNetToMediaEntry.setStatus('deprecated')
-ipNetToMediaIfIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 22, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647))).setMaxAccess("readcreate")
-if mibBuilder.loadTexts: ipNetToMediaIfIndex.setStatus('deprecated')
-ipNetToMediaPhysAddress = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 22, 1, 2), PhysAddress().subtype(subtypeSpec=ValueSizeConstraint(0, 65535))).setMaxAccess("readcreate")
-if mibBuilder.loadTexts: ipNetToMediaPhysAddress.setStatus('deprecated')
-ipNetToMediaNetAddress = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 22, 1, 3), IpAddress()).setMaxAccess("readcreate")
-if mibBuilder.loadTexts: ipNetToMediaNetAddress.setStatus('deprecated')
-ipNetToMediaType = MibTableColumn((1, 3, 6, 1, 2, 1, 4, 22, 1, 4), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3, 4)).clone(namedValues=NamedValues(("other", 1), ("invalid", 2), ("dynamic", 3), ("static", 4)))).setMaxAccess("readcreate")
-if mibBuilder.loadTexts: ipNetToMediaType.setStatus('deprecated')
-icmpInMsgs = MibScalar((1, 3, 6, 1, 2, 1, 5, 1), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpInMsgs.setStatus('deprecated')
-icmpInErrors = MibScalar((1, 3, 6, 1, 2, 1, 5, 2), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpInErrors.setStatus('deprecated')
-icmpInDestUnreachs = MibScalar((1, 3, 6, 1, 2, 1, 5, 3), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpInDestUnreachs.setStatus('deprecated')
-icmpInTimeExcds = MibScalar((1, 3, 6, 1, 2, 1, 5, 4), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpInTimeExcds.setStatus('deprecated')
-icmpInParmProbs = MibScalar((1, 3, 6, 1, 2, 1, 5, 5), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpInParmProbs.setStatus('deprecated')
-icmpInSrcQuenchs = MibScalar((1, 3, 6, 1, 2, 1, 5, 6), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpInSrcQuenchs.setStatus('deprecated')
-icmpInRedirects = MibScalar((1, 3, 6, 1, 2, 1, 5, 7), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpInRedirects.setStatus('deprecated')
-icmpInEchos = MibScalar((1, 3, 6, 1, 2, 1, 5, 8), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpInEchos.setStatus('deprecated')
-icmpInEchoReps = MibScalar((1, 3, 6, 1, 2, 1, 5, 9), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpInEchoReps.setStatus('deprecated')
-icmpInTimestamps = MibScalar((1, 3, 6, 1, 2, 1, 5, 10), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpInTimestamps.setStatus('deprecated')
-icmpInTimestampReps = MibScalar((1, 3, 6, 1, 2, 1, 5, 11), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpInTimestampReps.setStatus('deprecated')
-icmpInAddrMasks = MibScalar((1, 3, 6, 1, 2, 1, 5, 12), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpInAddrMasks.setStatus('deprecated')
-icmpInAddrMaskReps = MibScalar((1, 3, 6, 1, 2, 1, 5, 13), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpInAddrMaskReps.setStatus('deprecated')
-icmpOutMsgs = MibScalar((1, 3, 6, 1, 2, 1, 5, 14), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpOutMsgs.setStatus('deprecated')
-icmpOutErrors = MibScalar((1, 3, 6, 1, 2, 1, 5, 15), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpOutErrors.setStatus('deprecated')
-icmpOutDestUnreachs = MibScalar((1, 3, 6, 1, 2, 1, 5, 16), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpOutDestUnreachs.setStatus('deprecated')
-icmpOutTimeExcds = MibScalar((1, 3, 6, 1, 2, 1, 5, 17), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpOutTimeExcds.setStatus('deprecated')
-icmpOutParmProbs = MibScalar((1, 3, 6, 1, 2, 1, 5, 18), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpOutParmProbs.setStatus('deprecated')
-icmpOutSrcQuenchs = MibScalar((1, 3, 6, 1, 2, 1, 5, 19), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpOutSrcQuenchs.setStatus('deprecated')
-icmpOutRedirects = MibScalar((1, 3, 6, 1, 2, 1, 5, 20), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpOutRedirects.setStatus('deprecated')
-icmpOutEchos = MibScalar((1, 3, 6, 1, 2, 1, 5, 21), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpOutEchos.setStatus('deprecated')
-icmpOutEchoReps = MibScalar((1, 3, 6, 1, 2, 1, 5, 22), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpOutEchoReps.setStatus('deprecated')
-icmpOutTimestamps = MibScalar((1, 3, 6, 1, 2, 1, 5, 23), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpOutTimestamps.setStatus('deprecated')
-icmpOutTimestampReps = MibScalar((1, 3, 6, 1, 2, 1, 5, 24), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpOutTimestampReps.setStatus('deprecated')
-icmpOutAddrMasks = MibScalar((1, 3, 6, 1, 2, 1, 5, 25), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpOutAddrMasks.setStatus('deprecated')
-icmpOutAddrMaskReps = MibScalar((1, 3, 6, 1, 2, 1, 5, 26), Counter32()).setMaxAccess("readonly")
-if mibBuilder.loadTexts: icmpOutAddrMaskReps.setStatus('deprecated')
-ipMIBCompliance = ModuleCompliance((1, 3, 6, 1, 2, 1, 48, 2, 1, 1)).setObjects(("IP-MIB", "ipGroup"), ("IP-MIB", "icmpGroup"))
-ipGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 48, 2, 2, 1)).setObjects(("IP-MIB", "ipForwarding"), ("IP-MIB", "ipDefaultTTL"), ("IP-MIB", "ipInReceives"), ("IP-MIB", "ipInHdrErrors"), ("IP-MIB", "ipInAddrErrors"), ("IP-MIB", "ipForwDatagrams"), ("IP-MIB", "ipInUnknownProtos"), ("IP-MIB", "ipInDiscards"), ("IP-MIB", "ipInDelivers"), ("IP-MIB", "ipOutRequests"), ("IP-MIB", "ipOutDiscards"), ("IP-MIB", "ipOutNoRoutes"), ("IP-MIB", "ipReasmTimeout"), ("IP-MIB", "ipReasmReqds"), ("IP-MIB", "ipReasmOKs"), ("IP-MIB", "ipReasmFails"), ("IP-MIB", "ipFragOKs"), ("IP-MIB", "ipFragFails"), ("IP-MIB", "ipFragCreates"), ("IP-MIB", "ipAdEntAddr"), ("IP-MIB", "ipAdEntIfIndex"), ("IP-MIB", "ipAdEntNetMask"), ("IP-MIB", "ipAdEntBcastAddr"), ("IP-MIB", "ipAdEntReasmMaxSize"), ("IP-MIB", "ipNetToMediaIfIndex"), ("IP-MIB", "ipNetToMediaPhysAddress"), ("IP-MIB", "ipNetToMediaNetAddress"), ("IP-MIB", "ipNetToMediaType"), ("IP-MIB", "ipRoutingDiscards"))
-icmpGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 48, 2, 2, 2)).setObjects(("IP-MIB", "icmpInMsgs"), ("IP-MIB", "icmpInErrors"), ("IP-MIB", "icmpInDestUnreachs"), ("IP-MIB", "icmpInTimeExcds"), ("IP-MIB", "icmpInParmProbs"), ("IP-MIB", "icmpInSrcQuenchs"), ("IP-MIB", "icmpInRedirects"), ("IP-MIB", "icmpInEchos"), ("IP-MIB", "icmpInEchoReps"), ("IP-MIB", "icmpInTimestamps"), ("IP-MIB", "icmpInTimestampReps"), ("IP-MIB", "icmpInAddrMasks"), ("IP-MIB", "icmpInAddrMaskReps"), ("IP-MIB", "icmpOutMsgs"), ("IP-MIB", "icmpOutErrors"), ("IP-MIB", "icmpOutDestUnreachs"), ("IP-MIB", "icmpOutTimeExcds"), ("IP-MIB", "icmpOutParmProbs"), ("IP-MIB", "icmpOutSrcQuenchs"), ("IP-MIB", "icmpOutRedirects"), ("IP-MIB", "icmpOutEchos"), ("IP-MIB", "icmpOutEchoReps"), ("IP-MIB", "icmpOutTimestamps"), ("IP-MIB", "icmpOutTimestampReps"), ("IP-MIB", "icmpOutAddrMasks"), ("IP-MIB", "icmpOutAddrMaskReps"))
-mibBuilder.exportSymbols("IP-MIB", ipv6InterfaceReasmMaxSize=ipv6InterfaceReasmMaxSize, ipv4InterfaceEntry=ipv4InterfaceEntry, icmpOutAddrMasks=icmpOutAddrMasks, ipLastChangeGroup=ipLastChangeGroup, ipIfStatsIPVersion=ipIfStatsIPVersion, ipAdEntReasmMaxSize=ipAdEntReasmMaxSize, ipv4InterfaceRetransmitTime=ipv4InterfaceRetransmitTime, ipSystemStatsHCPacketGroup=ipSystemStatsHCPacketGroup, ipAddressGroup=ipAddressGroup, ipNetToPhysicalState=ipNetToPhysicalState, ipv6RouterAdvertDefaultLifetime=ipv6RouterAdvertDefaultLifetime, ipIfStatsIfIndex=ipIfStatsIfIndex, ipSystemStatsReasmOKs=ipSystemStatsReasmOKs, ipAddressTable=ipAddressTable, ipIfStatsHCOctetGroup=ipIfStatsHCOctetGroup, ipv6RouterAdvertGroup=ipv6RouterAdvertGroup, ipv6InterfaceForwarding=ipv6InterfaceForwarding, ipIfStatsHCOutMcastPkts=ipIfStatsHCOutMcastPkts, ipForwarding=ipForwarding, ipIfStatsOutOctets=ipIfStatsOutOctets, ipv6InterfaceEntry=ipv6InterfaceEntry, ipv6ScopeZoneIndexSiteLocal=ipv6ScopeZoneIndexSiteLocal, ipSystemStatsOutMcastPkts=ipSystemStatsOutMcastPkts, ipv6RouterAdvertSpinLock=ipv6RouterAdvertSpinLock, ipSystemStatsInDiscards=ipSystemStatsInDiscards, ipv6RouterAdvertMaxInterval=ipv6RouterAdvertMaxInterval, ipTrafficStats=ipTrafficStats, ipAddressPrefixIfIndex=ipAddressPrefixIfIndex, ipSystemStatsOutNoRoutes=ipSystemStatsOutNoRoutes, ipAddressPrefixOnLinkFlag=ipAddressPrefixOnLinkFlag, ipSystemStatsInAddrErrors=ipSystemStatsInAddrErrors, ipSystemStatsEntry=ipSystemStatsEntry, ipv6RouterAdvertRetransmitTime=ipv6RouterAdvertRetransmitTime, ipv6GeneralGroup2=ipv6GeneralGroup2, ipAddressPrefix=ipAddressPrefix, ipv6InterfaceRetransmitTime=ipv6InterfaceRetransmitTime, icmpStatsIPVersion=icmpStatsIPVersion, icmpOutRedirects=icmpOutRedirects, ipSystemStatsReasmReqds=ipSystemStatsReasmReqds, icmpGroup=icmpGroup, ipv4IfStatsGroup=ipv4IfStatsGroup, ipv6ScopeZoneIndex3=ipv6ScopeZoneIndex3, ipSystemStatsOutDiscards=ipSystemStatsOutDiscards, ipAdEntIfIndex=ipAdEntIfIndex, ipSystemStatsHCInForwDatagrams=ipSystemStatsHCInForwDatagrams, ipAdEntAddr=ipAdEntAddr, ipIfStatsReasmReqds=ipIfStatsReasmReqds, ipIfStatsInOctets=ipIfStatsInOctets, ipIfStatsOutMcastPkts=ipIfStatsOutMcastPkts, ipSystemStatsInDelivers=ipSystemStatsInDelivers, ipDefaultTTL=ipDefaultTTL, ipSystemStatsOutMcastOctets=ipSystemStatsOutMcastOctets, ipIfStatsInForwDatagrams=ipIfStatsInForwDatagrams, ipSystemStatsHCOutOctets=ipSystemStatsHCOutOctets, ipRoutingDiscards=ipRoutingDiscards, icmpInMsgs=icmpInMsgs, ipSystemStatsInTruncatedPkts=ipSystemStatsInTruncatedPkts, ipAddressPrefixTable=ipAddressPrefixTable, ipSystemStatsInUnknownProtos=ipSystemStatsInUnknownProtos, ipIfStatsInAddrErrors=ipIfStatsInAddrErrors, ipDefaultRouterIfIndex=ipDefaultRouterIfIndex, icmpOutAddrMaskReps=icmpOutAddrMaskReps, ipIfStatsOutFragFails=ipIfStatsOutFragFails, ipNetToPhysicalIfIndex=ipNetToPhysicalIfIndex, ipFragOKs=ipFragOKs, ipSystemStatsHCOutTransmits=ipSystemStatsHCOutTransmits, ipv6ScopeZoneIndex7=ipv6ScopeZoneIndex7, ipIfStatsHCInReceives=ipIfStatsHCInReceives, ipInDiscards=ipInDiscards, ipv6ScopeZoneIndexD=ipv6ScopeZoneIndexD, ipSystemStatsHCInMcastOctets=ipSystemStatsHCInMcastOctets, ipv6InterfaceEnableStatus=ipv6InterfaceEnableStatus, icmpInEchos=icmpInEchos, ipSystemStatsGroup=ipSystemStatsGroup, ipIfStatsHCOutTransmits=ipIfStatsHCOutTransmits, icmpInDestUnreachs=icmpInDestUnreachs, ipIfStatsOutRequests=ipIfStatsOutRequests, ipDefaultRouterTable=ipDefaultRouterTable, ipNetToPhysicalTable=ipNetToPhysicalTable, ipInAddrErrors=ipInAddrErrors, ipInUnknownProtos=ipInUnknownProtos, ipSystemStatsHCInOctets=ipSystemStatsHCInOctets, ipSystemStatsOutForwDatagrams=ipSystemStatsOutForwDatagrams, ipAddressPrefixOrigin=ipAddressPrefixOrigin, ipAddressSpinLock=ipAddressSpinLock, ipGroup=ipGroup, ipv6RouterAdvertRowStatus=ipv6RouterAdvertRowStatus, icmpMsgStatsIPVersion=icmpMsgStatsIPVersion, ipSystemStatsHCOctetGroup=ipSystemStatsHCOctetGroup, ipIfStatsHCOutRequests=ipIfStatsHCOutRequests, ipSystemStatsDiscontinuityTime=ipSystemStatsDiscontinuityTime, ipAddrTable=ipAddrTable, ipSystemStatsHCInReceives=ipSystemStatsHCInReceives, ipv6InterfaceReachableTime=ipv6InterfaceReachableTime, ipIfStatsInBcastPkts=ipIfStatsInBcastPkts, icmpOutEchoReps=icmpOutEchoReps, icmpInErrors=icmpInErrors, ipAddressAddrType=ipAddressAddrType, ipIfStatsHCOutOctets=ipIfStatsHCOutOctets, icmpStatsGroup=icmpStatsGroup, ipIfStatsHCOutForwDatagrams=ipIfStatsHCOutForwDatagrams, ipSystemStatsOutFragFails=ipSystemStatsOutFragFails, ipv6InterfaceIfIndex=ipv6InterfaceIfIndex, ipIfStatsInDelivers=ipIfStatsInDelivers, ipIfStatsHCInForwDatagrams=ipIfStatsHCInForwDatagrams, PYSNMP_MODULE_ID=ipMIB, icmpInSrcQuenchs=icmpInSrcQuenchs, ipSystemStatsOutFragOKs=ipSystemStatsOutFragOKs, ipv4GeneralGroup=ipv4GeneralGroup, ipDefaultRouterAddress=ipDefaultRouterAddress, ipAddressAddr=ipAddressAddr, ipv6InterfaceIdentifier=ipv6InterfaceIdentifier, ipAddressPrefixAutonomousFlag=ipAddressPrefixAutonomousFlag, ipAddressPrefixGroup=ipAddressPrefixGroup, ipIfStatsInMcastOctets=ipIfStatsInMcastOctets, ipReasmOKs=ipReasmOKs, ipv6ScopeZoneIndex6=ipv6ScopeZoneIndex6, ipOutDiscards=ipOutDiscards, ipIfStatsOutFragOKs=ipIfStatsOutFragOKs, ipIfStatsHCInDelivers=ipIfStatsHCInDelivers, icmpInTimestamps=icmpInTimestamps, ipSystemStatsOutRequests=ipSystemStatsOutRequests, icmpStatsTable=icmpStatsTable, icmpMsgStatsInPkts=icmpMsgStatsInPkts, icmpOutDestUnreachs=icmpOutDestUnreachs, ipSystemStatsInReceives=ipSystemStatsInReceives, icmpOutTimestamps=icmpOutTimestamps, icmpStatsInMsgs=icmpStatsInMsgs, ipv6ScopeZoneIndexTable=ipv6ScopeZoneIndexTable, ipv6ScopeGroup=ipv6ScopeGroup, ipIfStatsOutBcastPkts=ipIfStatsOutBcastPkts, ipSystemStatsInForwDatagrams=ipSystemStatsInForwDatagrams, ipMIBCompliance=ipMIBCompliance, ipNetToPhysicalLastUpdated=ipNetToPhysicalLastUpdated, icmpStatsInErrors=icmpStatsInErrors, ipSystemStatsHCOutMcastOctets=ipSystemStatsHCOutMcastOctets, ipIfStatsOutTransmits=ipIfStatsOutTransmits, ipSystemStatsHCOutRequests=ipSystemStatsHCOutRequests, ipInReceives=ipInReceives, ipv6RouterAdvertManagedFlag=ipv6RouterAdvertManagedFlag, ipv4SystemStatsGroup=ipv4SystemStatsGroup, ipIfStatsTable=ipIfStatsTable, ipIfStatsHCInOctets=ipIfStatsHCInOctets, icmpInEchoReps=icmpInEchoReps, ipv4InterfaceTableLastChange=ipv4InterfaceTableLastChange, ipAddressPrefixEntry=ipAddressPrefixEntry, ipIfStatsInNoRoutes=ipIfStatsInNoRoutes, ipIfStatsInTruncatedPkts=ipIfStatsInTruncatedPkts, ipAddressPrefixLength=ipAddressPrefixLength, ipIfStatsInReceives=ipIfStatsInReceives, ipNetToMediaPhysAddress=ipNetToMediaPhysAddress, ipNetToPhysicalRowStatus=ipNetToPhysicalRowStatus, ipv4InterfaceIfIndex=ipv4InterfaceIfIndex, ipNetToMediaNetAddress=ipNetToMediaNetAddress, ipv6ScopeZoneIndexIfIndex=ipv6ScopeZoneIndexIfIndex, ipSystemStatsReasmFails=ipSystemStatsReasmFails, ipIfStatsTableLastChange=ipIfStatsTableLastChange, IpAddressStatusTC=IpAddressStatusTC, ipv6ScopeZoneIndexA=ipv6ScopeZoneIndexA, icmpOutErrors=icmpOutErrors, Ipv6AddressIfIdentifierTC=Ipv6AddressIfIdentifierTC, icmpOutTimestampReps=icmpOutTimestampReps, ipAddressPrefixAdvValidLifetime=ipAddressPrefixAdvValidLifetime, ipSystemStatsInNoRoutes=ipSystemStatsInNoRoutes, ipSystemStatsHCInBcastPkts=ipSystemStatsHCInBcastPkts, ipv4IfStatsHCPacketGroup=ipv4IfStatsHCPacketGroup, ipNetToMediaEntry=ipNetToMediaEntry, ipAddressPrefixPrefix=ipAddressPrefixPrefix, icmpInAddrMaskReps=icmpInAddrMaskReps, ipv6ScopeZoneIndexLinkLocal=ipv6ScopeZoneIndexLinkLocal, ipv6RouterAdvertMinInterval=ipv6RouterAdvertMinInterval, ipNetToPhysicalType=ipNetToPhysicalType, ipAddressRowStatus=ipAddressRowStatus, ipFragFails=ipFragFails, ipIfStatsHCInMcastOctets=ipIfStatsHCInMcastOctets, ipMIBCompliance2=ipMIBCompliance2, ipv6RouterAdvertOtherConfigFlag=ipv6RouterAdvertOtherConfigFlag, ipMIBConformance=ipMIBConformance, ipInHdrErrors=ipInHdrErrors, ipNetToPhysicalPhysAddress=ipNetToPhysicalPhysAddress, ipv6RouterAdvertEntry=ipv6RouterAdvertEntry, ipv6ScopeZoneIndexC=ipv6ScopeZoneIndexC, ipAddrEntry=ipAddrEntry, ipNetToPhysicalNetAddress=ipNetToPhysicalNetAddress, ipv6ScopeZoneIndex9=ipv6ScopeZoneIndex9, ipDefaultRouterEntry=ipDefaultRouterEntry, ipSystemStatsInOctets=ipSystemStatsInOctets, icmpStatsEntry=icmpStatsEntry, ipv4InterfaceReasmMaxSize=ipv4InterfaceReasmMaxSize, ipInDelivers=ipInDelivers, ipv6ScopeZoneIndexAdminLocal=ipv6ScopeZoneIndexAdminLocal, ipReasmTimeout=ipReasmTimeout, ipv6IfGroup=ipv6IfGroup, icmpInParmProbs=icmpInParmProbs, ipv6ScopeZoneIndexB=ipv6ScopeZoneIndexB, icmpStatsOutErrors=icmpStatsOutErrors, ipIfStatsInUnknownProtos=ipIfStatsInUnknownProtos, IpAddressOriginTC=IpAddressOriginTC, ipSystemStatsOutOctets=ipSystemStatsOutOctets, ipDefaultRouterLifetime=ipDefaultRouterLifetime, ipAddressStatus=ipAddressStatus, icmpInRedirects=icmpInRedirects, ipv6RouterAdvertCurHopLimit=ipv6RouterAdvertCurHopLimit, ipSystemStatsHCOutBcastPkts=ipSystemStatsHCOutBcastPkts, ipv6RouterAdvertTable=ipv6RouterAdvertTable, ipSystemStatsHCOutMcastPkts=ipSystemStatsHCOutMcastPkts, ipv4InterfaceTable=ipv4InterfaceTable, ipOutRequests=ipOutRequests, ipIfStatsRefreshRate=ipIfStatsRefreshRate, ipSystemStatsTable=ipSystemStatsTable, ipSystemStatsRefreshRate=ipSystemStatsRefreshRate, ipSystemStatsInMcastPkts=ipSystemStatsInMcastPkts, ipSystemStatsInMcastOctets=ipSystemStatsInMcastOctets, ipSystemStatsHCInMcastPkts=ipSystemStatsHCInMcastPkts, ipReasmReqds=ipReasmReqds, icmpMsgStatsType=icmpMsgStatsType, ipv6RouterAdvertReachableTime=ipv6RouterAdvertReachableTime, ipIfStatsHCOutMcastOctets=ipIfStatsHCOutMcastOctets, icmpStatsOutMsgs=icmpStatsOutMsgs, ipAddressEntry=ipAddressEntry, ipSystemStatsOutFragCreates=ipSystemStatsOutFragCreates, icmpMsgStatsOutPkts=icmpMsgStatsOutPkts, ipIfStatsHCPacketGroup=ipIfStatsHCPacketGroup, ipIfStatsHCOutBcastPkts=ipIfStatsHCOutBcastPkts, ipAddressOrigin=ipAddressOrigin, ipIfStatsHCInMcastPkts=ipIfStatsHCInMcastPkts, ipSystemStatsHCInDelivers=ipSystemStatsHCInDelivers, icmpOutMsgs=icmpOutMsgs, ipSystemStatsIPVersion=ipSystemStatsIPVersion, ipAddressType=ipAddressType, ipSystemStatsInHdrErrors=ipSystemStatsInHdrErrors, icmpMsgStatsTable=icmpMsgStatsTable, ipAddressLastChanged=ipAddressLastChanged, ipIfStatsDiscontinuityTime=ipIfStatsDiscontinuityTime, ipAdEntNetMask=ipAdEntNetMask, ipAddressIfIndex=ipAddressIfIndex, ipIfStatsInHdrErrors=ipIfStatsInHdrErrors, ipIfStatsInDiscards=ipIfStatsInDiscards, ipIfStatsOutFragReqds=ipIfStatsOutFragReqds, ipNetToMediaTable=ipNetToMediaTable, IpAddressPrefixOriginTC=IpAddressPrefixOriginTC, ipv6RouterAdvertIfIndex=ipv6RouterAdvertIfIndex, icmpOutEchos=icmpOutEchos, icmpOutSrcQuenchs=icmpOutSrcQuenchs, ipSystemStatsOutTransmits=ipSystemStatsOutTransmits, ipSystemStatsOutBcastPkts=ipSystemStatsOutBcastPkts, ipIfStatsOutFragCreates=ipIfStatsOutFragCreates, ipv6InterfaceTableLastChange=ipv6InterfaceTableLastChange, ipv4SystemStatsHCPacketGroup=ipv4SystemStatsHCPacketGroup, ipMIBCompliances=ipMIBCompliances, ipv6ScopeZoneIndexEntry=ipv6ScopeZoneIndexEntry, ipNetToPhysicalGroup=ipNetToPhysicalGroup, ipv6InterfaceTable=ipv6InterfaceTable, icmp=icmp)
-mibBuilder.exportSymbols("IP-MIB", ipSystemStatsOutFragReqds=ipSystemStatsOutFragReqds, ipv4InterfaceEnableStatus=ipv4InterfaceEnableStatus, ipv6IpForwarding=ipv6IpForwarding, ipNetToPhysicalNetAddressType=ipNetToPhysicalNetAddressType, ipAddressCreated=ipAddressCreated, ipOutNoRoutes=ipOutNoRoutes, icmpInTimestampReps=icmpInTimestampReps, ipIfStatsHCInBcastPkts=ipIfStatsHCInBcastPkts, ip=ip, ipIfStatsInMcastPkts=ipIfStatsInMcastPkts, icmpInAddrMasks=icmpInAddrMasks, ipIfStatsReasmFails=ipIfStatsReasmFails, ipMIB=ipMIB, ipAddressPrefixAdvPreferredLifetime=ipAddressPrefixAdvPreferredLifetime, ipIfStatsOutForwDatagrams=ipIfStatsOutForwDatagrams, ipv6RouterAdvertLinkMTU=ipv6RouterAdvertLinkMTU, ipNetToMediaType=ipNetToMediaType, ipFragCreates=ipFragCreates, ipIfStatsOutMcastOctets=ipIfStatsOutMcastOctets, ipMIBGroups=ipMIBGroups, ipIfStatsGroup=ipIfStatsGroup, ipAdEntBcastAddr=ipAdEntBcastAddr, ipSystemStatsInBcastPkts=ipSystemStatsInBcastPkts, ipAddressPrefixType=ipAddressPrefixType, ipSystemStatsHCOutForwDatagrams=ipSystemStatsHCOutForwDatagrams, ipDefaultRouterAddressType=ipDefaultRouterAddressType, ipv6IpDefaultHopLimit=ipv6IpDefaultHopLimit, ipReasmFails=ipReasmFails, ipNetToPhysicalEntry=ipNetToPhysicalEntry, ipNetToMediaIfIndex=ipNetToMediaIfIndex, icmpInTimeExcds=icmpInTimeExcds, ipForwDatagrams=ipForwDatagrams, icmpMsgStatsEntry=icmpMsgStatsEntry, icmpOutParmProbs=icmpOutParmProbs, ipDefaultRouterGroup=ipDefaultRouterGroup, ipIfStatsOutDiscards=ipIfStatsOutDiscards, ipDefaultRouterPreference=ipDefaultRouterPreference, ipv6RouterAdvertSendAdverts=ipv6RouterAdvertSendAdverts, ipIfStatsEntry=ipIfStatsEntry, ipIfStatsReasmOKs=ipIfStatsReasmOKs, ipv6ScopeZoneIndexOrganizationLocal=ipv6ScopeZoneIndexOrganizationLocal, ipAddressStorageType=ipAddressStorageType, icmpOutTimeExcds=icmpOutTimeExcds, ipv4IfGroup=ipv4IfGroup)
diff --git a/cloudshell/checkpoint/gaia/mibs/__init__.py b/cloudshell/checkpoint/gaia/mibs/__init__.py
deleted file mode 100644
index 0f8861b..0000000
--- a/cloudshell/checkpoint/gaia/mibs/__init__.py
+++ /dev/null
@@ -1,3 +0,0 @@
-__author__ = 'coye'
-from pkgutil import extend_path
-__path__ = extend_path(__path__, __name__)
\ No newline at end of file
diff --git a/cloudshell/checkpoint/gaia/utils.py b/cloudshell/checkpoint/gaia/utils.py
deleted file mode 100644
index 296968f..0000000
--- a/cloudshell/checkpoint/gaia/utils.py
+++ /dev/null
@@ -1,17 +0,0 @@
-class LogCommand(object):
- START_MSG = "started"
- COMPLETE_MSG = "completed"
-
- def __init__(self, logger, command_name):
- self.logger = logger
- self.command_name = command_name
-
- def get_message(self, status_message):
- return "Command {} {}".format(self.command_name, status_message)
-
- def __enter__(self):
- self.logger.info(self.get_message(self.START_MSG))
-
- def __exit__(self, exc_type, exc_val, exc_tb):
- if not exc_val:
- self.logger.info(self.get_message(self.COMPLETE_MSG))
diff --git a/cloudshell/checkpoint/gaia/command_templates/__init__.py b/cloudshell/checkpoint/helpers/__init__.py
similarity index 100%
rename from cloudshell/checkpoint/gaia/command_templates/__init__.py
rename to cloudshell/checkpoint/helpers/__init__.py
diff --git a/cloudshell/checkpoint/helpers/errors.py b/cloudshell/checkpoint/helpers/errors.py
new file mode 100644
index 0000000..34096cc
--- /dev/null
+++ b/cloudshell/checkpoint/helpers/errors.py
@@ -0,0 +1,21 @@
+from __future__ import annotations
+
+
+class BaseCheckpointError(Exception):
+ """Base BaseCheckpointError Error."""
+
+
+class NotImplementedCheckpointError(NotImplementedError):
+ """CheckPoint Not Implemented Error."""
+
+
+class NotSupportedCheckpointError(BaseCheckpointError):
+ """Not supported by CheckPoint Gaia."""
+
+
+class ShutdownOkCheckpointError(BaseCheckpointError):
+ """Error means that device successfully went down."""
+
+
+class SnmpCheckpointError(BaseCheckpointError):
+ """Base SNMP CheckPoint Error."""
diff --git a/dev_requirements.txt b/dev_requirements.txt
index 966817e..dd1db73 100644
--- a/dev_requirements.txt
+++ b/dev_requirements.txt
@@ -1,4 +1,5 @@
pre-commit
tox
+tox-factor
-r test_requirements.txt
-r requirements.txt
diff --git a/requirements.txt b/requirements.txt
index 5066386..f9e8d3e 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,5 +1,10 @@
-setuptools>=40.0
-cloudshell-shell-flows>=1.0,<2
-cloudshell-cli>=4.0,<5
-cloudshell-snmp>=4.0,<5
-passlib==1.7.4
\ No newline at end of file
+passlib==1.7.4
+cloudshell-shell-core~=6.0
+cloudshell-shell-standards~=2.0
+cloudshell-shell-flows~=3.0
+cloudshell-shell-connectivity-flow~=4.0
+cloudshell-cli~=5.0
+cloudshell-snmp~=5.0
+cloudshell-snmp-autoload~=2.0
+attrs>=22,<24
+typing-extensions>=4.4
diff --git a/setup.py b/setup.py
index c6f9d24..9ead2c5 100644
--- a/setup.py
+++ b/setup.py
@@ -1,20 +1,6 @@
import os
from setuptools import find_packages, setup
-from setuptools.version import __version__ as setuptools_version
-
-if tuple(map(int, setuptools_version.split(".")[:2])) < (40, 0):
- import sys
-
- python = sys.executable
- try:
- s = os.system('{} -m pip install "setuptools>=40"'.format(python))
- if s != 0:
- raise Exception
- except Exception:
- raise Exception("Setuptools>40 have to be installed")
-
- os.execl(python, python, *sys.argv)
with open(os.path.join("version.txt")) as version_file:
version_from_file = version_file.read().strip()
@@ -33,9 +19,11 @@
packages=find_packages(),
install_requires=required,
tests_require=required_for_tests,
- python_requires="~=3.7",
version=version_from_file,
package_data={"": ["*.txt"]},
description="Quali checkpoint specific package",
+ long_description="Checkpoint Gaia Shell operations",
+ long_description_content_type="text/x-rst",
include_package_data=True,
+ python_requires="~=3.9",
)
diff --git a/test_requirements.txt b/test_requirements.txt
index cffeec6..9955dec 100644
--- a/test_requirements.txt
+++ b/test_requirements.txt
@@ -1,2 +1,2 @@
pytest
-pytest-cov
\ No newline at end of file
+pytest-cov
diff --git a/tests/cloudshell/checkpoint/gaia/__init__.py b/tests/cloudshell/checkpoint/command_actions/__init__.py
similarity index 100%
rename from tests/cloudshell/checkpoint/gaia/__init__.py
rename to tests/cloudshell/checkpoint/command_actions/__init__.py
diff --git a/tests/cloudshell/checkpoint/command_actions/test_system_actions.py b/tests/cloudshell/checkpoint/command_actions/test_system_actions.py
new file mode 100644
index 0000000..d9d0787
--- /dev/null
+++ b/tests/cloudshell/checkpoint/command_actions/test_system_actions.py
@@ -0,0 +1,31 @@
+from __future__ import annotations
+
+from unittest import TestCase
+from unittest.mock import Mock, patch
+
+from cloudshell.checkpoint.command_actions.system_actions import SystemActions
+
+
+class TestUtils(TestCase):
+ def setUp(self):
+ self._cli_service = Mock()
+ self._logger = Mock()
+ self._instance = SystemActions(self._cli_service)
+
+ def test_init(self):
+ self.assertIs(self._instance._cli_service, self._cli_service)
+
+ @patch("cloudshell.checkpoint.command_actions.system_actions.system_templates")
+ @patch(
+ "cloudshell.checkpoint.command_actions.system_actions.CommandTemplateExecutor"
+ )
+ def test_shutdown(self, command_template_executor, command_template):
+ output = Mock()
+ execute_command = Mock()
+ command_template_executor.return_value = execute_command
+ execute_command.execute_command.return_value = output
+ self.assertIs(self._instance.shutdown(), output)
+ command_template_executor.assert_called_once_with(
+ self._cli_service, command_template.SHUTDOWN
+ )
+ execute_command.execute_command.assert_called_once_with()
diff --git a/tests/cloudshell/checkpoint/gaia/test_utils.py b/tests/cloudshell/checkpoint/gaia/test_utils.py
deleted file mode 100644
index e23118f..0000000
--- a/tests/cloudshell/checkpoint/gaia/test_utils.py
+++ /dev/null
@@ -1,47 +0,0 @@
-from unittest import TestCase, mock
-from unittest.mock import call, patch
-
-from cloudshell.checkpoint.gaia.utils import LogCommand
-
-
-class TestUtils(TestCase):
- def setUp(self):
- self.logger = mock.Mock()
- self.command_name = "test command"
- self.instance = LogCommand(self.logger, self.command_name)
-
- def test_init(self):
- self.assertIs(self.instance.logger, self.logger)
- self.assertEqual(self.instance.command_name, self.command_name)
-
- def test_get_status_message(self):
- self.assertTrue(
- self.command_name in self.instance.get_message(self.instance.START_MSG)
- )
- self.assertTrue(
- self.instance.START_MSG
- in self.instance.get_message(self.instance.START_MSG)
- )
-
- @patch("cloudshell.checkpoint.gaia.utils.LogCommand.get_message")
- def test_context_manager(self, get_message):
- start_msg = mock.Mock()
- stop_msg = mock.Mock()
- get_message.side_effect = [start_msg, stop_msg]
- with self.instance:
- pass
- get_message.assert_has_calls(
- [call(self.instance.START_MSG), call(self.instance.COMPLETE_MSG)]
- )
- self.logger.info.assert_has_calls([call(start_msg), call(stop_msg)])
-
- @patch("cloudshell.checkpoint.gaia.utils.LogCommand.get_message")
- def test_context_manager_with_exception(self, get_message):
- start_msg = mock.Mock()
- stop_msg = mock.Mock()
- get_message.side_effect = [start_msg, stop_msg]
-
- with self.assertRaises(Exception), self.instance:
- raise Exception()
- get_message.assert_called_once_with(self.instance.START_MSG)
- self.logger.info.assert_called_once_with(start_msg)
diff --git a/tox.ini b/tox.ini
index 902bbd7..35cf232 100644
--- a/tox.ini
+++ b/tox.ini
@@ -4,7 +4,7 @@
# and then run "tox" from this directory.
[tox]
envlist =
- py{37}-{master,dev}
+ py{39}-{master,dev}
pre-commit
build
distshare = dist
@@ -16,23 +16,21 @@ deps =
master: -r test_requirements.txt
dev: -r dev_requirements.txt
commands =
- pytest --cov=cloudshell.checkpoint.gaia tests
+ pytest --cov=cloudshell.checkpoint tests --cov-report=xml
[testenv:pre-commit]
-basepython = python3
skip_install = true
deps = pre-commit
commands = pre-commit run --all-files --show-diff-on-failure
[testenv:build]
skip_install = true
-commands =
- python setup.py -q sdist --format zip
- python setup.py -q bdist_wheel
+deps = build
+commands = python -m build
[isort]
profile=black
-forced_separate = cloudshell.checkpoint.gaia,tests
+forced_separate = cloudshell.checkpoint,tests
skip = mibs
[flake8]
@@ -40,4 +38,5 @@ max-line-length = 88
;we don't need have docstrings in every func, class and package
;and W503 is not PEP 8 compliant
ignore = D100,D101,D102,D103,D104,D105,D106,D107,D401,W503,E203
-exclude = mibs
\ No newline at end of file
+exclude = mibs
+known-modules = cloudshell-checkpoint:[cloudshell.checkpoint],cloudshell-snmp:[cloudshell.snmp],cloudshell-cli:[cloudshell.cli],cloudshell-shell-flows:[cloudshell.shell.flows],cloudshell-shell-standards:[cloudshell.shell.standards],cloudshell-shell-core:[cloudshell.shell.core]
diff --git a/version.txt b/version.txt
index a6a3a43..359a5b9 100644
--- a/version.txt
+++ b/version.txt
@@ -1 +1 @@
-1.0.4
\ No newline at end of file
+2.0.0
\ No newline at end of file